From c621e93fe3f25518cd6185c7d16e5b419c75d119 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Mon, 29 Oct 2012 11:51:14 -0500 Subject: [PATCH 01/22] IDEMPIERE-234 Configurable Toolbar / Bring back export action button --- .../webui/adwindow/ADWindowToolbar.java | 14 ++ .../adwindow/AbstractADWindowContent.java | 8 + .../webui/event/ToolbarListener.java | 7 +- .../webui/panel/action/ExportAction.java | 207 ++++++++++++++++++ 4 files changed, 235 insertions(+), 1 deletion(-) create mode 100644 org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/action/ExportAction.java diff --git a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/adwindow/ADWindowToolbar.java b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/adwindow/ADWindowToolbar.java index 15c7c0f3d1..1a52743bc2 100644 --- a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/adwindow/ADWindowToolbar.java +++ b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/adwindow/ADWindowToolbar.java @@ -91,6 +91,7 @@ public class ADWindowToolbar extends FToolbar implements EventListener private ToolBarButton btnCustomize; + private ToolBarButton btnExport; private ToolBarButton btnFileImport; private ToolBarButton btnProcess; @@ -188,6 +189,10 @@ public class ADWindowToolbar extends FToolbar implements EventListener btnArchive.setDisabled(false); // Elaine 2008/07/28 btnLock.setDisabled(!isPersonalLock); // Elaine 2008/12/04 + if (MRole.getDefault().isCanExport()) + { + btnExport = createButton("Export", "Export", "Export"); + } btnFileImport = createButton("FileImport", "FileImport", "FileImport"); configureKeyMap(); @@ -543,6 +548,15 @@ public class ADWindowToolbar extends FToolbar implements EventListener this.windowNo = windowNo; } + /** + * Enable/disable export button + * @param b + */ + public void enableExport(boolean b) { + if (btnExport != null) + btnExport.setDisabled(!b); + } + /** * Enable/disable file import button * @param b diff --git a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/adwindow/AbstractADWindowContent.java b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/adwindow/AbstractADWindowContent.java index 213c5288b9..d740282f77 100644 --- a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/adwindow/AbstractADWindowContent.java +++ b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/adwindow/AbstractADWindowContent.java @@ -59,6 +59,7 @@ import org.adempiere.webui.panel.ADForm; import org.adempiere.webui.panel.InfoPanel; import org.adempiere.webui.panel.WAttachment; import org.adempiere.webui.panel.WDocActionPanel; +import org.adempiere.webui.panel.action.ExportAction; import org.adempiere.webui.panel.action.FileImportAction; import org.adempiere.webui.panel.action.ReportAction; import org.adempiere.webui.part.AbstractUIPart; @@ -1341,6 +1342,7 @@ public abstract class AbstractADWindowContent extends AbstractUIPart implements toolbar.enablePrint(adTabbox.getSelectedGridTab().isPrinted()); toolbar.enableReport(true); + toolbar.enableExport(!adTabbox.getSelectedGridTab().isSortTab()); toolbar.enableFileImport(!changed && !adTabbox.getSelectedGridTab().isSortTab() && adTabbox.getSelectedGridTab().isInsertRecord()); //Deepak-Enabling customize button IDEMPIERE-364 @@ -2155,6 +2157,12 @@ public abstract class AbstractADWindowContent extends AbstractUIPart implements // + @Override + public void onExport() { + ExportAction action = new ExportAction(this); + action.export(); + } + @Override public void onFileImport() { FileImportAction action = new FileImportAction(this); diff --git a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/event/ToolbarListener.java b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/event/ToolbarListener.java index 241e4811c4..491e9706f5 100644 --- a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/event/ToolbarListener.java +++ b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/event/ToolbarListener.java @@ -159,7 +159,12 @@ public interface ToolbarListener * Copy current record as a new record */ public void onCopy(); - + + /** + * Export grid data + */ + public void onExport(); + /** * File import data */ diff --git a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/action/ExportAction.java b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/action/ExportAction.java new file mode 100644 index 0000000000..cdbd771e0e --- /dev/null +++ b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/action/ExportAction.java @@ -0,0 +1,207 @@ +/****************************************************************************** + * Product: Adempiere ERP & CRM Smart Business Solution * + * Copyright (C) 2010 Heng Sin Low * + * This program is free software; you can redistribute it and/or modify it * + * under the terms version 2 of the GNU General Public License as published * + * by the Free Software Foundation. This program is distributed in the hope * + * that it will be useful, but WITHOUT ANY WARRANTY; without even the implied * + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * + * See the GNU General Public License for more details. * + * You should have received a copy of the GNU General Public License along * + * with this program; if not, write to the Free Software Foundation, Inc., * + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * + *****************************************************************************/ +package org.adempiere.webui.panel.action; + +import java.io.File; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; + +import org.adempiere.base.IGridTabExporter; +import org.adempiere.base.Service; +import org.adempiere.exceptions.AdempiereException; +import org.adempiere.webui.adwindow.AbstractADWindowContent; +import org.adempiere.webui.adwindow.IADTabbox; +import org.adempiere.webui.adwindow.IADTabpanel; +import org.adempiere.webui.apps.AEnv; +import org.adempiere.webui.component.Checkbox; +import org.adempiere.webui.component.ConfirmPanel; +import org.adempiere.webui.component.Label; +import org.adempiere.webui.component.ListItem; +import org.adempiere.webui.component.Listbox; +import org.adempiere.webui.component.Window; +import org.adempiere.webui.window.FDialog; +import org.compiere.model.GridTab; +import org.compiere.util.Env; +import org.compiere.util.Msg; +import org.zkoss.util.media.AMedia; +import org.zkoss.zk.ui.event.Event; +import org.zkoss.zk.ui.event.EventListener; +import org.zkoss.zul.Div; +import org.zkoss.zul.Filedownload; +import org.zkoss.zul.Hbox; +import org.zkoss.zul.Vbox; + +/** + * + * @author hengsin + * + */ +public class ExportAction implements EventListener +{ + private AbstractADWindowContent panel; + + private Map exporterMap = null; + private Map extensionMap = null; + + private Window winExportFile = null; + private ConfirmPanel confirmPanel = new ConfirmPanel(true); + private Listbox cboType = new Listbox(); + private Checkbox chkCurrentRow = new Checkbox(); + + /** + * @param panel + */ + public ExportAction(AbstractADWindowContent panel) + { + this.panel = panel; + } + + /** + * execute export action + */ + public void export() + { + exporterMap = new HashMap(); + extensionMap = new HashMap(); + List exporterList = Service.list(IGridTabExporter.class); + for(IGridTabExporter exporter : exporterList) + { + String extension = exporter.getFileExtension(); + if (!extensionMap.containsKey(extension)) + { + extensionMap.put(extension, exporter.getFileExtensionLabel()); + exporterMap.put(extension, exporter); + } + } + + if(winExportFile == null) + { + winExportFile = new Window(); + winExportFile.setTitle(Msg.getMsg(Env.getCtx(), "Export") + ": " + panel.getActiveGridTab().getName()); + winExportFile.setWidth("450px"); + winExportFile.setClosable(true); + winExportFile.setBorder("normal"); + winExportFile.setStyle("position:absolute"); + + cboType.setMold("select"); + + cboType.getItems().clear(); + for(Map.Entry entry : extensionMap.entrySet()) + { + cboType.appendItem(entry.getKey() + " - " + entry.getValue(), entry.getKey()); + } + + cboType.setSelectedIndex(0); + + Vbox vb = new Vbox(); + vb.setWidth("100%"); + winExportFile.appendChild(vb); + + Hbox hb = new Hbox(); + Div div = new Div(); + div.setAlign("right"); + div.appendChild(new Label("Files of Type: ")); + hb.appendChild(div); + hb.appendChild(cboType); + cboType.setWidth("100%"); + vb.appendChild(hb); + + hb = new Hbox(); + chkCurrentRow.setLabel(Msg.getMsg(Env.getCtx(), "ExportCurrentRowOnly")); + chkCurrentRow.setSelected(true); + hb.appendChild(chkCurrentRow); + vb.appendChild(hb); + + vb.appendChild(confirmPanel); + confirmPanel.addActionListener(this); + } + + winExportFile.setAttribute(Window.MODE_KEY, Window.MODE_HIGHLIGHTED); + AEnv.showWindow(winExportFile); + } + + @Override + public void onEvent(Event event) throws Exception { + if(event.getTarget().getId().equals(ConfirmPanel.A_CANCEL)) + winExportFile.onClose(); + else if(event.getTarget().getId().equals(ConfirmPanel.A_OK)) + exportFile(); + } + + private void exportFile() { + try { + ListItem li = cboType.getSelectedItem(); + if(li == null || li.getValue() == null) + { + FDialog.error(0, winExportFile, "FileInvalidExtension"); + return; + } + + String ext = li.getValue().toString(); + IGridTabExporter exporter = exporterMap.get(ext); + if (exporter == null) + { + FDialog.error(0, winExportFile, "FileInvalidExtension"); + return; + } + + boolean currentRowOnly = chkCurrentRow.isSelected(); + File file = File.createTempFile("Export", "."+ext); + IADTabbox adTab = panel.getADTab(); + int selected = adTab.getSelectedIndex(); + int tabLevel = panel.getActiveGridTab().getTabLevel(); + Set tables = new HashSet(); + List childs = new ArrayList(); + List includedList = panel.getActiveGridTab().getIncludedTabs(); + for(GridTab included : includedList) + { + String tableName = included.getTableName(); + if (tables.contains(tableName)) + continue; + tables.add(tableName); + childs.add(included); + } + for(int i = selected+1; i < adTab.getTabCount(); i++) + { + IADTabpanel adTabPanel = adTab.getADTabpanel(i); + if (adTabPanel.getGridTab().isSortTab()) + continue; + if (adTabPanel.getGridTab().getTabLevel() <= tabLevel) + break; + String tableName = adTabPanel.getGridTab().getTableName(); + if (tables.contains(tableName)) + continue; + tables.add(tableName); + childs.add(adTabPanel.getGridTab()); + } + + exporter.export(panel.getActiveGridTab(), childs, currentRowOnly, file); + + winExportFile.onClose(); + winExportFile = null; + AMedia media = null; + media = new AMedia(panel.getActiveGridTab().getName() + "." + ext, null, exporter.getContentType(), file, true); + Filedownload.save(media, panel.getActiveGridTab().getName() + "." + ext); + } catch (Exception e) { + throw new AdempiereException(e); + } finally { + if (winExportFile != null) + winExportFile.onClose(); + } + } +} From 33ad5aa0b7d564658183c02bb91c9e1472b1da09 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Mon, 29 Oct 2012 21:59:23 -0500 Subject: [PATCH 02/22] IDEMPIERE-454 Easy import / Fix problem found with character set - adapting to zk6 also the WFileImport --- .../adempiere/impexp/GridTabCSVImporter.java | 11 +++--- .../webui/apps/form/WFileImport.java | 31 +++++++++++++--- .../webui/panel/action/ExportAction.java | 4 +-- .../webui/panel/action/FileImportAction.java | 36 ++++++++++++------- 4 files changed, 59 insertions(+), 23 deletions(-) diff --git a/org.adempiere.base/src/org/adempiere/impexp/GridTabCSVImporter.java b/org.adempiere.base/src/org/adempiere/impexp/GridTabCSVImporter.java index 1bc5affbc5..cc01a3a1a6 100644 --- a/org.adempiere.base/src/org/adempiere/impexp/GridTabCSVImporter.java +++ b/org.adempiere.base/src/org/adempiere/impexp/GridTabCSVImporter.java @@ -19,6 +19,7 @@ import java.io.FileWriter; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; +import java.io.PrintWriter; import java.nio.charset.Charset; import java.sql.Timestamp; import java.text.DecimalFormatSymbols; @@ -75,16 +76,16 @@ public class GridTabCSVImporter implements IGridTabImporter ICsvMapReader mapReader = null; File errFile = null; File logFile = null; - FileWriter errFileW = null; - FileWriter logFileW = null; + PrintWriter errFileW = null; + PrintWriter logFileW = null; CsvPreference csvpref = CsvPreference.STANDARD_PREFERENCE; String delimiter = String.valueOf((char) csvpref.getDelimiterChar()); String quoteChar = String.valueOf((char) csvpref.getQuoteChar()); try { String errFileName = FileUtil.getTempMailName("Import_" + gridTab.getTableName(), "_err.csv"); errFile = new File(errFileName); - errFileW = new FileWriter(errFile, false); - mapReader = new CsvMapReader(new InputStreamReader(filestream), csvpref); + errFileW = new PrintWriter(errFile, charset.name()); + mapReader = new CsvMapReader(new InputStreamReader(filestream, charset), csvpref); String[] header = mapReader.getHeader(true); List readProcArray = new ArrayList(); @@ -240,7 +241,7 @@ public class GridTabCSVImporter implements IGridTabImporter if (!m_isError) { String logFileName = FileUtil.getTempMailName("Import_" + gridTab.getTableName(), "_log.csv"); logFile = new File(logFileName); - logFileW = new FileWriter(logFile, false); + logFileW = new PrintWriter(logFile, charset.name()); // write the header logFileW.write(rawHeader + delimiter + LOG_HEADER + "\n"); diff --git a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/apps/form/WFileImport.java b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/apps/form/WFileImport.java index f6cc99865d..e3de2b2cd5 100644 --- a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/apps/form/WFileImport.java +++ b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/apps/form/WFileImport.java @@ -50,6 +50,7 @@ import org.compiere.util.Env; import org.compiere.util.Ini; import org.compiere.util.Msg; import org.zkoss.util.media.Media; +import org.zkoss.zk.ui.Executions; import org.zkoss.zk.ui.event.Event; import org.zkoss.zk.ui.event.EventListener; import org.zkoss.zk.ui.event.Events; @@ -262,6 +263,7 @@ public class WFileImport extends ADForm implements EventListener if (charset == compare) { fCharset.setSelectedIndex(i); + Executions.getCurrent().getDesktop().getWebApp().getConfiguration().setUploadCharset(compare.name()); break; } } @@ -282,10 +284,17 @@ public class WFileImport extends ADForm implements EventListener } else if (e.getTarget() == fCharset) { - int record = m_record; - cmd_reloadFile(); - m_record = record - 1; - cmd_applyFormat(true); + if (m_file_istream != null) { + m_file_istream.close(); + m_file_istream = null; + } + clearAll(); + ListItem listitem = fCharset.getSelectedItem(); + if (listitem == null) + return; + Charset charset = (Charset)listitem.getValue(); + Executions.getCurrent().getDesktop().getWebApp().getConfiguration().setUploadCharset(charset.name()); + bFile.setLabel(Msg.getMsg(Env.getCtx(), "FileImportFile")); } else if (e.getTarget() == pickFormat) { @@ -316,6 +325,20 @@ public class WFileImport extends ADForm implements EventListener confirmPanel.getButton("Ok").setEnabled(false); } + private void clearAll() { + m_record = -1; + record.setValue("------"); + info.setValue(" "); + rawData.setText(null); + m_data.clear(); + if (m_fields != null) { + for (Textbox field : m_fields) + { + field.setText(null); + } + } + } + private void processUploadMedia(Media media) { if (media == null) return; diff --git a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/action/ExportAction.java b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/action/ExportAction.java index cdbd771e0e..6cd0a5724a 100644 --- a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/action/ExportAction.java +++ b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/action/ExportAction.java @@ -115,7 +115,7 @@ public class ExportAction implements EventListener Hbox hb = new Hbox(); Div div = new Div(); div.setAlign("right"); - div.appendChild(new Label("Files of Type: ")); + div.appendChild(new Label(Msg.getMsg(Env.getCtx(), "FilesOfType"))); hb.appendChild(div); hb.appendChild(cboType); cboType.setWidth("100%"); @@ -195,7 +195,7 @@ public class ExportAction implements EventListener winExportFile.onClose(); winExportFile = null; AMedia media = null; - media = new AMedia(panel.getActiveGridTab().getName() + "." + ext, null, exporter.getContentType(), file, true); + media = new AMedia(exporter.getSuggestedFileName(panel.getActiveGridTab()), null, exporter.getContentType(), file, true); Filedownload.save(media, panel.getActiveGridTab().getName() + "." + ext); } catch (Exception e) { throw new AdempiereException(e); diff --git a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/action/FileImportAction.java b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/action/FileImportAction.java index d8fd6aad1d..0ec2d649e0 100644 --- a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/action/FileImportAction.java +++ b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/action/FileImportAction.java @@ -45,6 +45,7 @@ import org.compiere.util.Ini; import org.compiere.util.Msg; import org.zkoss.util.media.AMedia; import org.zkoss.util.media.Media; +import org.zkoss.zk.ui.Executions; import org.zkoss.zk.ui.event.Event; import org.zkoss.zk.ui.event.EventListener; import org.zkoss.zk.ui.event.Events; @@ -99,11 +100,11 @@ public class FileImportAction implements EventListener if (charset == compare) { fCharset.setSelectedIndex(i); + Executions.getCurrent().getDesktop().getWebApp().getConfiguration().setUploadCharset(compare.name()); break; } } - // TODO: change the streamreader when changing the charset - // fCharset.addEventListener(Events.ON_SELECT, this); + fCharset.addEventListener(Events.ON_SELECT, this); importerMap = new HashMap(); extensionMap = new HashMap(); @@ -150,6 +151,13 @@ public class FileImportAction implements EventListener cboType.setWidth("100%"); vb.appendChild(hb); + hb = new Hbox(); + fCharset.setMold("select"); + fCharset.setRows(0); + fCharset.setTooltiptext(Msg.getMsg(Env.getCtx(), "Charset", false)); + hb.appendChild(fCharset); + vb.appendChild(hb); + hb = new Hbox(); bFile.setLabel(Msg.getMsg(Env.getCtx(), "FileImportFile")); bFile.setTooltiptext(Msg.getMsg(Env.getCtx(), "FileImportFileInfo")); @@ -158,13 +166,6 @@ public class FileImportAction implements EventListener hb.appendChild(bFile); vb.appendChild(hb); - hb = new Hbox(); - fCharset.setMold("select"); - fCharset.setRows(0); - fCharset.setTooltiptext(Msg.getMsg(Env.getCtx(), "Charset", false)); - hb.appendChild(fCharset); - vb.appendChild(hb); - vb.appendChild(confirmPanel); confirmPanel.addActionListener(this); } @@ -181,9 +182,20 @@ public class FileImportAction implements EventListener processUploadMedia(ue.getMedia()); } else if (event.getTarget().getId().equals(ConfirmPanel.A_CANCEL)) { winImportFile.onClose(); - } - else if (event.getTarget().getId().equals(ConfirmPanel.A_OK)) { - // TODO: Verify that file and charset are mandatory + } else if (event.getTarget() == fCharset) { + if (m_file_istream != null) { + m_file_istream.close(); + m_file_istream = null; + } + ListItem listitem = fCharset.getSelectedItem(); + if (listitem == null) + return; + Charset charset = (Charset)listitem.getValue(); + Executions.getCurrent().getDesktop().getWebApp().getConfiguration().setUploadCharset(charset.name()); + bFile.setLabel(Msg.getMsg(Env.getCtx(), "FileImportFile")); + } else if (event.getTarget().getId().equals(ConfirmPanel.A_OK)) { + if (m_file_istream == null || fCharset.getSelectedItem() == null) + return; importFile(); } } From 4eb7477046479b074e6ea78890a270a0bce9c27e Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Mon, 29 Oct 2012 22:29:35 -0500 Subject: [PATCH 03/22] IDEMPIERE-454 Easy import / Fix NPE - improve success message log --- .../src/org/adempiere/impexp/GridTabCSVImporter.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/org.adempiere.base/src/org/adempiere/impexp/GridTabCSVImporter.java b/org.adempiere.base/src/org/adempiere/impexp/GridTabCSVImporter.java index cc01a3a1a6..ef6370e51e 100644 --- a/org.adempiere.base/src/org/adempiere/impexp/GridTabCSVImporter.java +++ b/org.adempiere.base/src/org/adempiere/impexp/GridTabCSVImporter.java @@ -15,7 +15,6 @@ package org.adempiere.impexp; import java.io.File; -import java.io.FileWriter; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; @@ -37,6 +36,7 @@ import org.compiere.model.GridField; import org.compiere.model.GridTab; import org.compiere.model.MColumn; import org.compiere.model.MTable; +import org.compiere.model.PO; import org.compiere.tools.FileUtil; import org.compiere.util.CLogger; import org.compiere.util.DB; @@ -202,7 +202,7 @@ public class GridTabCSVImporter implements IGridTabImporter } if (!isLineError) { MColumn column = MColumn.get(Env.getCtx(), field.getAD_Column_ID()); - if (isForeign) { + if (isForeign && value != null) { String foreignTable = column.getReferenceTableName(); String idS = null; int id = -1; @@ -315,7 +315,9 @@ public class GridTabCSVImporter implements IGridTabImporter } if (! error) { if (gridTab.dataSave(false)) { - logMsg = Msg.getMsg(Env.getCtx(), "SuccessfullySaved", new Object[] {gridTab.getTableModel().getKeyID(gridTab.getCurrentRow())}); + PO po = gridTab.getTableModel().getPO(gridTab.getCurrentRow()); + logMsg = Msg.getMsg(Env.getCtx(), "SuccessfullySaved", + new Object[] {po != null ? po.toString() : gridTab.getTableModel().getKeyID(gridTab.getCurrentRow())}); } else { error = true; ValueNamePair ppE = CLogger.retrieveWarning(); From 4eed3a8640fd6aa80a5e8aae914afeb105d202df Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Tue, 30 Oct 2012 17:10:00 -0500 Subject: [PATCH 04/22] IDEMPIERE-455 Discover and fix FindBugs problems / Pattern: ODR_OPEN_DATABASE_RESOURCE --- .../src/org/compiere/model/MSequence.java | 16 +++++++++-- .../src/org/compiere/util/DB.java | 28 ++++++++++++++++--- .../src/org/compiere/db/DB_PostgreSQL.java | 2 ++ 3 files changed, 40 insertions(+), 6 deletions(-) diff --git a/org.adempiere.base/src/org/compiere/model/MSequence.java b/org.adempiere.base/src/org/compiere/model/MSequence.java index 1bbd5d0ac8..025caf31f8 100644 --- a/org.adempiere.base/src/org/compiere/model/MSequence.java +++ b/org.adempiere.base/src/org/compiere/model/MSequence.java @@ -127,6 +127,7 @@ public class MSequence extends X_AD_Sequence } Connection conn = null; + Statement timeoutStatement = null; PreparedStatement pstmt = null; ResultSet rs = null; for (int i = 0; i < 3; i++) @@ -145,7 +146,7 @@ public class MSequence extends X_AD_Sequence //postgresql use special syntax instead of the setQueryTimeout method if (DB.isPostgreSQL()) { - Statement timeoutStatement = conn.createStatement(); + timeoutStatement = conn.createStatement(); timeoutStatement.execute("SET LOCAL statement_timeout TO " + ( QUERY_TIME_OUT * 1000 )); } else if (DB.getDatabase().isQueryTimeoutSupported()) @@ -264,6 +265,12 @@ public class MSequence extends X_AD_Sequence DB.close(rs, pstmt); pstmt = null; rs = null; + if (timeoutStatement != null){ + try { + timeoutStatement.close(); + }catch(Exception e){} + timeoutStatement = null; + } if (conn != null) { try { @@ -378,6 +385,7 @@ public class MSequence extends X_AD_Sequence int docOrg_ID = 0; int next = -1; + Statement timeoutStatement = null; PreparedStatement pstmt = null; ResultSet rs = null; try @@ -430,7 +438,7 @@ public class MSequence extends X_AD_Sequence //postgresql use special syntax instead of the setQueryTimeout method if (DB.isPostgreSQL()) { - Statement timeoutStatement = conn.createStatement(); + timeoutStatement = conn.createStatement(); timeoutStatement.execute("SET LOCAL statement_timeout TO " + ( QUERY_TIME_OUT * 1000 )); } else if (DB.getDatabase().isQueryTimeoutSupported()) @@ -511,6 +519,10 @@ public class MSequence extends X_AD_Sequence // Finish try { + if (timeoutStatement != null) { + timeoutStatement.close(); + timeoutStatement = null; + } if (trx == null && conn != null) { conn.close(); conn = null; diff --git a/org.adempiere.base/src/org/compiere/util/DB.java b/org.adempiere.base/src/org/compiere/util/DB.java index 8f0ec3ada1..c802d3d25d 100644 --- a/org.adempiere.base/src/org/compiere/util/DB.java +++ b/org.adempiere.base/src/org/compiere/util/DB.java @@ -1101,6 +1101,7 @@ public final class DB { if (DB.isPostgreSQL()) { + Statement timeoutStatement = null; try { Connection conn = cs.getConnection(); @@ -1119,16 +1120,26 @@ public final class DB } finally { + if (rs != null) + rs.getStatement().close(); DB.close(rs); } } - Statement timeoutStatement = conn.createStatement(); + timeoutStatement = conn.createStatement(); timeoutStatement.execute("SET LOCAL statement_timeout TO " + ( timeOut * 1000 )); if (log.isLoggable(Level.FINEST)) { log.finest("Set statement timeout to " + timeOut); } } catch (SQLException e) {} + finally{ + if (timeoutStatement != null) { + try { + timeoutStatement.close(); + } catch (Exception e) {} + timeoutStatement = null; + } + } } else { @@ -1150,7 +1161,8 @@ public final class DB { if (DB.isPostgreSQL() && timeOut > 0) { - try { + Statement timeoutStatement = null; + try { if (autoCommit) { cs.getConnection().setAutoCommit(true); @@ -1159,7 +1171,7 @@ public final class DB { if (currentTimeout > 0) { - Statement timeoutStatement = cs.getConnection().createStatement(); + timeoutStatement = cs.getConnection().createStatement(); timeoutStatement.execute("SET LOCAL statement_timeout TO " + ( currentTimeout * 1000 )); if (log.isLoggable(Level.FINEST)) { @@ -1168,7 +1180,7 @@ public final class DB } else { - Statement timeoutStatement = cs.getConnection().createStatement(); + timeoutStatement = cs.getConnection().createStatement(); timeoutStatement.execute("SET LOCAL statement_timeout TO Default"); if (log.isLoggable(Level.FINEST)) { @@ -1179,6 +1191,14 @@ public final class DB } } catch (SQLException e) { } + finally{ + if (timeoutStatement != null) { + try { + timeoutStatement.close(); + } catch (Exception e) {} + timeoutStatement = null; + } + } } DB.close(cs); } diff --git a/org.compiere.db.postgresql.provider/src/org/compiere/db/DB_PostgreSQL.java b/org.compiere.db.postgresql.provider/src/org/compiere/db/DB_PostgreSQL.java index 46853b8e4d..2488bbe053 100755 --- a/org.compiere.db.postgresql.provider/src/org/compiere/db/DB_PostgreSQL.java +++ b/org.compiere.db.postgresql.provider/src/org/compiere/db/DB_PostgreSQL.java @@ -963,6 +963,8 @@ public class DB_PostgreSQL implements AdempiereDatabase } finally { + if (rs != null) + rs.getStatement().close(); DB.close(rs); } From a8a3be8b9665adbcc73a8290a6d1ac4a90e06711 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Tue, 30 Oct 2012 21:19:34 -0500 Subject: [PATCH 05/22] IDEMPIERE-234 Configurable Toolbar / fix oracle script --- migration/360lts-release/oracle/948_IDEMPIERE-234.sql | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/migration/360lts-release/oracle/948_IDEMPIERE-234.sql b/migration/360lts-release/oracle/948_IDEMPIERE-234.sql index 5c855f3093..3014ce589e 100644 --- a/migration/360lts-release/oracle/948_IDEMPIERE-234.sql +++ b/migration/360lts-release/oracle/948_IDEMPIERE-234.sql @@ -1,3 +1,6 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + -- Oct 23, 2012 5:37:00 PM MYT -- IDEMPIERE-234 Configurable Toolbar UPDATE AD_Field SET ColumnSpan=2,Updated=TO_DATE('2012-10-23 17:37:00','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=200068 @@ -200,7 +203,7 @@ UPDATE AD_Field SET SeqNo=100,IsDisplayed='Y' WHERE AD_Field_ID=200059 UPDATE AD_Field SET SeqNo=110,IsDisplayed='Y' WHERE AD_Field_ID=200053 ; -ALTER TABLE AD_ToolBarButtonRestrict MODIFY Classname NULL +ALTER TABLE AD_ToolBarButton MODIFY Classname NULL ; UPDATE AD_ToolbarButton SET Classname=NULL WHERE Classname IS NOT NULL @@ -323,7 +326,10 @@ UPDATE AD_Field SET SeqNo=0,IsDisplayed='N' WHERE AD_Field_ID=200052 -- Oct 24, 2012 4:45:48 PM MYT -- IDEMPIERE-234 Configurable Toolbar -UPDATE AD_Field SET SeqNo=0,IsDisplayed='N' WHERE AD_Field_ID=200058, 2012 4:45:48 PM MYT +UPDATE AD_Field SET SeqNo=0,IsDisplayed='N' WHERE AD_Field_ID=200058 +; + +-- Oct 24, 2012 4:45:48 PM MYT -- IDEMPIERE-234 Configurable Toolbar UPDATE AD_Field SET SeqNo=0,IsDisplayed='N' WHERE AD_Field_ID=200059 ; From a0324420be5709edfd44aa6fce599609fcaeb9fd Mon Sep 17 00:00:00 2001 From: Juliana Corredor Date: Tue, 30 Oct 2012 21:23:46 -0500 Subject: [PATCH 06/22] IDEMPIERE-379 Reporting wizard for end users --- .../oracle/923_IDEMPIERE_379.sql | 145 ++++ .../postgresql/923_IDEMPIERE_379.sql | 146 ++++ .../src/org/compiere/model/SystemIDs.java | 2 + .../src/org/compiere/print/MPrintFormat.java | 45 +- .../adempiere/webui/adwindow/ADSortTab.java | 2 +- .../webui/apps/form/WReportCustomization.java | 631 ++++++++++++++++++ .../webui/panel/WRC1DisplayFieldsPanel.java | 193 ++++++ .../webui/panel/WRC2FieldOrderPanel.java | 423 ++++++++++++ .../webui/panel/WRC3SortCriteriaPanel.java | 595 +++++++++++++++++ .../panel/WRC4GroupingCriteriaPanel.java | 156 +++++ .../webui/panel/WRC5SummaryFieldsPanel.java | 215 ++++++ .../adempiere/webui/panel/WRCTabPanel.java | 48 ++ .../webui/window/ZkReportViewer.java | 34 +- org.adempiere.ui.zk/images/Wizard24.png | Bin 0 -> 1111 bytes 14 files changed, 2629 insertions(+), 6 deletions(-) create mode 100644 migration/360lts-release/oracle/923_IDEMPIERE_379.sql create mode 100644 migration/360lts-release/postgresql/923_IDEMPIERE_379.sql create mode 100644 org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/apps/form/WReportCustomization.java create mode 100644 org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/WRC1DisplayFieldsPanel.java create mode 100644 org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/WRC2FieldOrderPanel.java create mode 100644 org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/WRC3SortCriteriaPanel.java create mode 100644 org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/WRC4GroupingCriteriaPanel.java create mode 100644 org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/WRC5SummaryFieldsPanel.java create mode 100644 org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/WRCTabPanel.java create mode 100644 org.adempiere.ui.zk/images/Wizard24.png diff --git a/migration/360lts-release/oracle/923_IDEMPIERE_379.sql b/migration/360lts-release/oracle/923_IDEMPIERE_379.sql new file mode 100644 index 0000000000..3c71740d34 --- /dev/null +++ b/migration/360lts-release/oracle/923_IDEMPIERE_379.sql @@ -0,0 +1,145 @@ +-- Oct 2, 2012 12:23:41 PM COT +-- IDEMPIERE-379 +INSERT INTO AD_Form (AccessLevel,Classname,AD_Form_ID,IsBetaFunctionality,EntityType,AD_Form_UU,Description,Name,AD_Org_ID,UpdatedBy,CreatedBy,Updated,Created,AD_Client_ID,IsActive) VALUES ('3','org.adempiere.webui.apps.form.WReportCustomization',200002,'N','D','df3440d4-deb8-4e09-8426-4e16c426a6d4','Report Wizard','Report Wizard',0,100,100,TO_DATE('2012-10-02 12:23:40','YYYY-MM-DD HH24:MI:SS'),TO_DATE('2012-10-02 12:23:40','YYYY-MM-DD HH24:MI:SS'),0,'Y') +; + +-- Oct 2, 2012 12:23:41 PM COT +-- IDEMPIERE-379 +INSERT INTO AD_Form_Trl (AD_Language,AD_Form_ID, Help,Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Form_Trl_UU ) SELECT l.AD_Language,t.AD_Form_ID, t.Help,t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Form t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Form_ID=200002 AND NOT EXISTS (SELECT * FROM AD_Form_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Form_ID=t.AD_Form_ID) +; + +-- Oct 29, 2012 11:41:16 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message (MsgType,MsgText,AD_Message_ID,EntityType,AD_Message_UU,Value,IsActive,Updated,CreatedBy,UpdatedBy,AD_Client_ID,AD_Org_ID,Created) VALUES ('I','Wizard Reports',200090,'D','63eb4702-952c-45b0-a1d4-f1f24da0ab8f','PrintWizard','Y',TO_DATE('2012-10-29 11:41:14','YYYY-MM-DD HH24:MI:SS'),100,100,0,0,TO_DATE('2012-10-29 11:41:14','YYYY-MM-DD HH24:MI:SS')) +; + +-- Oct 29, 2012 11:41:16 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Message_Trl_UU ) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=200090 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) +; + +-- Oct 29, 2012 11:43:10 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message (MsgType,MsgText,AD_Message_ID,EntityType,AD_Message_UU,Value,IsActive,Updated,CreatedBy,UpdatedBy,AD_Client_ID,AD_Org_ID,Created) VALUES ('I','DisplayFields of the Report',200091,'D','41e9c752-85f6-4b33-aa65-6eb12485aff4','DisplayFields','Y',TO_DATE('2012-10-29 11:43:09','YYYY-MM-DD HH24:MI:SS'),100,100,0,0,TO_DATE('2012-10-29 11:43:09','YYYY-MM-DD HH24:MI:SS')) +; + +-- Oct 29, 2012 11:43:10 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Message_Trl_UU ) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=200091 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) +; + +-- Oct 29, 2012 11:43:35 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message (MsgType,MsgText,AD_Message_ID,EntityType,AD_Message_UU,Value,IsActive,Updated,CreatedBy,UpdatedBy,AD_Client_ID,AD_Org_ID,Created) VALUES ('I','Order Fields',200092,'D','ae9db55f-5598-4ca5-a27e-29312287676e','FieldOrder','Y',TO_DATE('2012-10-29 11:43:35','YYYY-MM-DD HH24:MI:SS'),100,100,0,0,TO_DATE('2012-10-29 11:43:35','YYYY-MM-DD HH24:MI:SS')) +; + +-- Oct 29, 2012 11:43:35 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Message_Trl_UU ) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=200092 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) +; + +-- Oct 29, 2012 11:43:55 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message (MsgType,MsgText,AD_Message_ID,EntityType,AD_Message_UU,Value,IsActive,Updated,CreatedBy,UpdatedBy,AD_Client_ID,AD_Org_ID,Created) VALUES ('I','Sort Criteria',200093,'D','065b283c-eff9-41c2-836d-545357084bf1','SortCriteria','Y',TO_DATE('2012-10-29 11:43:55','YYYY-MM-DD HH24:MI:SS'),100,100,0,0,TO_DATE('2012-10-29 11:43:55','YYYY-MM-DD HH24:MI:SS')) +; + +-- Oct 29, 2012 11:43:55 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Message_Trl_UU ) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=200093 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) +; + +-- Oct 29, 2012 11:44:14 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message (MsgType,MsgText,AD_Message_ID,EntityType,AD_Message_UU,Value,IsActive,Updated,CreatedBy,UpdatedBy,AD_Client_ID,AD_Org_ID,Created) VALUES ('I','Grouping Criteria',200094,'D','05606939-e721-47cc-8ecf-669545b13927','GroupingCriteria','Y',TO_DATE('2012-10-29 11:44:13','YYYY-MM-DD HH24:MI:SS'),100,100,0,0,TO_DATE('2012-10-29 11:44:13','YYYY-MM-DD HH24:MI:SS')) +; + +-- Oct 29, 2012 11:44:14 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Message_Trl_UU ) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=200094 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) +; + +-- Oct 29, 2012 11:44:32 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message (MsgType,MsgText,AD_Message_ID,EntityType,AD_Message_UU,Value,IsActive,Updated,CreatedBy,UpdatedBy,AD_Client_ID,AD_Org_ID,Created) VALUES ('I','Summary Fields',200095,'D','24658bb4-e167-422e-8be8-d8abf34fd2bd','SummaryFields','Y',TO_DATE('2012-10-29 11:44:31','YYYY-MM-DD HH24:MI:SS'),100,100,0,0,TO_DATE('2012-10-29 11:44:31','YYYY-MM-DD HH24:MI:SS')) +; + +-- Oct 29, 2012 11:44:32 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Message_Trl_UU ) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=200095 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) +; + +-- Oct 29, 2012 11:46:22 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message (MsgType,MsgText,AD_Message_ID,EntityType,AD_Message_UU,Value,IsActive,Updated,CreatedBy,UpdatedBy,AD_Client_ID,AD_Org_ID,Created) VALUES ('I','New Print Format',200096,'D','f2fef925-de44-43f6-ae53-63b3db453056','CreatePrintFormat','Y',TO_DATE('2012-10-29 11:46:21','YYYY-MM-DD HH24:MI:SS'),100,100,0,0,TO_DATE('2012-10-29 11:46:21','YYYY-MM-DD HH24:MI:SS')) +; + +-- Oct 29, 2012 11:46:22 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Message_Trl_UU ) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=200096 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) +; + + +-- Oct 29, 2012 11:48:28 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message (MsgType,MsgText,AD_Message_ID,EntityType,AD_Message_UU,Value,IsActive,Updated,CreatedBy,UpdatedBy,AD_Client_ID,AD_Org_ID,Created) VALUES ('I','Un select all fields',200099,'D','f3ad42fd-b1aa-494e-ad24-22e96fb15733','DeSelectAll','Y',TO_DATE('2012-10-29 11:48:27','YYYY-MM-DD HH24:MI:SS'),100,100,0,0,TO_DATE('2012-10-29 11:48:27','YYYY-MM-DD HH24:MI:SS')) +; + +-- Oct 29, 2012 11:48:28 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Message_Trl_UU ) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=200099 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) +; + +-- Oct 29, 2012 11:56:10 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_ToolBarButton (Name,ComponentName,IsCustomization,KeyStroke_KeyCode,KeyStroke_Modifiers,AD_Client_ID,AD_Org_ID,Created,CreatedBy,AD_ToolBarButton_ID,Updated,UpdatedBy,IsActive,AD_ToolBarButton_UU,Action) VALUES ('Zk-ReportWizard','org.idempiere.ui.report','N',0,0,0,0,TO_DATE('2012-10-29 11:56:09','YYYY-MM-DD HH24:MI:SS'),100,200066,TO_DATE('2012-10-29 11:56:09','YYYY-MM-DD HH24:MI:SS'),100,'Y','6009b32b-e28e-4c13-87fc-4df00c5730c9','R') +; + +-- Oct 30, 2012 10:00:40 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +UPDATE AD_ToolBarButton SET Name='ReportWizard', ComponentName='Wizard',Updated=TO_DATE('2012-10-30 10:00:40','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_ToolBarButton_ID=200066 +; + +-- Oct 30, 2012 10:08:19 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +UPDATE AD_Message SET MsgText='Copy Print Format',Updated=TO_DATE('2012-10-30 10:08:19','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Message_ID=200096 +; + +-- Oct 30, 2012 10:08:19 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +UPDATE AD_Message_Trl SET IsTranslated='N' WHERE AD_Message_ID=200096 +; + +-- Oct 30, 2012 10:08:56 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +UPDATE AD_Message SET MsgText='Deselect All',Updated=TO_DATE('2012-10-30 10:08:56','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Message_ID=200099 +; + +-- Oct 30, 2012 10:08:56 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +UPDATE AD_Message_Trl SET IsTranslated='N' WHERE AD_Message_ID=200099 +; + +-- Oct 30, 2012 10:11:45 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +UPDATE AD_Message SET MsgText='Fields Displayed',Updated=TO_DATE('2012-10-30 10:11:45','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Message_ID=200091 +; + +-- Oct 30, 2012 10:11:45 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +UPDATE AD_Message_Trl SET IsTranslated='N' WHERE AD_Message_ID=200091 +; + +-- Oct 30, 2012 5:34:18 PM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message (MsgType,MsgText,AD_Message_ID,EntityType,AD_Message_UU,Value,IsActive,Updated,CreatedBy,UpdatedBy,AD_Client_ID,AD_Org_ID,Created) VALUES ('I','Run Report',200100,'D','5638ff96-ff60-49f0-9871-004f7fa2420e','Run','Y',TO_DATE('2012-10-30 17:34:15','YYYY-MM-DD HH24:MI:SS'),100,100,0,0,TO_DATE('2012-10-30 17:34:15','YYYY-MM-DD HH24:MI:SS')) +; + +-- Oct 30, 2012 5:34:18 PM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Message_Trl_UU ) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=200100 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) +; + + +SELECT register_migration_script('923_IDEMPIERE_379.sql') FROM dual +; + diff --git a/migration/360lts-release/postgresql/923_IDEMPIERE_379.sql b/migration/360lts-release/postgresql/923_IDEMPIERE_379.sql new file mode 100644 index 0000000000..bf31a65b00 --- /dev/null +++ b/migration/360lts-release/postgresql/923_IDEMPIERE_379.sql @@ -0,0 +1,146 @@ +-- Oct 2, 2012 12:23:41 PM COT +-- IDEMPIERE-379 +INSERT INTO AD_Form (AccessLevel,Classname,AD_Form_ID,IsBetaFunctionality,EntityType,AD_Form_UU,Description,Name,AD_Org_ID,UpdatedBy,CreatedBy,Updated,Created,AD_Client_ID,IsActive) VALUES ('3','org.adempiere.webui.apps.form.WReportCustomization',200002,'N','D','df3440d4-deb8-4e09-8426-4e16c426a6d4','Report Wizard','Report Wizard',0,100,100,TO_TIMESTAMP('2012-10-02 12:23:40','YYYY-MM-DD HH24:MI:SS'),TO_TIMESTAMP('2012-10-02 12:23:40','YYYY-MM-DD HH24:MI:SS'),0,'Y') +; + +-- Oct 2, 2012 12:23:41 PM COT +-- IDEMPIERE-379 +INSERT INTO AD_Form_Trl (AD_Language,AD_Form_ID, Help,Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Form_Trl_UU ) SELECT l.AD_Language,t.AD_Form_ID, t.Help,t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Form t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Form_ID=200002 AND NOT EXISTS (SELECT * FROM AD_Form_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Form_ID=t.AD_Form_ID) +; + +-- Oct 29, 2012 11:41:16 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message (MsgType,MsgText,AD_Message_ID,EntityType,AD_Message_UU,Value,IsActive,Updated,CreatedBy,UpdatedBy,AD_Client_ID,AD_Org_ID,Created) VALUES ('I','Wizard Reports',200090,'D','63eb4702-952c-45b0-a1d4-f1f24da0ab8f','PrintWizard','Y',TO_TIMESTAMP('2012-10-29 11:41:14','YYYY-MM-DD HH24:MI:SS'),100,100,0,0,TO_TIMESTAMP('2012-10-29 11:41:14','YYYY-MM-DD HH24:MI:SS')) +; + +-- Oct 29, 2012 11:41:16 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Message_Trl_UU ) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=200090 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) +; + +-- Oct 29, 2012 11:43:10 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message (MsgType,MsgText,AD_Message_ID,EntityType,AD_Message_UU,Value,IsActive,Updated,CreatedBy,UpdatedBy,AD_Client_ID,AD_Org_ID,Created) VALUES ('I','DisplayFields of the Report',200091,'D','41e9c752-85f6-4b33-aa65-6eb12485aff4','DisplayFields','Y',TO_TIMESTAMP('2012-10-29 11:43:09','YYYY-MM-DD HH24:MI:SS'),100,100,0,0,TO_TIMESTAMP('2012-10-29 11:43:09','YYYY-MM-DD HH24:MI:SS')) +; + +-- Oct 29, 2012 11:43:10 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Message_Trl_UU ) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=200091 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) +; + +-- Oct 29, 2012 11:43:35 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message (MsgType,MsgText,AD_Message_ID,EntityType,AD_Message_UU,Value,IsActive,Updated,CreatedBy,UpdatedBy,AD_Client_ID,AD_Org_ID,Created) VALUES ('I','Order Fields',200092,'D','ae9db55f-5598-4ca5-a27e-29312287676e','FieldOrder','Y',TO_TIMESTAMP('2012-10-29 11:43:35','YYYY-MM-DD HH24:MI:SS'),100,100,0,0,TO_TIMESTAMP('2012-10-29 11:43:35','YYYY-MM-DD HH24:MI:SS')) +; + +-- Oct 29, 2012 11:43:35 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Message_Trl_UU ) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=200092 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) +; + +-- Oct 29, 2012 11:43:55 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message (MsgType,MsgText,AD_Message_ID,EntityType,AD_Message_UU,Value,IsActive,Updated,CreatedBy,UpdatedBy,AD_Client_ID,AD_Org_ID,Created) VALUES ('I','Sort Criteria',200093,'D','065b283c-eff9-41c2-836d-545357084bf1','SortCriteria','Y',TO_TIMESTAMP('2012-10-29 11:43:55','YYYY-MM-DD HH24:MI:SS'),100,100,0,0,TO_TIMESTAMP('2012-10-29 11:43:55','YYYY-MM-DD HH24:MI:SS')) +; + +-- Oct 29, 2012 11:43:55 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Message_Trl_UU ) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=200093 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) +; + +-- Oct 29, 2012 11:44:14 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message (MsgType,MsgText,AD_Message_ID,EntityType,AD_Message_UU,Value,IsActive,Updated,CreatedBy,UpdatedBy,AD_Client_ID,AD_Org_ID,Created) VALUES ('I','Grouping Criteria',200094,'D','05606939-e721-47cc-8ecf-669545b13927','GroupingCriteria','Y',TO_TIMESTAMP('2012-10-29 11:44:13','YYYY-MM-DD HH24:MI:SS'),100,100,0,0,TO_TIMESTAMP('2012-10-29 11:44:13','YYYY-MM-DD HH24:MI:SS')) +; + +-- Oct 29, 2012 11:44:14 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Message_Trl_UU ) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=200094 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) +; + +-- Oct 29, 2012 11:44:32 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message (MsgType,MsgText,AD_Message_ID,EntityType,AD_Message_UU,Value,IsActive,Updated,CreatedBy,UpdatedBy,AD_Client_ID,AD_Org_ID,Created) VALUES ('I','Summary Fields',200095,'D','24658bb4-e167-422e-8be8-d8abf34fd2bd','SummaryFields','Y',TO_TIMESTAMP('2012-10-29 11:44:31','YYYY-MM-DD HH24:MI:SS'),100,100,0,0,TO_TIMESTAMP('2012-10-29 11:44:31','YYYY-MM-DD HH24:MI:SS')) +; + +-- Oct 29, 2012 11:44:32 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Message_Trl_UU ) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=200095 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) +; + +-- Oct 29, 2012 11:46:22 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message (MsgType,MsgText,AD_Message_ID,EntityType,AD_Message_UU,Value,IsActive,Updated,CreatedBy,UpdatedBy,AD_Client_ID,AD_Org_ID,Created) VALUES ('I','New Print Format',200096,'D','f2fef925-de44-43f6-ae53-63b3db453056','CreatePrintFormat','Y',TO_TIMESTAMP('2012-10-29 11:46:21','YYYY-MM-DD HH24:MI:SS'),100,100,0,0,TO_TIMESTAMP('2012-10-29 11:46:21','YYYY-MM-DD HH24:MI:SS')) +; + +-- Oct 29, 2012 11:46:22 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Message_Trl_UU ) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=200096 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) +; + + +-- Oct 29, 2012 11:48:28 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message (MsgType,MsgText,AD_Message_ID,EntityType,AD_Message_UU,Value,IsActive,Updated,CreatedBy,UpdatedBy,AD_Client_ID,AD_Org_ID,Created) VALUES ('I','Un select all fields',200099,'D','f3ad42fd-b1aa-494e-ad24-22e96fb15733','DeSelectAll','Y',TO_TIMESTAMP('2012-10-29 11:48:27','YYYY-MM-DD HH24:MI:SS'),100,100,0,0,TO_TIMESTAMP('2012-10-29 11:48:27','YYYY-MM-DD HH24:MI:SS')) +; + +-- Oct 29, 2012 11:48:28 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Message_Trl_UU ) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=200099 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) +; + +-- Oct 29, 2012 11:56:10 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_ToolBarButton (Name,ComponentName,IsCustomization,KeyStroke_KeyCode,KeyStroke_Modifiers,AD_Client_ID,AD_Org_ID,Created,CreatedBy,AD_ToolBarButton_ID,Updated,UpdatedBy,IsActive,AD_ToolBarButton_UU,"action") VALUES ('Zk-ReportWizard','org.idempiere.ui.report','N',0,0,0,0,TO_TIMESTAMP('2012-10-29 11:56:09','YYYY-MM-DD HH24:MI:SS'),100,200066,TO_TIMESTAMP('2012-10-29 11:56:09','YYYY-MM-DD HH24:MI:SS'),100,'Y','6009b32b-e28e-4c13-87fc-4df00c5730c9','R') +; + + +-- Oct 30, 2012 10:00:40 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +UPDATE AD_ToolBarButton SET Name='ReportWizard', ComponentName='Wizard',Updated=TO_TIMESTAMP('2012-10-30 10:00:40','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_ToolBarButton_ID=200066 +; + +-- Oct 30, 2012 10:08:19 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +UPDATE AD_Message SET MsgText='Copy Print Format',Updated=TO_TIMESTAMP('2012-10-30 10:08:19','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Message_ID=200096 +; + +-- Oct 30, 2012 10:08:19 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +UPDATE AD_Message_Trl SET IsTranslated='N' WHERE AD_Message_ID=200096 +; + +-- Oct 30, 2012 10:08:56 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +UPDATE AD_Message SET MsgText='Deselect All',Updated=TO_TIMESTAMP('2012-10-30 10:08:56','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Message_ID=200099 +; + +-- Oct 30, 2012 10:08:56 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +UPDATE AD_Message_Trl SET IsTranslated='N' WHERE AD_Message_ID=200099 +; + +-- Oct 30, 2012 10:11:45 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +UPDATE AD_Message SET MsgText='Fields Displayed',Updated=TO_TIMESTAMP('2012-10-30 10:11:45','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Message_ID=200091 +; + +-- Oct 30, 2012 10:11:45 AM COT +-- IDEMPIERE-379 Reporting wizard for end users +UPDATE AD_Message_Trl SET IsTranslated='N' WHERE AD_Message_ID=200091 +; + + +-- Oct 30, 2012 5:34:18 PM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message (MsgType,MsgText,AD_Message_ID,EntityType,AD_Message_UU,Value,IsActive,Updated,CreatedBy,UpdatedBy,AD_Client_ID,AD_Org_ID,Created) VALUES ('I','Run Report',200100,'D','5638ff96-ff60-49f0-9871-004f7fa2420e','Run','Y',TO_TIMESTAMP('2012-10-30 17:34:15','YYYY-MM-DD HH24:MI:SS'),100,100,0,0,TO_TIMESTAMP('2012-10-30 17:34:15','YYYY-MM-DD HH24:MI:SS')) +; + +-- Oct 30, 2012 5:34:18 PM COT +-- IDEMPIERE-379 Reporting wizard for end users +INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Message_Trl_UU ) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=200100 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) +; + +SELECT register_migration_script('923_IDEMPIERE_379.sql') FROM dual +; + diff --git a/org.adempiere.base/src/org/compiere/model/SystemIDs.java b/org.adempiere.base/src/org/compiere/model/SystemIDs.java index 6c2207bb4b..02cff20255 100644 --- a/org.adempiere.base/src/org/compiere/model/SystemIDs.java +++ b/org.adempiere.base/src/org/compiere/model/SystemIDs.java @@ -153,5 +153,7 @@ public class SystemIDs public final static int SCHEDULE_10_MINUTES = 200002; public final static int SCHEDULE_15_MINUTES = 200003; + + public final static int WIZARD_REPORT_FORM=200002; } diff --git a/org.adempiere.base/src/org/compiere/print/MPrintFormat.java b/org.adempiere.base/src/org/compiere/print/MPrintFormat.java index 553ef95208..68956a5776 100644 --- a/org.adempiere.base/src/org/compiere/print/MPrintFormat.java +++ b/org.adempiere.base/src/org/compiere/print/MPrintFormat.java @@ -36,6 +36,7 @@ import org.compiere.model.GridTab; import org.compiere.model.GridTable; import org.compiere.model.MQuery; import org.compiere.model.MRole; +import org.compiere.model.Query; import org.compiere.model.X_AD_PrintFormat; import org.compiere.util.CCache; import org.compiere.util.CLogger; @@ -56,9 +57,9 @@ import org.compiere.util.Util; public class MPrintFormat extends X_AD_PrintFormat { /** - * + * */ - private static final long serialVersionUID = 3626220385155526700L; + private static final long serialVersionUID = 1246145881920021984L; /** * Public Constructor. @@ -231,7 +232,43 @@ public class MPrintFormat extends X_AD_PrintFormat } // getItems /** - * Get active Items + * Get All Items + * @return items + */ + public MPrintFormatItem[] getAllItems() { + return getAllItems("SeqNo"); + } + + /** + * Get All Items + * @param orderBy + * @return items + */ + public MPrintFormatItem[] getAllItems(String orderBy) + { + String whereClause = "AD_PrintFormatItem.AD_PrintFormat_ID=? " + // Display restrictions - Passwords, etc. + + " AND NOT EXISTS (SELECT * FROM AD_Field f " + + "WHERE AD_PrintFormatItem.AD_Column_ID=f.AD_Column_ID" + + " AND (f.IsEncrypted='Y' OR f.ObscureType IS NOT NULL))"; + List list = new Query(getCtx(), MPrintFormatItem.Table_Name, whereClause, get_TrxName()) + .setParameters(get_ID()) + .setOnlyActiveRecords(true) + .setOrderBy(orderBy) + .list(); + + MRole role = MRole.getDefault(getCtx(), false); + for (MPrintFormatItem pfi : list) { + if (! role.isColumnAccess(getAD_Table_ID(), pfi.getAD_Column_ID(), true)) + list.remove(pfi); + } + MPrintFormatItem[] retValue = new MPrintFormatItem[list.size()]; + list.toArray(retValue); + return retValue; + } // getAllItems + + /** + * Get Items Not in A Print Format * @return items */ private MPrintFormatItem[] getItemsNotIn(int AD_PrintFormat_ID) @@ -273,7 +310,7 @@ public class MPrintFormat extends X_AD_PrintFormat MPrintFormatItem[] retValue = new MPrintFormatItem[list.size()]; list.toArray(retValue); return retValue; - } // getItems + } // getItemsNotIn /** * Get Item Count diff --git a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/adwindow/ADSortTab.java b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/adwindow/ADSortTab.java index 14348e73b1..4d6e5b45ab 100644 --- a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/adwindow/ADSortTab.java +++ b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/adwindow/ADSortTab.java @@ -704,7 +704,7 @@ public class ADSortTab extends Panel implements IADTabpanel * List Item * @author Teo Sarca */ - private class ListElement extends NamePair { + public class ListElement extends NamePair { /** * */ diff --git a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/apps/form/WReportCustomization.java b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/apps/form/WReportCustomization.java new file mode 100644 index 0000000000..7505a85fb3 --- /dev/null +++ b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/apps/form/WReportCustomization.java @@ -0,0 +1,631 @@ +/****************************************************************************** + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 2012 Trek Global * + * This program is free software; you can redistribute it and/or modify it * + * under the terms version 2 of the GNU General Public License as published * + * by the Free Software Foundation. This program is distributed in the hope * + * that it will be useful, but WITHOUT ANY WARRANTY; without even the implied * + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * + * See the GNU General Public License for more details. * + * You should have received a copy of the GNU General Public License along * + * with this program; if not, write to the Free Software Foundation, Inc., * + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * + *****************************************************************************/ +package org.adempiere.webui.apps.form; + +import java.io.ByteArrayOutputStream; +import java.io.File; +import java.io.StringWriter; +import java.util.Properties; +import java.util.logging.Level; + +import org.adempiere.webui.apps.AEnv; +import org.adempiere.webui.apps.WReport; +import org.adempiere.webui.component.Button; +import org.adempiere.webui.component.ConfirmPanel; +import org.adempiere.webui.component.Grid; +import org.adempiere.webui.component.Label; +import org.adempiere.webui.component.ListItem; +import org.adempiere.webui.component.Listbox; +import org.adempiere.webui.component.Tab; +import org.adempiere.webui.component.Tabbox; +import org.adempiere.webui.component.Tabpanels; +import org.adempiere.webui.component.Tabs; +import org.adempiere.webui.component.ToolBarButton; +import org.adempiere.webui.component.Window; +import org.adempiere.webui.panel.ADForm; +import org.adempiere.webui.panel.CustomForm; +import org.adempiere.webui.panel.IFormController; +import org.adempiere.webui.panel.WRC1DisplayFieldsPanel; +import org.adempiere.webui.panel.WRC2FieldOrderPanel; +import org.adempiere.webui.panel.WRC3SortCriteriaPanel; +import org.adempiere.webui.panel.WRC4GroupingCriteriaPanel; +import org.adempiere.webui.panel.WRC5SummaryFieldsPanel; +import org.adempiere.webui.panel.WRCTabPanel; +import org.adempiere.webui.session.SessionManager; +import org.adempiere.webui.window.FDialog; +import org.adempiere.webui.window.ZkReportViewer; +import org.adempiere.webui.window.ZkReportViewerProvider; +import org.compiere.model.MRole; +import org.compiere.model.SystemIDs; +import org.compiere.print.MPrintFormat; +import org.compiere.print.MPrintFormatItem; +import org.compiere.print.ReportEngine; +import org.compiere.util.CLogger; +import org.compiere.util.Env; +import org.compiere.util.Msg; +import org.compiere.util.Util; +import org.zkoss.util.media.AMedia; +import org.zkoss.zk.ui.event.Event; +import org.zkoss.zk.ui.event.EventListener; +import org.zkoss.zk.ui.event.Events; +import org.zkoss.zul.Auxhead; +import org.zkoss.zul.Auxheader; +import org.zkoss.zul.Div; +import org.zkoss.zul.Filedownload; +import org.zkoss.zul.Foot; +import org.zkoss.zul.Footer; +import org.zkoss.zul.Hbox; +import org.zkoss.zul.Iframe; +import org.zkoss.zul.Separator; +import org.zkoss.zul.Toolbarbutton; +import org.zkoss.zul.Vbox; + + +public class WReportCustomization implements IFormController,EventListener { + + private CustomForm form = new CustomForm(); + + + /** Window No */ + private int m_WindowNo = -1; + + int curStep = 0; + /** Print Context */ + private Properties m_ctx; + + private boolean m_isCanExport; + + private ReportEngine m_reportEngine=null; + public MPrintFormatItem[] pfi ; + + private Auxheader headerPanel=new Auxheader(); + private Listbox comboReport = new Listbox(); + private Button newPrintFormat; + private Label selectAll; + private Label deselectAll; + private Label pipeSeparator; + private ToolBarButton bExport = new ToolBarButton(); + private Button bnext ; + private Button bcancel; + private Button bRun; + private ToolBarButton btnSave; + private Tabbox tabbox = new Tabbox(); + private Tabs tabs = new Tabs(); + private Tabpanels tabpanels = new Tabpanels(); + private Window winExportFile = null; + private Listbox cboType = new Listbox(); + private ConfirmPanel confirmPanel = new ConfirmPanel(true); + public static boolean IsChange=false; + public ZkReportViewer viewer; + MPrintFormat fm; + + + Tab tabdf1=new Tab(Msg.getMsg(Env.getCtx(), "DisplayFields")); + Tab tabfo2=new Tab(Msg.getMsg(Env.getCtx(), "FieldOrder")); + Tab tabsc3=new Tab(Msg.getMsg(Env.getCtx(), "SortCriteria")); + Tab tabgc4=new Tab(Msg.getMsg(Env.getCtx(), "GroupingCriteria")); + Tab tabsf5=new Tab(Msg.getMsg(Env.getCtx(), "SummaryFields")); + + WRC1DisplayFieldsPanel tpdf1 = new WRC1DisplayFieldsPanel(); + WRC2FieldOrderPanel tpfo2 =new WRC2FieldOrderPanel(); + WRC3SortCriteriaPanel tpsc3=new WRC3SortCriteriaPanel(); + WRC4GroupingCriteriaPanel tpgc4=new WRC4GroupingCriteriaPanel(); + WRC5SummaryFieldsPanel tpsf5=new WRC5SummaryFieldsPanel(); + + private Iframe iframe = new Iframe(); + + private int oldtabidx = 0; + + /** Logger */ + private static CLogger log = CLogger.getCLogger(WReportCustomization.class); + + /** + * Static Layout + * @throws Exception + */ + public WReportCustomization() { + super(); + + m_WindowNo = SessionManager.getAppDesktop().registerWindow(this); + + //dynInit(); + } + + + + /** + * Static Layout + * @throws Exception + */ + public void setReportEngine(ReportEngine re) { + + m_reportEngine = re; + m_isCanExport=MRole.getDefault().isCanExport(); + pfi= m_reportEngine.getPrintFormat().getAllItems("IsPrinted DESC, NULLIF(SeqNo,0), Name"); + try + { + m_ctx = m_reportEngine.getCtx(); + init(); + //dynInit(); + } + catch(Exception e) + { + log.log(Level.SEVERE, "", e); + FDialog.error(m_WindowNo, "LoadError", e.getLocalizedMessage()); + } + } + + public void setViewer(ZkReportViewer parent){ + viewer=parent; + } + + private void init() + { + + form.setStyle("width: 90%; height: 90%; position: absolute; border:none; padding:none; margin:none;"); + + headerPanel.setHeight("40px"); + headerPanel.setWidth("100%"); + + headerPanel.appendChild(new Separator("vertical")); + + comboReport.setMold("select"); + fm =m_reportEngine.getPrintFormat(); + comboReport.setTooltiptext(Msg.translate(Env.getCtx(), "AD_PrintFormat_ID")); + comboReport.appendItem(fm.getName(), fm.get_ID()); + headerPanel.appendChild(comboReport); + headerPanel.appendChild(new Separator("vertical")); + + newPrintFormat=new Button(); + newPrintFormat.setName("NewPrintFormat"); + newPrintFormat.setLabel(Msg.getMsg(Env.getCtx(), "CreatePrintFormat")); + newPrintFormat.addActionListener(this); + + headerPanel.appendChild(newPrintFormat); + Separator tor =new Separator("vertical"); + tor.setSpacing("500px"); + headerPanel.appendChild(tor); + + selectAll = new Label(Util.cleanAmp(Msg.getMsg(Env.getCtx(), "SelectAll"))); + deselectAll= new Label(Msg.getMsg(Env.getCtx(), "DeSelectAll")); + pipeSeparator = new Label("|"); + selectAll.setAttribute("name", "SelectAll"); + deselectAll.setAttribute("name", "DeselectAll"); + selectAll.addEventListener(Events.ON_CLICK, this); + deselectAll.addEventListener(Events.ON_CLICK, this); + headerPanel.appendChild(new Separator("vertical")); + headerPanel.appendChild(selectAll); + headerPanel.appendChild(new Separator("vertical")); + headerPanel.appendChild(pipeSeparator); + headerPanel.appendChild(new Separator("vertical")); + headerPanel.appendChild(deselectAll); + + headerPanel.appendChild(new Separator("vertical")); + + Auxhead head=new Auxhead(); + head.appendChild(headerPanel); + form.appendChild(head); + + headerPanel.appendChild(new Separator("horizontal")); + + tabbox.setWidth("100%"); + tabbox.setHeight("80%"); + tabfo2.addEventListener(Events.ON_CLICK, this); + tabsc3.addEventListener(Events.ON_CLICK, this); + tabgc4.addEventListener(Events.ON_CLICK, this); + tabsf5.addEventListener(Events.ON_CLICK, this); + tabs.appendChild(tabdf1); + tabs.appendChild(tabfo2); + tabs.appendChild(tabsc3); + tabs.appendChild(tabgc4); + tabs.appendChild(tabsf5); + + tpdf1.setMPrintFormat(fm); + tpdf1.setPrintFormatItems(pfi); + tpdf1.setWReportCustomization(this); + tpdf1.init(); + tabpanels.appendChild(tpdf1); + + tpfo2.setReportEngine(m_reportEngine); + tpfo2.setMPrintFormat(fm); + tpfo2.setPrintFormatItems(pfi); + tpfo2.setListColumns(); + tpfo2.init(); + tpfo2.refresh(); + tpfo2.setWReportCustomization(this); + tabpanels.appendChild(tpfo2); + + tpsc3.setMPrintFormat(fm); + tpsc3.setPrintFormatItems(pfi); + tpsc3.init(); + tpsc3.refresh(); + tpsc3.setWReportCustomization(this); + tabpanels.appendChild(tpsc3); + + tpgc4.setMPrintFormat(fm); + tpgc4.setPrintFormatItems(pfi); + tpgc4.init(); + tpgc4.refresh(); + tpgc4.setWReportCustomization(this); + tabpanels.appendChild(tpgc4); + + tpsf5.setMPrintFormat(fm); + tpsf5.setPrintFormatItems(pfi); + tpsf5.init(); + tpsf5.refresh(); + tpsf5.setWReportCustomization(this); + tabpanels.appendChild(tpsf5); + + tabbox.appendChild(tabs); + tabbox.appendChild(tabpanels); + tabbox.addEventListener(Events.ON_SELECT, this); + + form.appendChild(tabbox); + + Footer foot =new Footer(); + Foot f=new Foot(); + + Grid grid=new Grid(); + btnSave = new ToolBarButton(); + btnSave.setAttribute("name","btnSave"); + btnSave.setImage("/images/Save24.png"); + if(fm.getAD_Client_ID()== 0 || !IsChange) + { + btnSave.setVisible(false); + } + btnSave.addEventListener(Events.ON_CLICK, this); + + foot.appendChild(btnSave); + foot.appendChild(new Separator("vertical")); + + if (m_isCanExport) + { + bExport.setImage("/images/ExportX24.png"); + bExport.setAttribute("name","btnExport"); + bExport.setTooltiptext(Util.cleanAmp(Msg.getMsg(Env.getCtx(), "Export"))); + bExport.addEventListener(Events.ON_CLICK, this); + + foot.appendChild(bExport); + foot.appendChild(new Separator("vertical")); + + } + + bRun=new Button(); + bRun.setLabel(Msg.getMsg(Env.getCtx(), "Run")); + bRun.setName("bRun"); + bRun.addEventListener(Events.ON_CLICK, this); + + foot.appendChild(bRun); + Separator se =new Separator("vertical"); + se.setSpacing("800px"); + foot.appendChild(se); + bnext=new Button(); + bnext.setLabel(Msg.getMsg(Env.getCtx(), "NextPage")); + bnext.setName("Next"); + bnext.addEventListener(Events.ON_CLICK, this); + foot.appendChild(bnext); + foot.appendChild(new Separator("vertical")); + bcancel=new Button(); + bcancel.setName("Cancel"); + bcancel.addEventListener(Events.ON_CLICK, this); + bcancel.setLabel("Cancel"); + + foot.appendChild(bcancel); + + f.appendChild(foot); + grid.appendChild(f); + form.appendChild(grid); + form.setBorder("normal"); + + //renderStep(); + } + + + +/*private void renderStep(){ + switch (curStep){ + case 0: + renderSelectStep(); + } + } + private void renderSelectStep() + { + if(stepPanels[0]==null){ + stepPanels[0] = new SelectColumnpanel(m_reportEngine.getPrintFormat()); + centerPanel.appendChild(stepPanels[0]); + }else{ + stepPanels[0].setVisible(true); + } + }*/ + + + private void cleanUp() { + if (m_WindowNo >= 0) + { + SessionManager.getAppDesktop().unregisterWindow(m_WindowNo); + m_ctx = null; + m_WindowNo = -1; + } + } + + @Override + public void onEvent(Event event) throws Exception { + if (Events.ON_CLICK.equals(event.getName())) { + if (event.getTarget() instanceof ToolBarButton) { + ((WRCTabPanel) tabbox.getSelectedTabpanel()).updatePFI(); + ToolBarButton button = (ToolBarButton)event.getTarget(); + if ("btnSave".equals(button.getAttribute("name").toString())) { + onSave(); + } + if ("btnExport".equals(button.getAttribute("name").toString())) { + cmd_export(); + } + } else if (event.getTarget() instanceof Label) { + if (tabbox.getSelectedIndex() == 0) { + Label lb = (Label)event.getTarget(); + if ("SelectAll".equals(lb.getAttribute("name").toString())) { + tpdf1.updatePrinted(true); + } else if ("DeselectAll".equals(lb.getAttribute("name").toString())) { + tpdf1.updatePrinted(false); + } + } + } else if (event.getTarget() instanceof Button) { + Button bt = (Button)event.getTarget(); + if ("Next".equals(bt.getName())) { + ((WRCTabPanel) tabbox.getTabpanel(oldtabidx)).updatePFI(); + oldtabidx++; + if (oldtabidx > 4) + oldtabidx = 0; + ((WRCTabPanel) tabbox.getTabpanel(oldtabidx)).refresh(); + tabbox.setSelectedIndex(oldtabidx); + } + else{ + if("Cancel".equals(bt.getName())){ + close(); + } + if("NewPrintFormat".equals(bt.getName())){ + copyFormat(); + } + if("bRun".equals(bt.getName())){ + runReport(); + } + } + } + } else { + if (Events.ON_SELECT.equals(event.getName())) { + // Save previous tab and refresh the new + ((WRCTabPanel) tabbox.getTabpanel(oldtabidx)).updatePFI(); + int tabidx = tabbox.getSelectedIndex(); + ((WRCTabPanel) tabbox.getTabpanel(tabidx )).refresh(); + oldtabidx = tabidx; + } + } + + if (event.getTarget().getId().equals(ConfirmPanel.A_CANCEL)) + winExportFile.onClose(); + else if (event.getTarget().getId().equals(ConfirmPanel.A_OK)) + exportFile(); + + selectAll.setVisible(oldtabidx == 0); + deselectAll.setVisible(oldtabidx == 0); + pipeSeparator.setVisible(oldtabidx == 0); + } + + private void onSave() { + for (int i=0; i < pfi.length ;i++){ + pfi[i].saveEx(); + } + setIsChanged(false); + } + + @Override + public ADForm getForm() { + return form; + } + + /** + * Export + */ + private void cmd_export() + { + log.config(""); + if (!m_isCanExport) + { + FDialog.error(m_WindowNo, "AccessCannotExport","Export"); + return; + } + + if (winExportFile == null) + { + winExportFile = new Window(); + winExportFile.setTitle(Msg.getMsg(Env.getCtx(), "Export")); + winExportFile.setWidth("450px"); + winExportFile.setHeight("300px"); + winExportFile.setClosable(true); + winExportFile.setBorder("normal"); + winExportFile.setStyle("position:absolute"); + + cboType.setMold("select"); + + cboType.getItems().clear(); + cboType.appendItem("ps" + " - " + Msg.getMsg(Env.getCtx(), "FilePS"), "ps"); + cboType.appendItem("xml" + " - " + Msg.getMsg(Env.getCtx(), "FileXML"), "xml"); + ListItem li = cboType.appendItem("pdf" + " - " + Msg.getMsg(Env.getCtx(), "FilePDF"), "pdf"); + cboType.appendItem("html" + " - " + Msg.getMsg(Env.getCtx(), "FileHTML"), "html"); + cboType.appendItem("txt" + " - " + Msg.getMsg(Env.getCtx(), "FileTXT"), "txt"); + cboType.appendItem("ssv" + " - " + Msg.getMsg(Env.getCtx(), "FileSSV"), "ssv"); + cboType.appendItem("csv" + " - " + Msg.getMsg(Env.getCtx(), "FileCSV"), "csv"); + cboType.appendItem("xls" + " - " + Msg.getMsg(Env.getCtx(), "FileXLS"), "xls"); + cboType.setSelectedItem(li); + + Hbox hb = new Hbox(); + Div div = new Div(); + div.setAlign("right"); + div.appendChild(new Label(Msg.getMsg(Env.getCtx(), "FilesOfType"))); + hb.appendChild(div); + hb.appendChild(cboType); + cboType.setWidth("100%"); + hb.setVflex("1"); + hb.setStyle("margin-top: 10px"); + + Vbox vb = new Vbox(); + vb.setVflex("1"); + vb.setWidth("100%"); + winExportFile.appendChild(vb); + vb.appendChild(hb); + vb.appendChild(confirmPanel); + confirmPanel.addActionListener(this); + confirmPanel.setVflex("0"); + } + + winExportFile.setAttribute(Window.MODE_KEY, Window.MODE_HIGHLIGHTED); + AEnv.showWindow(winExportFile); + } // cmd_export + + private void exportFile() + { + try + { + ListItem li = cboType.getSelectedItem(); + if(li == null || li.getValue() == null) + { + FDialog.error(m_WindowNo, winExportFile, "FileInvalidExtension"); + return; + } + + String ext = li.getValue().toString(); + + byte[] data = null; + File inputFile = null; + + if (ext.equals("pdf")) + { + data = m_reportEngine.createPDFData(); + } + else if (ext.equals("ps")) + { + ByteArrayOutputStream baos = new ByteArrayOutputStream(); + m_reportEngine.createPS(baos); + data = baos.toByteArray(); + } + else if (ext.equals("xml")) + { + StringWriter sw = new StringWriter(); + m_reportEngine.createXML(sw); + data = sw.getBuffer().toString().getBytes(); + } + else if (ext.equals("csv") || ext.equals("ssv")) + { + StringWriter sw = new StringWriter(); + m_reportEngine.createCSV(sw, ',', m_reportEngine.getPrintFormat().getLanguage()); + data = sw.getBuffer().toString().getBytes(); + } + else if (ext.equals("txt")) + { + StringWriter sw = new StringWriter(); + m_reportEngine.createCSV(sw, '\t', m_reportEngine.getPrintFormat().getLanguage()); + data = sw.getBuffer().toString().getBytes(); + } + else if (ext.equals("html") || ext.equals("htm")) + { + StringWriter sw = new StringWriter(); + m_reportEngine.createHTML(sw, false, m_reportEngine.getPrintFormat().getLanguage()); + data = sw.getBuffer().toString().getBytes(); + } + else if (ext.equals("xls")) + { + inputFile = File.createTempFile("Export", ".xls"); + m_reportEngine.createXLS(inputFile, m_reportEngine.getPrintFormat().getLanguage()); + } + else + { + FDialog.error(m_WindowNo, winExportFile, "FileInvalidExtension"); + return; + } + + winExportFile.onClose(); + AMedia media = null; + if (data != null) + media = new AMedia(m_reportEngine.getPrintFormat().getName() + "." + ext, null, "application/octet-stream", data); + else + media = new AMedia(m_reportEngine.getPrintFormat().getName() + "." + ext, null, "application/octet-stream", inputFile, true); + Filedownload.save(media, m_reportEngine.getPrintFormat().getName() + "." + ext); + } + catch (Exception e) + { + log.log(Level.SEVERE, "Failed to export content.", e); + } + } + + + public void close() + { + SessionManager.getAppDesktop().closeActiveWindow(); + } + + + public void copyFormat(){ + MPrintFormat newpf=MPrintFormat.copyToClient(m_ctx, m_reportEngine.getPrintFormat().get_ID() ,Env.getAD_Client_ID(m_ctx)); + pfi=newpf.getAllItems("IsPrinted DESC, NULLIF(SeqNo,0), Name"); + + tpdf1.setMPrintFormat(newpf); + tpdf1.setPrintFormatItems(pfi); + tpdf1.refresh(); + + //tpfo2.setReportEngine(m_reportEngine); + tpfo2.setMPrintFormat(newpf); + tpfo2.setPrintFormatItems(pfi); + tpfo2.setListColumns(); + tpfo2.refresh(); + + tpsc3.setMPrintFormat(newpf); + tpsc3.setPrintFormatItems(pfi); + tpsc3.refresh(); + + + tpgc4.setMPrintFormat(newpf); + tpgc4.setPrintFormatItems(pfi); + + + tpsf5.setMPrintFormat(newpf); + tpsf5.setPrintFormatItems(pfi); + tpsf5.refresh(); + setIsChanged(true); + + comboReport.removeAllItems(); + comboReport.appendItem(newpf.getName(), newpf.get_ID()); + m_reportEngine.setPrintFormat(newpf); + } + + public void setIsChanged(boolean change){ + IsChange=change; + + if(IsChange){ + btnSave.setVisible(true); + bExport.setVisible(false); + bRun.setVisible(false); + newPrintFormat.setVisible(false); + } + else{ + btnSave.setVisible(false); + bExport.setVisible(true); + bRun.setVisible(true); + newPrintFormat.setVisible(true); + } + } + + public void runReport(){ + new ZkReportViewerProvider().openViewer(m_reportEngine); + } +} \ No newline at end of file diff --git a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/WRC1DisplayFieldsPanel.java b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/WRC1DisplayFieldsPanel.java new file mode 100644 index 0000000000..0e1a498f56 --- /dev/null +++ b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/WRC1DisplayFieldsPanel.java @@ -0,0 +1,193 @@ +/****************************************************************************** + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 2012 Trek Global * + * This program is free software; you can redistribute it and/or modify it * + * under the terms version 2 of the GNU General Public License as published * + * by the Free Software Foundation. This program is distributed in the hope * + * that it will be useful, but WITHOUT ANY WARRANTY; without even the implied * + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * + * See the GNU General Public License for more details. * + * You should have received a copy of the GNU General Public License along * + * with this program; if not, write to the Free Software Foundation, Inc., * + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * + *****************************************************************************/ + +package org.adempiere.webui.panel; + +import org.adempiere.webui.LayoutUtils; +import org.adempiere.webui.apps.AEnv; +import org.adempiere.webui.component.Checkbox; +import org.adempiere.webui.component.Column; +import org.adempiere.webui.component.Columns; +import org.adempiere.webui.component.Grid; +import org.adempiere.webui.component.Row; +import org.adempiere.webui.component.Rows; +import org.adempiere.webui.component.Textbox; +import org.adempiere.webui.component.Window; +import org.compiere.print.MPrintFormat; +import org.compiere.util.KeyNamePair; +import org.compiere.util.Util; +import org.zkoss.zk.ui.event.Event; +import org.zkoss.zk.ui.event.EventListener; +import org.zkoss.zk.ui.event.Events; +import org.zkoss.zul.Div; + + +public class WRC1DisplayFieldsPanel extends WRCTabPanel implements EventListener +{ + /** + * + */ + private static final long serialVersionUID = -2097631726230470398L; + + private static final int RENDER_IN_COLUMNS=4; + private MPrintFormat m_printFormat; + Checkbox m_chkboxes[]=null; + Textbox m_textBoxes[]=null; + String m_oldLabel[]=null; + + public WRC1DisplayFieldsPanel() { + super(); + } + + public WRC1DisplayFieldsPanel(MPrintFormat pf){ + super(); + m_printFormat=pf; + } + + public MPrintFormat getM_printFormat() { + return m_printFormat; + } + + public void init() { + + m_chkboxes = new Checkbox[m_pfi.length]; + m_textBoxes = new Textbox[m_pfi.length]; + m_oldLabel = new String[m_pfi.length]; + + Window wind=new Window(); + wind.setWidth("90%"); + wind.setHeight("100%"); + wind.setHflex("1"); + + Grid grid = new Grid(); + //have problem moving the following out as css class + grid.setHflex("1"); + grid.setHeight("90%"); + grid.setVflex(true); + grid.setStyle("margin:0; padding:0; position: absolute"); + grid.makeNoStrip(); + + Div div = new Div(); + div.setStyle("width:90%;height:100%;border:none;margin:none;padding:none"); + div.appendChild(grid); + wind.appendChild(div); + this.appendChild(wind); + + if (AEnv.isTablet()) + { + LayoutUtils.addSclass("tablet-scrolling", div); + } + + Columns columns = new Columns(); + grid.appendChild(columns); + Column cols[] = new Column[2*RENDER_IN_COLUMNS]; + int width = 100/RENDER_IN_COLUMNS; + int widthChk = width/5; + int widthTxt = widthChk*4; + for(int i=0;i { + /** + * + */ + private static final long serialVersionUID = -7732332384947376101L; + + /** + * + */ + private Listbox sortList; + private Button bUp = new Button(); + private Button bDown = new Button(); + + private ArrayList listColumns=new ArrayList(); + Window wind=new Window(); + SimpleListModel sortModel; + private ReportEngine m_reportEngine=null; + + private static CLogger log = CLogger.getCLogger(WRC2FieldOrderPanel.class); + + public WRC2FieldOrderPanel() { + super(); + + } + + public Window getWind() { + return wind; + } + + + public void setWind(Window wind) { + this.wind = wind; + } + + + /** + * Static Layout + * @throws Exception + */ + public void setReportEngine(ReportEngine re) { + m_reportEngine = re; + + } + + public void setListColumns() { + listColumns = new ArrayList(); + if (m_pfi != null && m_pfi.length > 0) { + for (int i = 0; i < m_pfi.length; i++) { + if (m_pfi[i] != null && m_pfi[i].isPrinted()) { + listColumns.add(m_pfi[i]); + } + } + } + + } + + public void init() + { + + Hlayout hlayout = new Hlayout(); + hlayout.setVflex("true"); + hlayout.setHflex("true"); + hlayout.setStyle("width:80%;height:80%;border:none;margin:none;padding:none"); + + sortList = new Listbox(); + sortModel =new SimpleListModel(); + sortList.setHeight("100%"); + sortList.setWidth("40%"); + sortList.setVflex(true); + sortList.addDoubleClickListener(this); + sortList.setSeltype("multiple"); + sortList.addOnDropListener(this); + sortList.setItemDraggable(true); + sortList.setDroppable("true"); + sortList.setVisible(true); + sortList.setMultiple(true); + + EventListener sortListMouseMotionListener = new EventListener() + { + public void onEvent(Event event) throws Exception { + if (event instanceof DropEvent) + { + DropEvent me = (DropEvent) event; + ListItem draggedItem = (ListItem) me.getDragged(); + ListItem targetItem = (ListItem) me.getTarget(); + if (draggedItem.getListbox() == targetItem.getListbox() && draggedItem.getListbox() == sortList) + { + int draggedIndex = sortList.getIndexOfItem(draggedItem); + int targetIndex = sortList.getIndexOfItem(targetItem); + ListElement targetElement = (ListElement) sortModel.getElementAt(targetIndex); + ListElement draggedElement = (ListElement) sortModel.getElementAt(draggedIndex); + + int firstposition=0, secondposition=0; + MPrintFormatItem targetPFI = null; + MPrintFormatItem draggedPFI = null; + for(int j=0 ;j () { + @Override + public int compare(MPrintFormatItem o1, MPrintFormatItem o2) { + return o1.getSeqNo()-o2.getSeqNo(); + } + }); + + if (listColumns.size() > 0 && listColumns != null) { + int seq = 10; + sortModel.removeAllElements(); + for (int i=0; i= 0; i--) { + int index = indices[i]; + if (index >= sortModel.getSize() - 1) + break; + ListElement selObject = (ListElement) sortModel.getElementAt(index); + ListElement newObject = (ListElement)sortModel.getElementAt(index + 1); + /*if (!selObject.isUpdateable() || !newObject.isUpdateable()) + break;*/ + sortModel.setElementAt(newObject, index); + sortModel.setElementAt(selObject, index + 1); + sortList.setSelectedIndex(index + 1); + for(int j=0 ;j "; + return s; + } + } + +} diff --git a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/WRC3SortCriteriaPanel.java b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/WRC3SortCriteriaPanel.java new file mode 100644 index 0000000000..655675d293 --- /dev/null +++ b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/WRC3SortCriteriaPanel.java @@ -0,0 +1,595 @@ +/****************************************************************************** + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 2012 Trek Global * + * This program is free software; you can redistribute it and/or modify it * + * under the terms version 2 of the GNU General Public License as published * + * by the Free Software Foundation. This program is distributed in the hope * + * that it will be useful, but WITHOUT ANY WARRANTY; without even the implied * + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * + * See the GNU General Public License for more details. * + * You should have received a copy of the GNU General Public License along * + * with this program; if not, write to the Free Software Foundation, Inc., * + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * + *****************************************************************************/ + +package org.adempiere.webui.panel; + +import java.util.ArrayList; +import java.util.Collections; +import java.util.Comparator; +import java.util.List; +import java.util.Set; + +import org.adempiere.webui.component.Button; +import org.adempiere.webui.component.Label; +import org.adempiere.webui.component.ListHead; +import org.adempiere.webui.component.ListHeader; +import org.adempiere.webui.component.ListItem; +import org.adempiere.webui.component.Listbox; +import org.adempiere.webui.component.SimpleListModel; +import org.compiere.print.MPrintFormatItem; +import org.compiere.print.ReportEngine; +import org.compiere.util.CLogger; +import org.compiere.util.KeyNamePair; +import org.compiere.util.NamePair; +import org.zkoss.zk.au.out.AuFocus; +import org.zkoss.zk.ui.event.DropEvent; +import org.zkoss.zk.ui.event.Event; +import org.zkoss.zk.ui.event.EventListener; +import org.zkoss.zk.ui.event.Events; +import org.zkoss.zk.ui.util.Clients; +import org.zkoss.zul.Hlayout; +import org.zkoss.zul.Vbox; + +public class WRC3SortCriteriaPanel extends WRCTabPanel implements EventListener +{ + /** + * + */ + private static final long serialVersionUID = -2798618953887598651L; + + private ReportEngine m_reportEngine; + private static CLogger log = CLogger.getCLogger(WRC3SortCriteriaPanel.class); + + + // UI variables + private Label noLabel = new Label(); + private Label yesLabel = new Label(); + private Button bAdd = new Button(); + private Button bRemove = new Button(); + private Button bUp = new Button(); + private Button bDown = new Button(); + //private AbstractADWindowContent adWindowPanel = null; + + public ArrayList yesItems=new ArrayList(); + public ArrayList noItems=new ArrayList(); + + // + SimpleListModel noModel = new SimpleListModel(); + SimpleListModel yesModel = new SimpleListModel(); + Listbox noList = new Listbox(); + Listbox yesList = new Listbox(); + + public WRC3SortCriteriaPanel() { + super(); + //m_WindowNo = SessionManager.getAppDesktop().registerWindow(this); + } + + /** + * Static Layout + * @throws Exception + */ + public void setReportEngine(ReportEngine re) { + + m_reportEngine = re; + } + + public void init() + { + // + noLabel.setValue("Available"); + yesLabel.setValue("Order By"); + + yesList.setVflex(true); + noList.setVflex(true); + + EventListener mouseListener = new EventListener() + { + + public void onEvent(Event event) throws Exception + { + if (Events.ON_DOUBLE_CLICK.equals(event.getName())) + { + migrateValueAcrossLists(event); + } + } + }; + yesList.addDoubleClickListener(mouseListener); + noList.addDoubleClickListener(mouseListener); + // + EventListener actionListener = new EventListener() + { + public void onEvent(Event event) throws Exception { + migrateValueAcrossLists(event); + } + }; + yesList.setSeltype("multiple"); + noList.setSeltype("multiple"); + + bAdd.setImage("images/Next24.png"); + bAdd.addEventListener(Events.ON_CLICK, actionListener); + + bRemove.setImage("images/Previous24.png"); + bRemove.addEventListener(Events.ON_CLICK, actionListener); + + EventListener crossListMouseListener = new DragListener(); + yesList.addOnDropListener(crossListMouseListener); + noList.addOnDropListener(crossListMouseListener); + yesList.setItemDraggable(true); + noList.setItemDraggable(true); + + + EventListener yesListMouseMotionListener = new EventListener() + { + public void onEvent(Event event) throws Exception { + if (event instanceof DropEvent) + { + DropEvent me = (DropEvent) event; + ListItem startItem = (ListItem) me.getDragged(); + ListItem endItem = (ListItem) me.getTarget(); + if (startItem.getListbox() == endItem.getListbox() && startItem.getListbox() == yesList) + { + int startIndex = yesList.getIndexOfItem(startItem); + int endIndex = yesList.getIndexOfItem(endItem); + ListElement endElement = (ListElement) yesModel.getElementAt(endIndex); + ListElement startElement = (ListElement) yesModel.getElementAt(startIndex); + yesModel.removeElement(startElement); + endIndex = yesModel.indexOf(endElement); + yesModel.add(endIndex, startElement); + yesList.setSelectedIndex(endIndex); + + int firstposition=0, secondposition=0; + MPrintFormatItem targetPFI = null; + MPrintFormatItem draggedPFI = null; + for(int j=0 ;j (); + noItems =new ArrayList(); + if (m_pfi.length > 0 && m_pfi != null ) { + int seq = 10; + for(int i=0 ; i < m_pfi.length ; i++ ){ + if (m_pfi[i].isPrinted() && m_pfi[i] != null) { + if (m_pfi[i].isOrderBy()) { + m_pfi[i].setSortNo(seq); + seq=seq+10; + yesItems.add(m_pfi[i]); + } else{ + noItems.add(m_pfi[i]); + } + } + } + } + + Collections.sort(yesItems, new Comparator() { + @Override + public int compare(MPrintFormatItem o1, MPrintFormatItem o2) { + return o1.getSortNo()-o2.getSortNo(); + } + }); + + yesList.removeAllItems(); + noList.removeAllItems(); + + if (yesItems.size() > 0 && yesItems != null) { + yesModel.removeAllElements(); + for (int i=0 ; i < yesItems.size() ; i++) { + MPrintFormatItem pfi = yesItems.get(i); + if (pfi != null) { + int ID= pfi.get_ID(); + String name =pfi.getPrintName(); + if(name == null) + name=pfi.getName(); + KeyNamePair pair =new KeyNamePair(ID, name); + yesList.addItem(pair); + ListElement element =new ListElement(pfi.get_ID(), pfi.getName(), pfi.getSortNo(), true, pfi.getAD_Client_ID(), pfi.getAD_Org_ID()); + yesModel.addElement(element); + } + } + } + + if (noItems.size() > 0 && noItems != null) { + noModel.removeAllElements(); + for (int i=0 ; i < noItems.size() ; i++) { + MPrintFormatItem pfi = noItems.get(i); + if (pfi != null) { + int ID= pfi.get_ID(); + pfi.setSortNo(0); + pfi.setIsOrderBy(false); + String name =pfi.getPrintName(); + if(name == null) + name=pfi.getName(); + KeyNamePair pair =new KeyNamePair(ID, name); + noList.addItem(pair); + ListElement element =new ListElement(pfi.get_ID(), pfi.getName(), pfi.getSortNo(), false, pfi.getAD_Client_ID(), pfi.getAD_Org_ID()); + noModel.add(i,element); + } + } + } + } + + + + @Override + public void updatePFI() { + // pfi is being updated on every refresh + + } + + /** + * @param event + */ + void migrateValueAcrossLists (Event event) + { + Object source = event.getTarget(); + if (source instanceof ListItem) { + source = ((ListItem)source).getListbox(); + } + Listbox listFrom = (source == bAdd || source == noList) ? noList : yesList; + Listbox listTo = (source == bAdd || source == noList) ? yesList : noList; + SimpleListModel lmFrom = (source == bAdd || source == noList) ? + noModel : yesModel; + SimpleListModel lmTo = (lmFrom == yesModel) ? noModel : yesModel; + Set selectedItems = listFrom.getSelectedItems(); + List selObjects = new ArrayList(); + for (Object obj : selectedItems) { + ListItem listItem = (ListItem) obj; + int index = listFrom.getIndexOfItem(listItem); + ListElement selObject = (ListElement)lmFrom.getElementAt(index); + selObjects.add(selObject); + } + for (ListElement selObject : selObjects) + { + if (selObject == null) + continue; + + lmFrom.removeElement(selObject); + lmTo.addElement(selObject); + + for (int j=0 ; j= 0; i--) { + int index = indices[i]; + if (index >= yesModel.getSize() - 1) + break; + ListElement selObject = (ListElement) yesModel.getElementAt(index); + ListElement newObject = (ListElement)yesModel.getElementAt(index + 1); + + yesModel.setElementAt(newObject, index); + yesModel.setElementAt(selObject, index + 1); + yesList.setSelectedIndex(index + 1); + indices[i] = index + 1; + change = true; + } + } // down + + // + if (change) { + yesList.setSelectedIndices(indices); + updateYesList(); + if ( yesList.getSelectedItem() != null) + { + AuFocus focus = new AuFocus(yesList.getSelectedItem()); + Clients.response(focus); + } + } + } // migrateValueWithinYesList + + + public void updateYesList(){ + yesList.removeAllItems(); + wc.setIsChanged(true); + int sortNo=10; + for(int i=0;i"; + return s; + } + } + + /** + * @author eslatis + * + */ + private class DragListener implements EventListener + { + + /** + * Creates a ADSortTab.DragListener. + */ + public DragListener() + { + } + + public void onEvent(Event event) throws Exception { + int endIndex=0; + if (event instanceof DropEvent) + { + DropEvent me = (DropEvent) event; + + ListItem endItem = (ListItem) me.getTarget(); + if (!(endItem.getListbox() == yesList)) + { + return; // move within noList + } + + ListItem startItem = (ListItem) me.getDragged(); + if (startItem.getListbox() == endItem.getListbox()) + { + return; //move within same list + } + int startIndex = noList.getIndexOfItem(startItem); + ListElement element = (ListElement) noModel.getElementAt(startIndex); + noModel.removeElement(element); + endIndex = yesList.getIndexOfItem(endItem); + yesModel.add(endIndex, element); + + for (int j=0 ; j { + /** + * + */ + private static final long serialVersionUID = -3142169077710161360L; + + private static final int RENDER_IN_COLUMNS=2; + private MPrintFormat m_printFormat; + Checkbox m_chkboxes[]=null; + String m_oldLabel[]=null; + ArrayList orderfield=new ArrayList(); + Grid grid = new Grid(); + + public WRC4GroupingCriteriaPanel() { + super(); + } + + + @Override + public void refresh() { + orderfield = new ArrayList(); + for(int i=0 ; i < m_pfi.length ; i++){ + if(m_pfi[i] != null && m_pfi[i].isOrderBy() && m_pfi[i].isPrinted()){ + orderfield.add(m_pfi[i]); + } + } + dynamicInit(); + } + + @Override + public void updatePFI() { + + for(int i=0 ; i { + /** + * + */ + private static final long serialVersionUID = -2231369601903381581L; + + private static final int RENDER_IN_COLUMNS=10; + private MPrintFormat m_printFormat; + Checkbox m_chkSum[]=null; + Checkbox m_chkCount[]=null; + Checkbox m_chkMin[]=null; + Checkbox m_chkMax[]=null; + Checkbox m_chkMean[]=null; + Checkbox m_chkVariance[]=null; + Checkbox m_chkDesviation[]=null; + private ArrayList DisplayItems=new ArrayList(); + Grid grid = new Grid(); + + public WRC5SummaryFieldsPanel() { + super(); + } + + + public void init(){ + Window wind=new Window(); + wind.setWidth("90%"); + wind.setHeight("100%"); + wind.setHflex("1"); + + + grid.setHflex("1"); + grid.setHeight("90%"); + grid.setVflex(true); + grid.setStyle("margin:0; padding:0; position: absolute"); + grid.makeNoStrip(); + + Div div = new Div(); + div.setStyle("width:90%;height:100%;border:none;margin:none;padding:none"); + div.appendChild(grid); + wind.appendChild(div); + this.appendChild(wind); + + + if (AEnv.isTablet()) + { + LayoutUtils.addSclass("tablet-scrolling", div); + } + + Columns columns = new Columns(); + grid.appendChild(columns); + Column cols[] = new Column[RENDER_IN_COLUMNS]; + int width = 100/RENDER_IN_COLUMNS; + int widthChk = width/5; + for(int i=0;i(); + for(int i=0 ; i, ITab private ToolBarButton bCustomize = new ToolBarButton(); private ToolBarButton bFind = new ToolBarButton(); private ToolBarButton bExport = new ToolBarButton(); + private ToolBarButton bWizard = new ToolBarButton(); private Listbox comboReport = new Listbox(); private Label labelDrill = new Label(); private Listbox comboDrill = new Listbox(); @@ -304,6 +308,12 @@ public class ZkReportViewer extends Window implements EventListener, ITab bRefresh.setTooltiptext(Util.cleanAmp(Msg.getMsg(Env.getCtx(), "Refresh"))); toolBar.appendChild(bRefresh); bRefresh.addEventListener(Events.ON_CLICK, this); + + bWizard.setImage("/images/Wizard24.png"); + bWizard.setTooltiptext(Util.cleanAmp(Msg.getMsg(Env.getCtx(), "PrintWizard"))); + toolBar.appendChild(bWizard); + bWizard.addEventListener(Events.ON_CLICK, this); + North north = new North(); layout.appendChild(north); @@ -682,6 +692,8 @@ public class ZkReportViewer extends Window implements EventListener, ITab cmd_archive(); else if (e.getTarget() == bCustomize) cmd_customize(); + else if (e.getTarget() == bWizard) + cmd_Wizard(); else if (e.getTarget() == bRefresh) cmd_report(); // @@ -911,7 +923,7 @@ public class ZkReportViewer extends Window implements EventListener, ITab /** * Report Combo - Start other Report or create new one */ - private void cmd_report() + public void cmd_report() { ListItem li = comboReport.getSelectedItem(); if(li == null || li.getValue() == null) return; @@ -1089,6 +1101,26 @@ public class ZkReportViewer extends Window implements EventListener, ITab AEnv.zoom(AD_Window_ID, MQuery.getEqualQuery("AD_PrintFormat_ID", AD_PrintFormat_ID)); } // cmd_customize + /*IDEMPIERE -379*/ + private void cmd_Wizard() + { + int AD_Window_ID = WINDOW_PRINTFORMAT; // hardcoded + int AD_PrintFormat_ID = m_reportEngine.getPrintFormat().get_ID(); + + Env.setContext(m_ctx, "AD_PrintFormat_ID", AD_PrintFormat_ID); + + ADForm form = ADForm.openForm(SystemIDs.WIZARD_REPORT_FORM); + WReportCustomization av = (WReportCustomization) form.getICustomForm(); + av.setReportEngine(m_reportEngine); + + form.setAttribute(Window.MODE_KEY, Window.MODE_EMBEDDED); + SessionManager.getAppDesktop().showWindow(form); + + //ZkReportCustomization zkCustomization = new ZkReportCustomization(m_reportEngine); + //zkCustomization.setAttribute(Window.MODE_KEY, Window.MODE_EMBEDDED); + //zkCustomization.setAttribute(Window.INSERT_POSITION_KEY, Window.INSERT_NEXT); + //SessionManager.getAppDesktop().showWindow(zkCustomization); + } // cmd_customize //-- ComponentCtrl --// public Object getExtraCtrl() { return new ExtraCtrl(); diff --git a/org.adempiere.ui.zk/images/Wizard24.png b/org.adempiere.ui.zk/images/Wizard24.png new file mode 100644 index 0000000000000000000000000000000000000000..f0eef6cc4b11d7d666f14879f96a257f8e28029c GIT binary patch literal 1111 zcmV-d1gQIoP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2iyu4 z4=55dQvS&R00Y-aL_t(Y$K{o6OqFFA$A33k$;&yu@v8Ecop7y1Z^EpJ&6SN!m%6oO zDwze*s6OQCgITQ?*K(~sv^EngHbrPT3>ZsIvt;v-Mv!X;o|JO}f%C%QaDW4x^E}Vh zhXY3#r6=uM&-U!zeeJpa|L6K&|NFY(fBzV-Ck@4Ru4P{~pN^p`C00At&-00lNWUW?8HKLe<5CHCvt?cZGiU43} zQ~F%s7?6)l%Q|hU?pihY*m=mBziZ=zXaBJWuEG=m z7S#2M7SumBG-)z4Vd9NNP~ImB_~M7K8g;K*4`(lkd&D0YHCirqbGgsG7MNavb4}80 zAU@@|docN1C$7hn^MMi3#U_XbR0E#^9|5t+M_o{#L*?m2Zq<-hw)%R%PlGGEP?y28b9XUR0ndSBt)564Dn|qWN zTetl5yIpzxqg$+dimF!aJUG1qLz4j@8F&*gCT!dTFcthv>jfUV?=J4h&Nz~ml9;P$ zny3*kEgcT!9~m#O?kQ?2c%zCRcW(|?;8-z_OskLXmGjNOQDDUs-d>)6G((qj zqSW1!NiDzq(VDS1)jS>y;dFbr?C4hgUSCP^=Jn;D9ju>bmWV|5d~<>rvI)2ZWJ{Rb z1-wO!`bM9h;sYPeZSAhKl*FWvris(t&t*rq8Xg`gDBZfDsiLNV=bu_P(~^$-xzqP~ zrb2t3N$h#1O2-3nYKkmgXTRTY^!6KP&vzJKH=Z)~9;kixUkx@#z8Qed<>t3Lmz&pK zmBsdJkJ~4c;57{=W$%I7?Ew3$8=@z$=b0zhn2s&0W=%FU4DN}5S5()p1gNO4zb4*w zXHj!oyFWX9QNq|nLmgc`s^9A?Dc!oEJenW=+fi}mmkSYDG8U(r#)2Vr)hz?hm2TZo zUQyFvXBfL-e1>5*d0PKd-*`3Ex{=v-a0C dWC7eL_+RCV6$In{9$x?e002ovPDHLkV1k|+56b`m literal 0 HcmV?d00001 From 66c3d210df95668f278806e7f102771765249b50 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Tue, 30 Oct 2012 21:34:08 -0500 Subject: [PATCH 07/22] IDEMPIERE-454 Easy import / Fix migration script, wrong ID --- migration/360lts-release/oracle/928_IDEMPIERE-454.sql | 2 +- migration/360lts-release/postgresql/928_IDEMPIERE-454.sql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/migration/360lts-release/oracle/928_IDEMPIERE-454.sql b/migration/360lts-release/oracle/928_IDEMPIERE-454.sql index 97272a59a5..66a43e2c0c 100644 --- a/migration/360lts-release/oracle/928_IDEMPIERE-454.sql +++ b/migration/360lts-release/oracle/928_IDEMPIERE-454.sql @@ -1,6 +1,6 @@ -- Oct 7, 2012 7:15:57 PM COT -- IDEMPIERE-454 Easy import -INSERT INTO AD_ToolBarButton (Name,ComponentName,Classname,IsCustomization,KeyStroke_KeyCode,KeyStroke_Modifiers,AD_Client_ID,AD_Org_ID,Created,CreatedBy,AD_ToolBarButton_ID,Updated,UpdatedBy,IsActive,AD_ToolBarButton_UU) VALUES ('zk Window - File Import','FileImport','org.idempiere.ui.window','N',0,0,0,0,TO_DATE('2012-10-07 19:15:57','YYYY-MM-DD HH24:MI:SS'),100,1000007,TO_DATE('2012-10-07 19:15:57','YYYY-MM-DD HH24:MI:SS'),100,'Y','afdd17a6-5fd1-411e-8596-5310aa68785f') +INSERT INTO AD_ToolBarButton (Name,ComponentName,Classname,IsCustomization,KeyStroke_KeyCode,KeyStroke_Modifiers,AD_Client_ID,AD_Org_ID,Created,CreatedBy,AD_ToolBarButton_ID,Updated,UpdatedBy,IsActive,AD_ToolBarButton_UU) VALUES ('zk Window - File Import','FileImport','org.idempiere.ui.window','N',0,0,0,0,TO_DATE('2012-10-07 19:15:57','YYYY-MM-DD HH24:MI:SS'),100,200067,TO_DATE('2012-10-07 19:15:57','YYYY-MM-DD HH24:MI:SS'),100,'Y','afdd17a6-5fd1-411e-8596-5310aa68785f') ; -- Oct 25, 2012 11:42:24 PM COT diff --git a/migration/360lts-release/postgresql/928_IDEMPIERE-454.sql b/migration/360lts-release/postgresql/928_IDEMPIERE-454.sql index cda2b6664e..aa8e031b47 100644 --- a/migration/360lts-release/postgresql/928_IDEMPIERE-454.sql +++ b/migration/360lts-release/postgresql/928_IDEMPIERE-454.sql @@ -1,6 +1,6 @@ -- Oct 7, 2012 7:15:57 PM COT -- IDEMPIERE-454 Easy import -INSERT INTO AD_ToolBarButton (Name,ComponentName,Classname,IsCustomization,KeyStroke_KeyCode,KeyStroke_Modifiers,AD_Client_ID,AD_Org_ID,Created,CreatedBy,AD_ToolBarButton_ID,Updated,UpdatedBy,IsActive,AD_ToolBarButton_UU) VALUES ('zk Window - File Import','FileImport','org.idempiere.ui.window','N',0,0,0,0,TO_TIMESTAMP('2012-10-07 19:15:57','YYYY-MM-DD HH24:MI:SS'),100,1000007,TO_TIMESTAMP('2012-10-07 19:15:57','YYYY-MM-DD HH24:MI:SS'),100,'Y','afdd17a6-5fd1-411e-8596-5310aa68785f') +INSERT INTO AD_ToolBarButton (Name,ComponentName,Classname,IsCustomization,KeyStroke_KeyCode,KeyStroke_Modifiers,AD_Client_ID,AD_Org_ID,Created,CreatedBy,AD_ToolBarButton_ID,Updated,UpdatedBy,IsActive,AD_ToolBarButton_UU) VALUES ('zk Window - File Import','FileImport','org.idempiere.ui.window','N',0,0,0,0,TO_TIMESTAMP('2012-10-07 19:15:57','YYYY-MM-DD HH24:MI:SS'),100,200067,TO_TIMESTAMP('2012-10-07 19:15:57','YYYY-MM-DD HH24:MI:SS'),100,'Y','afdd17a6-5fd1-411e-8596-5310aa68785f') ; -- Oct 25, 2012 11:42:24 PM COT From 3a8d5ce4fe64784a9c9ec972652ce22918cf32f1 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Tue, 30 Oct 2012 22:42:43 -0500 Subject: [PATCH 08/22] IDEMPIERE-379 Reporting wizard for end users / Peer review and tests --- .../360lts-release/oracle/923_PlaceHolder.sql | 1 + ...DEMPIERE_379.sql => 952_IDEMPIERE_379.sql} | 3 +- .../postgresql/923_PlaceHolder.sql | 1 + ...DEMPIERE_379.sql => 952_IDEMPIERE_379.sql} | 4 +- .../src/org/compiere/model/SystemIDs.java | 3 +- .../src/org/compiere/print/MPrintFormat.java | 6 +- .../src/org/compiere/print/ReportEngine.java | 1 + .../adempiere/webui/adwindow/ADSortTab.java | 2 +- .../webui/apps/form/WReportCustomization.java | 224 +++++++----------- .../webui/panel/WRC2FieldOrderPanel.java | 37 --- .../webui/panel/WRC3SortCriteriaPanel.java | 55 +---- .../panel/WRC4GroupingCriteriaPanel.java | 29 +-- .../webui/panel/WRC5SummaryFieldsPanel.java | 16 +- .../webui/window/ZkReportViewer.java | 32 +-- 14 files changed, 129 insertions(+), 285 deletions(-) create mode 100644 migration/360lts-release/oracle/923_PlaceHolder.sql rename migration/360lts-release/oracle/{923_IDEMPIERE_379.sql => 952_IDEMPIERE_379.sql} (98%) create mode 100644 migration/360lts-release/postgresql/923_PlaceHolder.sql rename migration/360lts-release/postgresql/{923_IDEMPIERE_379.sql => 952_IDEMPIERE_379.sql} (98%) diff --git a/migration/360lts-release/oracle/923_PlaceHolder.sql b/migration/360lts-release/oracle/923_PlaceHolder.sql new file mode 100644 index 0000000000..097ff34634 --- /dev/null +++ b/migration/360lts-release/oracle/923_PlaceHolder.sql @@ -0,0 +1 @@ +-- Just a placeholder diff --git a/migration/360lts-release/oracle/923_IDEMPIERE_379.sql b/migration/360lts-release/oracle/952_IDEMPIERE_379.sql similarity index 98% rename from migration/360lts-release/oracle/923_IDEMPIERE_379.sql rename to migration/360lts-release/oracle/952_IDEMPIERE_379.sql index 3c71740d34..be9728b741 100644 --- a/migration/360lts-release/oracle/923_IDEMPIERE_379.sql +++ b/migration/360lts-release/oracle/952_IDEMPIERE_379.sql @@ -96,7 +96,7 @@ INSERT INTO AD_ToolBarButton (Name,ComponentName,IsCustomization,KeyStroke_KeyCo -- Oct 30, 2012 10:00:40 AM COT -- IDEMPIERE-379 Reporting wizard for end users -UPDATE AD_ToolBarButton SET Name='ReportWizard', ComponentName='Wizard',Updated=TO_DATE('2012-10-30 10:00:40','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_ToolBarButton_ID=200066 +UPDATE AD_ToolBarButton SET Name='Report - Wizard', ComponentName='Wizard',Updated=TO_DATE('2012-10-30 10:00:40','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_ToolBarButton_ID=200066 ; -- Oct 30, 2012 10:08:19 AM COT @@ -139,7 +139,6 @@ INSERT INTO AD_Message (MsgType,MsgText,AD_Message_ID,EntityType,AD_Message_UU,V INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Message_Trl_UU ) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=200100 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) ; - SELECT register_migration_script('923_IDEMPIERE_379.sql') FROM dual ; diff --git a/migration/360lts-release/postgresql/923_PlaceHolder.sql b/migration/360lts-release/postgresql/923_PlaceHolder.sql new file mode 100644 index 0000000000..097ff34634 --- /dev/null +++ b/migration/360lts-release/postgresql/923_PlaceHolder.sql @@ -0,0 +1 @@ +-- Just a placeholder diff --git a/migration/360lts-release/postgresql/923_IDEMPIERE_379.sql b/migration/360lts-release/postgresql/952_IDEMPIERE_379.sql similarity index 98% rename from migration/360lts-release/postgresql/923_IDEMPIERE_379.sql rename to migration/360lts-release/postgresql/952_IDEMPIERE_379.sql index bf31a65b00..2cc79d1504 100644 --- a/migration/360lts-release/postgresql/923_IDEMPIERE_379.sql +++ b/migration/360lts-release/postgresql/952_IDEMPIERE_379.sql @@ -94,10 +94,9 @@ INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTransla INSERT INTO AD_ToolBarButton (Name,ComponentName,IsCustomization,KeyStroke_KeyCode,KeyStroke_Modifiers,AD_Client_ID,AD_Org_ID,Created,CreatedBy,AD_ToolBarButton_ID,Updated,UpdatedBy,IsActive,AD_ToolBarButton_UU,"action") VALUES ('Zk-ReportWizard','org.idempiere.ui.report','N',0,0,0,0,TO_TIMESTAMP('2012-10-29 11:56:09','YYYY-MM-DD HH24:MI:SS'),100,200066,TO_TIMESTAMP('2012-10-29 11:56:09','YYYY-MM-DD HH24:MI:SS'),100,'Y','6009b32b-e28e-4c13-87fc-4df00c5730c9','R') ; - -- Oct 30, 2012 10:00:40 AM COT -- IDEMPIERE-379 Reporting wizard for end users -UPDATE AD_ToolBarButton SET Name='ReportWizard', ComponentName='Wizard',Updated=TO_TIMESTAMP('2012-10-30 10:00:40','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_ToolBarButton_ID=200066 +UPDATE AD_ToolBarButton SET Name='Report - Wizard', ComponentName='Wizard',Updated=TO_TIMESTAMP('2012-10-30 10:00:40','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_ToolBarButton_ID=200066 ; -- Oct 30, 2012 10:08:19 AM COT @@ -130,7 +129,6 @@ UPDATE AD_Message SET MsgText='Fields Displayed',Updated=TO_TIMESTAMP('2012-10-3 UPDATE AD_Message_Trl SET IsTranslated='N' WHERE AD_Message_ID=200091 ; - -- Oct 30, 2012 5:34:18 PM COT -- IDEMPIERE-379 Reporting wizard for end users INSERT INTO AD_Message (MsgType,MsgText,AD_Message_ID,EntityType,AD_Message_UU,Value,IsActive,Updated,CreatedBy,UpdatedBy,AD_Client_ID,AD_Org_ID,Created) VALUES ('I','Run Report',200100,'D','5638ff96-ff60-49f0-9871-004f7fa2420e','Run','Y',TO_TIMESTAMP('2012-10-30 17:34:15','YYYY-MM-DD HH24:MI:SS'),100,100,0,0,TO_TIMESTAMP('2012-10-30 17:34:15','YYYY-MM-DD HH24:MI:SS')) diff --git a/org.adempiere.base/src/org/compiere/model/SystemIDs.java b/org.adempiere.base/src/org/compiere/model/SystemIDs.java index 02cff20255..a225d2b4fd 100644 --- a/org.adempiere.base/src/org/compiere/model/SystemIDs.java +++ b/org.adempiere.base/src/org/compiere/model/SystemIDs.java @@ -48,6 +48,7 @@ public class SystemIDs public final static int FORM_PAYMENT_PRINT_EXPORT = 106; public final static int FORM_ARCHIVEVIEWER = 118; + public final static int FORM_REPORT_WIZARD = 200002; public final static int MENU_NOTICE = 233; @@ -154,6 +155,4 @@ public class SystemIDs public final static int SCHEDULE_10_MINUTES = 200002; public final static int SCHEDULE_15_MINUTES = 200003; - public final static int WIZARD_REPORT_FORM=200002; - } diff --git a/org.adempiere.base/src/org/compiere/print/MPrintFormat.java b/org.adempiere.base/src/org/compiere/print/MPrintFormat.java index 68956a5776..c9924c3428 100644 --- a/org.adempiere.base/src/org/compiere/print/MPrintFormat.java +++ b/org.adempiere.base/src/org/compiere/print/MPrintFormat.java @@ -59,7 +59,7 @@ public class MPrintFormat extends X_AD_PrintFormat /** * */ - private static final long serialVersionUID = 1246145881920021984L; + private static final long serialVersionUID = -8307496567084341384L; /** * Public Constructor. @@ -83,6 +83,10 @@ public class MPrintFormat extends X_AD_PrintFormat m_items = getItems(); } // MPrintFormat + public void reloadItems() { + m_items = getItems(); + } + /** * Load Constructor * @param ctx context diff --git a/org.adempiere.base/src/org/compiere/print/ReportEngine.java b/org.adempiere.base/src/org/compiere/print/ReportEngine.java index e4814452f6..c2bfac86c5 100644 --- a/org.adempiere.base/src/org/compiere/print/ReportEngine.java +++ b/org.adempiere.base/src/org/compiere/print/ReportEngine.java @@ -191,6 +191,7 @@ public class ReportEngine implements PrintServiceAttributeListener public void setPrintFormat (MPrintFormat pf) { m_printFormat = pf; + pf.reloadItems(); if (m_layout != null) { setPrintData(); diff --git a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/adwindow/ADSortTab.java b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/adwindow/ADSortTab.java index 4d6e5b45ab..14348e73b1 100644 --- a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/adwindow/ADSortTab.java +++ b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/adwindow/ADSortTab.java @@ -704,7 +704,7 @@ public class ADSortTab extends Panel implements IADTabpanel * List Item * @author Teo Sarca */ - public class ListElement extends NamePair { + private class ListElement extends NamePair { /** * */ diff --git a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/apps/form/WReportCustomization.java b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/apps/form/WReportCustomization.java index 7505a85fb3..92d6fcfe36 100644 --- a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/apps/form/WReportCustomization.java +++ b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/apps/form/WReportCustomization.java @@ -20,7 +20,6 @@ import java.util.Properties; import java.util.logging.Level; import org.adempiere.webui.apps.AEnv; -import org.adempiere.webui.apps.WReport; import org.adempiere.webui.component.Button; import org.adempiere.webui.component.ConfirmPanel; import org.adempiere.webui.component.Grid; @@ -47,7 +46,6 @@ import org.adempiere.webui.window.FDialog; import org.adempiere.webui.window.ZkReportViewer; import org.adempiere.webui.window.ZkReportViewerProvider; import org.compiere.model.MRole; -import org.compiere.model.SystemIDs; import org.compiere.print.MPrintFormat; import org.compiere.print.MPrintFormatItem; import org.compiere.print.ReportEngine; @@ -66,9 +64,7 @@ import org.zkoss.zul.Filedownload; import org.zkoss.zul.Foot; import org.zkoss.zul.Footer; import org.zkoss.zul.Hbox; -import org.zkoss.zul.Iframe; import org.zkoss.zul.Separator; -import org.zkoss.zul.Toolbarbutton; import org.zkoss.zul.Vbox; @@ -106,7 +102,7 @@ public class WReportCustomization implements IFormController,EventListener= 0) - { - SessionManager.getAppDesktop().unregisterWindow(m_WindowNo); - m_ctx = null; - m_WindowNo = -1; - } - } - @Override public void onEvent(Event event) throws Exception { if (Events.ON_CLICK.equals(event.getName())) { @@ -567,65 +521,53 @@ public class WReportCustomization implements IFormController,EventListener listColumns=new ArrayList(); - Window wind=new Window(); SimpleListModel sortModel; - private ReportEngine m_reportEngine=null; - - private static CLogger log = CLogger.getCLogger(WRC2FieldOrderPanel.class); public WRC2FieldOrderPanel() { super(); - } - public Window getWind() { - return wind; - } - - - public void setWind(Window wind) { - this.wind = wind; - } - - - /** - * Static Layout - * @throws Exception - */ - public void setReportEngine(ReportEngine re) { - m_reportEngine = re; - - } - public void setListColumns() { listColumns = new ArrayList(); if (m_pfi != null && m_pfi.length > 0) { @@ -93,7 +67,6 @@ public class WRC2FieldOrderPanel extends WRCTabPanel implements EventListener yesItems=new ArrayList(); public ArrayList noItems=new ArrayList(); @@ -72,16 +65,6 @@ public class WRC3SortCriteriaPanel extends WRCTabPanel implements EventListener public WRC3SortCriteriaPanel() { super(); - //m_WindowNo = SessionManager.getAppDesktop().registerWindow(this); - } - - /** - * Static Layout - * @throws Exception - */ - public void setReportEngine(ReportEngine re) { - - m_reportEngine = re; } public void init() @@ -128,7 +111,6 @@ public class WRC3SortCriteriaPanel extends WRCTabPanel implements EventListener yesList.setItemDraggable(true); noList.setItemDraggable(true); - EventListener yesListMouseMotionListener = new EventListener() { public void onEvent(Event event) throws Exception { @@ -193,8 +175,6 @@ public class WRC3SortCriteriaPanel extends WRCTabPanel implements EventListener listHeader.appendChild(noLabel); listHeader.setParent(listHead); - - Hlayout hlayout = new Hlayout(); hlayout.setVflex("true"); hlayout.setHflex("true"); @@ -235,12 +215,8 @@ public class WRC3SortCriteriaPanel extends WRCTabPanel implements EventListener this.appendChild(hlayout); } - - - @Override public void onEvent(Event event) throws Exception { - // TODO Auto-generated method stub } @@ -310,12 +286,9 @@ public class WRC3SortCriteriaPanel extends WRCTabPanel implements EventListener } } - - @Override public void updatePFI() { // pfi is being updated on every refresh - } /** @@ -373,7 +346,7 @@ public class WRC3SortCriteriaPanel extends WRCTabPanel implements EventListener * Move within Yes List * @param event event */ - void migrateValueWithinYesList (Event event) + private void migrateValueWithinYesList (Event event) { Object[] selObjects = yesList.getSelectedItems().toArray(); if (selObjects == null) @@ -432,27 +405,25 @@ public class WRC3SortCriteriaPanel extends WRCTabPanel implements EventListener } } // migrateValueWithinYesList - public void updateYesList(){ yesList.removeAllItems(); wc.setIsChanged(true); int sortNo=10; for(int i=0;i orderfield=new ArrayList(); @@ -47,7 +45,6 @@ public class WRC4GroupingCriteriaPanel extends WRCTabPanel implements EventListe super(); } - @Override public void refresh() { orderfield = new ArrayList(); @@ -61,22 +58,20 @@ public class WRC4GroupingCriteriaPanel extends WRCTabPanel implements EventListe @Override public void updatePFI() { - for(int i=0 ; i { /** * @@ -43,7 +40,6 @@ public class WRC5SummaryFieldsPanel extends WRCTabPanel implements EventListener private static final long serialVersionUID = -2231369601903381581L; private static final int RENDER_IN_COLUMNS=10; - private MPrintFormat m_printFormat; Checkbox m_chkSum[]=null; Checkbox m_chkCount[]=null; Checkbox m_chkMin[]=null; @@ -58,13 +54,11 @@ public class WRC5SummaryFieldsPanel extends WRCTabPanel implements EventListener super(); } - public void init(){ Window wind=new Window(); wind.setWidth("90%"); wind.setHeight("100%"); wind.setHflex("1"); - grid.setHflex("1"); grid.setHeight("90%"); @@ -78,7 +72,6 @@ public class WRC5SummaryFieldsPanel extends WRCTabPanel implements EventListener wind.appendChild(div); this.appendChild(wind); - if (AEnv.isTablet()) { LayoutUtils.addSclass("tablet-scrolling", div); @@ -88,14 +81,11 @@ public class WRC5SummaryFieldsPanel extends WRCTabPanel implements EventListener grid.appendChild(columns); Column cols[] = new Column[RENDER_IN_COLUMNS]; int width = 100/RENDER_IN_COLUMNS; - int widthChk = width/5; for(int i=0;i, ITab /** * */ - private static final long serialVersionUID = 2079827289589862794L; + private static final long serialVersionUID = 344552813342946104L; /** Window No */ private int m_WindowNo = -1; @@ -308,12 +308,11 @@ public class ZkReportViewer extends Window implements EventListener, ITab bRefresh.setTooltiptext(Util.cleanAmp(Msg.getMsg(Env.getCtx(), "Refresh"))); toolBar.appendChild(bRefresh); bRefresh.addEventListener(Events.ON_CLICK, this); - + bWizard.setImage("/images/Wizard24.png"); bWizard.setTooltiptext(Util.cleanAmp(Msg.getMsg(Env.getCtx(), "PrintWizard"))); toolBar.appendChild(bWizard); bWizard.addEventListener(Events.ON_CLICK, this); - North north = new North(); layout.appendChild(north); @@ -923,7 +922,7 @@ public class ZkReportViewer extends Window implements EventListener, ITab /** * Report Combo - Start other Report or create new one */ - public void cmd_report() + private void cmd_report() { ListItem li = comboReport.getSelectedItem(); if(li == null || li.getValue() == null) return; @@ -1104,23 +1103,18 @@ public class ZkReportViewer extends Window implements EventListener, ITab /*IDEMPIERE -379*/ private void cmd_Wizard() { - int AD_Window_ID = WINDOW_PRINTFORMAT; // hardcoded - int AD_PrintFormat_ID = m_reportEngine.getPrintFormat().get_ID(); - - Env.setContext(m_ctx, "AD_PrintFormat_ID", AD_PrintFormat_ID); + int AD_PrintFormat_ID = m_reportEngine.getPrintFormat().get_ID(); - ADForm form = ADForm.openForm(SystemIDs.WIZARD_REPORT_FORM); - WReportCustomization av = (WReportCustomization) form.getICustomForm(); - av.setReportEngine(m_reportEngine); + Env.setContext(m_ctx, "AD_PrintFormat_ID", AD_PrintFormat_ID); + + ADForm form = ADForm.openForm(SystemIDs.FORM_REPORT_WIZARD); + WReportCustomization av = (WReportCustomization) form.getICustomForm(); + av.setReportEngine(m_reportEngine); + + form.setAttribute(Window.MODE_KEY, Window.MODE_EMBEDDED); + SessionManager.getAppDesktop().showWindow(form); + } // cmd_Wizard - form.setAttribute(Window.MODE_KEY, Window.MODE_EMBEDDED); - SessionManager.getAppDesktop().showWindow(form); - - //ZkReportCustomization zkCustomization = new ZkReportCustomization(m_reportEngine); - //zkCustomization.setAttribute(Window.MODE_KEY, Window.MODE_EMBEDDED); - //zkCustomization.setAttribute(Window.INSERT_POSITION_KEY, Window.INSERT_NEXT); - //SessionManager.getAppDesktop().showWindow(zkCustomization); - } // cmd_customize //-- ComponentCtrl --// public Object getExtraCtrl() { return new ExtraCtrl(); From 8c58fc91e70141c7fc502ffa8d471a5c21db2cdd Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Tue, 30 Oct 2012 23:16:50 -0500 Subject: [PATCH 09/22] IDEMPIERE-379 Reporting wizard for end users / Fix problem with second panel on chrome - fix migration scripts registration --- migration/360lts-release/oracle/923_PlaceHolder.sql | 3 +++ migration/360lts-release/oracle/952_IDEMPIERE_379.sql | 2 +- .../360lts-release/postgresql/923_PlaceHolder.sql | 3 +++ .../360lts-release/postgresql/952_IDEMPIERE_379.sql | 2 +- .../org/adempiere/webui/panel/WRC2FieldOrderPanel.java | 10 ++++++---- 5 files changed, 14 insertions(+), 6 deletions(-) diff --git a/migration/360lts-release/oracle/923_PlaceHolder.sql b/migration/360lts-release/oracle/923_PlaceHolder.sql index 097ff34634..5bf39eb459 100644 --- a/migration/360lts-release/oracle/923_PlaceHolder.sql +++ b/migration/360lts-release/oracle/923_PlaceHolder.sql @@ -1 +1,4 @@ -- Just a placeholder +SELECT register_migration_script('923_PlaceHolder.sql') FROM dual +; + diff --git a/migration/360lts-release/oracle/952_IDEMPIERE_379.sql b/migration/360lts-release/oracle/952_IDEMPIERE_379.sql index be9728b741..9ac93a957c 100644 --- a/migration/360lts-release/oracle/952_IDEMPIERE_379.sql +++ b/migration/360lts-release/oracle/952_IDEMPIERE_379.sql @@ -139,6 +139,6 @@ INSERT INTO AD_Message (MsgType,MsgText,AD_Message_ID,EntityType,AD_Message_UU,V INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Message_Trl_UU ) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=200100 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) ; -SELECT register_migration_script('923_IDEMPIERE_379.sql') FROM dual +SELECT register_migration_script('952_IDEMPIERE_379.sql') FROM dual ; diff --git a/migration/360lts-release/postgresql/923_PlaceHolder.sql b/migration/360lts-release/postgresql/923_PlaceHolder.sql index 097ff34634..5bf39eb459 100644 --- a/migration/360lts-release/postgresql/923_PlaceHolder.sql +++ b/migration/360lts-release/postgresql/923_PlaceHolder.sql @@ -1 +1,4 @@ -- Just a placeholder +SELECT register_migration_script('923_PlaceHolder.sql') FROM dual +; + diff --git a/migration/360lts-release/postgresql/952_IDEMPIERE_379.sql b/migration/360lts-release/postgresql/952_IDEMPIERE_379.sql index 2cc79d1504..b50cedd224 100644 --- a/migration/360lts-release/postgresql/952_IDEMPIERE_379.sql +++ b/migration/360lts-release/postgresql/952_IDEMPIERE_379.sql @@ -139,6 +139,6 @@ INSERT INTO AD_Message (MsgType,MsgText,AD_Message_ID,EntityType,AD_Message_UU,V INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Message_Trl_UU ) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=200100 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) ; -SELECT register_migration_script('923_IDEMPIERE_379.sql') FROM dual +SELECT register_migration_script('952_IDEMPIERE_379.sql') FROM dual ; diff --git a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/WRC2FieldOrderPanel.java b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/WRC2FieldOrderPanel.java index 66d74f80b2..6d684ea3b8 100644 --- a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/WRC2FieldOrderPanel.java +++ b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/WRC2FieldOrderPanel.java @@ -24,7 +24,6 @@ import org.adempiere.webui.component.ListHeader; import org.adempiere.webui.component.ListItem; import org.adempiere.webui.component.Listbox; import org.adempiere.webui.component.SimpleListModel; -import org.adempiere.webui.component.Window; import org.compiere.print.MPrintFormatItem; import org.compiere.util.KeyNamePair; import org.compiere.util.NamePair; @@ -70,8 +69,8 @@ public class WRC2FieldOrderPanel extends WRCTabPanel implements EventListener Date: Wed, 31 Oct 2012 09:37:27 -0500 Subject: [PATCH 10/22] IDEMPIERE-392 Redesign payment button - reuse SystemIDs --- .../src/org/adempiere/util/ModelClassGenerator.java | 5 +++-- .../src/org/compiere/model/MPaymentLookup.java | 6 +++--- .../src/org/compiere/model/SystemIDs.java | 7 ++++--- .../src/org/compiere/grid/ed/VButton.java | 10 +++++++--- .../src/org/adempiere/webui/editor/WButtonEditor.java | 10 +++++++--- 5 files changed, 24 insertions(+), 14 deletions(-) diff --git a/org.adempiere.base/src/org/adempiere/util/ModelClassGenerator.java b/org.adempiere.base/src/org/adempiere/util/ModelClassGenerator.java index a5e0a29e5b..60ce8359fa 100644 --- a/org.adempiere.base/src/org/adempiere/util/ModelClassGenerator.java +++ b/org.adempiere.base/src/org/adempiere/util/ModelClassGenerator.java @@ -19,6 +19,8 @@ *****************************************************************************/ package org.adempiere.util; +import static org.compiere.model.SystemIDs.REFERENCE_PAYMENTRULE; + import java.io.File; import java.io.FileOutputStream; import java.io.OutputStreamWriter; @@ -35,7 +37,6 @@ import java.util.logging.Level; import org.adempiere.exceptions.DBException; import org.compiere.Adempiere; -import org.compiere.model.MPaymentLookup; import org.compiere.util.CLogger; import org.compiere.util.DB; import org.compiere.util.DisplayType; @@ -429,7 +430,7 @@ public class ModelClassGenerator // Payment Validation if (displayType == DisplayType.Payment) { - String staticVar = addListValidation (sb, MPaymentLookup.PAYMENTRULE_AD_Reference_ID, columnName); + String staticVar = addListValidation (sb, REFERENCE_PAYMENTRULE, columnName); sb.insert(0, staticVar); } diff --git a/org.adempiere.base/src/org/compiere/model/MPaymentLookup.java b/org.adempiere.base/src/org/compiere/model/MPaymentLookup.java index e696a4aaca..1aad341ce0 100644 --- a/org.adempiere.base/src/org/compiere/model/MPaymentLookup.java +++ b/org.adempiere.base/src/org/compiere/model/MPaymentLookup.java @@ -13,6 +13,8 @@ *****************************************************************************/ package org.compiere.model; +import static org.compiere.model.SystemIDs.REFERENCE_PAYMENTRULE; + import java.io.Serializable; import java.sql.PreparedStatement; import java.sql.ResultSet; @@ -38,8 +40,6 @@ public class MPaymentLookup extends Lookup implements Serializable { * */ private static final long serialVersionUID = -6863672221350217533L; - - public static final int PAYMENTRULE_AD_Reference_ID = 195; /** Context */ private Properties m_ctx; @@ -136,7 +136,7 @@ public class MPaymentLookup extends Lookup implements Serializable { try { pstmt = DB.prepareStatement(sb.toString(), null); - pstmt.setInt(1, PAYMENTRULE_AD_Reference_ID); + pstmt.setInt(1, REFERENCE_PAYMENTRULE); if (!isBaseLanguage) pstmt.setString(2, ad_language); rs = pstmt.executeQuery(); diff --git a/org.adempiere.base/src/org/compiere/model/SystemIDs.java b/org.adempiere.base/src/org/compiere/model/SystemIDs.java index a225d2b4fd..e72eee1bc8 100644 --- a/org.adempiere.base/src/org/compiere/model/SystemIDs.java +++ b/org.adempiere.base/src/org/compiere/model/SystemIDs.java @@ -112,10 +112,11 @@ public class SystemIDs public final static int REFERENCE_DATATYPE_URL = 40; public final static int REFERENCE_DATATYPE_YES_NO = 20; - public static final int REFERENCE_AD_USER = 110; + public final static int REFERENCE_AD_USER = 110; public final static int REFERENCE_DOCUMENTACTION = 135; public final static int REFERENCE_PAYMENTRULE = 195; public final static int REFERENCE_POSTING_TYPE = 125; + public final static int REFERENCE_POSTED = 234; public final static int REFERENCE_YESNO = 319; public final static int REFERENCE_WIZARDSTATUS = 200003; @@ -134,7 +135,7 @@ public class SystemIDs public final static int USER_SYSTEM = 0; public final static int WINDOW_ACCOUNTCOMBINATION = 153; - public static final int WINDOW_CUSTOMERRETURN = 53097; + public final static int WINDOW_CUSTOMERRETURN = 53097; public final static int WINDOW_INVENTORYMOVE = 170; public final static int WINDOW_LOT = 257; public final static int WINDOW_MATERIALRECEIPT = 184; @@ -144,7 +145,7 @@ public class SystemIDs public final static int WINDOW_PRINTFORMAT = 240; public final static int WINDOW_PRODUCTION = 191; public final static int WINDOW_REQUESTS_ALL = 232; - public static final int WINDOW_RETURNTOVENDOR = 53098; + public final static int WINDOW_RETURNTOVENDOR = 53098; public final static int WINDOW_SHIPMENT_CUSTOMER = 169; public final static int WINDOW_WAREHOUSE_LOCATOR = 139; public final static int WINDOW_WINDOW_TAB_FIELD = 102; diff --git a/org.adempiere.ui.swing/src/org/compiere/grid/ed/VButton.java b/org.adempiere.ui.swing/src/org/compiere/grid/ed/VButton.java index 60eebae0ca..2d0698e655 100644 --- a/org.adempiere.ui.swing/src/org/compiere/grid/ed/VButton.java +++ b/org.adempiere.ui.swing/src/org/compiere/grid/ed/VButton.java @@ -16,6 +16,10 @@ *****************************************************************************/ package org.compiere.grid.ed; +import static org.compiere.model.SystemIDs.REFERENCE_DOCUMENTACTION; +import static org.compiere.model.SystemIDs.REFERENCE_PAYMENTRULE; +import static org.compiere.model.SystemIDs.REFERENCE_POSTED; + import java.awt.Color; import java.awt.event.ActionListener; import java.beans.PropertyChangeEvent; @@ -88,13 +92,13 @@ public final class VButton extends CButton // Special Buttons if (columnName.equals("PaymentRule")) { - readReference(195); + readReference(REFERENCE_PAYMENTRULE); this.setForeground(Color.blue); setIcon(Env.getImageIcon("Payment16.gif")); // 29*14 } else if (columnName.equals("DocAction")) { - readReference(135); + readReference(REFERENCE_DOCUMENTACTION); this.setForeground(Color.blue); setIcon(Env.getImageIcon("Process16.gif")); // 16*16 } @@ -109,7 +113,7 @@ public final class VButton extends CButton } else if (columnName.equals("Posted")) { - readReference(234); + readReference(REFERENCE_POSTED); this.setForeground(Color.magenta); setIcon(Env.getImageIcon("InfoAccount16.gif")); // 16*16 } diff --git a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/editor/WButtonEditor.java b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/editor/WButtonEditor.java index f618aa079a..0ea7fe495a 100644 --- a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/editor/WButtonEditor.java +++ b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/editor/WButtonEditor.java @@ -17,6 +17,10 @@ package org.adempiere.webui.editor; +import static org.compiere.model.SystemIDs.REFERENCE_DOCUMENTACTION; +import static org.compiere.model.SystemIDs.REFERENCE_PAYMENTRULE; +import static org.compiere.model.SystemIDs.REFERENCE_POSTED; + import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; @@ -111,12 +115,12 @@ public class WButtonEditor extends WEditor implements IProcessButton String columnName = super.getColumnName(); if (columnName.equals("PaymentRule")) { - readReference(195); + readReference(REFERENCE_PAYMENTRULE); getComponent().setImage("/images/Payment16.png"); // 29*14 } else if (columnName.equals("DocAction")) { - readReference(135); + readReference(REFERENCE_DOCUMENTACTION); getComponent().setImage("/images/Process16.png"); // 16*16 } else if (columnName.equals("CreateFrom")) @@ -130,7 +134,7 @@ public class WButtonEditor extends WEditor implements IProcessButton } else if (columnName.equals("Posted")) { - readReference(234); + readReference(REFERENCE_POSTED); getComponent().setImage("/images/InfoAccount16.png"); // 16*16 } From 24e890925d7b58fbf3e0a75c1cbdf48327c19a9c Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Wed, 31 Oct 2012 10:04:03 -0500 Subject: [PATCH 11/22] IDEMPIERE-469 Translation Import not working in zk --- .../webui/install/WTranslationDialog.java | 116 ++++++++++-------- 1 file changed, 65 insertions(+), 51 deletions(-) diff --git a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/install/WTranslationDialog.java b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/install/WTranslationDialog.java index 5dfeb22806..7f3b486fbf 100644 --- a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/install/WTranslationDialog.java +++ b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/install/WTranslationDialog.java @@ -27,6 +27,7 @@ import org.adempiere.webui.component.ListboxFactory; import org.adempiere.webui.component.Panel; import org.adempiere.webui.component.Row; import org.adempiere.webui.component.Rows; +import org.adempiere.webui.event.DialogEvents; import org.adempiere.webui.panel.ADForm; import org.adempiere.webui.panel.CustomForm; import org.adempiere.webui.panel.IFormController; @@ -43,8 +44,8 @@ import org.zkoss.zk.ui.event.Event; import org.zkoss.zk.ui.event.EventListener; import org.zkoss.zul.Borderlayout; import org.zkoss.zul.Center; -import org.zkoss.zul.South; import org.zkoss.zul.Div; +import org.zkoss.zul.South; public class WTranslationDialog extends TranslationController implements IFormController, EventListener { @@ -91,6 +92,10 @@ public class WTranslationDialog extends TranslationController implements IFormCo private Label lTable = new Label(); private Listbox cbTable = ListboxFactory.newDropdownListbox(); private StatusBarPanel statusBar = new StatusBarPanel(); + private ValueNamePair m_AD_Table; + private int m_AD_Client_ID; + private boolean m_imp; + private ValueNamePair m_AD_Language; private void zkInit() throws Exception { @@ -173,8 +178,8 @@ public class WTranslationDialog extends TranslationController implements IFormCo return; } - ValueNamePair AD_Language = (ValueNamePair)cbLanguage.getSelectedItem().toValueNamePair(); - if (AD_Language == null) + m_AD_Language = (ValueNamePair)cbLanguage.getSelectedItem().toValueNamePair(); + if (m_AD_Language == null) { statusBar.setStatusLine(Msg.getMsg(Env.getCtx(), "LanguageSetupError"), true); return; @@ -183,66 +188,75 @@ public class WTranslationDialog extends TranslationController implements IFormCo if (cbTable.getSelectedIndex() == -1) return; - ValueNamePair AD_Table = (ValueNamePair)cbTable.getSelectedItem().toValueNamePair(); - if (AD_Table == null) + m_AD_Table = (ValueNamePair)cbTable.getSelectedItem().toValueNamePair(); + if (m_AD_Table == null) return; - boolean imp = (e.getTarget() == bImport); + m_imp = (e.getTarget() == bImport); - int AD_Client_ID = -1; + m_AD_Client_ID = -1; KeyNamePair AD_Client = null; if (cbTable.getSelectedIndex() != -1) AD_Client = (KeyNamePair)cbClient.getSelectedItem().toKeyNamePair(); if (AD_Client != null) - AD_Client_ID = AD_Client.getKey(); + m_AD_Client_ID = AD_Client.getKey(); - FolderBrowser directoryDialog = new FolderBrowser(true); - String directory = directoryDialog.getPath(); - - if(directory == null) return; - // - statusBar.setStatusLine(directory); - - Translation t = new Translation(Env.getCtx()); - StringBuilder msg = new StringBuilder(t.validateLanguage(AD_Language.getValue())); - if (msg.length() > 0) - { - FDialog.error(m_WindowNo, form, "LanguageSetupError", msg.toString()); - return; - } - - // All Tables - if (AD_Table.getValue().equals("")) - { - msg = new StringBuilder(); - - for (int i = 1; i < cbTable.getItemCount(); i++) - { - AD_Table = (ValueNamePair)cbTable.getItemAtIndex(i).toValueNamePair(); - // Carlos Ruiz - globalqss - improve output message from translation import process - msg.append(AD_Table.getValue()).append(" ").append((imp - ? t.importTrl (directory, AD_Client_ID, AD_Language.getValue(), AD_Table.getValue()) - : t.exportTrl (directory, AD_Client_ID, AD_Language.getValue(), AD_Table.getValue()))).append(" "); + final FolderBrowser directoryDialog = new FolderBrowser(true); + directoryDialog.addEventListener(DialogEvents.ON_WINDOW_CLOSE, new EventListener() { + @Override + public void onEvent(Event event) throws Exception { + callImportProcess(directoryDialog.getPath()); } - - if(msg == null || msg.length() == 0) - msg = new StringBuilder((imp ? "Import" : "Export")).append(" Successful. [").append(directory).append("]"); - statusBar.setStatusLine(msg.toString()); - } - else // single table - { - msg = null; - msg = new StringBuilder(imp - ? t.importTrl (directory, AD_Client_ID, AD_Language.getValue(), AD_Table.getValue()) - : t.exportTrl (directory, AD_Client_ID, AD_Language.getValue(), AD_Table.getValue())); + private void callImportProcess(String path) { + String directory = directoryDialog.getPath(); - if(msg == null || msg.length() == 0) - msg = new StringBuilder(imp ? "Import" : "Export").append(" Successful. [").append(directory).append("]"); - - statusBar.setStatusLine(msg.toString()); - } + if(directory == null) return; + // + statusBar.setStatusLine(directory); + + Translation t = new Translation(Env.getCtx()); + StringBuilder msg = new StringBuilder(t.validateLanguage(m_AD_Language.getValue())); + if (msg.length() > 0) + { + FDialog.error(m_WindowNo, form, "LanguageSetupError", msg.toString()); + return; + } + + // All Tables + if (m_AD_Table.getValue().equals("")) + { + msg = new StringBuilder(); + + for (int i = 1; i < cbTable.getItemCount(); i++) + { + m_AD_Table = (ValueNamePair)cbTable.getItemAtIndex(i).toValueNamePair(); + // Carlos Ruiz - globalqss - improve output message from translation import process + msg.append(m_AD_Table.getValue()).append(" ").append((m_imp + ? t.importTrl (directory, m_AD_Client_ID, m_AD_Language.getValue(), m_AD_Table.getValue()) + : t.exportTrl (directory, m_AD_Client_ID, m_AD_Language.getValue(), m_AD_Table.getValue()))).append(" "); + } + + if(msg == null || msg.length() == 0) + msg = new StringBuilder((m_imp ? "Import" : "Export")).append(" Successful. [").append(directory).append("]"); + + statusBar.setStatusLine(msg.toString()); + } + else // single table + { + msg = null; + msg = new StringBuilder(m_imp + ? t.importTrl (directory, m_AD_Client_ID, m_AD_Language.getValue(), m_AD_Table.getValue()) + : t.exportTrl (directory, m_AD_Client_ID, m_AD_Language.getValue(), m_AD_Table.getValue())); + + if(msg == null || msg.length() == 0) + msg = new StringBuilder(m_imp ? "Import" : "Export").append(" Successful. [").append(directory).append("]"); + + statusBar.setStatusLine(msg.toString()); + } + } + }); } // actionPerformed public ADForm getForm() { From 75b4c8642157aa5b3a362286f9208442fc0ed55d Mon Sep 17 00:00:00 2001 From: Deepak Pansheriya Date: Wed, 31 Oct 2012 11:30:32 -0500 Subject: [PATCH 12/22] PFA patch for fixes related to ticket IDEMPIERE-265 zk - Save/etrieve search problems --- migration/360lts-release/oracle/949_IDEMPIERE-265.sql | 7 +++++++ migration/360lts-release/postgresql/949_IDEMPIERE-265.sql | 7 +++++++ .../WEB-INF/src/org/adempiere/webui/window/FindWindow.java | 2 +- 3 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 migration/360lts-release/oracle/949_IDEMPIERE-265.sql create mode 100644 migration/360lts-release/postgresql/949_IDEMPIERE-265.sql diff --git a/migration/360lts-release/oracle/949_IDEMPIERE-265.sql b/migration/360lts-release/oracle/949_IDEMPIERE-265.sql new file mode 100644 index 0000000000..24a4e80e6f --- /dev/null +++ b/migration/360lts-release/oracle/949_IDEMPIERE-265.sql @@ -0,0 +1,7 @@ +-- Oct 27, 2012 3:42:39 PM IST +-- Allow records to be deleted +UPDATE AD_Table SET IsDeleteable='Y',Updated=TO_DATE('2012-10-27 15:42:39','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Table_ID=814 +; + +SELECT register_migration_script('949_IDEMPIERE-265.sql') FROM dual +; \ No newline at end of file diff --git a/migration/360lts-release/postgresql/949_IDEMPIERE-265.sql b/migration/360lts-release/postgresql/949_IDEMPIERE-265.sql new file mode 100644 index 0000000000..58cc864c19 --- /dev/null +++ b/migration/360lts-release/postgresql/949_IDEMPIERE-265.sql @@ -0,0 +1,7 @@ +-- Oct 27, 2012 3:42:39 PM IST +-- Allow records to be deleted +UPDATE AD_Table SET IsDeleteable='Y',Updated=TO_TIMESTAMP('2012-10-27 15:42:39','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Table_ID=814 +; + +SELECT register_migration_script('949_IDEMPIERE-265.sql') FROM dual +; \ No newline at end of file diff --git a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/window/FindWindow.java b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/window/FindWindow.java index 6da05da647..c61236ac25 100644 --- a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/window/FindWindow.java +++ b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/window/FindWindow.java @@ -831,7 +831,7 @@ public class FindWindow extends Window implements EventListener, ValueCha String value2 = fields.length > INDEX_VALUE2 ? fields[INDEX_VALUE2] : ""; if(value2.length() > 0) { - cellQueryTo.setAttribute("value", value); // Elaine 2009/03/16 - set attribute value + cellQueryTo.setAttribute("value", value2); // Elaine 2009/03/16 - set attribute value cellQueryTo.appendChild(parseString(getTargetMField(columnName), value2, listItem, true)); } From b3de9ec20f62cf523b47b9dc3176c0047c86a38d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Pe=C3=B1uela?= Date: Wed, 31 Oct 2012 14:41:19 -0500 Subject: [PATCH 13/22] IDEMPIERE-24 Export 2pack zip on BP window fails --- .../handler/GenericPOElementHandler.java | 4 +-- .../pipo2/AbstractElementHandler.java | 26 +++++++++---------- .../adempiere/pipo2/GridTab2PackExporter.java | 6 +++-- .../src/org/adempiere/pipo2/PackOut.java | 3 ++- 4 files changed, 21 insertions(+), 18 deletions(-) diff --git a/org.adempiere.pipo.handlers/src/org/adempiere/pipo2/handler/GenericPOElementHandler.java b/org.adempiere.pipo.handlers/src/org/adempiere/pipo2/handler/GenericPOElementHandler.java index 768d4b941b..0c330f1032 100644 --- a/org.adempiere.pipo.handlers/src/org/adempiere/pipo2/handler/GenericPOElementHandler.java +++ b/org.adempiere.pipo.handlers/src/org/adempiere/pipo2/handler/GenericPOElementHandler.java @@ -311,8 +311,8 @@ public class GenericPOElementHandler extends AbstractElementHandler { filler.export(excludes, true); } } - if (index + 1 < tables.length) { - exportDetail(ctx, document, po, index+1, tables); + for (int i=index+1; i 0) { ctx.packIn.addTable(value.toString(), id); } } } else { - id = IDFinder.findIdByColumn(tableName, columnName, value, getClientId(ctx.ctx), ignorecase, ctx.trx.getTrxName()); + id = IDFinder.findIdByColumn(tableName, columnName, value, getClientId(ctx.ctx), ignorecase, getTrxName(ctx)); } return id; } @@ -99,7 +99,7 @@ public abstract class AbstractElementHandler implements ElementHandler { * @return X_AD_Package_Imp_Detail */ public X_AD_Package_Imp_Detail createImportDetail(PIPOContext ctx, String type, String tableName, int tableId) { - X_AD_Package_Imp_Detail impDetail = new X_AD_Package_Imp_Detail(ctx.ctx, 0, ctx.trx.getTrxName()); + X_AD_Package_Imp_Detail impDetail = new X_AD_Package_Imp_Detail(ctx.ctx, 0, getTrxName(ctx)); impDetail.setAD_Package_Imp_ID(getPackageImpId(ctx.ctx)); impDetail.setAD_Org_ID(Env.getAD_Org_ID(ctx.ctx) ); impDetail.setType(type); @@ -108,7 +108,7 @@ public abstract class AbstractElementHandler implements ElementHandler { impDetail.setAD_Original_ID(1); impDetail.setTableName(tableName); impDetail.setAD_Table_ID(tableId); - impDetail.saveEx(ctx.trx.getTrxName()); + impDetail.saveEx(getTrxName(ctx)); return impDetail; } @@ -145,7 +145,7 @@ public abstract class AbstractElementHandler implements ElementHandler { * @param nameMaster */ public int findIdByNameAndParentName (PIPOContext ctx, String tableName, String name, String tableNameMaster, String nameMaster) { - return IDFinder.findIdByNameAndParentName(tableName, name, tableNameMaster, nameMaster, getClientId(ctx.ctx), ctx.trx.getTrxName()); + return IDFinder.findIdByNameAndParentName(tableName, name, tableNameMaster, nameMaster, getClientId(ctx.ctx), getTrxName(ctx)); } /** @@ -159,7 +159,7 @@ public abstract class AbstractElementHandler implements ElementHandler { public int findIdByColumnAndParentId (PIPOContext ctx, String tableName, String columnName, String name, String tableNameMaster, int masterID) { return IDFinder.findIdByColumnAndParentId(tableName, columnName, name, tableNameMaster, masterID, getClientId(ctx.ctx), - ctx.trx.getTrxName()); + getTrxName(ctx)); } /** @@ -173,7 +173,7 @@ public abstract class AbstractElementHandler implements ElementHandler { */ public int findIdByColumnAndParentId (PIPOContext ctx, String tableName, String columnName, String name, String tableNameMaster, int masterID, boolean ignoreCase) { return IDFinder.findIdByColumnAndParentId(tableName, columnName, name, tableNameMaster, masterID, getClientId(ctx.ctx), - ignoreCase, ctx.trx.getTrxName()); + ignoreCase, getTrxName(ctx)); } /** @@ -185,7 +185,7 @@ public abstract class AbstractElementHandler implements ElementHandler { * @param masterID */ public int findIdByNameAndParentId (PIPOContext ctx, String tableName, String name, String tableNameMaster, int masterID) { - return IDFinder.findIdByNameAndParentId(tableName, name, tableNameMaster, masterID, getClientId(ctx.ctx), ctx.trx.getTrxName()); + return IDFinder.findIdByNameAndParentId(tableName, name, tableNameMaster, masterID, getClientId(ctx.ctx), getTrxName(ctx)); } /** @@ -203,7 +203,7 @@ public abstract class AbstractElementHandler implements ElementHandler { int tableID = findIdByColumn(ctx, "AD_Table", "TableName", tableName); POInfo poInfo = POInfo.getPOInfo(ctx.ctx, tableID); - PreparedStatement pstmtReferenceId = DB.prepareStatement("SELECT AD_Reference_ID FROM AD_COLUMN WHERE AD_Column_ID = ?", ctx.trx.getTrxName()); + PreparedStatement pstmtReferenceId = DB.prepareStatement("SELECT AD_Reference_ID FROM AD_COLUMN WHERE AD_Column_ID = ?", getTrxName(ctx)); ResultSet rs=null; try{ @@ -220,7 +220,7 @@ public abstract class AbstractElementHandler implements ElementHandler { if (rs.next()) referenceID = rs.getInt(1); - X_AD_Package_Imp_Backup backup = new X_AD_Package_Imp_Backup(ctx.ctx, 0, ctx.trx.getTrxName()); + X_AD_Package_Imp_Backup backup = new X_AD_Package_Imp_Backup(ctx.ctx, 0, getTrxName(ctx)); backup.setAD_Org_ID(Env.getAD_Org_ID(ctx.ctx)); backup.setAD_Package_Imp_ID(getPackageImpId(ctx.ctx)); backup.setAD_Package_Imp_Detail_ID(AD_Package_Imp_Detail_ID); @@ -560,7 +560,7 @@ public abstract class AbstractElementHandler implements ElementHandler { if (element.properties.containsKey(uuidColumn)) { String uuid = element.properties.get(uuidColumn).contents.toString(); if (uuid != null && uuid.trim().length() == 36) { - Query query = new Query(ctx.ctx, tableName, uuidColumn+"=?", ctx.trx.getTrxName()); + Query query = new Query(ctx.ctx, tableName, uuidColumn+"=?", getTrxName(ctx)); po = query.setParameters(uuid.trim()).firstOnly(); } } @@ -568,7 +568,7 @@ public abstract class AbstractElementHandler implements ElementHandler { if (po == null && element.properties.containsKey(idColumn)) { String id = element.properties.get(idColumn).contents.toString(); if (id != null && id.trim().length() > 0) { - Query query = new Query(ctx.ctx, tableName, idColumn+"=?", ctx.trx.getTrxName()); + Query query = new Query(ctx.ctx, tableName, idColumn+"=?", getTrxName(ctx)); po = query.setParameters(Integer.valueOf(id.trim())).firstOnly(); } } diff --git a/org.adempiere.pipo/src/org/adempiere/pipo2/GridTab2PackExporter.java b/org.adempiere.pipo/src/org/adempiere/pipo2/GridTab2PackExporter.java index 86f4515cce..9b84b19bff 100644 --- a/org.adempiere.pipo/src/org/adempiere/pipo2/GridTab2PackExporter.java +++ b/org.adempiere.pipo/src/org/adempiere/pipo2/GridTab2PackExporter.java @@ -46,6 +46,7 @@ public class GridTab2PackExporter implements IGridTabExporter { public void export(GridTab gridTab, List childs, boolean currentRowOnly, File file) { String tableName = gridTab.getTableName(); PackOut packOut = new PackOut(); + packOut.setCtx(Env.getCtx()); Map properties = new HashMap(); properties.putAll(Env.getCtx()); List packoutItems = new ArrayList(); @@ -54,14 +55,15 @@ public class GridTab2PackExporter implements IGridTabExporter { StringBuffer sql = new StringBuffer("SELECT * FROM "); sql.append(tableName); if (currentRowOnly) { - sql.append(" WHERE ").append(tableName).append("_ID=").append(gridTab.getRecord_ID()); + sql.append(" WHERE ").append(gridTab.getTableModel().getWhereClause(gridTab.getCurrentRow())); } else { for(int i = 0; i < gridTab.getRowCount(); i++) { if (i == 0) sql.append(" WHERE "); else sql.append(" OR "); - sql.append(tableName).append("_ID=").append(gridTab.getKeyID(i)); + gridTab.navigate(i); + sql.append(gridTab.getTableModel().getWhereClause(gridTab.getCurrentRow())); } } for(GridTab child : childs) { diff --git a/org.adempiere.pipo/src/org/adempiere/pipo2/PackOut.java b/org.adempiere.pipo/src/org/adempiere/pipo2/PackOut.java index 5e64e2f8e4..4dbd6b05de 100644 --- a/org.adempiere.pipo/src/org/adempiere/pipo2/PackOut.java +++ b/org.adempiere.pipo/src/org/adempiere/pipo2/PackOut.java @@ -294,7 +294,8 @@ public class PackOut } private void initContext() { - pipoContext.trx = Trx.get(trxName, true); + if (trxName != null) + pipoContext.trx = Trx.get(trxName, true); pipoContext.packOut = this; } From ae74c7e714e63c1df2026926d8a0914dd0eb984f Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Wed, 31 Oct 2012 15:09:02 -0500 Subject: [PATCH 14/22] Pre-release work --- .../oracle/659_FR2871676_ReportAmountType.sql | 412 - ...944056_FixSubstituteRelatedInfoProduct.sql | 28 - .../661_FR_2945715_AdvancedSearchMsg.sql | 30 - .../354a-trunk/oracle/662_BT_2944388.sql | 5 - .../oracle/663_FR2949534_ResetAllocation.sql | 35 - .../664_FR2934358_FixedTyposOnElements.sql | 261 - .../665_FR2952245_ImportDataPlanning.sql | 2069 ----- .../oracle/666_BF2952456_PP_Identifiers.sql | 20 - .../667_FR2956390_SchedulerEnhancement.sql | 160 - ...68_FR2957782_PaySelection_DueDate_Para.sql | 10 - migration/354a-trunk/oracle/669_BF2904257.sql | 5 - .../670_FR2962094_AddProcesssedOnColumn.sql | 237 - .../oracle/671_FR2962094_FillProcesssedOn.sql | 421 - migration/354a-trunk/oracle/672_BF2948897.sql | 15 - migration/354a-trunk/oracle/673_BF2948897.sql | 105 - migration/354a-trunk/oracle/674_FR2965494.sql | 311 - ...2094_AddAverageCostVarianceDefaultAcct.sql | 413 - ...676_FR2962094_SetAverageCostVarianceGW.sql | 56 - .../677_BT2092712_Unalloc_payment_report.sql | 1 - .../354a-trunk/oracle/678_BF_1774758.sql | 9 - .../oracle/679_BF2042466FixProductURL.sql | 8 - migration/354a-trunk/oracle/680_BF2970013.sql | 82 - migration/354a-trunk/oracle/681_BF2968442.sql | 146 - .../659_FR2871676_ReportAmountType.sql | 411 - ...944056_FixSubstituteRelatedInfoProduct.sql | 28 - .../661_FR_2945715_AdvancedSearchMsg.sql | 30 - .../354a-trunk/postgresql/662_BT_2944388.sql | 5 - .../663_FR2949534_ResetAllocation.sql | 35 - .../664_FR2934358_FixedTyposOnElements.sql | 260 - .../665_FR2952245_ImportDataPlanning.sql | 2069 ----- .../666_BF2952456_PP_Identifiers.sql | 20 - .../667_FR2956390_SchedulerEnhancement.sql | 160 - ...68_FR2957782_PaySelection_DueDate_Para.sql | 10 - .../354a-trunk/postgresql/669_BF2904257.sql | 5 - .../670_FR2962094_AddProcesssedOnColumn.sql | 237 - .../671_FR2962094_FillProcesssedOn.sql | 421 - .../354a-trunk/postgresql/672_BF2948897.sql | 15 - .../354a-trunk/postgresql/673_BF2948897.sql | 105 - .../354a-trunk/postgresql/674_FR2965494.sql | 311 - ...2094_AddAverageCostVarianceDefaultAcct.sql | 413 - ...676_FR2962094_SetAverageCostVarianceGW.sql | 56 - .../677_BT_2092712_Unalloc_payment_report.sql | 1 - .../354a-trunk/postgresql/678_BF_1774758.sql | 9 - .../postgresql/679_BF2042466FixProductURL.sql | 8 - .../354a-trunk/postgresql/680_BF2970013.sql | 82 - .../354a-trunk/postgresql/681_BF2968442.sql | 146 - .../360lts-release/oracle/925_PlaceHolder.sql | 4 + .../360lts-release/oracle/926_PlaceHolder.sql | 4 + .../360lts-release/oracle/937_PlaceHolder.sql | 4 + .../360lts-release/oracle/951_PlaceHolder.sql | 4 + .../360lts-release/oracle/953_PlaceHolder.sql | 4 + .../360lts-release/oracle/954_UUID_Sync.sql | 7004 +++++++++++++++++ .../oracle/955_FixWrongEntityTypes.sql | 29 + .../360lts-release/oracle/956_ForeignKeys.sql | 381 + .../oracle/957_SetSysConfig.sql | 36 + .../postgresql/925_PlaceHolder.sql | 4 + .../postgresql/926_PlaceHolder.sql | 4 + .../postgresql/937_PlaceHolder.sql | 4 + .../postgresql/951_PlaceHolder.sql | 4 + .../postgresql/953_PlaceHolder.sql | 4 + .../postgresql/954_UUID_Sync.sql | 7004 +++++++++++++++++ .../postgresql/955_FixWrongEntityTypes.sql | 29 + .../postgresql/956_ForeignKeys.sql | 381 + .../postgresql/957_SetSysConfig.sql | 36 + 64 files changed, 14940 insertions(+), 9676 deletions(-) delete mode 100644 migration/354a-trunk/oracle/659_FR2871676_ReportAmountType.sql delete mode 100644 migration/354a-trunk/oracle/660_BF_2944056_FixSubstituteRelatedInfoProduct.sql delete mode 100644 migration/354a-trunk/oracle/661_FR_2945715_AdvancedSearchMsg.sql delete mode 100644 migration/354a-trunk/oracle/662_BT_2944388.sql delete mode 100644 migration/354a-trunk/oracle/663_FR2949534_ResetAllocation.sql delete mode 100644 migration/354a-trunk/oracle/664_FR2934358_FixedTyposOnElements.sql delete mode 100644 migration/354a-trunk/oracle/665_FR2952245_ImportDataPlanning.sql delete mode 100644 migration/354a-trunk/oracle/666_BF2952456_PP_Identifiers.sql delete mode 100644 migration/354a-trunk/oracle/667_FR2956390_SchedulerEnhancement.sql delete mode 100644 migration/354a-trunk/oracle/668_FR2957782_PaySelection_DueDate_Para.sql delete mode 100644 migration/354a-trunk/oracle/669_BF2904257.sql delete mode 100644 migration/354a-trunk/oracle/670_FR2962094_AddProcesssedOnColumn.sql delete mode 100644 migration/354a-trunk/oracle/671_FR2962094_FillProcesssedOn.sql delete mode 100644 migration/354a-trunk/oracle/672_BF2948897.sql delete mode 100644 migration/354a-trunk/oracle/673_BF2948897.sql delete mode 100644 migration/354a-trunk/oracle/674_FR2965494.sql delete mode 100644 migration/354a-trunk/oracle/675_FR2962094_AddAverageCostVarianceDefaultAcct.sql delete mode 100644 migration/354a-trunk/oracle/676_FR2962094_SetAverageCostVarianceGW.sql delete mode 100644 migration/354a-trunk/oracle/677_BT2092712_Unalloc_payment_report.sql delete mode 100644 migration/354a-trunk/oracle/678_BF_1774758.sql delete mode 100644 migration/354a-trunk/oracle/679_BF2042466FixProductURL.sql delete mode 100644 migration/354a-trunk/oracle/680_BF2970013.sql delete mode 100644 migration/354a-trunk/oracle/681_BF2968442.sql delete mode 100644 migration/354a-trunk/postgresql/659_FR2871676_ReportAmountType.sql delete mode 100644 migration/354a-trunk/postgresql/660_BF_2944056_FixSubstituteRelatedInfoProduct.sql delete mode 100644 migration/354a-trunk/postgresql/661_FR_2945715_AdvancedSearchMsg.sql delete mode 100644 migration/354a-trunk/postgresql/662_BT_2944388.sql delete mode 100644 migration/354a-trunk/postgresql/663_FR2949534_ResetAllocation.sql delete mode 100644 migration/354a-trunk/postgresql/664_FR2934358_FixedTyposOnElements.sql delete mode 100644 migration/354a-trunk/postgresql/665_FR2952245_ImportDataPlanning.sql delete mode 100644 migration/354a-trunk/postgresql/666_BF2952456_PP_Identifiers.sql delete mode 100644 migration/354a-trunk/postgresql/667_FR2956390_SchedulerEnhancement.sql delete mode 100644 migration/354a-trunk/postgresql/668_FR2957782_PaySelection_DueDate_Para.sql delete mode 100644 migration/354a-trunk/postgresql/669_BF2904257.sql delete mode 100644 migration/354a-trunk/postgresql/670_FR2962094_AddProcesssedOnColumn.sql delete mode 100644 migration/354a-trunk/postgresql/671_FR2962094_FillProcesssedOn.sql delete mode 100644 migration/354a-trunk/postgresql/672_BF2948897.sql delete mode 100644 migration/354a-trunk/postgresql/673_BF2948897.sql delete mode 100644 migration/354a-trunk/postgresql/674_FR2965494.sql delete mode 100644 migration/354a-trunk/postgresql/675_FR2962094_AddAverageCostVarianceDefaultAcct.sql delete mode 100644 migration/354a-trunk/postgresql/676_FR2962094_SetAverageCostVarianceGW.sql delete mode 100644 migration/354a-trunk/postgresql/677_BT_2092712_Unalloc_payment_report.sql delete mode 100644 migration/354a-trunk/postgresql/678_BF_1774758.sql delete mode 100644 migration/354a-trunk/postgresql/679_BF2042466FixProductURL.sql delete mode 100644 migration/354a-trunk/postgresql/680_BF2970013.sql delete mode 100644 migration/354a-trunk/postgresql/681_BF2968442.sql create mode 100644 migration/360lts-release/oracle/925_PlaceHolder.sql create mode 100644 migration/360lts-release/oracle/926_PlaceHolder.sql create mode 100644 migration/360lts-release/oracle/937_PlaceHolder.sql create mode 100644 migration/360lts-release/oracle/951_PlaceHolder.sql create mode 100644 migration/360lts-release/oracle/953_PlaceHolder.sql create mode 100644 migration/360lts-release/oracle/954_UUID_Sync.sql create mode 100644 migration/360lts-release/oracle/955_FixWrongEntityTypes.sql create mode 100644 migration/360lts-release/oracle/956_ForeignKeys.sql create mode 100644 migration/360lts-release/oracle/957_SetSysConfig.sql create mode 100644 migration/360lts-release/postgresql/925_PlaceHolder.sql create mode 100644 migration/360lts-release/postgresql/926_PlaceHolder.sql create mode 100644 migration/360lts-release/postgresql/937_PlaceHolder.sql create mode 100644 migration/360lts-release/postgresql/951_PlaceHolder.sql create mode 100644 migration/360lts-release/postgresql/953_PlaceHolder.sql create mode 100644 migration/360lts-release/postgresql/954_UUID_Sync.sql create mode 100644 migration/360lts-release/postgresql/955_FixWrongEntityTypes.sql create mode 100644 migration/360lts-release/postgresql/956_ForeignKeys.sql create mode 100644 migration/360lts-release/postgresql/957_SetSysConfig.sql diff --git a/migration/354a-trunk/oracle/659_FR2871676_ReportAmountType.sql b/migration/354a-trunk/oracle/659_FR2871676_ReportAmountType.sql deleted file mode 100644 index 15a10895d4..0000000000 --- a/migration/354a-trunk/oracle/659_FR2871676_ReportAmountType.sql +++ /dev/null @@ -1,412 +0,0 @@ -SET DEFINE OFF; --- 02/10/2009 11:33:15 AM --- Add signed amount type to fin report -INSERT INTO AD_Reference (AD_Client_ID,AD_Org_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,IsOrderByValue,Name,Updated,UpdatedBy,ValidationType) VALUES (0,0,53327,TO_DATE('2009-10-02 11:33:12','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','N','PA_Report Period Type',TO_DATE('2009-10-02 11:33:12','YYYY-MM-DD HH24:MI:SS'),100,'L') -; - --- 02/10/2009 11:33:15 AM --- Add signed amount type to fin report -INSERT INTO AD_Reference_Trl (AD_Language,AD_Reference_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Reference_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Reference t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Reference_ID=53327 AND EXISTS (SELECT * FROM AD_Reference_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Reference_ID!=t.AD_Reference_ID) -; - --- 02/10/2009 11:33:29 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53327,53536,TO_DATE('2009-10-02 11:33:28','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Total',TO_DATE('2009-10-02 11:33:28','YYYY-MM-DD HH24:MI:SS'),100,'T') -; - --- 02/10/2009 11:33:29 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53536 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 02/10/2009 11:33:38 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53327,53537,TO_DATE('2009-10-02 11:33:37','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Year',TO_DATE('2009-10-02 11:33:37','YYYY-MM-DD HH24:MI:SS'),100,'Y') -; - --- 02/10/2009 11:33:38 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53537 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 02/10/2009 11:33:51 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53327,53538,TO_DATE('2009-10-02 11:33:50','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Period',TO_DATE('2009-10-02 11:33:50','YYYY-MM-DD HH24:MI:SS'),100,'P') -; - --- 02/10/2009 11:33:51 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53538 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 02/10/2009 11:40:15 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,Description,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53327,53540,TO_DATE('2009-10-02 11:40:14','YYYY-MM-DD HH24:MI:SS'),100,'Year for P & L account, Total for Balance Sheet account','D','Y','Natural',TO_DATE('2009-10-02 11:40:14','YYYY-MM-DD HH24:MI:SS'),100,'N') -; - --- 02/10/2009 11:40:15 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53540 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 02/10/2009 11:42:57 AM --- Add signed amount type to fin report -UPDATE AD_Reference SET IsActive='N', Name='PA_Report AmountType (deprecated)',Updated=TO_DATE('2009-10-02 11:42:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Reference_ID=235 -; - --- 02/10/2009 11:42:57 AM --- Add signed amount type to fin report -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=235 -; - --- 02/10/2009 11:43:16 AM --- Add signed amount type to fin report -INSERT INTO AD_Reference (AD_Client_ID,AD_Org_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,IsOrderByValue,Name,Updated,UpdatedBy,ValidationType) VALUES (0,0,53328,TO_DATE('2009-10-02 11:43:15','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','N','PA_Report Amount Type',TO_DATE('2009-10-02 11:43:15','YYYY-MM-DD HH24:MI:SS'),100,'L') -; - --- 02/10/2009 11:43:16 AM --- Add signed amount type to fin report -INSERT INTO AD_Reference_Trl (AD_Language,AD_Reference_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Reference_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Reference t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Reference_ID=53328 AND EXISTS (SELECT * FROM AD_Reference_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Reference_ID!=t.AD_Reference_ID) -; - --- 02/10/2009 11:44:10 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53328,53541,TO_DATE('2009-10-02 11:44:09','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Balance (expected sign)',TO_DATE('2009-10-02 11:44:09','YYYY-MM-DD HH24:MI:SS'),100,'B') -; - --- 02/10/2009 11:44:10 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53541 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 02/10/2009 11:44:32 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53328,53542,TO_DATE('2009-10-02 11:44:30','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Credit Only',TO_DATE('2009-10-02 11:44:30','YYYY-MM-DD HH24:MI:SS'),100,'C') -; - --- 02/10/2009 11:44:32 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53542 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 02/10/2009 11:44:42 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53328,53543,TO_DATE('2009-10-02 11:44:41','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Debit Only',TO_DATE('2009-10-02 11:44:41','YYYY-MM-DD HH24:MI:SS'),100,'D') -; - --- 02/10/2009 11:44:42 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53543 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 02/10/2009 11:45:01 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53328,53544,TO_DATE('2009-10-02 11:45:00','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Quantity',TO_DATE('2009-10-02 11:45:00','YYYY-MM-DD HH24:MI:SS'),100,'Q') -; - --- 02/10/2009 11:45:01 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53544 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 02/10/2009 11:48:32 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,Description,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53328,53545,TO_DATE('2009-10-02 11:48:31','YYYY-MM-DD HH24:MI:SS'),100,'DR - CR','D','Y','Balance (accounted sign)',TO_DATE('2009-10-02 11:48:31','YYYY-MM-DD HH24:MI:SS'),100,'S') -; - --- 02/10/2009 11:48:32 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53545 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 02/10/2009 11:52:38 AM --- Add signed amount type to fin report -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,Help,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,54061,0,'PAPeriodType',TO_DATE('2009-10-02 11:52:35','YYYY-MM-DD HH24:MI:SS'),100,'PA Period Type','D','The Period Type to report on: Period, Year, Total or Natural; where Natural = Year for P & L accounts, Total for Balance Sheet accounts.','Y','Period Type','Period Type',TO_DATE('2009-10-02 11:52:35','YYYY-MM-DD HH24:MI:SS'),100) -; - --- 02/10/2009 11:52:38 AM --- Add signed amount type to fin report -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=54061 AND EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Element_ID!=t.AD_Element_ID) -; - --- 02/10/2009 11:56:47 AM --- Add signed amount type to fin report -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,Help,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,54062,0,'PAAmountType',TO_DATE('2009-10-02 11:56:46','YYYY-MM-DD HH24:MI:SS'),100,'PA Amount Type for reporting','D','The amount type to report on: Quantity, Credit Only, Debit Only, Balance (expected sign) or Balance (DR-CR). Balance (expected sign) adjusts the sign of the result based on the Account Type and Expected Sign of each Account Element.','Y','Amount Type','Amount Type',TO_DATE('2009-10-02 11:56:46','YYYY-MM-DD HH24:MI:SS'),100) -; - --- 02/10/2009 11:56:47 AM --- Add signed amount type to fin report -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=54062 AND EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Element_ID!=t.AD_Element_ID) -; - --- 02/10/2009 11:56:58 AM --- Add signed amount type to fin report -UPDATE AD_Element SET Help='The Period Type to report on: Period, Year, Total or Natural. Natural = Year for P & L accounts, Total for Balance Sheet accounts.',Updated=TO_DATE('2009-10-02 11:56:58','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=54061 -; - --- 02/10/2009 11:56:58 AM --- Add signed amount type to fin report -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=54061 -; - --- 02/10/2009 11:56:58 AM --- Add signed amount type to fin report -UPDATE AD_Column SET ColumnName='PAPeriodType', Name='Period Type', Description='PA Period Type', Help='The Period Type to report on: Period, Year, Total or Natural. Natural = Year for P & L accounts, Total for Balance Sheet accounts.' WHERE AD_Element_ID=54061 -; - --- 02/10/2009 11:56:58 AM --- Add signed amount type to fin report -UPDATE AD_Process_Para SET ColumnName='PAPeriodType', Name='Period Type', Description='PA Period Type', Help='The Period Type to report on: Period, Year, Total or Natural. Natural = Year for P & L accounts, Total for Balance Sheet accounts.', AD_Element_ID=54061 WHERE UPPER(ColumnName)='PAPERIODTYPE' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - --- 02/10/2009 11:56:58 AM --- Add signed amount type to fin report -UPDATE AD_Process_Para SET ColumnName='PAPeriodType', Name='Period Type', Description='PA Period Type', Help='The Period Type to report on: Period, Year, Total or Natural. Natural = Year for P & L accounts, Total for Balance Sheet accounts.' WHERE AD_Element_ID=54061 AND IsCentrallyMaintained='Y' -; - --- 02/10/2009 11:56:58 AM --- Add signed amount type to fin report -UPDATE AD_Field SET Name='Period Type', Description='PA Period Type', Help='The Period Type to report on: Period, Year, Total or Natural. Natural = Year for P & L accounts, Total for Balance Sheet accounts.' WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=54061) AND IsCentrallyMaintained='Y' -; - --- 02/10/2009 11:58:09 AM --- Add signed amount type to fin report -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,58553,54061,0,17,53327,446,'PAPeriodType',TO_DATE('2009-10-02 11:58:08','YYYY-MM-DD HH24:MI:SS'),100,'P','PA Period Type','D',1,'The Period Type to report on: Period, Year, Total or Natural. Natural = Year for P & L accounts, Total for Balance Sheet accounts.','Y','Y','N','N','N','N','N','N','N','N','N','N','Y','Period Type',0,TO_DATE('2009-10-02 11:58:08','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- 02/10/2009 11:58:09 AM --- Add signed amount type to fin report -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58553 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 02/10/2009 11:58:17 AM --- Add signed amount type to fin report -ALTER TABLE PA_ReportColumn ADD PAPeriodType CHAR(1) DEFAULT 'P' -; - --- 02/10/2009 11:59:04 AM --- Add signed amount type to fin report -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,58554,54062,0,17,53328,446,'PAAmountType',TO_DATE('2009-10-02 11:59:03','YYYY-MM-DD HH24:MI:SS'),100,'B','PA Amount Type for reporting','D',1,'The amount type to report on: Quantity, Credit Only, Debit Only, Balance (expected sign) or Balance (DR-CR). Balance (expected sign) adjusts the sign of the result based on the Account Type and Expected Sign of each Account Element.','Y','Y','N','N','N','N','N','N','N','N','N','N','Y','Amount Type',0,TO_DATE('2009-10-02 11:59:03','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- 02/10/2009 11:59:04 AM --- Add signed amount type to fin report -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58554 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 02/10/2009 12:01:36 PM --- Add signed amount type to fin report -UPDATE AD_Element SET Help='The amount type to report on: Quantity, Credit Only, Debit Only, Balance (expected sign) or Balance (accounted sign). "Expected sign" adjusts the sign of the result based on the Account Type and Expected Sign of each Account Element, whereas "accounted sign" always returns DR-CR.',Updated=TO_DATE('2009-10-02 12:01:36','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=54062 -; - --- 02/10/2009 12:01:36 PM --- Add signed amount type to fin report -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=54062 -; - --- 02/10/2009 12:01:36 PM --- Add signed amount type to fin report -UPDATE AD_Column SET ColumnName='PAAmountType', Name='Amount Type', Description='PA Amount Type for reporting', Help='The amount type to report on: Quantity, Credit Only, Debit Only, Balance (expected sign) or Balance (accounted sign). "Expected sign" adjusts the sign of the result based on the Account Type and Expected Sign of each Account Element, whereas "accounted sign" always returns DR-CR.' WHERE AD_Element_ID=54062 -; - --- 02/10/2009 12:01:36 PM --- Add signed amount type to fin report -UPDATE AD_Process_Para SET ColumnName='PAAmountType', Name='Amount Type', Description='PA Amount Type for reporting', Help='The amount type to report on: Quantity, Credit Only, Debit Only, Balance (expected sign) or Balance (accounted sign). "Expected sign" adjusts the sign of the result based on the Account Type and Expected Sign of each Account Element, whereas "accounted sign" always returns DR-CR.', AD_Element_ID=54062 WHERE UPPER(ColumnName)='PAAMOUNTTYPE' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - --- 02/10/2009 12:01:36 PM --- Add signed amount type to fin report -UPDATE AD_Process_Para SET ColumnName='PAAmountType', Name='Amount Type', Description='PA Amount Type for reporting', Help='The amount type to report on: Quantity, Credit Only, Debit Only, Balance (expected sign) or Balance (accounted sign). "Expected sign" adjusts the sign of the result based on the Account Type and Expected Sign of each Account Element, whereas "accounted sign" always returns DR-CR.' WHERE AD_Element_ID=54062 AND IsCentrallyMaintained='Y' -; - --- 02/10/2009 12:01:36 PM --- Add signed amount type to fin report -UPDATE AD_Field SET Name='Amount Type', Description='PA Amount Type for reporting', Help='The amount type to report on: Quantity, Credit Only, Debit Only, Balance (expected sign) or Balance (accounted sign). "Expected sign" adjusts the sign of the result based on the Account Type and Expected Sign of each Account Element, whereas "accounted sign" always returns DR-CR.' WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=54062) AND IsCentrallyMaintained='Y' -; - --- 02/10/2009 12:03:11 PM --- Add signed amount type to fin report -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,58555,54062,0,17,53328,448,'PAAmountType',TO_DATE('2009-10-02 12:03:10','YYYY-MM-DD HH24:MI:SS'),100,'PA Amount Type for reporting','D',2,'The amount type to report on: Quantity, Credit Only, Debit Only, Balance (expected sign) or Balance (accounted sign). "Expected sign" adjusts the sign of the result based on the Account Type and Expected Sign of each Account Element, whereas "accounted sign" always returns DR-CR.','Y','Y','N','N','N','N','N','N','N','N','N','N','Y','Amount Type',0,TO_DATE('2009-10-02 12:03:10','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- 02/10/2009 12:03:11 PM --- Add signed amount type to fin report -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58555 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 02/10/2009 12:03:20 PM --- Add signed amount type to fin report -UPDATE AD_Column SET FieldLength=1,Updated=TO_DATE('2009-10-02 12:03:20','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=58555 -; - --- 02/10/2009 12:03:23 PM --- Add signed amount type to fin report -ALTER TABLE PA_ReportLine ADD PAAmountType CHAR(1) DEFAULT NULL -; - --- 02/10/2009 12:03:48 PM --- Add signed amount type to fin report -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,58556,54061,0,17,53327,448,'PAPeriodType',TO_DATE('2009-10-02 12:03:47','YYYY-MM-DD HH24:MI:SS'),100,'PA Period Type','D',1,'The Period Type to report on: Period, Year, Total or Natural. Natural = Year for P & L accounts, Total for Balance Sheet accounts.','Y','Y','N','N','N','N','N','N','N','N','N','N','Y','Period Type',0,TO_DATE('2009-10-02 12:03:47','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- 02/10/2009 12:03:48 PM --- Add signed amount type to fin report -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58556 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 02/10/2009 12:03:50 PM --- Add signed amount type to fin report -ALTER TABLE PA_ReportLine ADD PAPeriodType CHAR(1) DEFAULT NULL -; - --- 02/10/2009 12:04:03 PM --- Add signed amount type to fin report -ALTER TABLE PA_ReportColumn ADD PAAmountType CHAR(1) DEFAULT 'B' -; - --- 02/10/2009 12:04:29 PM --- Add signed amount type to fin report -UPDATE AD_Column SET IsActive='N',Updated=TO_DATE('2009-10-02 12:04:29','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=6019 -; - --- 02/10/2009 12:04:39 PM --- Add signed amount type to fin report -UPDATE AD_Column SET IsActive='N',Updated=TO_DATE('2009-10-02 12:04:39','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=7707 -; - --- 02/10/2009 12:09:57 PM --- Add signed amount type to fin report -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,Updated,UpdatedBy) VALUES (0,58554,58041,0,374,TO_DATE('2009-10-02 12:09:56','YYYY-MM-DD HH24:MI:SS'),100,'PA Amount Type for reporting',14,'D','The amount type to report on: Quantity, Credit Only, Debit Only, Balance (expected sign) or Balance (accounted sign). "Expected sign" adjusts the sign of the result based on the Account Type and Expected Sign of each Account Element, whereas "accounted sign" always returns DR-CR.','Y','Y','Y','N','N','N','N','N','Amount Type',110,TO_DATE('2009-10-02 12:09:56','YYYY-MM-DD HH24:MI:SS'),100) -; - --- 02/10/2009 12:09:57 PM --- Add signed amount type to fin report -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58041 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 02/10/2009 12:11:17 PM --- Add signed amount type to fin report -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,Updated,UpdatedBy) VALUES (0,58553,58042,0,374,TO_DATE('2009-10-02 12:11:16','YYYY-MM-DD HH24:MI:SS'),100,'PA Period Type',14,'D','The Period Type to report on: Period, Year, Total or Natural. Natural = Year for P & L accounts, Total for Balance Sheet accounts.','Y','Y','Y','N','N','N','N','Y','Period Type',115,TO_DATE('2009-10-02 12:11:16','YYYY-MM-DD HH24:MI:SS'),100) -; - --- 02/10/2009 12:11:17 PM --- Add signed amount type to fin report -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58042 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 02/10/2009 12:11:26 PM --- Add signed amount type to fin report -UPDATE AD_Field SET IsActive='N',Updated=TO_DATE('2009-10-02 12:11:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=4760 -; - --- 02/10/2009 12:13:14 PM --- Add signed amount type to fin report -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,DisplayLogic,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,Updated,UpdatedBy) VALUES (0,58555,58043,0,376,TO_DATE('2009-10-02 12:13:13','YYYY-MM-DD HH24:MI:SS'),100,'PA Amount Type for reporting',14,'@LineType@=S','D','The amount type to report on: Quantity, Credit Only, Debit Only, Balance (expected sign) or Balance (accounted sign). "Expected sign" adjusts the sign of the result based on the Account Type and Expected Sign of each Account Element, whereas "accounted sign" always returns DR-CR.','Y','Y','Y','N','N','N','N','N','Amount Type',180,TO_DATE('2009-10-02 12:13:13','YYYY-MM-DD HH24:MI:SS'),100) -; - --- 02/10/2009 12:13:14 PM --- Add signed amount type to fin report -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58043 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 02/10/2009 12:13:46 PM --- Add signed amount type to fin report -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,DisplayLogic,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,Updated,UpdatedBy) VALUES (0,58556,58044,0,376,TO_DATE('2009-10-02 12:13:45','YYYY-MM-DD HH24:MI:SS'),100,'PA Period Type',14,'@LineType@=S','D','The Period Type to report on: Period, Year, Total or Natural. Natural = Year for P & L accounts, Total for Balance Sheet accounts.','Y','Y','Y','N','N','N','N','Y','Period Type',185,TO_DATE('2009-10-02 12:13:45','YYYY-MM-DD HH24:MI:SS'),100) -; - --- 02/10/2009 12:13:46 PM --- Add signed amount type to fin report -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58044 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 02/10/2009 12:13:57 PM --- Add signed amount type to fin report -UPDATE AD_Field SET IsActive='N',Updated=TO_DATE('2009-10-02 12:13:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=5807 -; - --- 02/10/2009 12:16:06 PM --- Add signed amount type to fin report -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,58557,54062,0,17,53328,535,'PAAmountType',TO_DATE('2009-10-02 12:16:05','YYYY-MM-DD HH24:MI:SS'),100,'PA Amount Type for reporting','D',1,'The amount type to report on: Quantity, Credit Only, Debit Only, Balance (expected sign) or Balance (accounted sign). "Expected sign" adjusts the sign of the result based on the Account Type and Expected Sign of each Account Element, whereas "accounted sign" always returns DR-CR.','Y','Y','N','N','N','N','N','N','N','N','N','N','Y','Amount Type',0,TO_DATE('2009-10-02 12:16:05','YYYY-MM-DD HH24:MI:SS'),100,1) -; - --- 02/10/2009 12:16:06 PM --- Add signed amount type to fin report -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58557 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 02/10/2009 12:16:10 PM --- Add signed amount type to fin report -ALTER TABLE I_ReportLine ADD PAAmountType CHAR(1) DEFAULT NULL -; - --- 02/10/2009 12:16:40 PM --- Add signed amount type to fin report -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,58558,54061,0,17,53327,535,'PAPeriodType',TO_DATE('2009-10-02 12:16:34','YYYY-MM-DD HH24:MI:SS'),100,'PA Period Type','D',1,'The Period Type to report on: Period, Year, Total or Natural. Natural = Year for P & L accounts, Total for Balance Sheet accounts.','Y','Y','N','N','N','N','N','N','N','N','N','N','Y','Period Type',0,TO_DATE('2009-10-02 12:16:34','YYYY-MM-DD HH24:MI:SS'),100,1) -; - --- 02/10/2009 12:16:40 PM --- Add signed amount type to fin report -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58558 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 02/10/2009 12:16:43 PM --- Add signed amount type to fin report -ALTER TABLE I_ReportLine ADD PAPeriodType CHAR(1) DEFAULT NULL -; - --- 02/10/2009 12:16:52 PM --- Add signed amount type to fin report -UPDATE AD_Column SET IsActive='N',Updated=TO_DATE('2009-10-02 12:16:52','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=7954 -; - --- 02/10/2009 12:18:35 PM --- Add signed amount type to fin report -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,Updated,UpdatedBy) VALUES (0,58557,58045,0,444,TO_DATE('2009-10-02 12:18:35','YYYY-MM-DD HH24:MI:SS'),100,'PA Amount Type for reporting',14,'D','The amount type to report on: Quantity, Credit Only, Debit Only, Balance (expected sign) or Balance (accounted sign). "Expected sign" adjusts the sign of the result based on the Account Type and Expected Sign of each Account Element, whereas "accounted sign" always returns DR-CR.','Y','Y','Y','N','N','N','N','N','Amount Type',160,TO_DATE('2009-10-02 12:18:35','YYYY-MM-DD HH24:MI:SS'),100) -; - --- 02/10/2009 12:18:35 PM --- Add signed amount type to fin report -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58045 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 02/10/2009 12:18:56 PM --- Add signed amount type to fin report -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,Updated,UpdatedBy) VALUES (0,58558,58046,0,444,TO_DATE('2009-10-02 12:18:55','YYYY-MM-DD HH24:MI:SS'),100,'PA Period Type',14,'D','The Period Type to report on: Period, Year, Total or Natural. Natural = Year for P & L accounts, Total for Balance Sheet accounts.','Y','Y','Y','N','N','N','N','N','Period Type',165,TO_DATE('2009-10-02 12:18:55','YYYY-MM-DD HH24:MI:SS'),100) -; - --- 02/10/2009 12:18:56 PM --- Add signed amount type to fin report -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58046 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 02/10/2009 12:19:04 PM --- Add signed amount type to fin report -UPDATE AD_Field SET IsActive='N',Updated=TO_DATE('2009-10-02 12:19:04','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=6043 -; - --- 02/10/2009 1:48:32 PM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53328,53546,TO_DATE('2009-10-02 13:48:30','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Quantity (accounted sign)',TO_DATE('2009-10-02 13:48:30','YYYY-MM-DD HH24:MI:SS'),100,'R') -; - --- 02/10/2009 1:48:32 PM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53546 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 02/10/2009 1:48:43 PM --- Add signed amount type to fin report -UPDATE AD_Ref_List SET Name='Quantity (expected sign)',Updated=TO_DATE('2009-10-02 13:48:43','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Ref_List_ID=53544 -; - --- 02/10/2009 1:48:43 PM --- Add signed amount type to fin report -UPDATE AD_Ref_List_Trl SET IsTranslated='N' WHERE AD_Ref_List_ID=53544 -; - -update pa_reportline set paamounttype = substr(amounttype, 1,1), paperiodtype = substr(amounttype,2,1); - -update pa_reportcolumn set paamounttype = substr(amounttype, 1,1), paperiodtype = substr(amounttype,2,1); - - - diff --git a/migration/354a-trunk/oracle/660_BF_2944056_FixSubstituteRelatedInfoProduct.sql b/migration/354a-trunk/oracle/660_BF_2944056_FixSubstituteRelatedInfoProduct.sql deleted file mode 100644 index 716e559f45..0000000000 --- a/migration/354a-trunk/oracle/660_BF_2944056_FixSubstituteRelatedInfoProduct.sql +++ /dev/null @@ -1,28 +0,0 @@ ---- BF 2944056 https://sourceforge.net/tracker/?func=detail&aid=2944056&group_id=176962&atid=879332 ---- Fix Related and Substitute Inventory Quantity in the InfoProduct window - -DROP VIEW M_PRODUCT_SUBSTITUTERELATED_V; - -CREATE OR REPLACE VIEW M_PRODUCT_SUBSTITUTERELATED_V AS -SELECT s.ad_client_id, s.ad_org_id, s.isactive, s.created, s.createdby, s.updated, s.updatedby, - s.m_product_id, s.substitute_id, 'S' AS rowtype, mp.name, sum(ms.qtyonhand - ms.qtyreserved) AS qtyavailable, sum(ms.qtyonhand) AS qtyonhand, sum(ms.qtyreserved) AS qtyreserved, -ROUND(MAX(mpr.pricestd),0) AS pricestd, mpr.m_pricelist_version_id, mw.m_warehouse_id, org.name AS orgname - FROM m_substitute s - JOIN m_storage ms ON ms.m_product_id = s.substitute_id - JOIN m_product mp ON ms.m_product_id = mp.m_product_id - JOIN m_locator ml ON ms.m_locator_id = ml.m_locator_id - JOIN m_warehouse mw ON ml.m_warehouse_id = mw.m_warehouse_id - JOIN m_productprice mpr ON ms.m_product_id = mpr.m_product_id - JOIN ad_org org ON org.ad_org_id = mw.ad_org_id - GROUP BY s.ad_client_id, s.ad_org_id, s.isactive, s.created, s.createdby, s.updated, s.updatedby, s.m_product_id, s.substitute_id, mw.m_warehouse_id, mpr.m_pricelist_version_id, org.name, mp.name -UNION - SELECT r.ad_client_id, r.ad_org_id, r.isactive, r.created, r.createdby, r.updated, r.updatedby, - r.m_product_id, r.relatedproduct_id AS substitute_id, 'R' AS rowtype, mp.name, sum(ms.qtyonhand - ms.qtyreserved) AS qtyavailable, sum(ms.qtyonhand) AS qtyonhand, sum(ms.qtyreserved) AS qtyreserved, round(MAX(mpr.pricestd),0) AS pricestd, mpr.m_pricelist_version_id, mw.m_warehouse_id, org.name AS orgname - FROM m_relatedproduct r - JOIN m_storage ms ON ms.m_product_id = r.relatedproduct_id - JOIN m_product mp ON ms.m_product_id = mp.m_product_id - JOIN m_locator ml ON ms.m_locator_id = ml.m_locator_id - JOIN m_warehouse mw ON ml.m_warehouse_id = mw.m_warehouse_id - JOIN m_productprice mpr ON ms.m_product_id = mpr.m_product_id - JOIN ad_org org ON org.ad_org_id = mw.ad_org_id - GROUP BY r.ad_client_id, r.ad_org_id, r.isactive, r.created, r.createdby, r.updated, r.updatedby, r.m_product_id, r.relatedproduct_id, mw.m_warehouse_id, mpr.m_pricelist_version_id, org.name, mp.name; \ No newline at end of file diff --git a/migration/354a-trunk/oracle/661_FR_2945715_AdvancedSearchMsg.sql b/migration/354a-trunk/oracle/661_FR_2945715_AdvancedSearchMsg.sql deleted file mode 100644 index 2cd415ea08..0000000000 --- a/migration/354a-trunk/oracle/661_FR_2945715_AdvancedSearchMsg.sql +++ /dev/null @@ -1,30 +0,0 @@ --- Feb 8, 2010 3:00:56 PM EST --- Advanced search -INSERT INTO AD_Message (AD_Client_ID,AD_Message_ID,AD_Org_ID,Created,CreatedBy,EntityType,IsActive,MsgText,MsgType,Updated,UpdatedBy,Value) VALUES (0,53092,0,TO_DATE('2010-02-08 15:00:52','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','And/Or','I',TO_DATE('2010-02-08 15:00:52','YYYY-MM-DD HH24:MI:SS'),100,'And/Or') -; - --- Feb 8, 2010 3:00:57 PM EST --- Advanced search -INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=53092 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) -; - --- Feb 8, 2010 3:01:21 PM EST --- Advanced search -INSERT INTO AD_Message (AD_Client_ID,AD_Message_ID,AD_Org_ID,Created,CreatedBy,EntityType,IsActive,MsgText,MsgType,Updated,UpdatedBy,Value) VALUES (0,53093,0,TO_DATE('2010-02-08 15:01:19','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','AND','I',TO_DATE('2010-02-08 15:01:19','YYYY-MM-DD HH24:MI:SS'),100,'AND') -; - --- Feb 8, 2010 3:01:21 PM EST --- Advanced search -INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=53093 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) -; - --- Feb 8, 2010 3:01:42 PM EST --- Advanced search -INSERT INTO AD_Message (AD_Client_ID,AD_Message_ID,AD_Org_ID,Created,CreatedBy,EntityType,IsActive,MsgText,MsgType,Updated,UpdatedBy,Value) VALUES (0,53094,0,TO_DATE('2010-02-08 15:01:34','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','OR','I',TO_DATE('2010-02-08 15:01:34','YYYY-MM-DD HH24:MI:SS'),100,'OR') -; - --- Feb 8, 2010 3:01:42 PM EST --- Advanced search -INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=53094 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) -; - diff --git a/migration/354a-trunk/oracle/662_BT_2944388.sql b/migration/354a-trunk/oracle/662_BT_2944388.sql deleted file mode 100644 index 4d974aa845..0000000000 --- a/migration/354a-trunk/oracle/662_BT_2944388.sql +++ /dev/null @@ -1,5 +0,0 @@ --- Feb 8, 2010 4:05:08 PM EST --- BF2944388 -UPDATE AD_Column SET IsIdentifier='Y', SeqNo=1,Updated=TO_DATE('2010-02-08 16:05:08','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=57563 -; - diff --git a/migration/354a-trunk/oracle/663_FR2949534_ResetAllocation.sql b/migration/354a-trunk/oracle/663_FR2949534_ResetAllocation.sql deleted file mode 100644 index f24898429a..0000000000 --- a/migration/354a-trunk/oracle/663_FR2949534_ResetAllocation.sql +++ /dev/null @@ -1,35 +0,0 @@ --- Feb 11, 2010 3:41:40 PM EST --- Reset Allocation -INSERT INTO AD_Process (AccessLevel,AD_Client_ID,AD_Org_ID,AD_Process_ID,Classname,Created,CreatedBy,Description,EntityType,Help,IsActive,IsBetaFunctionality,IsDirectPrint,IsReport,IsServerProcess,Name,ShowHelp,Statistic_Count,Statistic_Seconds,Updated,UpdatedBy,Value) VALUES ('2',0,0,53199,'org.compiere.process.AllocationReset',TO_DATE('2010-02-11 15:41:38','YYYY-MM-DD HH24:MI:SS'),100,'Reset (delete) allocation of invoices to payments','D','Delete individual allocation. In contrast to "Reverse", the allocation is deleted (no trace), if the period is open.','Y','N','N','N','N','Reset Allocation Direct','Y',0,0,TO_DATE('2010-02-11 15:41:38','YYYY-MM-DD HH24:MI:SS'),100,'C_Allocation_Reset_Direct') -; - --- Feb 11, 2010 3:41:40 PM EST --- Reset Allocation -INSERT INTO AD_Process_Trl (AD_Language,AD_Process_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_ID=53199 AND NOT EXISTS (SELECT * FROM AD_Process_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Process_ID=t.AD_Process_ID) -; - --- Feb 11, 2010 3:43:37 PM EST --- Reset Allocation -UPDATE AD_Field SET SeqNo=160,IsDisplayed='Y' WHERE AD_Field_ID=10431 -; - --- Feb 11, 2010 3:44:45 PM EST --- Reset Allocation -UPDATE AD_Column SET AD_Process_ID=53199, AD_Reference_ID=28,Updated=TO_DATE('2010-02-11 15:44:45','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=12314 -; - --- Feb 11, 2010 3:44:49 PM EST --- Reset Allocation -UPDATE AD_Field SET Description='Reset (delete) allocation of invoices to payments', Name='Reset Allocation',Updated=TO_DATE('2010-02-11 15:44:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=10431 -; - --- Feb 11, 2010 3:44:49 PM EST --- Reset Allocation -UPDATE AD_Field_Trl SET IsTranslated='N' WHERE AD_Field_ID=10431 -; - --- Feb 11, 2010 3:50:09 PM EST --- Reset Allocation -UPDATE AD_Column SET IsAlwaysUpdateable='Y',Updated=TO_DATE('2010-02-11 15:50:09','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=12314 -; - diff --git a/migration/354a-trunk/oracle/664_FR2934358_FixedTyposOnElements.sql b/migration/354a-trunk/oracle/664_FR2934358_FixedTyposOnElements.sql deleted file mode 100644 index fa5a717f6b..0000000000 --- a/migration/354a-trunk/oracle/664_FR2934358_FixedTyposOnElements.sql +++ /dev/null @@ -1,261 +0,0 @@ -SET DEFINE OFF; -UPDATE AD_ELEMENT SET DESCRIPTION='Trees are used for (financial) reporting and security access (via role)', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=134; -UPDATE AD_ELEMENT SET DESCRIPTION='Trees are used for (financial) reporting', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID IN (131,135,136,137,2514,2515); -UPDATE AD_ELEMENT SET HELP='A Callout allow you to create Java extensions to perform certain tasks always after a value changed. Callouts should not be used for validation but consequences of a user selecting a certain value. -The callout is a Java class implementing org.compiere.model.Callout and a method name to call. Example: "org.compiere.model.CalloutRequest.copyText" instantiates the class "CalloutRequest" and calls the method "copyText". You can have multiple callouts by separating them via a semicolon', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=224; -UPDATE AD_ELEMENT SET HELP='The Costing Method indicates how costs will be calculated (Standard, Average, Lifo, FiFo). The default costing method is defined on accounting schema level and can be optionally overwritten in the product category. The costing method cannot conflict with the Material Movement Policy (defined on Product Category).', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=241; -UPDATE AD_ELEMENT SET NAME='Records deletable',PRINTNAME='Records deletable', HELP='The Records Deletable checkbox indicates if a record can be deleted from the database. If records cannot be deleted, you can only deselect the Active flag', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=366; -UPDATE AD_ELEMENT SET HELP='The Sales Rep checkbox indicates if this business partner is a sales representative. A sales representative may also be an employee, but does not need to be.' -, PO_HELP='The Sales Rep checkbox indicates if this business partner is a company agent. A company agent may also be an employee, but does not need to be.' -, UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=409; -UPDATE AD_ELEMENT SET NAME='Updatable',PRINTNAME='Updatable', HELP='The Updatable checkbox indicates if a field can be updated by the user.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=422; -UPDATE AD_ELEMENT SET NAME='User updatable',PRINTNAME='User updatable', HELP='The User Updatable checkbox indicate if the user can update this field.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=423; -UPDATE AD_ELEMENT SET HELP='The Credit Limit indicates the total amount allowed "on account" in primary accounting currency. If the Credit Limit is 0, no check is performed. Credit Management is based on the Total Open Amount, which includes Vendor activities.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=553; -UPDATE AD_ELEMENT SET HELP='The Order is a control document. The Order is complete when the quantity ordered is the same as the quantity shipped and invoiced. When you close an order, unshipped (backordered) quantities are cancelled.' -, PO_HELP='The Purchase Order is a control document. The Purchase Order is complete when the quantity ordered is the same as the quantity shipped and invoiced. When you close an order, unshipped (backordered) quantities are cancelled.' -, UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=558; -UPDATE AD_ELEMENT SET HELP='The Enforce Price Limit check box indicates that prices cannot be below the limit price in Orders and Invoices. This can be overwritten, if the role allows this.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=882; -UPDATE AD_ELEMENT SET HELP='The SO Sub Type indicates the type of sales order this document refers to. This field only appears when the Document Base Type is Sales Order. The selection made here will determine which documents will be generated when an order is processed and which documents must be generated manually or in batches.
-The following outlines this process.
-SO Sub Type of Standard Order will generate just the Order document when the order is processed.
-The Delivery Note, Invoice and Receipt must be generated via other processes.
-SO Sub Type of Warehouse Order will generate the Order and Delivery Note.
The Invoice and Receipt must be generated via other processes.
-SO Sub Type of Credit Order will generate the Order, Delivery Note and Invoice.
The Receipt must be generated via other processes.
-SO Sub Type of POS (Point of Sale) will generate all document', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=1018; -UPDATE AD_ELEMENT SET DESCRIPTION='Account for Vendor Service Liability', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=1057; -UPDATE AD_ELEMENT SET HELP='The Days After Due Date indicates the number of days after the payment due date to initiate dunning. If the number is negative, it includes not the not due invoices.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=1092; -UPDATE AD_ELEMENT SET HELP='The Relative Priority indicates the location to pick from first if an product is stored in more than one location. (100 = highest priority, 0 = lowest). For outgoing shipments, the location is picked with the highest priority where the entire quantity can be shipped from. If there is no location, the location with the highest priority is used. -The Priority is ignored for products with Guarantee Date (always the oldest first) or if a specific instance is selected. -Incoming receipts are stored at the location with the highest priority, if not explicitly selected.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=1145; -UPDATE AD_ELEMENT SET HELP='When processing a web order, a confirmation is sent to the EMail address of the customer from the request EMail address copying this email address when entered.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=1993; -UPDATE AD_ELEMENT SET HELP='Web Click Details', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2007; -UPDATE AD_ELEMENT SET HELP='Attributes are specific to a Product Attribute Set (e.g. Size for T-Shirts: S,M,L). If you have multiple attributes and want to search under a common attribute, you define a search attribute. Example: have one Size search attribute combining the values of all different sizes (Size for Dress Shirt XL,L,M,S,XS). The Attribute Search allows you to have all values available for selection. This eases the maintenance of the individual product attribute.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2025; -UPDATE AD_ELEMENT SET DESCRIPTION='Included Tab in this Tab (Master Detail)', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2026; -UPDATE AD_ELEMENT SET HELP='Internal (Operating System) Name of the Printer; Please mote that the printer name may be different on different clients. Enter a printer name, which applies to ALL clients (e.g. printer on a server).

-If none is entered, the default printer is used. You specify your default printer when you log in. You can also change the default printer in Preferences.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2051; -UPDATE AD_ELEMENT SET DESCRIPTION='Assignment to (transaction) Organization', HELP='Assignment to the transaction organization (cost center).', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2072; -UPDATE AD_ELEMENT SET HELP='"You can purchase professional support from Adempiere, Inc. or their partners. See http://www.adempiere.com for details. -"', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2124; -UPDATE AD_ELEMENT SET HELP='The Type of data Replication determines the direction of the data replication.
-Reference means that the data in this system is read only ->
-Local means that the data in this system is not replicated to other systems -
-Merge means that the data in this system is synchronized with the other system <->
', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2137; -UPDATE AD_ELEMENT SET HELP='If selected, public users can read/view the entry. Public are users without a Role in the system. Use security rules for more specific access control.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2139; -UPDATE AD_ELEMENT SET HELP='If selected, public users can write/create entries. Public are users without a Role in the system. Use security rules for more specific access control.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2140; -UPDATE AD_ELEMENT SET HELP='Set up knowledge categories and values as a search aid. Examples are Release Version, Product Area, etc. Knowledge Category values act like keywords.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2141; -UPDATE AD_ELEMENT SET DESCRIPTION='Related Entry for this Entry' -, HELP='Related Knowledge Entry for this Knowledge Entry' -, UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2145; -UPDATE AD_ELEMENT SET HELP='The Source of a Knowledge Entry is a pointer to the originating system. The Knowledge Entry has an additional entry (Description URL) for more detailed info.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2146; -UPDATE AD_ELEMENT SET DESCRIPTION='Knowledge Keyword Synonym', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2147; -UPDATE AD_ELEMENT SET HELP='Topic or Discussion Thead', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2148; -UPDATE AD_ELEMENT SET NAME='Knowledge Type', HELP='Area of knowledge - A Type has multiple Topics', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2149; -UPDATE AD_ELEMENT SET DESCRIPTION='Name of the Project Cycle Step', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2165; -UPDATE AD_ELEMENT SET DESCRIPTION='Minimum Amount in Document Currency', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2177; -UPDATE AD_ELEMENT SET DESCRIPTION='Minimum number of guarantee days', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2197; -UPDATE AD_ELEMENT SET HELP='If a line is Description Only, e.g. Product Inventory is not corrected. No accounting transactions are created and the amount or totals are not included in the document. This for including descriptive detail lines, e.g. for an Work Order.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2183; -UPDATE AD_ELEMENT SET HELP='This allows to have the three general situations of "not open" - "open" - "closed"', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2201; -UPDATE AD_ELEMENT SET NAME='Calculate Maximum (?)', DESCRIPTION='Calculate the maximum amount', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2207; -UPDATE AD_ELEMENT SET HELP='A running total creates a sum at the end of a page and on the top of the next page for all columns, which have a Sum function. You should define running total only once per format.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2212; -UPDATE AD_ELEMENT SET DESCRIPTION='Electronic Funds Transfer Payee Account Information', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2233; -UPDATE AD_ELEMENT SET DESCRIPTION='Shelf Life Days remaining to Guarantee Date (minus minimum guarantee days)', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2237; -UPDATE AD_ELEMENT SET HELP='Minimum Shelf Life of products with Guarantee Date instance. If > 0 you cannot select products with a shelf life ((Guarantee Date-Today) / Guarantee Days) less than the minimum shelf life, unless you select "Show All"', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2240; -UPDATE AD_ELEMENT SET HELP='Minimum Shelf Life of products with Guarantee Date instance. If > 0 you cannot select products with a shelf life less than the minimum shelf life, unless you select "Show All"', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2264; -UPDATE AD_ELEMENT SET DESCRIPTION='If selected, the product is displayed in the initial or any empty search' -, HELP='In the display of products in the Web Store, the product is displayed in the initial view or if no search criteria are entered. To be displayed, the product must be in the price list used.' -, UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2277; -UPDATE AD_ELEMENT SET HELP='The loader definition provides the parameters to load bank statements from EFT formats like SWIFT (MT940) or OFX', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2283; -UPDATE AD_ELEMENT SET DESCRIPTION='Date format used in the input format', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2286; -UPDATE AD_ELEMENT SET HELP='Activity Result of the execution of the Workflow Process Instance', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2308; -UPDATE AD_ELEMENT SET HELP='History of changes of the Workflow Process Activity', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2310; -UPDATE AD_ELEMENT SET HELP='Semantics for multiple outgoing Transitions for a Node/Activity. AND represents multiple concurrent threads - XOR represents the first transition with a true Transition condition.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2337; -UPDATE AD_ELEMENT SET HELP='You can create a bid for a topic. Depending on the type, the highest bidder wins the Topic - or you participate in funding for a Topic.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2360; -UPDATE AD_ELEMENT SET HELP='Available Funds (from Payments) and Committed or Uncommitted funds for Bids', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2362; -UPDATE AD_ELEMENT SET HELP='Available Funds (for Payments) and Committed or Uncommitted funds from Offers', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2364; -UPDATE AD_ELEMENT SET DESCRIPTION='An Error occurred in the execution', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2395; -UPDATE AD_ELEMENT SET DESCRIPTION='The response can have just the total amount for the RfQ', HELP='If not selected, the response must be provided per line', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2403; -UPDATE AD_ELEMENT SET DESCRIPTION='Are Responses to the Request for Quotation accepted', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2404; -UPDATE AD_ELEMENT SET DESCRIPTION='The response is the selected winner', HELP='The response is the selected winner. If selected on Response level, the line selections are ignored.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2405; -UPDATE AD_ELEMENT SET DESCRIPTION='Product used to determine the price of the membership for the topic type', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2415; -UPDATE AD_ELEMENT SET HELP='Consecutive range to', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2455; -UPDATE AD_ELEMENT SET HELP='Define the method how the next occurrence is calculated', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2457; -UPDATE AD_ELEMENT SET HELP='If selected and if the window / tab is not read only, you can always update the column. This might be useful for comments, etc.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2468; -UPDATE AD_ELEMENT SET DESCRIPTION='Elapsed Time in milli seconds', HELP='Elapsed Time in milli seconds', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2474; -UPDATE AD_ELEMENT SET DESCRIPTION='Distribution Run Lines define Distribution List, the Product and Quantities', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2486; -UPDATE AD_ELEMENT SET HELP='Maintain and allow to transfer general statistics (number of clients, orgs, business partners, users, products, invoices) to get a better feeling for the application use. This information is not published.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2489; -UPDATE AD_ELEMENT SET HELP='Forecast of Product Quantity by Period', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2499; -UPDATE AD_ELEMENT SET HELP='The Total Open Balance Amount is the calculated open item amount for Customer and Vendor activity. If the Balance is below zero, we owe the Business Partner. The amount is used for Credit Management. -Invoices and Payment Allocations determine the Open Balance (i.e. not Orders or Payments).', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2562; -UPDATE AD_ELEMENT SET HELP='The Attribute Value type determines the data/validation type', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2574; -UPDATE AD_ELEMENT SET DESCRIPTION='Value set by Migration for post-Migration tasks.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2625; -UPDATE AD_ELEMENT SET DESCRIPTION='Type of Workflow', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2626; -UPDATE AD_ELEMENT SET HELP='When a document is due for too long without activity, a reminder is sent. 0 means no reminders. -The Remind Days are the days when the next email reminder is sent.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2631; -UPDATE AD_ELEMENT SET HELP='Internal name of the transaction', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2655; -UPDATE AD_ELEMENT SET HELP='List of classes implementing the interface org.compiere.model.ModelValidator, separated by semicolon. -The class is called for the client and allows to validate documents in the prepare stage and monitor model changes.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2670; -UPDATE AD_ELEMENT SET HELP='This allows to have multiple closed status', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2723; -UPDATE AD_ELEMENT SET HELP='The EMail address is used to send mails to users of the web store', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2731; -UPDATE AD_ELEMENT SET DESCRIPTION='Assignment of Employee (User) to Job Position', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2763; -UPDATE AD_ELEMENT SET HELP='Subscriber to invite to respond to RfQs', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2377; -UPDATE AD_ELEMENT SET HELP='Once per operation', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2779; -UPDATE AD_ELEMENT SET HELP='Change requests for a Bill of Materials. They can be automatically created from Requests, if enabled in the Request Type and the Request Group refers to a Bill of Materials', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2785; -UPDATE AD_ELEMENT SET HELP='The Bill of Material Component determines what products, services and outside processing is included in producing the Product. It references the operation and determines it''s sequence.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2786; -UPDATE AD_ELEMENT SET HELP='Phantom Component are not stored and produced with the product. This is an option to avoid maintaining an Engineering and Manufacturing Bill of Materials.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2788; -UPDATE AD_ELEMENT SET DESCRIPTION='Optional Lead Time offset before starting production', HELP='Optional Lead Time offset before starting production', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2789; -UPDATE AD_ELEMENT SET HELP='If selected, the user has full access to the Business Partner (BP) information (Business Documents like Orders, Invoices - Requests) or resources (Assets, Downloads). If you deselect it, the user has no access rights unless, you explicitly grant it in tab "BP Access"', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2835; -UPDATE AD_ELEMENT SET DESCRIPTION='User/contact access to Business Partner information and resources', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2836; -UPDATE AD_ELEMENT SET HELP='If selected, the accounting consequences are immediately generated when completing a document. Otherwise the document is posted by a batch process. You should select this only if you are testing.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2843; -UPDATE AD_ELEMENT SET HELP='Note that the cost queue may not be the same as the physical movement cost queue due to differences in costing level and warehouse priority.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2845; -UPDATE AD_ELEMENT SET HELP='Account used for posting matched product (item) expenses (e.g. AP Invoice, Invoice Match). You would use a different account then Product Expense, if you want to differentiate service related costs from item related costs. The balance on the clearing account should be zero and accounts for the timing difference between invoice receipt and matching.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2847; -UPDATE AD_ELEMENT SET HELP='If selected, you will post service related revenue to a different receivables account and service related cost to a different payables account.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2849; -UPDATE AD_ELEMENT SET HELP='Enter the number of records the query will return without confirmation to avoid unnecessary system load. If 0, the system default of 500 is used.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2853; -UPDATE AD_ELEMENT SET HELP='Enter the number of records a user will be able to query to avoid unnecessary system load. If 0, no restrictions are imposed.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2854; -UPDATE AD_ELEMENT SET HELP='The Posting Type Commitments is created when posting Purchase Orders; The Posting Type Reservation is created when posting Requisitions. This is used for budgetary control.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2860; -UPDATE AD_ELEMENT SET HELP='Accounting related information for reconciliation with documents. It includes all revenue/expense and tax entries as a base for detail reporting', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2864; -UPDATE AD_ELEMENT SET HELP='If selected AP tax is handled as expense, otherwise it is handled as a VAT credit.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2870; -UPDATE AD_ELEMENT SET HELP='Budget Control allows you to restrict the use of expenditures, commitments (Purchase Orders) and reservations (Requisitions). If defined, you may not be able to approve Requisitions, Purchase Orders, or AP Invoices.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2871; -UPDATE AD_ELEMENT SET HELP='A user defined accounting element refers to a Adempiere table. This allows to use any table content as an accounting dimension (e.g. Project Task). Note that User Elements are optional and are populated from the context of the document (i.e. not requested)', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID IN (2877,2878); -UPDATE AD_ELEMENT SET HELP='Visual representation of performance by color. The Schema has often three levels (e.g. red-yellow-green). Adempiere support two levels (e.g. red-green) or four levels (e.g. gray-bronze-silver-gold). Note that Measures without a goal are represented white. The percentages could be between 0 and unlimited (i.e. above 100%).', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2903; -UPDATE AD_ELEMENT SET DESCRIPTION='Performance Ratio', HELP='Calculation instruction set for a performance ratio', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2919; -UPDATE AD_ELEMENT SET DESCRIPTION='Performance Ratio Used', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2929; -UPDATE AD_ELEMENT SET NAME='Next Maintenance',PRINTNAME='Next Maintenance', DESCRIPTION='Next Maintenance Date', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2932; -UPDATE AD_ELEMENT SET DESCRIPTION='Next Maintenance Unit', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2934; -UPDATE AD_ELEMENT SET HELP='The Meta Robots Tag define on how a search engines robot should handle this page and the following ones. It defines two keywords: (NO)INDEX which defines whether or not to index this content and (NO)FOLLOW which defines whether or not to follow links. The most common combination is INDEX,FOLLOW which will force a search robot to index the content and follow links and images.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2975; -UPDATE AD_ELEMENT SET DESCRIPTION='Contains list of elements separated by CR', HELP='Contains a list of elements this template uses separated by a Carriage Return. Last line should be empty', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2983; -UPDATE AD_ELEMENT SET HELP='A Container defines the abstract level around the content, it defines how the content gets displayed, indexed and stored.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2985; -UPDATE AD_ELEMENT SET DESCRIPTION='External Link (URL) for the Container', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2988; -UPDATE AD_ELEMENT SET HELP='This table contains all the media content like images, flash movies etc.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2997; -UPDATE AD_ELEMENT SET HELP='If we have a block in content where announce content and also sponsored links we should mention the sponsored ones', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=3007; -UPDATE AD_ELEMENT SET HELP='Media Server list to which content should get transferred', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=3009; -UPDATE AD_ELEMENT SET HELP='A container element defines the smallest definition of content, i.e. the headline, the content etc.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID IN (3013,3023); -UPDATE AD_ELEMENT SET HELP='The date the revenue recognition starts.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=3032; -UPDATE AD_ELEMENT SET DESCRIPTION='Container Stage Template Table', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=3050; -UPDATE AD_ELEMENT SET HELP='The entity type determines the ownership of Application Dictionary entries. The types "Dictionary" and "Adempiere" should not be used and are maintained by Adempiere (i.e. all changes are reversed during migration to the current definition).', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=3052; -UPDATE AD_ELEMENT SET HELP='If your application requires additional jar files, enter them here. The jar files must be located in the $ADEMPIERE_HOME/lib directory.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=3054; -UPDATE AD_ELEMENT SET HELP='Keyword not to be indexed, optional restricted to specific Document Type, Container or Request Type', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=3078; -UPDATE AD_ELEMENT SET DESCRIPTION='Open Debit in document currency & rate', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=3083; -UPDATE AD_ELEMENT SET DESCRIPTION='Open Credit in document currency & rate', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=3084; -UPDATE AD_ELEMENT SET DESCRIPTION='Open Balance in document currency & rate', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=3085; -UPDATE AD_ELEMENT SET HELP='The dunning letter with this level includes all due invoices.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=3088; -UPDATE AD_ELEMENT SET HELP='The dunning letter with this level includes all not due invoices.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=3089; -UPDATE AD_ELEMENT SET HELP='The LDAP Server allows third party software (e.g. Apache) to use the users defined in the system to authenticate and authorize them. There is only one server per Adempiere system. The "o" is the Client key and the optional "ou" is the Interest Area key.', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=3093; -UPDATE AD_ELEMENT SET PRINTNAME=NAME, DESCRIPTION='Table to check whether the migration script has been applied', UPDATED=TO_DATE('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=53350; -COMMIT; diff --git a/migration/354a-trunk/oracle/665_FR2952245_ImportDataPlanning.sql b/migration/354a-trunk/oracle/665_FR2952245_ImportDataPlanning.sql deleted file mode 100644 index ea155f3c97..0000000000 --- a/migration/354a-trunk/oracle/665_FR2952245_ImportDataPlanning.sql +++ /dev/null @@ -1,2069 +0,0 @@ --- Feb 15, 2010 1:05:07 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Window (AD_Client_ID,AD_Org_ID,AD_Window_ID,Created,CreatedBy,EntityType,IsActive,IsBetaFunctionality,IsDefault,IsSOTrx,Name,Processing,Updated,UpdatedBy,WindowType) VALUES (0,0,53109,TO_DATE('2010-02-15 13:05:05','YYYY-MM-DD HH24:MI:SS'),0,'EE01','Y','N','N','Y','Import Product Planning','N',TO_DATE('2010-02-15 13:05:05','YYYY-MM-DD HH24:MI:SS'),0,'M') -; - --- Feb 15, 2010 1:05:07 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Window_Trl (AD_Language,AD_Window_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Window_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Window t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Window_ID=53109 AND NOT EXISTS (SELECT * FROM AD_Window_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Window_ID=t.AD_Window_ID) -; - --- Feb 15, 2010 1:05:11 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Table (AD_Client_ID,AD_Org_ID,AD_Table_ID,AD_Window_ID,AccessLevel,Created,CreatedBy,EntityType,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,Name,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53260,53109,'2',TO_DATE('2010-02-15 13:05:09','YYYY-MM-DD HH24:MI:SS'),0,'EE01','Y','N','Y','N','N','N','Import Product Planning','L','I_ProductPlanning',TO_DATE('2010-02-15 13:05:09','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:05:11 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Table_Trl (AD_Language,AD_Table_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Table_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Table t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53260 AND NOT EXISTS (SELECT * FROM AD_Table_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Table_ID=t.AD_Table_ID) -; - --- Feb 15, 2010 1:05:12 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Sequence (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,Name,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53369,TO_DATE('2010-02-15 13:05:11','YYYY-MM-DD HH24:MI:SS'),0,1000000,50000,'Table I_ProductPlanning',1,'Y','N','Y','Y','I_ProductPlanning','N',1000000,TO_DATE('2010-02-15 13:05:11','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:05:13 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,54117,0,'I_ProductPlanning_ID',TO_DATE('2010-02-15 13:05:12','YYYY-MM-DD HH24:MI:SS'),0,'EE01','Y','Import Product Planning','Import Product Planning',TO_DATE('2010-02-15 13:05:12','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:05:13 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=54117 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) -; - --- Feb 15, 2010 1:05:14 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description='10 Digit Identifier', EntityType='D', Help=NULL, IsActive='Y', Name='ID', ValidationType='D',Updated=TO_DATE('2010-02-15 13:05:14','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=13 -; - --- Feb 15, 2010 1:05:14 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=13 -; - --- Feb 15, 2010 1:05:15 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58977,54117,0,13,53260,'I_ProductPlanning_ID',TO_DATE('2010-02-15 13:05:14','YYYY-MM-DD HH24:MI:SS'),0,'EE01',10,'Y','N','N','N','Y','Y','N','N','Y','N','N','Import Product Planning',TO_DATE('2010-02-15 13:05:14','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:15 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58977 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:15 PM CST --- Create new importer for Planning Data and Forecast -CREATE TABLE I_ProductPlanning (I_ProductPlanning_ID NUMBER(10) NOT NULL, CONSTRAINT I_ProductPlanning_Key PRIMARY KEY (I_ProductPlanning_ID)) -; - --- Feb 15, 2010 1:05:16 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='AD_Client_ID', Description='Client/Tenant for this installation.', EntityType='D', Help='A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.', IsActive='Y', Name='Client', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Client',Updated=TO_DATE('2010-02-15 13:05:16','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=102 -; - --- Feb 15, 2010 1:05:16 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=102 -; - --- Feb 15, 2010 1:05:17 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description='Direct Table Access', EntityType='D', Help=NULL, IsActive='Y', Name='Table Direct', ValidationType='D',Updated=TO_DATE('2010-02-15 13:05:17','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=19 -; - --- Feb 15, 2010 1:05:17 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=19 -; - --- Feb 15, 2010 1:05:17 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58978,102,0,19,53260,'AD_Client_ID',TO_DATE('2010-02-15 13:05:17','YYYY-MM-DD HH24:MI:SS'),0,'@AD_Client_ID@','Client/Tenant for this installation.','EE01',10,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','Y','N','N','Client',TO_DATE('2010-02-15 13:05:17','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:17 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58978 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:18 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD AD_Client_ID NUMBER(10) NOT NULL -; - --- Feb 15, 2010 1:05:18 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='AD_Org_ID', Description='Organizational entity within client', EntityType='D', Help='An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.', IsActive='Y', Name='Organization', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Organization',Updated=TO_DATE('2010-02-15 13:05:18','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=113 -; - --- Feb 15, 2010 1:05:18 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=113 -; - --- Feb 15, 2010 1:05:19 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58979,113,0,19,53260,'AD_Org_ID',TO_DATE('2010-02-15 13:05:18','YYYY-MM-DD HH24:MI:SS'),0,'@AD_Org_ID@','Organizational entity within client','EE01',10,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','Y','N','N','Organization',TO_DATE('2010-02-15 13:05:18','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:19 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58979 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:19 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD AD_Org_ID NUMBER(10) NOT NULL -; - --- Feb 15, 2010 1:05:19 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='Created', Description='Date this record was created', EntityType='D', Help='The Created field indicates the date that this record was created.', IsActive='Y', Name='Created', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Created',Updated=TO_DATE('2010-02-15 13:05:19','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=245 -; - --- Feb 15, 2010 1:05:19 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=245 -; - --- Feb 15, 2010 1:05:19 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description='Date with time', EntityType='D', Help=NULL, IsActive='Y', Name='Date+Time', ValidationType='D',Updated=TO_DATE('2010-02-15 13:05:19','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=16 -; - --- Feb 15, 2010 1:05:19 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=16 -; - --- Feb 15, 2010 1:05:20 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58980,245,0,16,53260,'Created',TO_DATE('2010-02-15 13:05:19','YYYY-MM-DD HH24:MI:SS'),0,'Date this record was created','EE01',14,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','Y','N','N','Created',TO_DATE('2010-02-15 13:05:19','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:20 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58980 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:20 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD Created DATE NOT NULL -; - --- Feb 15, 2010 1:05:20 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='CreatedBy', Description='User who created this records', EntityType='D', Help='The Created By field indicates the user who created this record.', IsActive='Y', Name='Created By', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Created By',Updated=TO_DATE('2010-02-15 13:05:20','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=246 -; - --- Feb 15, 2010 1:05:20 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=246 -; - --- Feb 15, 2010 1:05:20 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description='10 Digit numeric', EntityType='D', Help=NULL, IsActive='Y', Name='Integer', ValidationType='D',Updated=TO_DATE('2010-02-15 13:05:20','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=11 -; - --- Feb 15, 2010 1:05:20 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=11 -; - --- Feb 15, 2010 1:05:21 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58981,246,0,11,53260,'CreatedBy',TO_DATE('2010-02-15 13:05:20','YYYY-MM-DD HH24:MI:SS'),0,'User who created this records','EE01',14,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','Y','N','N','Created By',TO_DATE('2010-02-15 13:05:20','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:21 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58981 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:21 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD CreatedBy NUMBER(10) NOT NULL -; - --- Feb 15, 2010 1:05:21 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='IsActive', Description='The record is active in the system', EntityType='D', Help='There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons for de-activating and not deleting records: -(1) The system requires the record for audit purposes. -(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries.', IsActive='Y', Name='Active', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Active',Updated=TO_DATE('2010-02-15 13:05:21','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=348 -; - --- Feb 15, 2010 1:05:21 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=348 -; - --- Feb 15, 2010 1:05:22 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description='CheckBox', EntityType='D', Help=NULL, IsActive='Y', Name='Yes-No', ValidationType='D',Updated=TO_DATE('2010-02-15 13:05:22','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=20 -; - --- Feb 15, 2010 1:05:22 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=20 -; - --- Feb 15, 2010 1:05:22 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58982,348,0,20,53260,'IsActive',TO_DATE('2010-02-15 13:05:22','YYYY-MM-DD HH24:MI:SS'),0,'Y','The record is active in the system','EE01',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons for de-activating and not deleting records: -(1) The system requires the record for audit purposes. -(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries.','Y','N','N','N','N','Y','N','N','Y','N','Y','Active',TO_DATE('2010-02-15 13:05:22','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:22 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58982 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:22 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL -; - --- Feb 15, 2010 1:05:23 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='Updated', Description='Date this record was updated', EntityType='D', Help='The Updated field indicates the date that this record was updated.', IsActive='Y', Name='Updated', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Updated',Updated=TO_DATE('2010-02-15 13:05:23','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=607 -; - --- Feb 15, 2010 1:05:23 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=607 -; - --- Feb 15, 2010 1:05:24 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58983,607,0,16,53260,'Updated',TO_DATE('2010-02-15 13:05:23','YYYY-MM-DD HH24:MI:SS'),0,'Date this record was updated','EE01',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','Y','N','N','Updated',TO_DATE('2010-02-15 13:05:23','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:24 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58983 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:24 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD Updated DATE NOT NULL -; - --- Feb 15, 2010 1:05:24 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='UpdatedBy', Description='User who updated this records', EntityType='D', Help='The Updated By field indicates the user who updated this record.', IsActive='Y', Name='Updated By', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Updated By',Updated=TO_DATE('2010-02-15 13:05:24','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=608 -; - --- Feb 15, 2010 1:05:24 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=608 -; - --- Feb 15, 2010 1:05:25 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58984,608,0,11,53260,'UpdatedBy',TO_DATE('2010-02-15 13:05:24','YYYY-MM-DD HH24:MI:SS'),0,'User who updated this records','EE01',14,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','Y','N','N','Updated By',TO_DATE('2010-02-15 13:05:24','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:25 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58984 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:25 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD UpdatedBy NUMBER(10) NOT NULL -; - --- Feb 15, 2010 1:05:25 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='BPartner_Value', Description='The Key of the Business Partner', EntityType='D', Help=NULL, IsActive='Y', Name='Business Partner Key', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Partner Key',Updated=TO_DATE('2010-02-15 13:05:25','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=1906 -; - --- Feb 15, 2010 1:05:25 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=1906 -; - --- Feb 15, 2010 1:05:25 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description='Character String', EntityType='D', Help=NULL, IsActive='Y', Name='String', ValidationType='D',Updated=TO_DATE('2010-02-15 13:05:25','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=10 -; - --- Feb 15, 2010 1:05:25 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=10 -; - --- Feb 15, 2010 1:05:26 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58985,1906,0,10,53260,'BPartner_Value',TO_DATE('2010-02-15 13:05:25','YYYY-MM-DD HH24:MI:SS'),0,'The Key of the Business Partner','EE01',40,'Y','N','N','N','N','N','N','N','Y','N','Y','Business Partner Key',TO_DATE('2010-02-15 13:05:25','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:26 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58985 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:26 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD BPartner_Value NVARCHAR2(40) DEFAULT NULL -; - --- Feb 15, 2010 1:05:26 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='C_BPartner_ID', Description='Identifies a Business Partner', EntityType='D', Help='A Business Partner is anyone with whom you transact. This can include Vendor, Customer, Employee or Salesperson', IsActive='Y', Name='Business Partner ', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Business Partner ',Updated=TO_DATE('2010-02-15 13:05:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=187 -; - --- Feb 15, 2010 1:05:26 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=187 -; - --- Feb 15, 2010 1:05:26 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description='Search Field', EntityType='D', Help=NULL, IsActive='Y', Name='Search', ValidationType='D',Updated=TO_DATE('2010-02-15 13:05:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=30 -; - --- Feb 15, 2010 1:05:26 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=30 -; - --- Feb 15, 2010 1:05:27 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58986,187,0,30,53260,'C_BPartner_ID',TO_DATE('2010-02-15 13:05:26','YYYY-MM-DD HH24:MI:SS'),0,'Identifies a Business Partner','EE01',22,'A Business Partner is anyone with whom you transact. This can include Vendor, Customer, Employee or Salesperson','Y','N','N','N','N','N','N','N','Y','N','Y','Business Partner ',TO_DATE('2010-02-15 13:05:26','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:27 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58986 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:27 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD C_BPartner_ID NUMBER(10) DEFAULT NULL -; - --- Feb 15, 2010 1:05:27 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='I_ErrorMsg', Description='Messages generated from import process', EntityType='D', Help='The Import Error Message displays any error messages generated during the import process.', IsActive='Y', Name='Import Error Message', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Import Error Message',Updated=TO_DATE('2010-02-15 13:05:27','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=912 -; - --- Feb 15, 2010 1:05:27 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=912 -; - --- Feb 15, 2010 1:05:28 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58987,912,0,10,53260,'I_ErrorMsg',TO_DATE('2010-02-15 13:05:27','YYYY-MM-DD HH24:MI:SS'),0,'Messages generated from import process','EE01',2000,'The Import Error Message displays any error messages generated during the import process.','Y','N','N','N','N','N','N','N','Y','N','Y','Import Error Message',TO_DATE('2010-02-15 13:05:27','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:28 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58987 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:29 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD I_ErrorMsg NVARCHAR2(2000) DEFAULT NULL -; - --- Feb 15, 2010 1:05:29 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='I_IsImported', Description='Has this import been processed', EntityType='D', Help='The Imported check box indicates if this import has been processed.', IsActive='Y', Name='Imported', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Imported',Updated=TO_DATE('2010-02-15 13:05:29','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=913 -; - --- Feb 15, 2010 1:05:29 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=913 -; - --- Feb 15, 2010 1:05:30 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58988,913,0,20,53260,'I_IsImported',TO_DATE('2010-02-15 13:05:29','YYYY-MM-DD HH24:MI:SS'),0,'Has this import been processed','EE01',1,'The Imported check box indicates if this import has been processed.','Y','N','N','N','N','Y','N','N','Y','N','Y','Imported',TO_DATE('2010-02-15 13:05:29','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:30 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58988 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:30 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD I_IsImported CHAR(1) CHECK (I_IsImported IN ('Y','N')) NOT NULL -; - --- Feb 15, 2010 1:05:30 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='Processed', Description='The document has been processed', EntityType='D', Help='The Processed checkbox indicates that a document has been processed.', IsActive='Y', Name='Processed', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Processed',Updated=TO_DATE('2010-02-15 13:05:30','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=1047 -; - --- Feb 15, 2010 1:05:30 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=1047 -; - --- Feb 15, 2010 1:05:30 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58989,1047,0,20,53260,'Processed',TO_DATE('2010-02-15 13:05:30','YYYY-MM-DD HH24:MI:SS'),0,'The document has been processed','EE01',1,'The Processed checkbox indicates that a document has been processed.','Y','N','N','N','N','N','N','N','Y','N','N','Processed',TO_DATE('2010-02-15 13:05:30','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:30 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58989 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:31 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD Processed CHAR(1) DEFAULT NULL CHECK (Processed IN ('Y','N')) -; - --- Feb 15, 2010 1:05:31 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='Processing', Description=NULL, EntityType='D', Help=NULL, IsActive='Y', Name='Process Now', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Process Now',Updated=TO_DATE('2010-02-15 13:05:31','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=524 -; - --- Feb 15, 2010 1:05:31 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=524 -; - --- Feb 15, 2010 1:05:31 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description='Command Button - starts a process', EntityType='D', Help=NULL, IsActive='Y', Name='Button', ValidationType='D',Updated=TO_DATE('2010-02-15 13:05:31','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=28 -; - --- Feb 15, 2010 1:05:31 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=28 -; - --- Feb 15, 2010 1:05:32 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Process (AD_Client_ID,AD_Org_ID,AD_Process_ID,AccessLevel,Classname,Created,CreatedBy,Description,EntityType,Help,IsActive,IsBetaFunctionality,IsDirectPrint,IsReport,Name,ShowHelp,Statistic_Count,Statistic_Seconds,Updated,UpdatedBy,Value,WorkflowValue) VALUES (0,0,53200,'3','org.eevolution.process.ImportProductPlanning',TO_DATE('2010-02-15 13:05:31','YYYY-MM-DD HH24:MI:SS'),0,'Import Product Planning and Forecast','EE01','Import and update product planning data and forecast','Y','N','N','N','Import Product Planning and Forecast','Y',0,0,TO_DATE('2010-02-15 13:05:31','YYYY-MM-DD HH24:MI:SS'),0,'Import_ProductPlanning',NULL) -; - --- Feb 15, 2010 1:05:32 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Process_Trl (AD_Language,AD_Process_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_ID=53200 AND NOT EXISTS (SELECT * FROM AD_Process_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Process_ID=t.AD_Process_ID) -; - --- Feb 15, 2010 1:05:33 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Process_Para (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,1922,0,53200,53402,20,'DeleteOldImported',TO_DATE('2010-02-15 13:05:32','YYYY-MM-DD HH24:MI:SS'),0,'Before processing delete old imported records in the import table','EE01',0,'Y','Y','N','N','Delete old imported records',30,TO_DATE('2010-02-15 13:05:32','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:05:33 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53402 AND NOT EXISTS (SELECT * FROM AD_Process_Para_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Process_Para_ID=t.AD_Process_Para_ID) -; - --- Feb 15, 2010 1:05:34 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Process_Para (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,2169,0,53200,53403,20,'IsImportOnlyNoErrors',TO_DATE('2010-02-15 13:05:33','YYYY-MM-DD HH24:MI:SS'),0,'Y','Only start the import, if there are no validation Errors','EE01',0,'Y','Y','N','N','Import only if No Errors',60,TO_DATE('2010-02-15 13:05:33','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:05:34 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53403 AND NOT EXISTS (SELECT * FROM AD_Process_Para_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Process_Para_ID=t.AD_Process_Para_ID) -; - --- Feb 15, 2010 1:05:35 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58990,524,0,53200,28,53260,'Processing',TO_DATE('2010-02-15 13:05:34','YYYY-MM-DD HH24:MI:SS'),0,'EE01',1,'Y','N','N','N','N','N','N','N','Y','N','Y','Process Now',TO_DATE('2010-02-15 13:05:34','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:35 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58990 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:35 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD Processing CHAR(1) DEFAULT NULL -; - --- Feb 15, 2010 1:05:35 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='AD_Workflow_ID', Description='Workflow or combination of tasks', EntityType='D', Help='The Workflow field identifies a unique Workflow in the system.', IsActive='Y', Name='Workflow', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Workflow',Updated=TO_DATE('2010-02-15 13:05:35','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=144 -; - --- Feb 15, 2010 1:05:35 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=144 -; - --- Feb 15, 2010 1:05:35 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description='Table List', EntityType='D', Help=NULL, IsActive='Y', Name='Table', ValidationType='D',Updated=TO_DATE('2010-02-15 13:05:35','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=18 -; - --- Feb 15, 2010 1:05:35 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=18 -; - --- Feb 15, 2010 1:05:36 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Val_Rule SET Code='WorkflowType=''M''', Description=NULL, EntityType='EE01', IsActive='Y', Name='AD_Workflow Manufacturing', Type='S',Updated=TO_DATE('2010-02-15 13:05:36','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Val_Rule_ID=52003 -; - --- Feb 15, 2010 1:05:40 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58991,144,0,18,53260,52003,'AD_Workflow_ID',TO_DATE('2010-02-15 13:05:36','YYYY-MM-DD HH24:MI:SS'),0,'Workflow or combination of tasks','EE01',22,'The Workflow field identifies a unique Workflow in the system.','Y','N','N','N','N','N','N','N','Y','N','Y','Workflow',TO_DATE('2010-02-15 13:05:36','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:40 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58991 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:40 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD AD_Workflow_ID NUMBER(10) DEFAULT NULL -; - --- Feb 15, 2010 1:05:40 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='DD_NetworkDistribution_ID', Description=NULL, EntityType='EE01', Help=NULL, IsActive='Y', Name='Network Distribution', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Network Distribution',Updated=TO_DATE('2010-02-15 13:05:40','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=53340 -; - --- Feb 15, 2010 1:05:40 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53340 -; - --- Feb 15, 2010 1:05:41 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58992,53340,0,18,53260,'DD_NetworkDistribution_ID',TO_DATE('2010-02-15 13:05:40','YYYY-MM-DD HH24:MI:SS'),0,'EE01',22,'Y','N','N','N','N','N','N','N','Y','N','Y','Network Distribution',TO_DATE('2010-02-15 13:05:40','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:41 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58992 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:41 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD DD_NetworkDistribution_ID NUMBER(10) DEFAULT NULL -; - --- Feb 15, 2010 1:05:41 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='DeliveryTime_Promised', Description='Promised days between order and delivery', EntityType='D', Help='The Promised Delivery Time indicates the number of days between the order date and the date that delivery was promised.', IsActive='Y', Name='Promised Delivery Time', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Promised Delivery Time',Updated=TO_DATE('2010-02-15 13:05:41','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=1256 -; - --- Feb 15, 2010 1:05:41 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=1256 -; - --- Feb 15, 2010 1:05:41 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description='Quantity data type', EntityType='D', Help=NULL, IsActive='Y', Name='Quantity', ValidationType='D',Updated=TO_DATE('2010-02-15 13:05:41','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=29 -; - --- Feb 15, 2010 1:05:41 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=29 -; - --- Feb 15, 2010 1:05:42 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58993,1256,0,29,53260,'DeliveryTime_Promised',TO_DATE('2010-02-15 13:05:41','YYYY-MM-DD HH24:MI:SS'),0,'Promised days between order and delivery','EE01',10,'The Promised Delivery Time indicates the number of days between the order date and the date that delivery was promised.','Y','N','N','N','N','N','N','N','Y','N','Y','Promised Delivery Time',TO_DATE('2010-02-15 13:05:41','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:42 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58993 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:42 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD DeliveryTime_Promised NUMBER DEFAULT NULL -; - --- Feb 15, 2010 1:05:42 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='IsCreatePlan', Description='Indicates whether planned orders will be generated by MRP', EntityType='EE01', Help='Indicates whether planned orders will be generated by MRP, if this flag is not just MRP generate a ''Create'' action notice', IsActive='Y', Name='Create Plan', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Create Plan',Updated=TO_DATE('2010-02-15 13:05:42','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=53258 -; - --- Feb 15, 2010 1:05:42 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53258 -; - --- Feb 15, 2010 1:05:43 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58994,53258,0,20,53260,'IsCreatePlan',TO_DATE('2010-02-15 13:05:42','YYYY-MM-DD HH24:MI:SS'),0,'Indicates whether planned orders will be generated by MRP','EE01',1,'Indicates whether planned orders will be generated by MRP, if this flag is not just MRP generate a ''Create'' action notice','Y','N','N','N','N','Y','N','N','Y','N','Y','Create Plan',TO_DATE('2010-02-15 13:05:42','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:43 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58994 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:43 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD IsCreatePlan CHAR(1) CHECK (IsCreatePlan IN ('Y','N')) NOT NULL -; - --- Feb 15, 2010 1:05:43 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='IsMPS', Description=NULL, EntityType='EE01', Help=NULL, IsActive='Y', Name='Is MPS', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Is MPS',Updated=TO_DATE('2010-02-15 13:05:43','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=53261 -; - --- Feb 15, 2010 1:05:43 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53261 -; - --- Feb 15, 2010 1:05:48 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58995,53261,0,20,53260,'IsMPS',TO_DATE('2010-02-15 13:05:43','YYYY-MM-DD HH24:MI:SS'),0,'EE01',1,'Y','N','N','N','N','N','N','N','Y','N','Y','Is MPS',TO_DATE('2010-02-15 13:05:43','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:48 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58995 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:48 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD IsMPS CHAR(1) DEFAULT NULL CHECK (IsMPS IN ('Y','N')) -; - --- Feb 15, 2010 1:05:49 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='IsPhantom', Description='Phantom Component', EntityType='D', Help='Phantom Component are not stored and produced with the product. This is an option to avild maintaining an Engineering and Manufacturing Bill of Materials.', IsActive='Y', Name='Phantom', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Phantom',Updated=TO_DATE('2010-02-15 13:05:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=2788 -; - --- Feb 15, 2010 1:05:49 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=2788 -; - --- Feb 15, 2010 1:05:50 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58996,2788,0,20,53260,'IsPhantom',TO_DATE('2010-02-15 13:05:49','YYYY-MM-DD HH24:MI:SS'),0,'Phantom Component','EE01',1,'Phantom Component are not stored and produced with the product. This is an option to avild maintaining an Engineering and Manufacturing Bill of Materials.','Y','N','N','N','N','Y','N','N','Y','N','Y','Phantom',TO_DATE('2010-02-15 13:05:49','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:50 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58996 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:50 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD IsPhantom CHAR(1) CHECK (IsPhantom IN ('Y','N')) NOT NULL -; - --- Feb 15, 2010 1:05:50 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='M_Product_ID', Description='Product, Service, Item', EntityType='D', Help='Identifies an item which is either purchased or sold in this organization.', IsActive='Y', Name='Product', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Product',Updated=TO_DATE('2010-02-15 13:05:50','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=454 -; - --- Feb 15, 2010 1:05:50 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=454 -; - --- Feb 15, 2010 1:05:51 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58997,454,0,30,53260,'M_Product_ID',TO_DATE('2010-02-15 13:05:50','YYYY-MM-DD HH24:MI:SS'),0,'Product, Service, Item','EE01',22,'Identifies an item which is either purchased or sold in this organization.','Y','N','N','N','N','N','N','N','Y','N','Y','Product',TO_DATE('2010-02-15 13:05:50','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:51 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58997 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:51 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD M_Product_ID NUMBER(10) DEFAULT NULL -; - --- Feb 15, 2010 1:05:51 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='M_Warehouse_ID', Description='Storage Warehouse and Service Point', EntityType='D', Help='The Warehouse identifies a unique Warehouse where products are stored or Services are provided.', IsActive='Y', Name='Warehouse', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Warehouse',Updated=TO_DATE('2010-02-15 13:05:51','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=459 -; - --- Feb 15, 2010 1:05:51 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=459 -; - --- Feb 15, 2010 1:05:52 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58998,459,0,19,53260,'M_Warehouse_ID',TO_DATE('2010-02-15 13:05:51','YYYY-MM-DD HH24:MI:SS'),0,'-1','Storage Warehouse and Service Point','EE01',22,'The Warehouse identifies a unique Warehouse where products are stored or Services are provided.','Y','N','N','N','N','N','N','N','Y','N','Y','Warehouse',TO_DATE('2010-02-15 13:05:51','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:52 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58998 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:52 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD M_Warehouse_ID NUMBER(10) DEFAULT NULL -; - --- Feb 15, 2010 1:05:53 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='Order_Max', Description='Maximum order quantity in UOM', EntityType='EE01', Help='The Maximum Order Quantity indicates the biggest quantity of this product which can be ordered.', IsActive='Y', Name='Maximum Order Qty', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Maximum Order Qty',Updated=TO_DATE('2010-02-15 13:05:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=53264 -; - --- Feb 15, 2010 1:05:53 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53264 -; - --- Feb 15, 2010 1:05:54 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58999,53264,0,29,53260,'Order_Max',TO_DATE('2010-02-15 13:05:53','YYYY-MM-DD HH24:MI:SS'),0,'Maximum order quantity in UOM','EE01',10,'The Maximum Order Quantity indicates the biggest quantity of this product which can be ordered.','Y','N','N','N','N','N','N','N','Y','N','Y','Maximum Order Qty',TO_DATE('2010-02-15 13:05:53','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:54 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58999 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:54 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD Order_Max NUMBER DEFAULT NULL -; - --- Feb 15, 2010 1:05:54 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='Order_Min', Description='Minimum order quantity in UOM', EntityType='D', Help='The Minimum Order Quantity indicates the smallest quantity of this product which can be ordered.', IsActive='Y', Name='Minimum Order Qty', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Minimum Order Qty',Updated=TO_DATE('2010-02-15 13:05:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=942 -; - --- Feb 15, 2010 1:05:54 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=942 -; - --- Feb 15, 2010 1:05:55 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59000,942,0,29,53260,'Order_Min',TO_DATE('2010-02-15 13:05:54','YYYY-MM-DD HH24:MI:SS'),0,'Minimum order quantity in UOM','EE01',14,'The Minimum Order Quantity indicates the smallest quantity of this product which can be ordered.','Y','N','N','N','N','N','N','N','Y','N','Y','Minimum Order Qty',TO_DATE('2010-02-15 13:05:54','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:55 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59000 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:55 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD Order_Min NUMBER DEFAULT NULL -; - --- Feb 15, 2010 1:05:55 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='Order_Pack', Description='Package order size in UOM (e.g. order set of 5 units)', EntityType='D', Help='The Order Pack Quantity indicates the number of units in each pack of this product.', IsActive='Y', Name='Order Pack Qty', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Order Pack Qty',Updated=TO_DATE('2010-02-15 13:05:55','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=943 -; - --- Feb 15, 2010 1:05:55 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=943 -; - --- Feb 15, 2010 1:05:56 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59001,943,0,29,53260,'Order_Pack',TO_DATE('2010-02-15 13:05:55','YYYY-MM-DD HH24:MI:SS'),0,'Package order size in UOM (e.g. order set of 5 units)','EE01',14,'The Order Pack Quantity indicates the number of units in each pack of this product.','Y','N','N','N','N','N','N','N','Y','N','Y','Order Pack Qty',TO_DATE('2010-02-15 13:05:55','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:56 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59001 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:56 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD Order_Pack NUMBER DEFAULT NULL -; - --- Feb 15, 2010 1:05:56 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='Order_Period', Description=NULL, EntityType='EE01', Help=NULL, IsActive='Y', Name='Order Period', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Order Period',Updated=TO_DATE('2010-02-15 13:05:56','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=53265 -; - --- Feb 15, 2010 1:05:56 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53265 -; - --- Feb 15, 2010 1:05:57 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59002,53265,0,29,53260,'Order_Period',TO_DATE('2010-02-15 13:05:56','YYYY-MM-DD HH24:MI:SS'),0,'EE01',22,'Y','N','N','N','N','N','N','N','Y','N','Y','Order Period',TO_DATE('2010-02-15 13:05:56','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:57 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59002 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:57 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD Order_Period NUMBER DEFAULT NULL -; - --- Feb 15, 2010 1:05:57 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='Order_Policy', Description=NULL, EntityType='EE01', Help=NULL, IsActive='Y', Name='Order Policy', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Order Policy',Updated=TO_DATE('2010-02-15 13:05:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=53266 -; - --- Feb 15, 2010 1:05:57 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53266 -; - --- Feb 15, 2010 1:05:57 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description='Reference List', EntityType='D', Help=NULL, IsActive='Y', Name='List', ValidationType='D',Updated=TO_DATE('2010-02-15 13:05:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=17 -; - --- Feb 15, 2010 1:05:57 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=17 -; - --- Feb 15, 2010 1:05:57 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description=NULL, EntityType='EE01', Help=NULL, IsActive='Y', Name='PP_Product_Planning Order Policy', ValidationType='L',Updated=TO_DATE('2010-02-15 13:05:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=53228 -; - --- Feb 15, 2010 1:05:57 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=53228 -; - --- Feb 15, 2010 1:05:57 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Ref_List SET AD_Reference_ID=53228, Description=NULL, EntityType='EE01', IsActive='Y', Name='Fixed Order Quantity', Value='FOQ',Updated=TO_DATE('2010-02-15 13:05:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Ref_List_ID=53272 -; - --- Feb 15, 2010 1:05:57 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Ref_List_Trl SET IsTranslated='N' WHERE AD_Ref_List_ID=53272 -; - --- Feb 15, 2010 1:05:58 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Ref_List SET AD_Reference_ID=53228, Description=NULL, EntityType='EE01', IsActive='Y', Name='Lot-for-Lot', Value='LFL',Updated=TO_DATE('2010-02-15 13:05:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Ref_List_ID=53273 -; - --- Feb 15, 2010 1:05:58 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Ref_List_Trl SET IsTranslated='N' WHERE AD_Ref_List_ID=53273 -; - --- Feb 15, 2010 1:05:58 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Ref_List SET AD_Reference_ID=53228, Description=NULL, EntityType='EE01', IsActive='Y', Name='Period Order Quantity', Value='POQ',Updated=TO_DATE('2010-02-15 13:05:58','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Ref_List_ID=53274 -; - --- Feb 15, 2010 1:05:58 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Ref_List_Trl SET IsTranslated='N' WHERE AD_Ref_List_ID=53274 -; - --- Feb 15, 2010 1:05:58 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59003,53266,0,17,53228,53260,'Order_Policy',TO_DATE('2010-02-15 13:05:58','YYYY-MM-DD HH24:MI:SS'),0,'EE01',3,'Y','N','N','N','N','N','N','N','Y','N','Y','Order Policy',TO_DATE('2010-02-15 13:05:58','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:58 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59003 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:58 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD Order_Policy NVARCHAR2(3) DEFAULT NULL -; - --- Feb 15, 2010 1:05:59 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='Order_Qty', Description=NULL, EntityType='EE01', Help=NULL, IsActive='Y', Name='Order Qty', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Order Qty',Updated=TO_DATE('2010-02-15 13:05:59','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=53267 -; - --- Feb 15, 2010 1:05:59 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53267 -; - --- Feb 15, 2010 1:05:59 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59004,53267,0,29,53260,'Order_Qty',TO_DATE('2010-02-15 13:05:59','YYYY-MM-DD HH24:MI:SS'),0,'EE01',22,'Y','N','N','N','N','N','N','N','Y','N','Y','Order Qty',TO_DATE('2010-02-15 13:05:59','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:59 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59004 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:59 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD Order_Qty NUMBER DEFAULT NULL -; - --- Feb 15, 2010 1:06:00 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='Planner_ID', Description=NULL, EntityType='EE01', Help=NULL, IsActive='Y', Name='Planner', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Planner',Updated=TO_DATE('2010-02-15 13:06:00','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=53269 -; - --- Feb 15, 2010 1:06:00 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53269 -; - --- Feb 15, 2010 1:06:00 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description='User selection', EntityType='D', Help=NULL, IsActive='Y', Name='AD_User', ValidationType='T',Updated=TO_DATE('2010-02-15 13:06:00','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=110 -; - --- Feb 15, 2010 1:06:00 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=110 -; - --- Feb 15, 2010 1:06:00 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Ref_Table SET AD_Table_ID = 114, AD_Display = 213, AD_Key = 212, isValueDisplayed = 'N', OrderByClause = 'AD_User.Name', EntityType ='D', WhereClause = '' WHERE AD_Reference_ID = 110 -; - --- Feb 15, 2010 1:06:01 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59005,53269,0,18,110,53260,164,'Planner_ID',TO_DATE('2010-02-15 13:06:00','YYYY-MM-DD HH24:MI:SS'),0,'EE01',22,'Y','N','N','N','N','N','N','N','Y','N','Y','Planner',TO_DATE('2010-02-15 13:06:00','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:01 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59005 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:01 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD Planner_ID NUMBER(10) DEFAULT NULL -; - --- Feb 15, 2010 1:06:01 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='PP_Product_BOM_ID', Description='BOM & Formula', EntityType='EE01', Help=NULL, IsActive='Y', Name='BOM & Formula', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='BOM & Formula',Updated=TO_DATE('2010-02-15 13:06:01','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=53245 -; - --- Feb 15, 2010 1:06:01 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53245 -; - --- Feb 15, 2010 1:06:02 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59006,53245,0,19,53260,'PP_Product_BOM_ID',TO_DATE('2010-02-15 13:06:01','YYYY-MM-DD HH24:MI:SS'),0,'BOM & Formula','EE01',22,'Y','N','N','N','N','N','N','N','Y','N','Y','BOM & Formula',TO_DATE('2010-02-15 13:06:01','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:02 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59006 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:02 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD PP_Product_BOM_ID NUMBER(10) DEFAULT NULL -; - --- Feb 15, 2010 1:06:02 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='SafetyStock', Description='Safety stock is a term used to describe a level of stock that is maintained below the cycle stock to buffer against stock-outs', EntityType='EE01', Help='Safety stock is defined as extra units of inventory carried as protection against possible stockouts. It is held when an organization cannot accurately predict demand and/or lead time for the product. - -Rereference: -http://en.wikipedia.org/wiki/Safety_stock', IsActive='Y', Name='Safety Stock Qty', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Safety Stock Qty',Updated=TO_DATE('2010-02-15 13:06:02','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=53354 -; - --- Feb 15, 2010 1:06:02 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53354 -; - --- Feb 15, 2010 1:06:03 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59007,53354,0,29,53260,'SafetyStock',TO_DATE('2010-02-15 13:06:03','YYYY-MM-DD HH24:MI:SS'),0,'Safety stock is a term used to describe a level of stock that is maintained below the cycle stock to buffer against stock-outs','EE01',22,'Safety stock is defined as extra units of inventory carried as protection against possible stockouts. It is held when an organization cannot accurately predict demand and/or lead time for the product. - -Rereference: -http://en.wikipedia.org/wiki/Safety_stock','Y','N','N','N','N','N','N','N','Y','N','Y','Safety Stock Qty',TO_DATE('2010-02-15 13:06:03','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:03 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59007 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:03 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD SafetyStock NUMBER DEFAULT NULL -; - --- Feb 15, 2010 1:06:03 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='S_Resource_ID', Description='Resource', EntityType='D', Help=NULL, IsActive='Y', Name='Resource', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Resource',Updated=TO_DATE('2010-02-15 13:06:03','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=1777 -; - --- Feb 15, 2010 1:06:03 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=1777 -; - --- Feb 15, 2010 1:06:04 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description='Manufacturing Resources', EntityType='EE01', Help=NULL, IsActive='Y', Name='S_Resource_Manufacturing', ValidationType='T',Updated=TO_DATE('2010-02-15 13:06:04','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=53320 -; - --- Feb 15, 2010 1:06:04 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=53320 -; - --- Feb 15, 2010 1:06:04 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Ref_Table SET AD_Table_ID = 487, AD_Display = 6853, AD_Key = 6862, isValueDisplayed = 'N', OrderByClause = '', EntityType ='EE01', WhereClause = '' WHERE AD_Reference_ID = 53320 -; - --- Feb 15, 2010 1:06:04 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Val_Rule SET Code='IsManufacturingResource=''Y'' AND ManufacturingResourceType=''PT''', Description=NULL, EntityType='EE01', IsActive='Y', Name='S_Resource Plant', Type='S',Updated=TO_DATE('2010-02-15 13:06:04','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Val_Rule_ID=52002 -; - --- Feb 15, 2010 1:06:04 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59008,1777,0,18,53320,53260,52002,'S_Resource_ID',TO_DATE('2010-02-15 13:06:04','YYYY-MM-DD HH24:MI:SS'),0,'-1','Resource','EE01',22,'Y','N','N','N','N','N','N','N','Y','N','Y','Resource',TO_DATE('2010-02-15 13:06:04','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:04 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59008 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:04 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD S_Resource_ID NUMBER(10) DEFAULT NULL -; - --- Feb 15, 2010 1:06:05 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='TimeFence', Description=NULL, EntityType='EE01', Help=NULL, IsActive='Y', Name='Time Fence', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Time Fence',Updated=TO_DATE('2010-02-15 13:06:05','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=53270 -; - --- Feb 15, 2010 1:06:05 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53270 -; - --- Feb 15, 2010 1:06:07 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59009,53270,0,29,53260,'TimeFence',TO_DATE('2010-02-15 13:06:05','YYYY-MM-DD HH24:MI:SS'),0,'EE01',22,'Y','N','N','N','N','N','N','N','Y','N','Y','Time Fence',TO_DATE('2010-02-15 13:06:05','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:07 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59009 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:07 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD TimeFence NUMBER DEFAULT NULL -; - --- Feb 15, 2010 1:06:07 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='TransfertTime', Description=NULL, EntityType='EE01', Help=NULL, IsActive='Y', Name='Transfert Time', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Transfert Time',Updated=TO_DATE('2010-02-15 13:06:07','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=53271 -; - --- Feb 15, 2010 1:06:07 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53271 -; - --- Feb 15, 2010 1:06:08 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59010,53271,0,29,53260,'TransfertTime',TO_DATE('2010-02-15 13:06:07','YYYY-MM-DD HH24:MI:SS'),0,'EE01',10,'Y','N','N','N','N','N','N','N','Y','N','Y','Transfert Time',TO_DATE('2010-02-15 13:06:07','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:08 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59010 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:08 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD TransfertTime NUMBER DEFAULT NULL -; - --- Feb 15, 2010 1:06:08 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='WorkingTime', Description='Workflow Simulation Execution Time', EntityType='D', Help='Amount of time the performer of the activity needs to perform the task in Duration Unit', IsActive='Y', Name='Working Time', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Working Time',Updated=TO_DATE('2010-02-15 13:06:08','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=2333 -; - --- Feb 15, 2010 1:06:08 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=2333 -; - --- Feb 15, 2010 1:06:09 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59011,2333,0,29,53260,'WorkingTime',TO_DATE('2010-02-15 13:06:08','YYYY-MM-DD HH24:MI:SS'),0,'Workflow Simulation Execution Time','EE01',22,'Amount of time the performer of the activity needs to perform the task in Duration Unit','Y','N','N','N','N','N','N','N','Y','N','Y','Working Time',TO_DATE('2010-02-15 13:06:08','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:09 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59011 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:09 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD WorkingTime NUMBER DEFAULT NULL -; - --- Feb 15, 2010 1:06:09 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='Yield', Description='The Yield is the percentage of a lot that is expected to be of acceptable wuality may fall below 100 percent', EntityType='EE01', Help='ADempiere Calculate the total yield for a product from the yield for each activity when the process Workflow Cost Roll-Up is executed. - -The expected yield for an Activity can be expressed as: - -Yield = Acceptable Units at Activity End x 100 - -The Total manufacturing yield for a product is determined by multiplying the yied percentage for each activity. - -Manufacturing Yield = Yield % for Activity 10 x Yied % for Activity 20 , etc - -Take care when setting yield to anything but 100% particularly when yied is used for multiples activities - -', IsActive='Y', Name='Yield %', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Yield %',Updated=TO_DATE('2010-02-15 13:06:09','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=53272 -; - --- Feb 15, 2010 1:06:09 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53272 -; - --- Feb 15, 2010 1:06:10 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59012,53272,0,11,53260,'Yield',TO_DATE('2010-02-15 13:06:09','YYYY-MM-DD HH24:MI:SS'),0,'The Yield is the percentage of a lot that is expected to be of acceptable wuality may fall below 100 percent','EE01',22,'ADempiere Calculate the total yield for a product from the yield for each activity when the process Workflow Cost Roll-Up is executed. - -The expected yield for an Activity can be expressed as: - -Yield = Acceptable Units at Activity End x 100 - -The Total manufacturing yield for a product is determined by multiplying the yied percentage for each activity. - -Manufacturing Yield = Yield % for Activity 10 x Yied % for Activity 20 , etc - -Take care when setting yield to anything but 100% particularly when yied is used for multiples activities - -','Y','N','N','N','N','N','N','N','Y','N','Y','Yield %',TO_DATE('2010-02-15 13:06:09','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:10 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59012 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:10 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD Yield NUMBER(10) DEFAULT NULL -; - --- Feb 15, 2010 1:06:10 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='DatePromised', Description='Date Order was promised', EntityType='D', Help='The Date Promised indicates the date, if any, that an Order was promised for.', IsActive='Y', Name='Date Promised', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Date Promised',Updated=TO_DATE('2010-02-15 13:06:10','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=269 -; - --- Feb 15, 2010 1:06:10 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=269 -; - --- Feb 15, 2010 1:06:10 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description='Date mm/dd/yyyy', EntityType='D', Help=NULL, IsActive='Y', Name='Date', ValidationType='D',Updated=TO_DATE('2010-02-15 13:06:10','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=15 -; - --- Feb 15, 2010 1:06:10 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=15 -; - --- Feb 15, 2010 1:06:11 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59013,269,0,15,53260,'DatePromised',TO_DATE('2010-02-15 13:06:10','YYYY-MM-DD HH24:MI:SS'),0,'Date Order was promised','EE01',7,'The Date Promised indicates the date, if any, that an Order was promised for.','Y','N','N','N','N','N','N','N','Y','N','Y','Date Promised',TO_DATE('2010-02-15 13:06:10','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:11 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59013 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:11 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD DatePromised DATE DEFAULT NULL -; - --- Feb 15, 2010 1:06:11 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='M_Forecast_ID', Description='Material Forecast', EntityType='D', Help='Material Forecast', IsActive='Y', Name='Forecast', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Forecast',Updated=TO_DATE('2010-02-15 13:06:11','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=2498 -; - --- Feb 15, 2010 1:06:11 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=2498 -; - --- Feb 15, 2010 1:06:12 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59014,2498,0,19,53260,'M_Forecast_ID',TO_DATE('2010-02-15 13:06:11','YYYY-MM-DD HH24:MI:SS'),0,'Material Forecast','EE01',22,'Material Forecast','Y','N','N','N','N','N','N','N','Y','N','Y','Forecast',TO_DATE('2010-02-15 13:06:11','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:12 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59014 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:12 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD M_Forecast_ID NUMBER(10) DEFAULT NULL -; - --- Feb 15, 2010 1:06:12 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='Qty', Description='Quantity', EntityType='D', Help='The Quantity indicates the number of a specific product or item for this document.', IsActive='Y', Name='Quantity', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Qty',Updated=TO_DATE('2010-02-15 13:06:12','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=526 -; - --- Feb 15, 2010 1:06:12 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=526 -; - --- Feb 15, 2010 1:06:13 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59015,526,0,29,53260,'Qty',TO_DATE('2010-02-15 13:06:12','YYYY-MM-DD HH24:MI:SS'),0,'Quantity','EE01',22,'The Quantity indicates the number of a specific product or item for this document.','Y','N','N','N','N','Y','N','N','Y','N','Y','Quantity',TO_DATE('2010-02-15 13:06:12','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:13 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59015 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:13 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD Qty NUMBER NOT NULL -; - --- Feb 15, 2010 1:06:14 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59016,1063,0,18,53260,'SalesRep_ID',TO_DATE('2010-02-15 13:06:13','YYYY-MM-DD HH24:MI:SS'),0,'@#AD_User_ID@','Sales Representative or Company Agent','EE01',22,'The Sales Representative indicates the Sales Rep for this Region. Any Sales Rep must be a valid internal user.','Y','N','N','N','N','N','N','N','Y','N','Y','Sales Representative',TO_DATE('2010-02-15 13:06:13','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:14 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59016 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:14 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD SalesRep_ID NUMBER(10) DEFAULT NULL -; - --- Feb 15, 2010 1:06:14 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='ProductValue', Description='Key of the Product', EntityType='D', Help=NULL, IsActive='Y', Name='Product Key', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Product Key',Updated=TO_DATE('2010-02-15 13:06:14','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=1675 -; - --- Feb 15, 2010 1:06:14 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=1675 -; - --- Feb 15, 2010 1:06:15 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59017,1675,0,10,53260,'ProductValue',TO_DATE('2010-02-15 13:06:14','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Product','EE01',40,'Y','N','N','N','N','N','N','N','Y','N','Y','Product Key',TO_DATE('2010-02-15 13:06:14','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:15 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59017 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:15 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD ProductValue NVARCHAR2(40) DEFAULT NULL -; - --- Feb 15, 2010 1:06:15 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='WarehouseValue', Description='Key of the Warehouse', EntityType='D', Help='Key to identify the Warehouse', IsActive='Y', Name='Warehouse Key', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Warehouse Key',Updated=TO_DATE('2010-02-15 13:06:15','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=2070 -; - --- Feb 15, 2010 1:06:15 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=2070 -; - --- Feb 15, 2010 1:06:16 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59018,2070,0,10,53260,'WarehouseValue',TO_DATE('2010-02-15 13:06:15','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Warehouse','EE01',40,'Key to identify the Warehouse','Y','N','N','N','N','N','N','N','Y','N','Y','Warehouse Key',TO_DATE('2010-02-15 13:06:15','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:16 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59018 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:16 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD WarehouseValue NVARCHAR2(40) DEFAULT NULL -; - --- Feb 15, 2010 1:06:16 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='OrgValue', Description='Key of the Organization', EntityType='D', Help=NULL, IsActive='Y', Name='Org Key', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Org Key',Updated=TO_DATE('2010-02-15 13:06:16','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=2115 -; - --- Feb 15, 2010 1:06:16 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=2115 -; - --- Feb 15, 2010 1:06:17 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59019,2115,0,10,53260,'OrgValue',TO_DATE('2010-02-15 13:06:16','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Organization','EE01',40,'Y','N','N','N','N','N','N','N','Y','N','Y','Org Key',TO_DATE('2010-02-15 13:06:16','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:17 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59019 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:17 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD OrgValue NVARCHAR2(40) DEFAULT NULL -; - --- Feb 15, 2010 1:06:17 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,54118,0,'NetworkDistributionValue',TO_DATE('2010-02-15 13:06:17','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Network Distribution','EE01','Y','Network Distribution Key','Network Distribution Key',TO_DATE('2010-02-15 13:06:17','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:17 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=54118 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) -; - --- Feb 15, 2010 1:06:18 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59020,54118,0,10,53260,'NetworkDistributionValue',TO_DATE('2010-02-15 13:06:17','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Network Distribution','EE01',40,'Y','N','N','N','N','N','N','N','Y','N','Y','Network Distribution Key',TO_DATE('2010-02-15 13:06:17','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:18 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59020 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:18 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD NetworkDistributionValue NVARCHAR2(40) DEFAULT NULL -; - --- Feb 15, 2010 1:06:18 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,54119,0,'Product_BOM_Value',TO_DATE('2010-02-15 13:06:18','YYYY-MM-DD HH24:MI:SS'),0,'Key of Product BOM','U','Y','Product BOM Key','Product BOM Key',TO_DATE('2010-02-15 13:06:18','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:18 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=54119 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) -; - --- Feb 15, 2010 1:06:19 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59021,54119,0,10,53260,'Product_BOM_Value',TO_DATE('2010-02-15 13:06:18','YYYY-MM-DD HH24:MI:SS'),0,'Key of Product BOM','EE01',40,'Y','N','N','N','N','N','N','N','Y','N','Y','Product BOM Key',TO_DATE('2010-02-15 13:06:18','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:19 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59021 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:19 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD Product_BOM_Value NVARCHAR2(40) DEFAULT NULL -; - --- Feb 15, 2010 1:06:20 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,54120,0,'ForecastValue',TO_DATE('2010-02-15 13:06:19','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Forecast','EE01','Y','Forecast Key','Forecast Key',TO_DATE('2010-02-15 13:06:19','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:20 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=54120 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) -; - --- Feb 15, 2010 1:06:20 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59022,54120,0,10,53260,'ForecastValue',TO_DATE('2010-02-15 13:06:20','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Forecast','EE01',40,'Y','N','N','N','N','N','N','N','Y','N','Y','Forecast Key',TO_DATE('2010-02-15 13:06:20','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:20 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59022 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:20 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD ForecastValue NVARCHAR2(40) DEFAULT NULL -; - --- Feb 15, 2010 1:06:21 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,54121,0,'ResourceValue',TO_DATE('2010-02-15 13:06:20','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Resource','EE01','Y','Resource Key','Resource Key',TO_DATE('2010-02-15 13:06:20','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:21 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=54121 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) -; - --- Feb 15, 2010 1:06:22 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59023,54121,0,10,53260,'ResourceValue',TO_DATE('2010-02-15 13:06:21','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Resource','EE01',40,'Y','N','N','N','N','N','N','N','Y','N','Y','Resource Key',TO_DATE('2010-02-15 13:06:21','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:22 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59023 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:22 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD ResourceValue NVARCHAR2(40) DEFAULT NULL -; - --- Feb 15, 2010 1:06:22 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,54122,0,'PlannerValue',TO_DATE('2010-02-15 13:06:22','YYYY-MM-DD HH24:MI:SS'),0,'Search Key of the Planning','EE01','Y','Planner Key','Planner Key',TO_DATE('2010-02-15 13:06:22','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:22 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=54122 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) -; - --- Feb 15, 2010 1:06:23 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59024,54122,0,10,53260,'PlannerValue',TO_DATE('2010-02-15 13:06:22','YYYY-MM-DD HH24:MI:SS'),0,'Search Key of the Planning','EE01',40,'Y','N','N','N','N','N','N','N','Y','N','Y','Planner Key',TO_DATE('2010-02-15 13:06:22','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:23 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59024 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:23 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD PlannerValue NVARCHAR2(40) DEFAULT NULL -; - --- Feb 15, 2010 1:06:23 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='M_ForecastLine_ID', Description='Forecast Line', EntityType='D', Help='Forecast of Product Qyantity by Period', IsActive='Y', Name='Forecast Line', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Forecast Line',Updated=TO_DATE('2010-02-15 13:06:23','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=2499 -; - --- Feb 15, 2010 1:06:23 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=2499 -; - --- Feb 15, 2010 1:06:24 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59025,2499,0,19,53260,'M_ForecastLine_ID',TO_DATE('2010-02-15 13:06:23','YYYY-MM-DD HH24:MI:SS'),0,'Forecast Line','EE01',10,'Forecast of Product Qyantity by Period','Y','N','N','N','N','N','N','N','Y','N','N','Forecast Line',TO_DATE('2010-02-15 13:06:23','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:24 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59025 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:24 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD M_ForecastLine_ID NUMBER(10) DEFAULT NULL -; - --- Feb 15, 2010 1:06:24 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='PP_Product_Planning_ID', Description=NULL, EntityType='EE01', Help=NULL, IsActive='Y', Name='Product Planning', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Product Planning',Updated=TO_DATE('2010-02-15 13:06:24','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=53268 -; - --- Feb 15, 2010 1:06:24 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53268 -; - --- Feb 15, 2010 1:06:25 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59026,53268,0,19,53260,'PP_Product_Planning_ID',TO_DATE('2010-02-15 13:06:24','YYYY-MM-DD HH24:MI:SS'),0,'EE01',10,'Y','N','N','N','N','N','N','N','Y','N','N','Product Planning',TO_DATE('2010-02-15 13:06:24','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:25 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59026 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:25 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD PP_Product_Planning_ID NUMBER(10) DEFAULT NULL -; - --- Feb 15, 2010 1:06:25 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='VendorProductNo', Description='Product Key of the Business Partner', EntityType='D', Help='The Business Partner Product Key identifies the number used by the Business Partner for this product. It can be printed on orders and invoices when you include the Product Key in the print format.', IsActive='Y', Name='Partner Product Key', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='BPartner Product Key',Updated=TO_DATE('2010-02-15 13:06:25','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=623 -; - --- Feb 15, 2010 1:06:25 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=623 -; - --- Feb 15, 2010 1:06:31 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59027,623,0,10,53260,'VendorProductNo',TO_DATE('2010-02-15 13:06:25','YYYY-MM-DD HH24:MI:SS'),0,'Product Key of the Business Partner','EE01',30,'The Business Partner Product Key identifies the number used by the Business Partner for this product. It can be printed on orders and invoices when you include the Product Key in the print format.','Y','N','N','N','N','N','N','N','Y','N','Y','Partner Product Key',TO_DATE('2010-02-15 13:06:25','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:31 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59027 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:31 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD VendorProductNo NVARCHAR2(30) DEFAULT NULL -; - --- Feb 15, 2010 1:06:32 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Tab (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,CommitWarning,Created,CreatedBy,EntityType,HasTree,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,Name,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53307,53260,53109,NULL,TO_DATE('2010-02-15 13:06:31','YYYY-MM-DD HH24:MI:SS'),0,'EE01','N','Y','N','N','Y','N','N','N','N','Import Product Planning','N',10,0,TO_DATE('2010-02-15 13:06:31','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:32 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Tab_Trl (AD_Language,AD_Tab_ID, CommitWarning,Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Tab t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53307 AND NOT EXISTS (SELECT * FROM AD_Tab_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Tab_ID=t.AD_Tab_ID) -; - --- Feb 15, 2010 1:06:34 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58982,58726,0,53307,TO_DATE('2010-02-15 13:06:32','YYYY-MM-DD HH24:MI:SS'),0,'The record is active in the system',1,'EE01','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons for de-activating and not deleting records: -(1) The system requires the record for audit purposes. -(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries.','Y','Y','N','N','N','N','N','Active',0,0,TO_DATE('2010-02-15 13:06:32','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:34 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58726 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:35 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59011,58727,0,53307,TO_DATE('2010-02-15 13:06:34','YYYY-MM-DD HH24:MI:SS'),0,'Workflow Simulation Execution Time',22,'EE01','Amount of time the performer of the activity needs to perform the task in Duration Unit','Y','Y','N','N','N','N','Y','Working Time',0,0,TO_DATE('2010-02-15 13:06:34','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:35 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58727 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:36 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58978,58728,0,53307,TO_DATE('2010-02-15 13:06:35','YYYY-MM-DD HH24:MI:SS'),0,'Client/Tenant for this installation.',10,'EE01','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','Client',10,0,TO_DATE('2010-02-15 13:06:35','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:36 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58728 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:37 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59026,50010,58729,0,53307,TO_DATE('2010-02-15 13:06:36','YYYY-MM-DD HH24:MI:SS'),0,10,'EE01','Y','Y','Y','N','N','Y','Y','Product Planning',20,0,TO_DATE('2010-02-15 13:06:36','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:37 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58729 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:38 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59019,50010,58730,0,53307,TO_DATE('2010-02-15 13:06:37','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Organization',22,'EE01','Y','Y','Y','N','N','N','N','Org Key',30,0,TO_DATE('2010-02-15 13:06:37','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:38 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58730 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:39 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58979,50010,58731,0,53307,TO_DATE('2010-02-15 13:06:38','YYYY-MM-DD HH24:MI:SS'),0,'Organizational entity within client',10,'EE01','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','Y','Organization',40,0,TO_DATE('2010-02-15 13:06:38','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:39 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58731 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:39 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59017,50010,58732,0,53307,TO_DATE('2010-02-15 13:06:39','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Product',22,'EE01','Y','Y','Y','N','N','N','N','Product Key',50,0,TO_DATE('2010-02-15 13:06:39','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:39 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58732 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:40 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58997,50010,58733,0,53307,TO_DATE('2010-02-15 13:06:39','YYYY-MM-DD HH24:MI:SS'),0,'Product, Service, Item',22,'EE01','Identifies an item which is either purchased or sold in this organization.','Y','Y','Y','N','N','N','Y','Product',60,0,TO_DATE('2010-02-15 13:06:39','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:40 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58733 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:40 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59016,50010,58734,0,53307,TO_DATE('2010-02-15 13:06:40','YYYY-MM-DD HH24:MI:SS'),0,'Sales Representative or Company Agent',22,'EE01','The Sales Representative indicates the Sales Rep for this Region. Any Sales Rep must be a valid internal user.','Y','Y','Y','N','N','N','N','Sales Representative',70,0,TO_DATE('2010-02-15 13:06:40','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:40 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58734 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:41 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59023,50010,58735,0,53307,TO_DATE('2010-02-15 13:06:40','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Resource',22,'EE01','Y','Y','Y','N','N','N','N','Resource Key',80,0,TO_DATE('2010-02-15 13:06:40','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:41 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58735 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:41 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59008,50010,58736,0,53307,TO_DATE('2010-02-15 13:06:41','YYYY-MM-DD HH24:MI:SS'),0,'Resource',22,'EE01','Y','Y','Y','N','N','N','Y','Resource',90,0,TO_DATE('2010-02-15 13:06:41','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:41 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58736 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:42 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59018,50010,58737,0,53307,TO_DATE('2010-02-15 13:06:41','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Warehouse',22,'EE01','Key to identify the Warehouse','Y','Y','Y','N','N','N','N','Warehouse Key',100,0,TO_DATE('2010-02-15 13:06:41','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:42 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58737 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:43 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58998,50010,58738,0,53307,TO_DATE('2010-02-15 13:06:42','YYYY-MM-DD HH24:MI:SS'),0,'Storage Warehouse and Service Point',22,'EE01','The Warehouse identifies a unique Warehouse where products are stored or Services are provided.','Y','Y','Y','N','N','N','Y','Warehouse',110,0,TO_DATE('2010-02-15 13:06:42','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:43 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58738 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:43 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59024,50010,58739,0,53307,TO_DATE('2010-02-15 13:06:43','YYYY-MM-DD HH24:MI:SS'),0,'Search Key of the Planning',22,'EE01','Y','Y','Y','N','N','N','N','Planner Key',120,0,TO_DATE('2010-02-15 13:06:43','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:43 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58739 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:44 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59005,50010,58740,0,53307,TO_DATE('2010-02-15 13:06:43','YYYY-MM-DD HH24:MI:SS'),0,22,'EE01','Y','Y','Y','N','N','N','Y','Planner',130,0,TO_DATE('2010-02-15 13:06:43','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:44 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58740 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:45 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59021,50010,58741,0,53307,TO_DATE('2010-02-15 13:06:44','YYYY-MM-DD HH24:MI:SS'),0,'Key of Product BOM',22,'EE01','Y','Y','Y','N','N','N','N','Product BOM Key',140,0,TO_DATE('2010-02-15 13:06:44','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:45 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58741 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:46 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59006,50010,58742,0,53307,TO_DATE('2010-02-15 13:06:45','YYYY-MM-DD HH24:MI:SS'),0,'BOM & Formula',22,'EE01','Y','Y','Y','N','N','N','Y','BOM & Formula',150,0,TO_DATE('2010-02-15 13:06:45','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:46 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58742 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:46 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58991,50010,58743,0,53307,TO_DATE('2010-02-15 13:06:46','YYYY-MM-DD HH24:MI:SS'),0,'Workflow or combination of tasks',60,'EE01','The Workflow field identifies a unique Workflow in the system.','Y','Y','Y','N','N','N','N','Workflow',160,0,TO_DATE('2010-02-15 13:06:46','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:46 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58743 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:47 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59020,50010,58744,0,53307,TO_DATE('2010-02-15 13:06:46','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Network Distribution',22,'EE01','Y','Y','Y','N','N','N','N','Network Distribution Key',170,0,TO_DATE('2010-02-15 13:06:46','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:47 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58744 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:48 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58992,50010,58745,0,53307,TO_DATE('2010-02-15 13:06:47','YYYY-MM-DD HH24:MI:SS'),0,22,'EE01','Y','Y','Y','N','N','N','Y','Network Distribution',180,0,TO_DATE('2010-02-15 13:06:47','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:48 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58745 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:48 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58995,50010,58746,0,53307,TO_DATE('2010-02-15 13:06:48','YYYY-MM-DD HH24:MI:SS'),0,1,'EE01','Y','Y','Y','N','N','N','N','Is MPS',190,0,TO_DATE('2010-02-15 13:06:48','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:48 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58746 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:49 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58994,50010,58747,0,53307,TO_DATE('2010-02-15 13:06:48','YYYY-MM-DD HH24:MI:SS'),0,'Indicates whether planned orders will be generated by MRP',1,'EE01','Indicates whether planned orders will be generated by MRP, if this flag is not just MRP generate a ''Create'' action notice','Y','Y','Y','N','N','N','Y','Create Plan',200,0,TO_DATE('2010-02-15 13:06:48','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:49 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58747 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:49 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58993,50010,58748,0,53307,TO_DATE('2010-02-15 13:06:49','YYYY-MM-DD HH24:MI:SS'),0,'Promised days between order and delivery',10,'EE01','The Promised Delivery Time indicates the number of days between the order date and the date that delivery was promised.','Y','Y','Y','N','N','N','N','Promised Delivery Time',210,0,TO_DATE('2010-02-15 13:06:49','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:49 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58748 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:50 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59009,50010,58749,0,53307,TO_DATE('2010-02-15 13:06:49','YYYY-MM-DD HH24:MI:SS'),0,22,'EE01','Y','Y','Y','N','N','N','Y','Time Fence',220,0,TO_DATE('2010-02-15 13:06:49','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:50 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58749 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:51 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59010,50010,58750,0,53307,TO_DATE('2010-02-15 13:06:50','YYYY-MM-DD HH24:MI:SS'),0,10,'EE01','Y','Y','Y','N','N','N','N','Transfert Time',230,0,TO_DATE('2010-02-15 13:06:50','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:51 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58750 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:51 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59003,50010,58751,0,53307,TO_DATE('2010-02-15 13:06:51','YYYY-MM-DD HH24:MI:SS'),0,3,'EE01','Y','Y','Y','N','N','N','Y','Order Policy',240,0,TO_DATE('2010-02-15 13:06:51','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:51 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58751 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:52 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59002,50010,58752,0,53307,TO_DATE('2010-02-15 13:06:51','YYYY-MM-DD HH24:MI:SS'),0,22,'EE01','Y','Y','Y','N','N','N','N','Order Period',250,0,TO_DATE('2010-02-15 13:06:51','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:52 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58752 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:52 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59004,50010,58753,0,53307,TO_DATE('2010-02-15 13:06:52','YYYY-MM-DD HH24:MI:SS'),0,22,'EE01','Y','Y','Y','N','N','N','Y','Order Qty',260,0,TO_DATE('2010-02-15 13:06:52','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:52 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58753 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:53 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59001,50010,58754,0,53307,TO_DATE('2010-02-15 13:06:52','YYYY-MM-DD HH24:MI:SS'),0,'Package order size in UOM (e.g. order set of 5 units)',14,'EE01','The Order Pack Quantity indicates the number of units in each pack of this product.','Y','Y','Y','N','N','N','N','Order Pack Qty',270,0,TO_DATE('2010-02-15 13:06:52','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:53 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58754 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:54 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59000,50010,58755,0,53307,TO_DATE('2010-02-15 13:06:53','YYYY-MM-DD HH24:MI:SS'),0,'Minimum order quantity in UOM',14,'EE01','The Minimum Order Quantity indicates the smallest quantity of this product which can be ordered.','Y','Y','Y','N','N','N','Y','Minimum Order Qty',280,0,TO_DATE('2010-02-15 13:06:53','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:54 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58755 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:54 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58999,50010,58756,0,53307,TO_DATE('2010-02-15 13:06:54','YYYY-MM-DD HH24:MI:SS'),0,'Maximum order quantity in UOM',10,'EE01','The Maximum Order Quantity indicates the biggest quantity of this product which can be ordered.','Y','Y','Y','N','N','N','N','Maximum Order Qty',290,0,TO_DATE('2010-02-15 13:06:54','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:54 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58756 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:55 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59007,50010,58757,0,53307,TO_DATE('2010-02-15 13:06:54','YYYY-MM-DD HH24:MI:SS'),0,'Safety stock is a term used to describe a level of stock that is maintained below the cycle stock to buffer against stock-outs',22,'EE01','Safety stock is defined as extra units of inventory carried as protection against possible stockouts. It is held when an organization cannot accurately predict demand and/or lead time for the product. - -Rereference: -http://en.wikipedia.org/wiki/Safety_stock','Y','Y','Y','N','N','N','Y','Safety Stock Qty',300,0,TO_DATE('2010-02-15 13:06:54','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:55 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58757 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:56 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59012,50010,58758,0,53307,TO_DATE('2010-02-15 13:06:55','YYYY-MM-DD HH24:MI:SS'),0,'The Yield is the percentage of a lot that is expected to be of acceptable wuality may fall below 100 percent',22,'EE01','ADempiere Calculate the total yield for a product from the yield for each activity when the process Workflow Cost Roll-Up is executed. - -The expected yield for an Activity can be expressed as: - -Yield = Acceptable Units at Activity End x 100 - -The Total manufacturing yield for a product is determined by multiplying the yied percentage for each activity. - -Manufacturing Yield = Yield % for Activity 10 x Yied % for Activity 20 , etc - -Take care when setting yield to anything but 100% particularly when yied is used for multiples activities - -','Y','Y','Y','N','N','N','N','Yield %',310,0,TO_DATE('2010-02-15 13:06:55','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:56 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58758 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:57 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58996,50010,58759,0,53307,TO_DATE('2010-02-15 13:06:56','YYYY-MM-DD HH24:MI:SS'),0,'Phantom Component',1,'EE01','Phantom Component are not stored and produced with the product. This is an option to avild maintaining an Engineering and Manufacturing Bill of Materials.','Y','Y','Y','N','N','N','Y','Phantom',320,0,TO_DATE('2010-02-15 13:06:56','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:57 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58759 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:57 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58985,106,58760,0,53307,TO_DATE('2010-02-15 13:06:57','YYYY-MM-DD HH24:MI:SS'),0,'The Key of the Business Partner',22,'EE01','Y','Y','Y','N','N','N','N','Business Partner Key',330,0,TO_DATE('2010-02-15 13:06:57','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:57 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58760 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:58 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58986,106,58761,0,53307,TO_DATE('2010-02-15 13:06:57','YYYY-MM-DD HH24:MI:SS'),0,'Identifies a Business Partner',22,'EE01','A Business Partner is anyone with whom you transact. This can include Vendor, Customer, Employee or Salesperson','Y','Y','Y','N','N','N','Y','Business Partner ',340,0,TO_DATE('2010-02-15 13:06:57','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:58 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58761 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:59 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59027,106,58762,0,53307,TO_DATE('2010-02-15 13:06:58','YYYY-MM-DD HH24:MI:SS'),0,'Product Key of the Business Partner',22,'EE01','The Business Partner Product Key identifies the number used by the Business Partner for this product. It can be printed on orders and invoices when you include the Product Key in the print format.','Y','Y','Y','N','N','N','N','Partner Product Key',350,0,TO_DATE('2010-02-15 13:06:58','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:59 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58762 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:59 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59022,106,58763,0,53307,TO_DATE('2010-02-15 13:06:59','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Forecast',22,'EE01','Y','Y','Y','N','N','N','N','Forecast Key',360,0,TO_DATE('2010-02-15 13:06:59','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:59 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58763 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:07:00 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59014,106,58764,0,53307,TO_DATE('2010-02-15 13:06:59','YYYY-MM-DD HH24:MI:SS'),0,'Material Forecast',22,'EE01','Material Forecast','Y','Y','Y','N','N','N','N','Forecast',370,0,TO_DATE('2010-02-15 13:06:59','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:07:00 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58764 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:07:01 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59025,106,58765,0,53307,TO_DATE('2010-02-15 13:07:00','YYYY-MM-DD HH24:MI:SS'),0,'Forecast Line',10,'EE01','Forecast of Product Qyantity by Period','Y','Y','Y','N','N','Y','Y','Forecast Line',380,0,TO_DATE('2010-02-15 13:07:00','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:07:01 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58765 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:07:02 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59013,106,58766,0,53307,TO_DATE('2010-02-15 13:07:01','YYYY-MM-DD HH24:MI:SS'),0,'Date Order was promised',7,'EE01','The Date Promised indicates the date, if any, that an Order was promised for.','Y','Y','Y','N','N','N','N','Date Promised',390,0,TO_DATE('2010-02-15 13:07:01','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:07:02 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58766 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:07:02 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59015,106,58767,0,53307,TO_DATE('2010-02-15 13:07:02','YYYY-MM-DD HH24:MI:SS'),0,'Quantity',22,'EE01','The Quantity indicates the number of a specific product or item for this document.','Y','Y','Y','N','N','N','Y','Quantity',400,0,TO_DATE('2010-02-15 13:07:02','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:07:02 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58767 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:07:03 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58987,58768,0,53307,TO_DATE('2010-02-15 13:07:02','YYYY-MM-DD HH24:MI:SS'),0,'Messages generated from import process',2000,'EE01','The Import Error Message displays any error messages generated during the import process.','Y','Y','Y','N','N','Y','N','Import Error Message',410,0,TO_DATE('2010-02-15 13:07:02','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:07:03 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58768 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:07:04 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58988,58769,0,53307,TO_DATE('2010-02-15 13:07:03','YYYY-MM-DD HH24:MI:SS'),0,'Has this import been processed',1,'EE01','The Imported check box indicates if this import has been processed.','Y','Y','Y','N','N','Y','N','Imported',420,0,TO_DATE('2010-02-15 13:07:03','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:07:04 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58769 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:07:04 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58989,58770,0,53307,TO_DATE('2010-02-15 13:07:04','YYYY-MM-DD HH24:MI:SS'),0,'The document has been processed',1,'EE01','The Processed checkbox indicates that a document has been processed.','Y','Y','Y','N','N','Y','Y','Processed',430,0,TO_DATE('2010-02-15 13:07:04','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:07:04 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58770 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:07:05 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58990,58771,0,53307,TO_DATE('2010-02-15 13:07:04','YYYY-MM-DD HH24:MI:SS'),0,1,'EE01','Y','N','Y','N','N','N','N','Import Product Planning Data',440,0,TO_DATE('2010-02-15 13:07:04','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:07:05 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58771 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:07:06 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58977,58772,0,53307,TO_DATE('2010-02-15 13:07:05','YYYY-MM-DD HH24:MI:SS'),0,10,'EE01','Y','Y','N','N','N','N','N','Import Product Planning',0,0,TO_DATE('2010-02-15 13:07:05','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:07:06 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58772 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:07:07 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Menu (AD_Client_ID,AD_Menu_ID,AD_Org_ID,AD_Window_ID,Action,Created,CreatedBy,EntityType,IsActive,IsReadOnly,IsSOTrx,IsSummary,Name,Updated,UpdatedBy) VALUES (0,53264,0,53109,'W',TO_DATE('2010-02-15 13:07:06','YYYY-MM-DD HH24:MI:SS'),0,'EE01','Y','N','N','N','Import Product Planning',TO_DATE('2010-02-15 13:07:06','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:07:07 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Menu_Trl (AD_Language,AD_Menu_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Menu_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Menu t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Menu_ID=53264 AND NOT EXISTS (SELECT * FROM AD_Menu_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Menu_ID=t.AD_Menu_ID) -; - --- Feb 15, 2010 1:07:07 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_TREENODEMM(AD_Client_ID, AD_Org_ID, CreatedBy, UpdatedBy, Parent_ID, SeqNo, AD_Tree_ID, Node_ID)VALUES(0, 0, 0, 0, 163,4, 10, 53264) -; - diff --git a/migration/354a-trunk/oracle/666_BF2952456_PP_Identifiers.sql b/migration/354a-trunk/oracle/666_BF2952456_PP_Identifiers.sql deleted file mode 100644 index 8f6cad7372..0000000000 --- a/migration/354a-trunk/oracle/666_BF2952456_PP_Identifiers.sql +++ /dev/null @@ -1,20 +0,0 @@ --- Feb 15, 2010 5:40:55 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Column SET AD_Reference_ID=19, AD_Reference_Value_ID=NULL, IsIdentifier='Y', IsUpdateable='N', SeqNo=1,Updated=TO_DATE('2010-02-15 17:40:55','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Column_ID=53389 -; - --- Feb 15, 2010 5:41:22 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Column SET Help=NULL, IsIdentifier='Y', SeqNo=2,Updated=TO_DATE('2010-02-15 17:41:22','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Column_ID=53400 -; - --- Feb 15, 2010 5:41:22 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Field SET Name='Resource', Description='Resource', Help=NULL WHERE AD_Column_ID=53400 AND IsCentrallyMaintained='Y' -; - --- Feb 15, 2010 5:41:44 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Column SET AD_Reference_ID=19, AD_Reference_Value_ID=NULL, IsIdentifier='Y', SeqNo=3,Updated=TO_DATE('2010-02-15 17:41:44','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Column_ID=53390 -; - diff --git a/migration/354a-trunk/oracle/667_FR2956390_SchedulerEnhancement.sql b/migration/354a-trunk/oracle/667_FR2956390_SchedulerEnhancement.sql deleted file mode 100644 index 5138167db9..0000000000 --- a/migration/354a-trunk/oracle/667_FR2956390_SchedulerEnhancement.sql +++ /dev/null @@ -1,160 +0,0 @@ --- Feb 19, 2010 5:22:38 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,Help,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,54123,0,'IsIgnoreProcessingTime',TO_DATE('2010-02-19 17:22:35','YYYY-MM-DD HH24:MI:SS'),100,'Do not include processing time for the DateNextRun calculation','D','When this is selected, the previous DateNextRun is always use as the source for the next DateNextRun calculation.','Y','Ignore Processing Time','Ignore Proccessing Time',TO_DATE('2010-02-19 17:22:35','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 19, 2010 5:22:38 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=54123 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) -; - --- Feb 19, 2010 5:26:11 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,Help,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,54124,0,'CronPattern',TO_DATE('2010-02-19 17:26:04','YYYY-MM-DD HH24:MI:SS'),100,'Cron pattern to define when the process should be invoked.','D','Cron pattern to define when the process should be invoked. See http://en.wikipedia.org/wiki/Cron#crontab_syntax for cron scheduling syntax and example.','Y','Cron Scheduling Pattern','Cron Scheduling Pattern',TO_DATE('2010-02-19 17:26:04','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 19, 2010 5:26:11 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=54124 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) -; - --- Feb 19, 2010 5:29:11 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59028,54123,0,20,688,'IsIgnoreProcessingTime',TO_DATE('2010-02-19 17:29:09','YYYY-MM-DD HH24:MI:SS'),100,'N','Do not include processing time for the DateNextRun calculation','D',1,'When this is selected, the previous DateNextRun is always use as the source for the next DateNextRun calculation.','Y','Y','N','N','N','N','N','N','N','N','N','N','Y','Ignore Processing Time',0,TO_DATE('2010-02-19 17:29:09','YYYY-MM-DD HH24:MI:SS'),100,1.000000000000) -; - --- Feb 19, 2010 5:29:11 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59028 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 19, 2010 5:29:16 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -ALTER TABLE AD_Scheduler ADD IsIgnoreProcessingTime CHAR(1) DEFAULT 'N' CHECK (IsIgnoreProcessingTime IN ('Y','N')) -; - --- Feb 19, 2010 5:46:42 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59029,54124,0,10,688,'CronPattern',TO_DATE('2010-02-19 17:46:38','YYYY-MM-DD HH24:MI:SS'),100,'Cron pattern to define when the process should be invoked.','D',255,'Cron pattern to define when the process should be invoked. See http://en.wikipedia.org/wiki/Cron#crontab_syntax for cron scheduling syntax and example.','Y','Y','N','N','N','N','N','N','N','N','N','N','Y','Cron Scheduling Pattern',0,TO_DATE('2010-02-19 17:46:38','YYYY-MM-DD HH24:MI:SS'),100,1.000000000000) -; - --- Feb 19, 2010 5:46:42 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59029 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 19, 2010 5:46:46 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -ALTER TABLE AD_Scheduler ADD CronPattern NVARCHAR2(255) DEFAULT NULL -; - --- Feb 19, 2010 5:47:11 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -UPDATE AD_Column SET IsMandatory='N',Updated=TO_DATE('2010-02-19 17:47:11','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=11247 -; - --- Feb 19, 2010 5:47:18 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -UPDATE AD_Column SET IsMandatory='N',Updated=TO_DATE('2010-02-19 17:47:18','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=11255 -; - --- Feb 19, 2010 5:48:07 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -UPDATE AD_Ref_List SET IsActive='N',Updated=TO_DATE('2010-02-19 17:48:07','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Ref_List_ID=665 -; - --- Feb 19, 2010 5:48:10 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -UPDATE AD_Ref_List SET IsActive='N',Updated=TO_DATE('2010-02-19 17:48:10','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Ref_List_ID=664 -; - --- Feb 19, 2010 5:49:04 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,Description,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,318,53574,TO_DATE('2010-02-19 17:49:02','YYYY-MM-DD HH24:MI:SS'),100,'Use cron style scheduling pattern','D','Y','Cron Scheduling Pattern',TO_DATE('2010-02-19 17:49:02','YYYY-MM-DD HH24:MI:SS'),100,'C') -; - --- Feb 19, 2010 5:49:04 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53574 AND NOT EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Ref_List_ID=t.AD_Ref_List_ID) -; - --- Feb 19, 2010 5:53:21 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -UPDATE AD_Field SET IsActive='N',Updated=TO_DATE('2010-02-19 17:53:21','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=10053 -; - --- Feb 19, 2010 5:53:26 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -UPDATE AD_Field SET IsActive='N',Updated=TO_DATE('2010-02-19 17:53:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=10052 -; - --- Feb 19, 2010 5:54:51 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,DisplayLogic,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59028,58773,0,589,TO_DATE('2010-02-19 17:54:49','YYYY-MM-DD HH24:MI:SS'),100,'Do not include processing time for the DateNextRun calculation',10,'@ScheduleType@=F','D','When this is selected, the previous DateNextRun is always use as the source for the next DateNextRun calculation.','Y','Y','Y','N','N','N','N','N','Ignore Processing Time',160,0,TO_DATE('2010-02-19 17:54:49','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 19, 2010 5:54:51 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58773 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 19, 2010 5:55:49 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,DisplayLogic,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsMandatory,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59029,58774,0,589,TO_DATE('2010-02-19 17:55:48','YYYY-MM-DD HH24:MI:SS'),100,'Cron pattern to define when the process should be invoked.',60,'@ScheduleType@=C','D','Cron pattern to define when the process should be invoked. See http://en.wikipedia.org/wiki/Cron#crontab_syntax for cron scheduling syntax and example.','Y','Y','Y','N','N','N','Y','N','N','Cron Scheduling Pattern',170,0,TO_DATE('2010-02-19 17:55:48','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 19, 2010 5:55:49 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58774 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 19, 2010 5:57:03 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -UPDATE AD_Field SET SeqNo=0,IsDisplayed='N' WHERE AD_Field_ID=10053 -; - --- Feb 19, 2010 5:57:03 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -UPDATE AD_Field SET SeqNo=0,IsDisplayed='N' WHERE AD_Field_ID=10052 -; - --- Feb 19, 2010 5:57:03 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -UPDATE AD_Field SET SeqNo=80,IsDisplayed='Y' WHERE AD_Field_ID=9437 -; - --- Feb 19, 2010 5:57:03 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -UPDATE AD_Field SET SeqNo=90,IsDisplayed='Y' WHERE AD_Field_ID=9430 -; - --- Feb 19, 2010 5:57:03 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -UPDATE AD_Field SET SeqNo=100,IsDisplayed='Y' WHERE AD_Field_ID=58773 -; - --- Feb 19, 2010 5:57:03 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -UPDATE AD_Field SET SeqNo=110,IsDisplayed='Y' WHERE AD_Field_ID=58774 -; - --- Feb 19, 2010 5:57:21 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -UPDATE AD_Field SET IsMandatory='Y',Updated=TO_DATE('2010-02-19 17:57:21','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=9430 -; - --- Feb 19, 2010 5:57:28 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -UPDATE AD_Field SET IsMandatory='Y',Updated=TO_DATE('2010-02-19 17:57:28','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=9437 -; - --- Feb 22, 2010 9:31:45 AM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Message (AD_Client_ID,AD_Message_ID,AD_Org_ID,Created,CreatedBy,EntityType,IsActive,MsgText,MsgTip,MsgType,Updated,UpdatedBy,Value) VALUES (0,53095,0,TO_DATE('2010-02-22 09:31:41','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Invalid cron scheduling pattern','Invalid cron scheduling pattern - check syntax','E',TO_DATE('2010-02-22 09:31:41','YYYY-MM-DD HH24:MI:SS'),100,'InvalidCronPattern') -; - --- Feb 22, 2010 9:31:45 AM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=53095 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) -; - diff --git a/migration/354a-trunk/oracle/668_FR2957782_PaySelection_DueDate_Para.sql b/migration/354a-trunk/oracle/668_FR2957782_PaySelection_DueDate_Para.sql deleted file mode 100644 index 05bf813568..0000000000 --- a/migration/354a-trunk/oracle/668_FR2957782_PaySelection_DueDate_Para.sql +++ /dev/null @@ -1,10 +0,0 @@ --- Feb 24, 2010 4:03:13 PM EST --- Payment selection due date parameter -INSERT INTO AD_Process_Para (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,Description,DisplayLogic,EntityType,FieldLength,Help,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,2000,0,156,53404,15,'DueDate',TO_DATE('2010-02-24 16:03:03','YYYY-MM-DD HH24:MI:SS'),100,'Date when the payment is due','@OnlyDue@=Y','D',7,'Date when the payment is due without deductions or discount','Y','Y','N','N','Due Date',45,TO_DATE('2010-02-24 16:03:03','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 24, 2010 4:03:13 PM EST --- Payment selection due date parameter -INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53404 AND NOT EXISTS (SELECT * FROM AD_Process_Para_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Process_Para_ID=t.AD_Process_Para_ID) -; - diff --git a/migration/354a-trunk/oracle/669_BF2904257.sql b/migration/354a-trunk/oracle/669_BF2904257.sql deleted file mode 100644 index 6fdf7546a9..0000000000 --- a/migration/354a-trunk/oracle/669_BF2904257.sql +++ /dev/null @@ -1,5 +0,0 @@ --- 01-mar-2010 12:10:16 COT --- Bug_2904257_wrong validation sql for M_InOutShipment/Receipt (RMA) -UPDATE AD_Val_Rule SET Code='M_InOutLine.M_InOut_ID=@InOut_ID@',Updated=TO_DATE('2010-03-01 12:10:16','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Val_Rule_ID=52001 -; - diff --git a/migration/354a-trunk/oracle/670_FR2962094_AddProcesssedOnColumn.sql b/migration/354a-trunk/oracle/670_FR2962094_AddProcesssedOnColumn.sql deleted file mode 100644 index 6715b27b9b..0000000000 --- a/migration/354a-trunk/oracle/670_FR2962094_AddProcesssedOnColumn.sql +++ /dev/null @@ -1,237 +0,0 @@ --- Mar 2, 2010 2:06:30 PM COT --- FR_2962094_Finish implementation of weighted average costing -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,Help,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,54128,0,'ProcessedOn',TO_DATE('2010-03-02 14:06:28','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D','The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','Processed On','Processed On',TO_DATE('2010-03-02 14:06:28','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Mar 2, 2010 2:06:30 PM COT -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=54128 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) -; - --- Mar 2, 2010 2:08:58 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59034,54128,0,22,735,'ProcessedOn',TO_DATE('2010-03-02 14:08:57','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_DATE('2010-03-02 14:08:57','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:08:58 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59034 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:09:03 PM COT -ALTER TABLE C_AllocationHdr ADD ProcessedOn NUMBER DEFAULT NULL -; - --- Mar 2, 2010 2:09:54 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59035,54128,0,22,392,'ProcessedOn',TO_DATE('2010-03-02 14:09:54','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_DATE('2010-03-02 14:09:54','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:09:54 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59035 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:09:56 PM COT -ALTER TABLE C_BankStatement ADD ProcessedOn NUMBER DEFAULT NULL -; - --- Mar 2, 2010 2:10:39 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59036,54128,0,22,407,'ProcessedOn',TO_DATE('2010-03-02 14:10:38','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_DATE('2010-03-02 14:10:38','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:10:39 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59036 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:10:42 PM COT -ALTER TABLE C_Cash ADD ProcessedOn NUMBER DEFAULT NULL -; - --- Mar 2, 2010 2:11:19 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59037,54128,0,22,318,'ProcessedOn',TO_DATE('2010-03-02 14:11:19','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_DATE('2010-03-02 14:11:19','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:11:19 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59037 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:11:22 PM COT -ALTER TABLE C_Invoice ADD ProcessedOn NUMBER DEFAULT NULL -; - --- Mar 2, 2010 2:11:48 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59038,54128,0,22,259,'ProcessedOn',TO_DATE('2010-03-02 14:11:48','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_DATE('2010-03-02 14:11:48','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:11:48 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59038 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:11:51 PM COT -ALTER TABLE C_Order ADD ProcessedOn NUMBER DEFAULT NULL -; - --- Mar 2, 2010 2:12:19 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59039,54128,0,22,335,'ProcessedOn',TO_DATE('2010-03-02 14:12:15','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_DATE('2010-03-02 14:12:15','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:12:19 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59039 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:12:22 PM COT -ALTER TABLE C_Payment ADD ProcessedOn NUMBER DEFAULT NULL -; - --- Mar 2, 2010 2:12:53 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59040,54128,0,22,623,'ProcessedOn',TO_DATE('2010-03-02 14:12:52','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_DATE('2010-03-02 14:12:52','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:12:53 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59040 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:12:55 PM COT -ALTER TABLE C_ProjectIssue ADD ProcessedOn NUMBER DEFAULT NULL -; - --- Mar 2, 2010 2:13:31 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59041,54128,0,22,53037,'ProcessedOn',TO_DATE('2010-03-02 14:13:31','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_DATE('2010-03-02 14:13:31','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:13:31 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59041 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:13:34 PM COT -ALTER TABLE DD_Order ADD ProcessedOn NUMBER DEFAULT NULL -; - --- Mar 2, 2010 2:13:58 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59042,54128,0,22,224,'ProcessedOn',TO_DATE('2010-03-02 14:13:57','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_DATE('2010-03-02 14:13:57','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:13:58 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59042 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:14:00 PM COT -ALTER TABLE GL_Journal ADD ProcessedOn NUMBER DEFAULT NULL -; - --- Mar 2, 2010 2:14:24 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59043,54128,0,22,53092,'ProcessedOn',TO_DATE('2010-03-02 14:14:24','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_DATE('2010-03-02 14:14:24','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:14:24 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59043 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:14:36 PM COT -ALTER TABLE HR_Process ADD ProcessedOn NUMBER DEFAULT NULL -; - --- Mar 2, 2010 2:15:02 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59044,54128,0,22,319,'ProcessedOn',TO_DATE('2010-03-02 14:15:00','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_DATE('2010-03-02 14:15:00','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:15:02 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59044 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:15:05 PM COT -ALTER TABLE M_InOut ADD ProcessedOn NUMBER DEFAULT NULL -; - --- Mar 2, 2010 2:15:29 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59045,54128,0,22,321,'ProcessedOn',TO_DATE('2010-03-02 14:15:28','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_DATE('2010-03-02 14:15:28','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:15:29 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59045 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:15:30 PM COT -ALTER TABLE M_Inventory ADD ProcessedOn NUMBER DEFAULT NULL -; - --- Mar 2, 2010 2:15:52 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59046,54128,0,22,472,'ProcessedOn',TO_DATE('2010-03-02 14:15:51','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_DATE('2010-03-02 14:15:51','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:15:52 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59046 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:15:53 PM COT -ALTER TABLE M_MatchInv ADD ProcessedOn NUMBER DEFAULT NULL -; - --- Mar 2, 2010 2:16:16 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59047,54128,0,22,473,'ProcessedOn',TO_DATE('2010-03-02 14:16:15','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_DATE('2010-03-02 14:16:15','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:16:16 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59047 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:16:17 PM COT -ALTER TABLE M_MatchPO ADD ProcessedOn NUMBER DEFAULT NULL -; - --- Mar 2, 2010 2:16:43 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59048,54128,0,22,323,'ProcessedOn',TO_DATE('2010-03-02 14:16:42','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_DATE('2010-03-02 14:16:42','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:16:43 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59048 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:16:44 PM COT -ALTER TABLE M_Movement ADD ProcessedOn NUMBER DEFAULT NULL -; - --- Mar 2, 2010 2:17:09 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59049,54128,0,22,325,'ProcessedOn',TO_DATE('2010-03-02 14:17:09','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_DATE('2010-03-02 14:17:09','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:17:09 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59049 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:17:11 PM COT -ALTER TABLE M_Production ADD ProcessedOn NUMBER DEFAULT NULL -; - --- Mar 2, 2010 2:17:33 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59050,54128,0,22,702,'ProcessedOn',TO_DATE('2010-03-02 14:17:33','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_DATE('2010-03-02 14:17:33','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:17:33 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59050 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:17:35 PM COT -ALTER TABLE M_Requisition ADD ProcessedOn NUMBER DEFAULT NULL -; - --- Mar 2, 2010 2:18:10 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59051,54128,0,22,53035,'ProcessedOn',TO_DATE('2010-03-02 14:18:09','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_DATE('2010-03-02 14:18:09','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:18:10 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59051 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:18:12 PM COT -ALTER TABLE PP_Cost_Collector ADD ProcessedOn NUMBER DEFAULT NULL -; - --- Mar 2, 2010 2:18:38 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59052,54128,0,22,53027,'ProcessedOn',TO_DATE('2010-03-02 14:18:38','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_DATE('2010-03-02 14:18:38','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:18:38 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59052 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:18:40 PM COT -ALTER TABLE PP_Order ADD ProcessedOn NUMBER DEFAULT NULL -; - diff --git a/migration/354a-trunk/oracle/671_FR2962094_FillProcesssedOn.sql b/migration/354a-trunk/oracle/671_FR2962094_FillProcesssedOn.sql deleted file mode 100644 index ffbc54d22a..0000000000 --- a/migration/354a-trunk/oracle/671_FR2962094_FillProcesssedOn.sql +++ /dev/null @@ -1,421 +0,0 @@ --- create temporary index -CREATE INDEX tmp_ad_wf_activity_speed ON ad_wf_activity(ad_table_id, record_id); - --- ****** SET ProcessedOn on table C_AllocationHdr ****** - --- try to get the processed from ad_changelog -update C_AllocationHdr set processedon = -(select max((updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_changelog - where ad_table_id = 735 and record_id = C_AllocationHdr.C_AllocationHdr_id and ad_column_id = 12309 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update C_AllocationHdr set processedon = -(select max((a.updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 735 and a.record_id = C_AllocationHdr.C_AllocationHdr_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update C_AllocationHdr set processedon = (created - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table C_BankStatement ****** - --- try to get the processed from ad_changelog -update C_BankStatement set processedon = -(select max((updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_changelog - where ad_table_id = 392 and record_id = C_BankStatement.C_BankStatement_id and ad_column_id = 4924 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update C_BankStatement set processedon = -(select max((a.updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 392 and a.record_id = C_BankStatement.C_BankStatement_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update C_BankStatement set processedon = (created - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table C_Cash ****** - --- try to get the processed from ad_changelog -update C_Cash set processedon = -(select max((updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_changelog - where ad_table_id = 407 and record_id = C_Cash.C_Cash_id and ad_column_id = 5258 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update C_Cash set processedon = -(select max((a.updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 407 and a.record_id = C_Cash.C_Cash_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update C_Cash set processedon = (created - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table C_Invoice ****** - --- try to get the processed from ad_changelog -update C_Invoice set processedon = -(select max((updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_changelog - where ad_table_id = 318 and record_id = C_Invoice.C_Invoice_id and ad_column_id = 3497 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update C_Invoice set processedon = -(select max((a.updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 318 and a.record_id = C_Invoice.C_Invoice_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update C_Invoice set processedon = (created - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table C_Order ****** - --- try to get the processed from ad_changelog -update C_Order set processedon = -(select max((updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_changelog - where ad_table_id = 259 and record_id = C_Order.C_Order_id and ad_column_id = 3398 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update C_Order set processedon = -(select max((a.updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 259 and a.record_id = C_Order.C_Order_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update C_Order set processedon = (created - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table C_Payment ****** - --- try to get the processed from ad_changelog -update C_Payment set processedon = -(select max((updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_changelog - where ad_table_id = 335 and record_id = C_Payment.C_Payment_id and ad_column_id = 3878 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update C_Payment set processedon = -(select max((a.updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 335 and a.record_id = C_Payment.C_Payment_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update C_Payment set processedon = (created - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table C_ProjectIssue ****** - --- try to get the processed from ad_changelog -update C_ProjectIssue set processedon = -(select max((updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_changelog - where ad_table_id = 623 and record_id = C_ProjectIssue.C_ProjectIssue_id and ad_column_id = 9842 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update C_ProjectIssue set processedon = -(select max((a.updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 623 and a.record_id = C_ProjectIssue.C_ProjectIssue_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update C_ProjectIssue set processedon = (created - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table DD_Order ****** - --- try to get the processed from ad_changelog -update DD_Order set processedon = -(select max((updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_changelog - where ad_table_id = 53037 and record_id = DD_Order.DD_Order_id and ad_column_id = 53912 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update DD_Order set processedon = -(select max((a.updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 53037 and a.record_id = DD_Order.DD_Order_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update DD_Order set processedon = (created - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table GL_Journal ****** - --- try to get the processed from ad_changelog -update GL_Journal set processedon = -(select max((updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_changelog - where ad_table_id = 224 and record_id = GL_Journal.GL_Journal_id and ad_column_id = 5953 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update GL_Journal set processedon = -(select max((a.updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 224 and a.record_id = GL_Journal.GL_Journal_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update GL_Journal set processedon = (created - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table HR_Process ****** - --- try to get the processed from ad_changelog -update HR_Process set processedon = -(select max((updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_changelog - where ad_table_id = 53092 and record_id = HR_Process.HR_Process_id and ad_column_id = 54876 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update HR_Process set processedon = -(select max((a.updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 53092 and a.record_id = HR_Process.HR_Process_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update HR_Process set processedon = (created - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table M_InOut ****** - --- try to get the processed from ad_changelog -update M_InOut set processedon = -(select max((updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_changelog - where ad_table_id = 319 and record_id = M_InOut.M_InOut_id and ad_column_id = 3518 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update M_InOut set processedon = -(select max((a.updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 319 and a.record_id = M_InOut.M_InOut_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update M_InOut set processedon = (created - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table M_Inventory ****** - --- try to get the processed from ad_changelog -update M_Inventory set processedon = -(select max((updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_changelog - where ad_table_id = 321 and record_id = M_Inventory.M_Inventory_id and ad_column_id = 3553 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update M_Inventory set processedon = -(select max((a.updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 321 and a.record_id = M_Inventory.M_Inventory_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update M_Inventory set processedon = (created - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table M_MatchInv ****** - --- try to get the processed from ad_changelog -update M_MatchInv set processedon = -(select max((updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_changelog - where ad_table_id = 472 and record_id = M_MatchInv.M_MatchInv_id and ad_column_id = 6511 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update M_MatchInv set processedon = -(select max((a.updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 472 and a.record_id = M_MatchInv.M_MatchInv_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update M_MatchInv set processedon = (created - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table M_MatchPO ****** - --- try to get the processed from ad_changelog -update M_MatchPO set processedon = -(select max((updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_changelog - where ad_table_id = 473 and record_id = M_MatchPO.M_MatchPO_id and ad_column_id = 6527 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update M_MatchPO set processedon = -(select max((a.updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 473 and a.record_id = M_MatchPO.M_MatchPO_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update M_MatchPO set processedon = (created - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table M_Movement ****** - --- try to get the processed from ad_changelog -update M_Movement set processedon = -(select max((updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_changelog - where ad_table_id = 323 and record_id = M_Movement.M_Movement_id and ad_column_id = 3580 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update M_Movement set processedon = -(select max((a.updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 323 and a.record_id = M_Movement.M_Movement_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update M_Movement set processedon = (created - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table M_Production ****** - --- try to get the processed from ad_changelog -update M_Production set processedon = -(select max((updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_changelog - where ad_table_id = 325 and record_id = M_Production.M_Production_id and ad_column_id = 3609 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update M_Production set processedon = -(select max((a.updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 325 and a.record_id = M_Production.M_Production_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update M_Production set processedon = (created - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table M_Requisition ****** - --- try to get the processed from ad_changelog -update M_Requisition set processedon = -(select max((updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_changelog - where ad_table_id = 702 and record_id = M_Requisition.M_Requisition_id and ad_column_id = 11473 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update M_Requisition set processedon = -(select max((a.updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 702 and a.record_id = M_Requisition.M_Requisition_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update M_Requisition set processedon = (created - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table PP_Cost_Collector ****** - --- try to get the processed from ad_changelog -update PP_Cost_Collector set processedon = -(select max((updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_changelog - where ad_table_id = 53035 and record_id = PP_Cost_Collector.PP_Cost_Collector_id and ad_column_id = 53834 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update PP_Cost_Collector set processedon = -(select max((a.updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 53035 and a.record_id = PP_Cost_Collector.PP_Cost_Collector_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update PP_Cost_Collector set processedon = (created - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table PP_Order ****** - --- try to get the processed from ad_changelog -update PP_Order set processedon = -(select max((updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_changelog - where ad_table_id = 53027 and record_id = PP_Order.PP_Order_id and ad_column_id = 53664 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update PP_Order set processedon = -(select max((a.updated - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 53027 and a.record_id = PP_Order.PP_Order_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update PP_Order set processedon = (created - to_date('1970-01-01', 'YYYY-MM-DD')) * 86400000 -where processedon is null and processed = 'Y'; - --- drop temporary index -DROP INDEX tmp_ad_wf_activity_speed; diff --git a/migration/354a-trunk/oracle/672_BF2948897.sql b/migration/354a-trunk/oracle/672_BF2948897.sql deleted file mode 100644 index 6b6ec35ec1..0000000000 --- a/migration/354a-trunk/oracle/672_BF2948897.sql +++ /dev/null @@ -1,15 +0,0 @@ --- Mar 4, 2010 1:33:05 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE AD_Tab SET WhereClause='A_Depreciation_Entry.A_Entry_Type=''DIS''',Updated=TO_DATE('2010-03-04 13:33:05','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=53141 -; - --- Mar 4, 2010 1:33:13 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE AD_Tab SET WhereClause='A_Depreciation_Entry.A_Entry_Type=''SPL''',Updated=TO_DATE('2010-03-04 13:33:13','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=53151 -; - --- Mar 4, 2010 1:33:21 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE AD_Tab SET WhereClause='A_Depreciation_Entry.A_Entry_Type=''TRN''',Updated=TO_DATE('2010-03-04 13:33:21','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=53140 -; - diff --git a/migration/354a-trunk/oracle/673_BF2948897.sql b/migration/354a-trunk/oracle/673_BF2948897.sql deleted file mode 100644 index 206894c546..0000000000 --- a/migration/354a-trunk/oracle/673_BF2948897.sql +++ /dev/null @@ -1,105 +0,0 @@ --- Mar 4, 2010 1:54:35 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE AD_Column SET AD_Reference_ID=20,Updated=TO_DATE('2010-03-04 13:54:35','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=55347 -; - --- Mar 4, 2010 1:55:33 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE AD_Column SET AD_Process_ID=NULL, AD_Reference_ID=20,Updated=TO_DATE('2010-03-04 13:55:33','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=55557 -; - --- Mar 4, 2010 1:56:07 PM COT --- BF2948897_Fixed Assets Dictionary Errors -ALTER TABLE A_Depreciation MODIFY Processed CHAR(1) DEFAULT 'Y' -; - --- Mar 4, 2010 1:56:08 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE A_Depreciation SET Processed='Y' WHERE Processed IS NULL -; - --- Mar 4, 2010 1:56:28 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE AD_Column SET DefaultValue='N',Updated=TO_DATE('2010-03-04 13:56:28','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=55557 -; - --- Mar 4, 2010 1:56:30 PM COT --- BF2948897_Fixed Assets Dictionary Errors -ALTER TABLE A_Depreciation_Entry MODIFY Processed CHAR(1) DEFAULT 'N' -; - --- Mar 4, 2010 1:56:31 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE A_Depreciation_Entry SET Processed='N' WHERE Processed IS NULL -; - --- Mar 4, 2010 1:56:58 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE AD_Column SET AD_Process_ID=53111, AD_Reference_ID=28,Updated=TO_DATE('2010-03-04 13:56:58','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=55703 -; - --- Mar 4, 2010 1:57:00 PM COT --- BF2948897_Fixed Assets Dictionary Errors -ALTER TABLE A_Depreciation_Build MODIFY Processing CHAR(1) DEFAULT NULL -; - --- Mar 4, 2010 1:57:15 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE AD_Column SET AD_Process_ID=NULL, AD_Reference_ID=20, DefaultValue='N',Updated=TO_DATE('2010-03-04 13:57:15','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=55700 -; - --- Mar 4, 2010 1:57:19 PM COT --- BF2948897_Fixed Assets Dictionary Errors -ALTER TABLE A_Depreciation_Build MODIFY Processed CHAR(1) DEFAULT 'N' -; - --- Mar 4, 2010 1:58:11 PM COT --- BF2948897_Fixed Assets Dictionary Errors -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59065,524,0,53123,28,53125,'Processing',TO_DATE('2010-03-04 13:58:09','YYYY-MM-DD HH24:MI:SS'),100,'D',1,'Y','Y','N','N','N','N','N','Y','N','N','Y','N','Y','Process Now',TO_DATE('2010-03-04 13:58:09','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 4, 2010 1:58:11 PM COT --- BF2948897_Fixed Assets Dictionary Errors -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59065 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 4, 2010 1:58:36 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE AD_Column SET IsMandatory='N',Updated=TO_DATE('2010-03-04 13:58:36','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=59065 -; - --- Mar 4, 2010 1:58:38 PM COT --- BF2948897_Fixed Assets Dictionary Errors -ALTER TABLE A_Depreciation_Convention ADD Processing CHAR(1) DEFAULT NULL -; - --- Mar 4, 2010 1:58:51 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE AD_Column SET AD_Process_ID=NULL, AD_Reference_ID=20, DefaultValue='N',Updated=TO_DATE('2010-03-04 13:58:51','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=55736 -; - --- Mar 4, 2010 1:58:54 PM COT --- BF2948897_Fixed Assets Dictionary Errors -ALTER TABLE A_Depreciation_Convention MODIFY Processed CHAR(1) DEFAULT 'N' -; - --- Mar 4, 2010 1:58:54 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE A_Depreciation_Convention SET Processed='N' WHERE Processed IS NULL -; - --- Mar 4, 2010 1:59:46 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE AD_Column SET AD_Process_ID=NULL, AD_Reference_ID=20,Updated=TO_DATE('2010-03-04 13:59:46','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=55747 -; - --- Mar 4, 2010 1:59:49 PM COT --- BF2948897_Fixed Assets Dictionary Errors -ALTER TABLE A_Depreciation_Method MODIFY Processed CHAR(1) DEFAULT 'Y' -; - --- Mar 4, 2010 1:59:49 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE A_Depreciation_Method SET Processed='Y' WHERE Processed IS NULL -; - diff --git a/migration/354a-trunk/oracle/674_FR2965494.sql b/migration/354a-trunk/oracle/674_FR2965494.sql deleted file mode 100644 index 07f89ced85..0000000000 --- a/migration/354a-trunk/oracle/674_FR2965494.sql +++ /dev/null @@ -1,311 +0,0 @@ --- Mar 8, 2010 4:20:41 PM CET --- Import of Order Source -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59066,53942,0,19,591,'C_OrderSource_ID',TO_DATE('2010-03-08 16:20:39','YYYY-MM-DD HH24:MI:SS'),100,'D',10,'Y','N','N','N','N','N','N','N','N','N','N','N','Y','Order Source',0,TO_DATE('2010-03-08 16:20:39','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 8, 2010 4:20:41 PM CET --- Import of Order Source -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59066 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 8, 2010 4:20:44 PM CET --- Import of Order Source -ALTER TABLE I_Order ADD C_OrderSource_ID NUMBER(10) DEFAULT NULL -; - --- Mar 8, 2010 4:23:40 PM CET --- Import of Order Source -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,54129,0,'C_OrderSourceValue',TO_DATE('2010-03-08 16:23:39','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Order Source Key','Order Source Key',TO_DATE('2010-03-08 16:23:39','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Mar 8, 2010 4:23:40 PM CET --- Import of Order Source -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=54129 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) -; - --- Mar 8, 2010 4:27:20 PM CET --- Import of Order Source -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59068,54129,0,10,591,'C_OrderSourceValue',TO_DATE('2010-03-08 16:27:19','YYYY-MM-DD HH24:MI:SS'),100,'D',40,'Y','Y','N','N','N','N','N','N','N','N','N','N','Y','Order Source Key',0,TO_DATE('2010-03-08 16:27:19','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 8, 2010 4:27:20 PM CET --- Import of Order Source -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59068 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 8, 2010 4:27:27 PM CET --- Import of Order Source -ALTER TABLE I_Order ADD C_OrderSourceValue NVARCHAR2(40) DEFAULT NULL -; - - - --- Mar 8, 2010 4:32:35 PM CET --- Import of Order Source -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59068,58779,0,512,TO_DATE('2010-03-08 16:32:33','YYYY-MM-DD HH24:MI:SS'),100,0,'D','Y','Y','Y','N','N','N','N','N','Order Source Key',590,0,TO_DATE('2010-03-08 16:32:33','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Mar 8, 2010 4:32:35 PM CET --- Import of Order Source -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58779 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Mar 8, 2010 4:33:50 PM CET --- Import of Order Source -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59066,58780,0,512,TO_DATE('2010-03-08 16:33:47','YYYY-MM-DD HH24:MI:SS'),100,0,'D','Y','Y','Y','N','N','N','N','N','Order Source',600,0,TO_DATE('2010-03-08 16:33:47','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Mar 8, 2010 4:33:50 PM CET --- Import of Order Source -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58780 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Mar 8, 2010 4:33:58 PM CET --- Import of Order Source -UPDATE AD_Field SET IsSameLine='Y',Updated=TO_DATE('2010-03-08 16:33:58','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=58780 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=0,IsDisplayed='N' WHERE AD_Field_ID=7347 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=0,IsDisplayed='N' WHERE AD_Field_ID=7334 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=10,IsDisplayed='Y' WHERE AD_Field_ID=7328 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=20,IsDisplayed='Y' WHERE AD_Field_ID=7319 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=30,IsDisplayed='Y' WHERE AD_Field_ID=7323 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=40,IsDisplayed='Y' WHERE AD_Field_ID=7324 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=50,IsDisplayed='Y' WHERE AD_Field_ID=7337 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=60,IsDisplayed='Y' WHERE AD_Field_ID=7315 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=70,IsDisplayed='Y' WHERE AD_Field_ID=7355 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=80,IsDisplayed='Y' WHERE AD_Field_ID=7356 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=90,IsDisplayed='Y' WHERE AD_Field_ID=7338 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=100,IsDisplayed='Y' WHERE AD_Field_ID=7322 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=110,IsDisplayed='Y' WHERE AD_Field_ID=7359 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=120,IsDisplayed='Y' WHERE AD_Field_ID=7336 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=130,IsDisplayed='Y' WHERE AD_Field_ID=7318 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=140,IsDisplayed='Y' WHERE AD_Field_ID=7330 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=150,IsDisplayed='Y' WHERE AD_Field_ID=7339 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=160,IsDisplayed='Y' WHERE AD_Field_ID=7325 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=170,IsDisplayed='Y' WHERE AD_Field_ID=7341 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=180,IsDisplayed='Y' WHERE AD_Field_ID=7346 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=190,IsDisplayed='Y' WHERE AD_Field_ID=7345 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=200,IsDisplayed='Y' WHERE AD_Field_ID=7331 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=210,IsDisplayed='Y' WHERE AD_Field_ID=7317 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=220,IsDisplayed='Y' WHERE AD_Field_ID=7360 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=230,IsDisplayed='Y' WHERE AD_Field_ID=7354 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=240,IsDisplayed='Y' WHERE AD_Field_ID=7340 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=250,IsDisplayed='Y' WHERE AD_Field_ID=7645 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=260,IsDisplayed='Y' WHERE AD_Field_ID=7332 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=270,IsDisplayed='Y' WHERE AD_Field_ID=7353 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=280,IsDisplayed='Y' WHERE AD_Field_ID=7361 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=290,IsDisplayed='Y' WHERE AD_Field_ID=7358 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=300,IsDisplayed='Y' WHERE AD_Field_ID=7350 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=310,IsDisplayed='Y' WHERE AD_Field_ID=7640 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=320,IsDisplayed='Y' WHERE AD_Field_ID=7644 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=330,IsDisplayed='Y' WHERE AD_Field_ID=7641 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=340,IsDisplayed='Y' WHERE AD_Field_ID=7326 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=350,IsDisplayed='Y' WHERE AD_Field_ID=7642 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=360,IsDisplayed='Y' WHERE AD_Field_ID=7643 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=370,IsDisplayed='Y' WHERE AD_Field_ID=7343 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=380,IsDisplayed='Y' WHERE AD_Field_ID=8262 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=390,IsDisplayed='Y' WHERE AD_Field_ID=8263 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=400,IsDisplayed='Y' WHERE AD_Field_ID=7329 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=410,IsDisplayed='Y' WHERE AD_Field_ID=7357 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=420,IsDisplayed='Y' WHERE AD_Field_ID=56402 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=430,IsDisplayed='Y' WHERE AD_Field_ID=56403 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=570,IsDisplayed='Y' WHERE AD_Field_ID=58779 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=580,IsDisplayed='Y' WHERE AD_Field_ID=58780 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=590,IsDisplayed='Y' WHERE AD_Field_ID=7327 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=600,IsDisplayed='Y' WHERE AD_Field_ID=7335 -; diff --git a/migration/354a-trunk/oracle/675_FR2962094_AddAverageCostVarianceDefaultAcct.sql b/migration/354a-trunk/oracle/675_FR2962094_AddAverageCostVarianceDefaultAcct.sql deleted file mode 100644 index f968499e32..0000000000 --- a/migration/354a-trunk/oracle/675_FR2962094_AddAverageCostVarianceDefaultAcct.sql +++ /dev/null @@ -1,413 +0,0 @@ --- Mar 8, 2010 8:44:44 PM COT --- FR2962094_Finish implementation of weighted average costing -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,Help,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,54132,0,'P_AverageCostVariance_Acct',TO_DATE('2010-03-08 20:44:43','YYYY-MM-DD HH24:MI:SS'),100,'Average Cost Variance','D','The Average Cost Variance is used in weighted average costing to reflect differences when posting costs for negative inventory.','Y','Average Cost Variance','Average Cost Variance',TO_DATE('2010-03-08 20:44:43','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Mar 8, 2010 8:44:44 PM COT -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=54132 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) -; - --- Mar 8, 2010 8:46:06 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59071,54132,0,25,315,'P_AverageCostVariance_Acct',TO_DATE('2010-03-08 20:46:05','YYYY-MM-DD HH24:MI:SS'),100,'Average Cost Variance','D',10,'The Average Cost Variance is used in weighted average costing to reflect differences when posting costs for negative inventory.','Y','Y','N','N','N','N','N','N','N','N','N','N','Y','Average Cost Variance',TO_DATE('2010-03-08 20:46:05','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 8, 2010 8:46:06 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59071 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 8, 2010 8:46:19 PM COT -ALTER TABLE C_AcctSchema_Default ADD P_AverageCostVariance_Acct NUMBER(10) DEFAULT NULL -; - --- Mar 8, 2010 8:46:45 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59072,54132,0,25,401,'P_AverageCostVariance_Acct',TO_DATE('2010-03-08 20:46:45','YYYY-MM-DD HH24:MI:SS'),100,'Average Cost Variance','D',10,'The Average Cost Variance is used in weighted average costing to reflect differences when posting costs for negative inventory.','Y','Y','N','N','N','N','N','N','N','N','N','N','Y','Average Cost Variance',TO_DATE('2010-03-08 20:46:45','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 8, 2010 8:46:45 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59072 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 8, 2010 8:46:50 PM COT -ALTER TABLE M_Product_Category_Acct ADD P_AverageCostVariance_Acct NUMBER(10) DEFAULT NULL -; - --- Mar 8, 2010 8:47:12 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59073,54132,0,25,273,'P_AverageCostVariance_Acct',TO_DATE('2010-03-08 20:47:11','YYYY-MM-DD HH24:MI:SS'),100,'Average Cost Variance','D',10,'The Average Cost Variance is used in weighted average costing to reflect differences when posting costs for negative inventory.','Y','Y','N','N','N','N','N','N','N','N','N','N','Y','Average Cost Variance',TO_DATE('2010-03-08 20:47:11','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 8, 2010 8:47:12 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59073 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 8, 2010 8:47:17 PM COT -ALTER TABLE M_Product_Acct ADD P_AverageCostVariance_Acct NUMBER(10) DEFAULT NULL -; - --- Mar 8, 2010 8:49:30 PM COT -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59071,106,58783,0,252,TO_DATE('2010-03-08 20:49:29','YYYY-MM-DD HH24:MI:SS'),100,'Average Cost Variance',26,'D','The Average Cost Variance is used in weighted average costing to reflect differences when posting costs for negative inventory.','Y','Y','Y','N','N','N','N','N','Average Cost Variance',770,0,TO_DATE('2010-03-08 20:49:29','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Mar 8, 2010 8:49:30 PM COT -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58783 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=280,IsDisplayed='Y' WHERE AD_Field_ID=58783 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=290,IsDisplayed='Y' WHERE AD_Field_ID=4861 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=300,IsDisplayed='Y' WHERE AD_Field_ID=4862 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=310,IsDisplayed='Y' WHERE AD_Field_ID=2663 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=320,IsDisplayed='Y' WHERE AD_Field_ID=4863 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=330,IsDisplayed='Y' WHERE AD_Field_ID=2662 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=340,IsDisplayed='Y' WHERE AD_Field_ID=3824 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=350,IsDisplayed='Y' WHERE AD_Field_ID=2654 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=360,IsDisplayed='Y' WHERE AD_Field_ID=3835 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=370,IsDisplayed='Y' WHERE AD_Field_ID=56529 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=380,IsDisplayed='Y' WHERE AD_Field_ID=56522 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=390,IsDisplayed='Y' WHERE AD_Field_ID=56524 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=400,IsDisplayed='Y' WHERE AD_Field_ID=56528 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=410,IsDisplayed='Y' WHERE AD_Field_ID=56527 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=420,IsDisplayed='Y' WHERE AD_Field_ID=56525 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=430,IsDisplayed='Y' WHERE AD_Field_ID=56523 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=440,IsDisplayed='Y' WHERE AD_Field_ID=56520 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=450,IsDisplayed='Y' WHERE AD_Field_ID=56521 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=460,IsDisplayed='Y' WHERE AD_Field_ID=56526 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=470,IsDisplayed='Y' WHERE AD_Field_ID=56550 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=480,IsDisplayed='Y' WHERE AD_Field_ID=56551 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=490,IsDisplayed='Y' WHERE AD_Field_ID=3842 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=500,IsDisplayed='Y' WHERE AD_Field_ID=3841 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=510,IsDisplayed='Y' WHERE AD_Field_ID=3846 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=520,IsDisplayed='Y' WHERE AD_Field_ID=5133 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=530,IsDisplayed='Y' WHERE AD_Field_ID=5132 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=540,IsDisplayed='Y' WHERE AD_Field_ID=3843 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=550,IsDisplayed='Y' WHERE AD_Field_ID=3845 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=560,IsDisplayed='Y' WHERE AD_Field_ID=3844 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=570,IsDisplayed='Y' WHERE AD_Field_ID=3849 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=580,IsDisplayed='Y' WHERE AD_Field_ID=3850 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=590,IsDisplayed='Y' WHERE AD_Field_ID=5138 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=600,IsDisplayed='Y' WHERE AD_Field_ID=3847 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=610,IsDisplayed='Y' WHERE AD_Field_ID=3839 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=620,IsDisplayed='Y' WHERE AD_Field_ID=3837 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=630,IsDisplayed='Y' WHERE AD_Field_ID=3840 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=640,IsDisplayed='Y' WHERE AD_Field_ID=3838 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=650,IsDisplayed='Y' WHERE AD_Field_ID=3836 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=660,IsDisplayed='Y' WHERE AD_Field_ID=3851 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=670,IsDisplayed='Y' WHERE AD_Field_ID=3852 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=680,IsDisplayed='Y' WHERE AD_Field_ID=3830 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=690,IsDisplayed='Y' WHERE AD_Field_ID=3831 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=700,IsDisplayed='Y' WHERE AD_Field_ID=3832 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=710,IsDisplayed='Y' WHERE AD_Field_ID=3833 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=720,IsDisplayed='Y' WHERE AD_Field_ID=4092 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=730,IsDisplayed='Y' WHERE AD_Field_ID=4093 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=740,IsDisplayed='Y' WHERE AD_Field_ID=5134 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=750,IsDisplayed='Y' WHERE AD_Field_ID=4094 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=760,IsDisplayed='Y' WHERE AD_Field_ID=4095 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=770,IsDisplayed='Y' WHERE AD_Field_ID=3823 -; - --- Mar 8, 2010 8:50:56 PM COT -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59072,58784,0,324,TO_DATE('2010-03-08 20:50:55','YYYY-MM-DD HH24:MI:SS'),100,'Average Cost Variance',26,'D','The Average Cost Variance is used in weighted average costing to reflect differences when posting costs for negative inventory.','Y','Y','Y','N','N','N','N','N','Average Cost Variance',310,0,TO_DATE('2010-03-08 20:50:55','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Mar 8, 2010 8:50:56 PM COT -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58784 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=150,IsDisplayed='Y' WHERE AD_Field_ID=58784 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=160,IsDisplayed='Y' WHERE AD_Field_ID=4872 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=170,IsDisplayed='Y' WHERE AD_Field_ID=4873 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=180,IsDisplayed='Y' WHERE AD_Field_ID=3944 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=190,IsDisplayed='Y' WHERE AD_Field_ID=56539 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=200,IsDisplayed='Y' WHERE AD_Field_ID=56532 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=210,IsDisplayed='Y' WHERE AD_Field_ID=56534 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=220,IsDisplayed='Y' WHERE AD_Field_ID=56538 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=230,IsDisplayed='Y' WHERE AD_Field_ID=56537 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=240,IsDisplayed='Y' WHERE AD_Field_ID=56535 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=250,IsDisplayed='Y' WHERE AD_Field_ID=56533 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=260,IsDisplayed='Y' WHERE AD_Field_ID=56530 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=270,IsDisplayed='Y' WHERE AD_Field_ID=56531 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=280,IsDisplayed='Y' WHERE AD_Field_ID=56536 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=290,IsDisplayed='Y' WHERE AD_Field_ID=56552 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=300,IsDisplayed='Y' WHERE AD_Field_ID=56553 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=310,IsDisplayed='Y' WHERE AD_Field_ID=3945 -; - --- Mar 8, 2010 8:51:50 PM COT -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59073,58785,0,210,TO_DATE('2010-03-08 20:51:49','YYYY-MM-DD HH24:MI:SS'),100,'Average Cost Variance',26,'D','The Average Cost Variance is used in weighted average costing to reflect differences when posting costs for negative inventory.','Y','Y','Y','N','N','N','N','N','Average Cost Variance',280,0,TO_DATE('2010-03-08 20:51:49','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Mar 8, 2010 8:51:50 PM COT -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58785 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=130,IsDisplayed='Y' WHERE AD_Field_ID=58785 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=140,IsDisplayed='Y' WHERE AD_Field_ID=4868 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=150,IsDisplayed='Y' WHERE AD_Field_ID=4869 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=160,IsDisplayed='Y' WHERE AD_Field_ID=2608 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=170,IsDisplayed='Y' WHERE AD_Field_ID=56549 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=180,IsDisplayed='Y' WHERE AD_Field_ID=56542 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=190,IsDisplayed='Y' WHERE AD_Field_ID=56544 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=200,IsDisplayed='Y' WHERE AD_Field_ID=56548 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=210,IsDisplayed='Y' WHERE AD_Field_ID=56547 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=220,IsDisplayed='Y' WHERE AD_Field_ID=56545 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=230,IsDisplayed='Y' WHERE AD_Field_ID=56543 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=240,IsDisplayed='Y' WHERE AD_Field_ID=56540 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=250,IsDisplayed='Y' WHERE AD_Field_ID=56541 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=260,IsDisplayed='Y' WHERE AD_Field_ID=56546 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=270,IsDisplayed='Y' WHERE AD_Field_ID=56554 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=280,IsDisplayed='Y' WHERE AD_Field_ID=56555 -; - --- Mar 8, 2010 9:03:21 PM COT -UPDATE AD_Field SET IsMandatory='Y',Updated=TO_DATE('2010-03-08 21:03:21','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=58783 -; - --- Mar 8, 2010 9:03:44 PM COT -UPDATE AD_Field SET IsMandatory='Y',Updated=TO_DATE('2010-03-08 21:03:44','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=58784 -; - --- Mar 8, 2010 9:04:06 PM COT -UPDATE AD_Field SET IsMandatory='Y',Updated=TO_DATE('2010-03-08 21:04:06','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=58785 -; - diff --git a/migration/354a-trunk/oracle/676_FR2962094_SetAverageCostVarianceGW.sql b/migration/354a-trunk/oracle/676_FR2962094_SetAverageCostVarianceGW.sql deleted file mode 100644 index 82bd4bcd24..0000000000 --- a/migration/354a-trunk/oracle/676_FR2962094_SetAverageCostVarianceGW.sql +++ /dev/null @@ -1,56 +0,0 @@ --- Mar 8, 2010 8:56:27 PM COT --- FR2962094_Finish implementation of weighted average costing -INSERT INTO C_ElementValue (AccountSign,AccountType,AD_Client_ID,AD_Org_ID,C_Element_ID,C_ElementValue_ID,Created,CreatedBy,Description,IsActive,IsBankAccount,IsDocControlled,IsForeignCurrency,IsSummary,Name,PostActual,PostBudget,PostEncumbrance,PostStatistical,Updated,UpdatedBy,Value) VALUES ('N','E',11,0,105,50017,TO_DATE('2010-03-08 20:56:26','YYYY-MM-DD HH24:MI:SS'),100,'Account for Average Cost Variance','Y','N','Y','N','N','Average Cost Variance','Y','Y','Y','Y',TO_DATE('2010-03-08 20:56:26','YYYY-MM-DD HH24:MI:SS'),100,'58800') -; - --- Mar 8, 2010 8:56:27 PM COT -INSERT INTO C_ElementValue_Trl (AD_Language,C_ElementValue_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.C_ElementValue_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, C_ElementValue t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.C_ElementValue_ID=50017 AND NOT EXISTS (SELECT * FROM C_ElementValue_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.C_ElementValue_ID=t.C_ElementValue_ID) -; - --- Mar 8, 2010 8:56:27 PM COT -INSERT INTO AD_TreeNode (AD_Client_ID,AD_Org_ID, IsActive,Created,CreatedBy,Updated,UpdatedBy, AD_Tree_ID, Node_ID, Parent_ID, SeqNo) SELECT t.AD_Client_ID, 0, 'Y', SysDate, 100, SysDate, 100,t.AD_Tree_ID, 50017, 0, 999 FROM AD_Tree t WHERE t.AD_Client_ID=11 AND t.IsActive='Y' AND EXISTS (SELECT * FROM C_Element ae WHERE ae.C_Element_ID=105 AND t.AD_Tree_ID=ae.AD_Tree_ID) AND NOT EXISTS (SELECT * FROM AD_TreeNode e WHERE e.AD_Tree_ID=t.AD_Tree_ID AND Node_ID=50017) -; - --- Mar 8, 2010 8:56:34 PM COT -UPDATE AD_TreeNode SET Parent_ID=443, SeqNo=0, Updated=SysDate WHERE AD_Tree_ID=101 AND Node_ID=444 -; - --- Mar 8, 2010 8:56:34 PM COT -UPDATE AD_TreeNode SET Parent_ID=443, SeqNo=1, Updated=SysDate WHERE AD_Tree_ID=101 AND Node_ID=445 -; - --- Mar 8, 2010 8:56:34 PM COT -UPDATE AD_TreeNode SET Parent_ID=443, SeqNo=2, Updated=SysDate WHERE AD_Tree_ID=101 AND Node_ID=635 -; - --- Mar 8, 2010 8:56:34 PM COT -UPDATE AD_TreeNode SET Parent_ID=443, SeqNo=3, Updated=SysDate WHERE AD_Tree_ID=101 AND Node_ID=50001 -; - --- Mar 8, 2010 8:56:34 PM COT -UPDATE AD_TreeNode SET Parent_ID=443, SeqNo=4, Updated=SysDate WHERE AD_Tree_ID=101 AND Node_ID=50002 -; - --- Mar 8, 2010 8:56:34 PM COT -UPDATE AD_TreeNode SET Parent_ID=443, SeqNo=5, Updated=SysDate WHERE AD_Tree_ID=101 AND Node_ID=50003 -; - --- Mar 8, 2010 8:56:34 PM COT -UPDATE AD_TreeNode SET Parent_ID=443, SeqNo=6, Updated=SysDate WHERE AD_Tree_ID=101 AND Node_ID=50004 -; - --- Mar 8, 2010 8:56:34 PM COT -UPDATE AD_TreeNode SET Parent_ID=443, SeqNo=7, Updated=SysDate WHERE AD_Tree_ID=101 AND Node_ID=50017 -; - --- Mar 8, 2010 8:58:19 PM COT -INSERT INTO C_ValidCombination (Account_ID,AD_Client_ID,AD_Org_ID,C_AcctSchema_ID,Combination,Created,CreatedBy,C_ValidCombination_ID,Description,IsActive,IsFullyQualified,Updated,UpdatedBy) VALUES (50017,11,11,101,'HQ-58800-_-_-_-_',TO_DATE('2010-03-08 20:58:18','YYYY-MM-DD HH24:MI:SS'),100,50013,'HQ-Average Cost Variance-_-_-_-_','Y','Y',TO_DATE('2010-03-08 20:58:18','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Mar 8, 2010 8:58:32 PM COT -UPDATE C_AcctSchema_Default SET P_AverageCostVariance_Acct=50013,Updated=TO_DATE('2010-03-08 20:58:32','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_AcctSchema_ID=101 -; - -UPDATE M_Product_Category_Acct SET P_AverageCostVariance_Acct=50013,Updated=TO_DATE('2010-03-08 20:58:32','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_AcctSchema_ID=101; - -UPDATE M_Product_Acct SET P_AverageCostVariance_Acct=50013,Updated=TO_DATE('2010-03-08 20:58:32','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_AcctSchema_ID=101; diff --git a/migration/354a-trunk/oracle/677_BT2092712_Unalloc_payment_report.sql b/migration/354a-trunk/oracle/677_BT2092712_Unalloc_payment_report.sql deleted file mode 100644 index f4c7bf7056..0000000000 --- a/migration/354a-trunk/oracle/677_BT2092712_Unalloc_payment_report.sql +++ /dev/null @@ -1 +0,0 @@ -UPDATE AD_ReportView SET WHERECLAUSE = 'DocStatus IN (''CO'',''CL'') AND IsAllocated=''N''' where ad_reportview_id=155; \ No newline at end of file diff --git a/migration/354a-trunk/oracle/678_BF_1774758.sql b/migration/354a-trunk/oracle/678_BF_1774758.sql deleted file mode 100644 index 5532c1953f..0000000000 --- a/migration/354a-trunk/oracle/678_BF_1774758.sql +++ /dev/null @@ -1,9 +0,0 @@ --- --- BF [ 1774758 ] No default Sales Representant in request window --- - -UPDATE AD_COLUMN - SET DefaultValue = '@#AD_User_ID@' - WHERE DefaultValue = '@AD_User_ID@' AND AD_Column_ID = 5432; - -COMMIT; diff --git a/migration/354a-trunk/oracle/679_BF2042466FixProductURL.sql b/migration/354a-trunk/oracle/679_BF2042466FixProductURL.sql deleted file mode 100644 index f9ae265d00..0000000000 --- a/migration/354a-trunk/oracle/679_BF2042466FixProductURL.sql +++ /dev/null @@ -1,8 +0,0 @@ --- Mar 11, 2010 3:09:41 PM COT -UPDATE M_Product SET DescriptionURL='http://www.adempiere.com/index.php/SampleProductDescriptionForDocumentation', ImageURL='http://www.adempiere.com/images/f/f5/C32.png', IsStocked='N',Updated=TO_DATE('2010-03-11 15:09:41','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE M_Product_ID=146 -; - --- Mar 11, 2010 3:09:58 PM COT -UPDATE M_Product SET ImageURL='http://www.adempiere.com/images/f/f5/C32.png', IsStocked='N',Updated=TO_DATE('2010-03-11 15:09:58','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE M_Product_ID=126 -; - diff --git a/migration/354a-trunk/oracle/680_BF2970013.sql b/migration/354a-trunk/oracle/680_BF2970013.sql deleted file mode 100644 index 27b759fbc4..0000000000 --- a/migration/354a-trunk/oracle/680_BF2970013.sql +++ /dev/null @@ -1,82 +0,0 @@ --- Mar 13, 2010 5:43:23 PM COT --- BF2970013_Process Para uniqueness required -UPDATE AD_Process_Para SET SeqNo=20,Updated=TO_DATE('2010-03-13 17:43:23','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=131 -; - --- Mar 13, 2010 5:43:25 PM COT -UPDATE AD_Process_Para SET SeqNo=30,Updated=TO_DATE('2010-03-13 17:43:25','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=244 -; - --- Mar 13, 2010 5:43:27 PM COT -UPDATE AD_Process_Para SET SeqNo=40,Updated=TO_DATE('2010-03-13 17:43:27','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=53074 -; - --- Mar 13, 2010 5:43:33 PM COT -UPDATE AD_Process_Para SET SeqNo=50,Updated=TO_DATE('2010-03-13 17:43:33','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=53073 -; - --- Mar 13, 2010 5:43:58 PM COT -UPDATE AD_Process_Para SET SeqNo=50,Updated=TO_DATE('2010-03-13 17:43:58','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=471 -; - --- Mar 13, 2010 5:44:32 PM COT -UPDATE AD_Process_Para SET SeqNo=140,Updated=TO_DATE('2010-03-13 17:44:32','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=453 -; - --- Mar 13, 2010 5:45:12 PM COT -UPDATE AD_Process_Para SET SeqNo=140,Updated=TO_DATE('2010-03-13 17:45:12','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=454 -; - --- Mar 13, 2010 5:45:56 PM COT -UPDATE AD_Process_Para SET SeqNo=50,Updated=TO_DATE('2010-03-13 17:45:56','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=397 -; - --- Mar 13, 2010 5:46:18 PM COT -UPDATE AD_Process_Para SET SeqNo=30,Updated=TO_DATE('2010-03-13 17:46:18','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=588 -; - --- Mar 13, 2010 5:46:20 PM COT -UPDATE AD_Process_Para SET SeqNo=40,Updated=TO_DATE('2010-03-13 17:46:20','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=585 -; - --- Mar 13, 2010 5:46:22 PM COT -UPDATE AD_Process_Para SET SeqNo=50,Updated=TO_DATE('2010-03-13 17:46:22','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=53153 -; - --- Mar 13, 2010 5:46:23 PM COT -UPDATE AD_Process_Para SET SeqNo=60,Updated=TO_DATE('2010-03-13 17:46:23','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=53154 -; - --- Mar 13, 2010 5:46:25 PM COT -UPDATE AD_Process_Para SET SeqNo=70,Updated=TO_DATE('2010-03-13 17:46:25','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=586 -; - --- Mar 13, 2010 5:46:27 PM COT -UPDATE AD_Process_Para SET SeqNo=80,Updated=TO_DATE('2010-03-13 17:46:27','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=587 -; - --- Mar 13, 2010 5:46:55 PM COT -UPDATE AD_Process_Para SET SeqNo=40,Updated=TO_DATE('2010-03-13 17:46:55','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=53066 -; - --- Mar 13, 2010 5:46:56 PM COT -UPDATE AD_Process_Para SET SeqNo=50,Updated=TO_DATE('2010-03-13 17:46:56','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=53067 -; - --- Mar 13, 2010 5:47:22 PM COT -UPDATE AD_Process_Para SET SeqNo=140,Updated=TO_DATE('2010-03-13 17:47:22','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=53123 -; - --- Mar 13, 2010 5:47:43 PM COT -UPDATE AD_Process_Para SET SeqNo=60,Updated=TO_DATE('2010-03-13 17:47:43','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=53275 -; - --- Mar 13, 2010 5:47:46 PM COT -UPDATE AD_Process_Para SET SeqNo=70,Updated=TO_DATE('2010-03-13 17:47:46','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=53280 -; - --- Mar 13, 2010 5:47:50 PM COT -UPDATE AD_Process_Para SET EntityType='EE01',Updated=TO_DATE('2010-03-13 17:47:50','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=53275 -; - -create unique index ad_procpara_procseqno on ad_process_para (ad_process_id, seqno); diff --git a/migration/354a-trunk/oracle/681_BF2968442.sql b/migration/354a-trunk/oracle/681_BF2968442.sql deleted file mode 100644 index 9e9ccf3e22..0000000000 --- a/migration/354a-trunk/oracle/681_BF2968442.sql +++ /dev/null @@ -1,146 +0,0 @@ --- Mar 13, 2010 11:54:49 PM COT --- BF_2968442_Post without Application Server -UPDATE AD_Element SET Description='Post the accounting immediately for testing (Deprecated)', Help='If selected, the accounting consequences are immediately generated when completing a document. Otherwise the document is posted by a batch process. You should select this only if you are testing. -Deprecated column - use instead the functionality Client Accounting.', Name='Post Immediately (Deprecated)',Updated=TO_DATE('2010-03-13 23:54:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=2843 -; - --- Mar 13, 2010 11:54:49 PM COT -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=2843 -; - --- Mar 13, 2010 11:54:49 PM COT -UPDATE AD_Column SET ColumnName='IsPostImmediate', Name='Post Immediately (Deprecated)', Description='Post the accounting immediately for testing (Deprecated)', Help='If selected, the accounting consequences are immediately generated when completing a document. Otherwise the document is posted by a batch process. You should select this only if you are testing. -Deprecated column - use instead the functionality Client Accounting.' WHERE AD_Element_ID=2843 -; - --- Mar 13, 2010 11:54:50 PM COT -UPDATE AD_Process_Para SET ColumnName='IsPostImmediate', Name='Post Immediately (Deprecated)', Description='Post the accounting immediately for testing (Deprecated)', Help='If selected, the accounting consequences are immediately generated when completing a document. Otherwise the document is posted by a batch process. You should select this only if you are testing. -Deprecated column - use instead the functionality Client Accounting.', AD_Element_ID=2843 WHERE UPPER(ColumnName)='ISPOSTIMMEDIATE' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - --- Mar 13, 2010 11:54:50 PM COT -UPDATE AD_Process_Para SET ColumnName='IsPostImmediate', Name='Post Immediately (Deprecated)', Description='Post the accounting immediately for testing (Deprecated)', Help='If selected, the accounting consequences are immediately generated when completing a document. Otherwise the document is posted by a batch process. You should select this only if you are testing. -Deprecated column - use instead the functionality Client Accounting.' WHERE AD_Element_ID=2843 AND IsCentrallyMaintained='Y' -; - --- Mar 13, 2010 11:54:50 PM COT -UPDATE AD_Field SET Name='Post Immediately (Deprecated)', Description='Post the accounting immediately for testing (Deprecated)', Help='If selected, the accounting consequences are immediately generated when completing a document. Otherwise the document is posted by a batch process. You should select this only if you are testing. -Deprecated column - use instead the functionality Client Accounting.' WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=2843) AND IsCentrallyMaintained='Y' -; - --- Mar 13, 2010 11:54:50 PM COT -UPDATE AD_PrintFormatItem pi SET PrintName='Post Immediate', Name='Post Immediately (Deprecated)' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=2843) -; - --- Mar 13, 2010 11:55:40 PM COT -UPDATE AD_Field SET IsSameLine='N',Updated=TO_DATE('2010-03-13 23:55:40','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=12326 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=0,IsDisplayed='N' WHERE AD_Field_ID=12327 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=20,IsDisplayed='Y' WHERE AD_Field_ID=317 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=30,IsDisplayed='Y' WHERE AD_Field_ID=318 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=40,IsDisplayed='Y' WHERE AD_Field_ID=319 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=50,IsDisplayed='Y' WHERE AD_Field_ID=10318 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=60,IsDisplayed='Y' WHERE AD_Field_ID=5160 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=70,IsDisplayed='Y' WHERE AD_Field_ID=5759 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=80,IsDisplayed='Y' WHERE AD_Field_ID=11025 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=90,IsDisplayed='Y' WHERE AD_Field_ID=11205 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=100,IsDisplayed='Y' WHERE AD_Field_ID=3813 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=110,IsDisplayed='Y' WHERE AD_Field_ID=5887 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=120,IsDisplayed='Y' WHERE AD_Field_ID=5161 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=130,IsDisplayed='Y' WHERE AD_Field_ID=5162 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=140,IsDisplayed='Y' WHERE AD_Field_ID=5163 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=150,IsDisplayed='Y' WHERE AD_Field_ID=5164 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=160,IsDisplayed='Y' WHERE AD_Field_ID=12099 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=170,IsDisplayed='Y' WHERE AD_Field_ID=12098 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=180,IsDisplayed='Y' WHERE AD_Field_ID=11024 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=190,IsDisplayed='Y' WHERE AD_Field_ID=12326 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=200,IsDisplayed='Y' WHERE AD_Field_ID=50158 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=210,IsDisplayed='Y' WHERE AD_Field_ID=50159 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=220,IsDisplayed='Y' WHERE AD_Field_ID=50160 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=230,IsDisplayed='Y' WHERE AD_Field_ID=50184 -; - --- Mar 13, 2010 11:55:56 PM COT -UPDATE AD_Field SET SeqNo=240,IsDisplayed='Y' WHERE AD_Field_ID=50185 -; - --- Mar 13, 2010 11:55:56 PM COT -UPDATE AD_Field SET SeqNo=250,IsDisplayed='Y' WHERE AD_Field_ID=50186 -; - --- Mar 13, 2010 11:55:56 PM COT -UPDATE AD_Field SET SeqNo=260,IsDisplayed='Y' WHERE AD_Field_ID=54238 -; - --- Mar 13, 2010 11:55:56 PM COT -UPDATE AD_Field SET SeqNo=270,IsDisplayed='Y' WHERE AD_Field_ID=54680 -; - diff --git a/migration/354a-trunk/postgresql/659_FR2871676_ReportAmountType.sql b/migration/354a-trunk/postgresql/659_FR2871676_ReportAmountType.sql deleted file mode 100644 index c6ed38af7c..0000000000 --- a/migration/354a-trunk/postgresql/659_FR2871676_ReportAmountType.sql +++ /dev/null @@ -1,411 +0,0 @@ --- 02/10/2009 11:33:15 AM --- Add signed amount type to fin report -INSERT INTO AD_Reference (AD_Client_ID,AD_Org_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,IsOrderByValue,Name,Updated,UpdatedBy,ValidationType) VALUES (0,0,53327,TO_TIMESTAMP('2009-10-02 11:33:12','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','N','PA_Report Period Type',TO_TIMESTAMP('2009-10-02 11:33:12','YYYY-MM-DD HH24:MI:SS'),100,'L') -; - --- 02/10/2009 11:33:15 AM --- Add signed amount type to fin report -INSERT INTO AD_Reference_Trl (AD_Language,AD_Reference_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Reference_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Reference t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Reference_ID=53327 AND EXISTS (SELECT * FROM AD_Reference_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Reference_ID!=t.AD_Reference_ID) -; - --- 02/10/2009 11:33:29 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53327,53536,TO_TIMESTAMP('2009-10-02 11:33:28','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Total',TO_TIMESTAMP('2009-10-02 11:33:28','YYYY-MM-DD HH24:MI:SS'),100,'T') -; - --- 02/10/2009 11:33:29 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53536 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 02/10/2009 11:33:38 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53327,53537,TO_TIMESTAMP('2009-10-02 11:33:37','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Year',TO_TIMESTAMP('2009-10-02 11:33:37','YYYY-MM-DD HH24:MI:SS'),100,'Y') -; - --- 02/10/2009 11:33:38 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53537 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 02/10/2009 11:33:51 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53327,53538,TO_TIMESTAMP('2009-10-02 11:33:50','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Period',TO_TIMESTAMP('2009-10-02 11:33:50','YYYY-MM-DD HH24:MI:SS'),100,'P') -; - --- 02/10/2009 11:33:51 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53538 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 02/10/2009 11:40:15 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,Description,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53327,53540,TO_TIMESTAMP('2009-10-02 11:40:14','YYYY-MM-DD HH24:MI:SS'),100,'Year for P & L account, Total for Balance Sheet account','D','Y','Natural',TO_TIMESTAMP('2009-10-02 11:40:14','YYYY-MM-DD HH24:MI:SS'),100,'N') -; - --- 02/10/2009 11:40:15 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53540 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 02/10/2009 11:42:57 AM --- Add signed amount type to fin report -UPDATE AD_Reference SET IsActive='N', Name='PA_Report AmountType (deprecated)',Updated=TO_TIMESTAMP('2009-10-02 11:42:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Reference_ID=235 -; - --- 02/10/2009 11:42:57 AM --- Add signed amount type to fin report -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=235 -; - --- 02/10/2009 11:43:16 AM --- Add signed amount type to fin report -INSERT INTO AD_Reference (AD_Client_ID,AD_Org_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,IsOrderByValue,Name,Updated,UpdatedBy,ValidationType) VALUES (0,0,53328,TO_TIMESTAMP('2009-10-02 11:43:15','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','N','PA_Report Amount Type',TO_TIMESTAMP('2009-10-02 11:43:15','YYYY-MM-DD HH24:MI:SS'),100,'L') -; - --- 02/10/2009 11:43:16 AM --- Add signed amount type to fin report -INSERT INTO AD_Reference_Trl (AD_Language,AD_Reference_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Reference_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Reference t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Reference_ID=53328 AND EXISTS (SELECT * FROM AD_Reference_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Reference_ID!=t.AD_Reference_ID) -; - --- 02/10/2009 11:44:10 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53328,53541,TO_TIMESTAMP('2009-10-02 11:44:09','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Balance (expected sign)',TO_TIMESTAMP('2009-10-02 11:44:09','YYYY-MM-DD HH24:MI:SS'),100,'B') -; - --- 02/10/2009 11:44:10 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53541 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 02/10/2009 11:44:32 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53328,53542,TO_TIMESTAMP('2009-10-02 11:44:30','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Credit Only',TO_TIMESTAMP('2009-10-02 11:44:30','YYYY-MM-DD HH24:MI:SS'),100,'C') -; - --- 02/10/2009 11:44:32 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53542 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 02/10/2009 11:44:42 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53328,53543,TO_TIMESTAMP('2009-10-02 11:44:41','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Debit Only',TO_TIMESTAMP('2009-10-02 11:44:41','YYYY-MM-DD HH24:MI:SS'),100,'D') -; - --- 02/10/2009 11:44:42 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53543 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 02/10/2009 11:45:01 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53328,53544,TO_TIMESTAMP('2009-10-02 11:45:00','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Quantity',TO_TIMESTAMP('2009-10-02 11:45:00','YYYY-MM-DD HH24:MI:SS'),100,'Q') -; - --- 02/10/2009 11:45:01 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53544 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 02/10/2009 11:48:32 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,Description,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53328,53545,TO_TIMESTAMP('2009-10-02 11:48:31','YYYY-MM-DD HH24:MI:SS'),100,'DR - CR','D','Y','Balance (accounted sign)',TO_TIMESTAMP('2009-10-02 11:48:31','YYYY-MM-DD HH24:MI:SS'),100,'S') -; - --- 02/10/2009 11:48:32 AM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53545 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 02/10/2009 11:52:38 AM --- Add signed amount type to fin report -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,Help,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,54061,0,'PAPeriodType',TO_TIMESTAMP('2009-10-02 11:52:35','YYYY-MM-DD HH24:MI:SS'),100,'PA Period Type','D','The Period Type to report on: Period, Year, Total or Natural; where Natural = Year for P & L accounts, Total for Balance Sheet accounts.','Y','Period Type','Period Type',TO_TIMESTAMP('2009-10-02 11:52:35','YYYY-MM-DD HH24:MI:SS'),100) -; - --- 02/10/2009 11:52:38 AM --- Add signed amount type to fin report -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=54061 AND EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Element_ID!=t.AD_Element_ID) -; - --- 02/10/2009 11:56:47 AM --- Add signed amount type to fin report -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,Help,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,54062,0,'PAAmountType',TO_TIMESTAMP('2009-10-02 11:56:46','YYYY-MM-DD HH24:MI:SS'),100,'PA Amount Type for reporting','D','The amount type to report on: Quantity, Credit Only, Debit Only, Balance (expected sign) or Balance (DR-CR). Balance (expected sign) adjusts the sign of the result based on the Account Type and Expected Sign of each Account Element.','Y','Amount Type','Amount Type',TO_TIMESTAMP('2009-10-02 11:56:46','YYYY-MM-DD HH24:MI:SS'),100) -; - --- 02/10/2009 11:56:47 AM --- Add signed amount type to fin report -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=54062 AND EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Element_ID!=t.AD_Element_ID) -; - --- 02/10/2009 11:56:58 AM --- Add signed amount type to fin report -UPDATE AD_Element SET Help='The Period Type to report on: Period, Year, Total or Natural. Natural = Year for P & L accounts, Total for Balance Sheet accounts.',Updated=TO_TIMESTAMP('2009-10-02 11:56:58','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=54061 -; - --- 02/10/2009 11:56:58 AM --- Add signed amount type to fin report -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=54061 -; - --- 02/10/2009 11:56:58 AM --- Add signed amount type to fin report -UPDATE AD_Column SET ColumnName='PAPeriodType', Name='Period Type', Description='PA Period Type', Help='The Period Type to report on: Period, Year, Total or Natural. Natural = Year for P & L accounts, Total for Balance Sheet accounts.' WHERE AD_Element_ID=54061 -; - --- 02/10/2009 11:56:58 AM --- Add signed amount type to fin report -UPDATE AD_Process_Para SET ColumnName='PAPeriodType', Name='Period Type', Description='PA Period Type', Help='The Period Type to report on: Period, Year, Total or Natural. Natural = Year for P & L accounts, Total for Balance Sheet accounts.', AD_Element_ID=54061 WHERE UPPER(ColumnName)='PAPERIODTYPE' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - --- 02/10/2009 11:56:58 AM --- Add signed amount type to fin report -UPDATE AD_Process_Para SET ColumnName='PAPeriodType', Name='Period Type', Description='PA Period Type', Help='The Period Type to report on: Period, Year, Total or Natural. Natural = Year for P & L accounts, Total for Balance Sheet accounts.' WHERE AD_Element_ID=54061 AND IsCentrallyMaintained='Y' -; - --- 02/10/2009 11:56:58 AM --- Add signed amount type to fin report -UPDATE AD_Field SET Name='Period Type', Description='PA Period Type', Help='The Period Type to report on: Period, Year, Total or Natural. Natural = Year for P & L accounts, Total for Balance Sheet accounts.' WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=54061) AND IsCentrallyMaintained='Y' -; - --- 02/10/2009 11:58:09 AM --- Add signed amount type to fin report -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,58553,54061,0,17,53327,446,'PAPeriodType',TO_TIMESTAMP('2009-10-02 11:58:08','YYYY-MM-DD HH24:MI:SS'),100,'P','PA Period Type','D',1,'The Period Type to report on: Period, Year, Total or Natural. Natural = Year for P & L accounts, Total for Balance Sheet accounts.','Y','Y','N','N','N','N','N','N','N','N','N','N','Y','Period Type',0,TO_TIMESTAMP('2009-10-02 11:58:08','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- 02/10/2009 11:58:09 AM --- Add signed amount type to fin report -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58553 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 02/10/2009 11:58:17 AM --- Add signed amount type to fin report -ALTER TABLE PA_ReportColumn ADD COLUMN PAPeriodType CHAR(1) DEFAULT 'P' -; - --- 02/10/2009 11:59:04 AM --- Add signed amount type to fin report -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,58554,54062,0,17,53328,446,'PAAmountType',TO_TIMESTAMP('2009-10-02 11:59:03','YYYY-MM-DD HH24:MI:SS'),100,'B','PA Amount Type for reporting','D',1,'The amount type to report on: Quantity, Credit Only, Debit Only, Balance (expected sign) or Balance (DR-CR). Balance (expected sign) adjusts the sign of the result based on the Account Type and Expected Sign of each Account Element.','Y','Y','N','N','N','N','N','N','N','N','N','N','Y','Amount Type',0,TO_TIMESTAMP('2009-10-02 11:59:03','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- 02/10/2009 11:59:04 AM --- Add signed amount type to fin report -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58554 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 02/10/2009 12:01:36 PM --- Add signed amount type to fin report -UPDATE AD_Element SET Help='The amount type to report on: Quantity, Credit Only, Debit Only, Balance (expected sign) or Balance (accounted sign). "Expected sign" adjusts the sign of the result based on the Account Type and Expected Sign of each Account Element, whereas "accounted sign" always returns DR-CR.',Updated=TO_TIMESTAMP('2009-10-02 12:01:36','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=54062 -; - --- 02/10/2009 12:01:36 PM --- Add signed amount type to fin report -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=54062 -; - --- 02/10/2009 12:01:36 PM --- Add signed amount type to fin report -UPDATE AD_Column SET ColumnName='PAAmountType', Name='Amount Type', Description='PA Amount Type for reporting', Help='The amount type to report on: Quantity, Credit Only, Debit Only, Balance (expected sign) or Balance (accounted sign). "Expected sign" adjusts the sign of the result based on the Account Type and Expected Sign of each Account Element, whereas "accounted sign" always returns DR-CR.' WHERE AD_Element_ID=54062 -; - --- 02/10/2009 12:01:36 PM --- Add signed amount type to fin report -UPDATE AD_Process_Para SET ColumnName='PAAmountType', Name='Amount Type', Description='PA Amount Type for reporting', Help='The amount type to report on: Quantity, Credit Only, Debit Only, Balance (expected sign) or Balance (accounted sign). "Expected sign" adjusts the sign of the result based on the Account Type and Expected Sign of each Account Element, whereas "accounted sign" always returns DR-CR.', AD_Element_ID=54062 WHERE UPPER(ColumnName)='PAAMOUNTTYPE' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - --- 02/10/2009 12:01:36 PM --- Add signed amount type to fin report -UPDATE AD_Process_Para SET ColumnName='PAAmountType', Name='Amount Type', Description='PA Amount Type for reporting', Help='The amount type to report on: Quantity, Credit Only, Debit Only, Balance (expected sign) or Balance (accounted sign). "Expected sign" adjusts the sign of the result based on the Account Type and Expected Sign of each Account Element, whereas "accounted sign" always returns DR-CR.' WHERE AD_Element_ID=54062 AND IsCentrallyMaintained='Y' -; - --- 02/10/2009 12:01:36 PM --- Add signed amount type to fin report -UPDATE AD_Field SET Name='Amount Type', Description='PA Amount Type for reporting', Help='The amount type to report on: Quantity, Credit Only, Debit Only, Balance (expected sign) or Balance (accounted sign). "Expected sign" adjusts the sign of the result based on the Account Type and Expected Sign of each Account Element, whereas "accounted sign" always returns DR-CR.' WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=54062) AND IsCentrallyMaintained='Y' -; - --- 02/10/2009 12:03:11 PM --- Add signed amount type to fin report -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,58555,54062,0,17,53328,448,'PAAmountType',TO_TIMESTAMP('2009-10-02 12:03:10','YYYY-MM-DD HH24:MI:SS'),100,'PA Amount Type for reporting','D',2,'The amount type to report on: Quantity, Credit Only, Debit Only, Balance (expected sign) or Balance (accounted sign). "Expected sign" adjusts the sign of the result based on the Account Type and Expected Sign of each Account Element, whereas "accounted sign" always returns DR-CR.','Y','Y','N','N','N','N','N','N','N','N','N','N','Y','Amount Type',0,TO_TIMESTAMP('2009-10-02 12:03:10','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- 02/10/2009 12:03:11 PM --- Add signed amount type to fin report -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58555 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 02/10/2009 12:03:20 PM --- Add signed amount type to fin report -UPDATE AD_Column SET FieldLength=1,Updated=TO_TIMESTAMP('2009-10-02 12:03:20','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=58555 -; - --- 02/10/2009 12:03:23 PM --- Add signed amount type to fin report -ALTER TABLE PA_ReportLine ADD COLUMN PAAmountType CHAR(1) DEFAULT NULL -; - --- 02/10/2009 12:03:48 PM --- Add signed amount type to fin report -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,58556,54061,0,17,53327,448,'PAPeriodType',TO_TIMESTAMP('2009-10-02 12:03:47','YYYY-MM-DD HH24:MI:SS'),100,'PA Period Type','D',1,'The Period Type to report on: Period, Year, Total or Natural. Natural = Year for P & L accounts, Total for Balance Sheet accounts.','Y','Y','N','N','N','N','N','N','N','N','N','N','Y','Period Type',0,TO_TIMESTAMP('2009-10-02 12:03:47','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- 02/10/2009 12:03:48 PM --- Add signed amount type to fin report -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58556 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 02/10/2009 12:03:50 PM --- Add signed amount type to fin report -ALTER TABLE PA_ReportLine ADD COLUMN PAPeriodType CHAR(1) DEFAULT NULL -; - --- 02/10/2009 12:04:03 PM --- Add signed amount type to fin report -ALTER TABLE PA_ReportColumn ADD COLUMN PAAmountType CHAR(1) DEFAULT 'B' -; - --- 02/10/2009 12:04:29 PM --- Add signed amount type to fin report -UPDATE AD_Column SET IsActive='N',Updated=TO_TIMESTAMP('2009-10-02 12:04:29','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=6019 -; - --- 02/10/2009 12:04:39 PM --- Add signed amount type to fin report -UPDATE AD_Column SET IsActive='N',Updated=TO_TIMESTAMP('2009-10-02 12:04:39','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=7707 -; - --- 02/10/2009 12:09:57 PM --- Add signed amount type to fin report -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,Updated,UpdatedBy) VALUES (0,58554,58041,0,374,TO_TIMESTAMP('2009-10-02 12:09:56','YYYY-MM-DD HH24:MI:SS'),100,'PA Amount Type for reporting',14,'D','The amount type to report on: Quantity, Credit Only, Debit Only, Balance (expected sign) or Balance (accounted sign). "Expected sign" adjusts the sign of the result based on the Account Type and Expected Sign of each Account Element, whereas "accounted sign" always returns DR-CR.','Y','Y','Y','N','N','N','N','N','Amount Type',110,TO_TIMESTAMP('2009-10-02 12:09:56','YYYY-MM-DD HH24:MI:SS'),100) -; - --- 02/10/2009 12:09:57 PM --- Add signed amount type to fin report -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58041 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 02/10/2009 12:11:17 PM --- Add signed amount type to fin report -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,Updated,UpdatedBy) VALUES (0,58553,58042,0,374,TO_TIMESTAMP('2009-10-02 12:11:16','YYYY-MM-DD HH24:MI:SS'),100,'PA Period Type',14,'D','The Period Type to report on: Period, Year, Total or Natural. Natural = Year for P & L accounts, Total for Balance Sheet accounts.','Y','Y','Y','N','N','N','N','Y','Period Type',115,TO_TIMESTAMP('2009-10-02 12:11:16','YYYY-MM-DD HH24:MI:SS'),100) -; - --- 02/10/2009 12:11:17 PM --- Add signed amount type to fin report -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58042 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 02/10/2009 12:11:26 PM --- Add signed amount type to fin report -UPDATE AD_Field SET IsActive='N',Updated=TO_TIMESTAMP('2009-10-02 12:11:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=4760 -; - --- 02/10/2009 12:13:14 PM --- Add signed amount type to fin report -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,DisplayLogic,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,Updated,UpdatedBy) VALUES (0,58555,58043,0,376,TO_TIMESTAMP('2009-10-02 12:13:13','YYYY-MM-DD HH24:MI:SS'),100,'PA Amount Type for reporting',14,'@LineType@=S','D','The amount type to report on: Quantity, Credit Only, Debit Only, Balance (expected sign) or Balance (accounted sign). "Expected sign" adjusts the sign of the result based on the Account Type and Expected Sign of each Account Element, whereas "accounted sign" always returns DR-CR.','Y','Y','Y','N','N','N','N','N','Amount Type',180,TO_TIMESTAMP('2009-10-02 12:13:13','YYYY-MM-DD HH24:MI:SS'),100) -; - --- 02/10/2009 12:13:14 PM --- Add signed amount type to fin report -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58043 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 02/10/2009 12:13:46 PM --- Add signed amount type to fin report -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,DisplayLogic,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,Updated,UpdatedBy) VALUES (0,58556,58044,0,376,TO_TIMESTAMP('2009-10-02 12:13:45','YYYY-MM-DD HH24:MI:SS'),100,'PA Period Type',14,'@LineType@=S','D','The Period Type to report on: Period, Year, Total or Natural. Natural = Year for P & L accounts, Total for Balance Sheet accounts.','Y','Y','Y','N','N','N','N','Y','Period Type',185,TO_TIMESTAMP('2009-10-02 12:13:45','YYYY-MM-DD HH24:MI:SS'),100) -; - --- 02/10/2009 12:13:46 PM --- Add signed amount type to fin report -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58044 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 02/10/2009 12:13:57 PM --- Add signed amount type to fin report -UPDATE AD_Field SET IsActive='N',Updated=TO_TIMESTAMP('2009-10-02 12:13:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=5807 -; - --- 02/10/2009 12:16:06 PM --- Add signed amount type to fin report -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,58557,54062,0,17,53328,535,'PAAmountType',TO_TIMESTAMP('2009-10-02 12:16:05','YYYY-MM-DD HH24:MI:SS'),100,'PA Amount Type for reporting','D',1,'The amount type to report on: Quantity, Credit Only, Debit Only, Balance (expected sign) or Balance (accounted sign). "Expected sign" adjusts the sign of the result based on the Account Type and Expected Sign of each Account Element, whereas "accounted sign" always returns DR-CR.','Y','Y','N','N','N','N','N','N','N','N','N','N','Y','Amount Type',0,TO_TIMESTAMP('2009-10-02 12:16:05','YYYY-MM-DD HH24:MI:SS'),100,1) -; - --- 02/10/2009 12:16:06 PM --- Add signed amount type to fin report -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58557 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 02/10/2009 12:16:10 PM --- Add signed amount type to fin report -ALTER TABLE I_ReportLine ADD COLUMN PAAmountType CHAR(1) DEFAULT NULL -; - --- 02/10/2009 12:16:40 PM --- Add signed amount type to fin report -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,58558,54061,0,17,53327,535,'PAPeriodType',TO_TIMESTAMP('2009-10-02 12:16:34','YYYY-MM-DD HH24:MI:SS'),100,'PA Period Type','D',1,'The Period Type to report on: Period, Year, Total or Natural. Natural = Year for P & L accounts, Total for Balance Sheet accounts.','Y','Y','N','N','N','N','N','N','N','N','N','N','Y','Period Type',0,TO_TIMESTAMP('2009-10-02 12:16:34','YYYY-MM-DD HH24:MI:SS'),100,1) -; - --- 02/10/2009 12:16:40 PM --- Add signed amount type to fin report -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58558 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 02/10/2009 12:16:43 PM --- Add signed amount type to fin report -ALTER TABLE I_ReportLine ADD COLUMN PAPeriodType CHAR(1) DEFAULT NULL -; - --- 02/10/2009 12:16:52 PM --- Add signed amount type to fin report -UPDATE AD_Column SET IsActive='N',Updated=TO_TIMESTAMP('2009-10-02 12:16:52','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=7954 -; - --- 02/10/2009 12:18:35 PM --- Add signed amount type to fin report -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,Updated,UpdatedBy) VALUES (0,58557,58045,0,444,TO_TIMESTAMP('2009-10-02 12:18:35','YYYY-MM-DD HH24:MI:SS'),100,'PA Amount Type for reporting',14,'D','The amount type to report on: Quantity, Credit Only, Debit Only, Balance (expected sign) or Balance (accounted sign). "Expected sign" adjusts the sign of the result based on the Account Type and Expected Sign of each Account Element, whereas "accounted sign" always returns DR-CR.','Y','Y','Y','N','N','N','N','N','Amount Type',160,TO_TIMESTAMP('2009-10-02 12:18:35','YYYY-MM-DD HH24:MI:SS'),100) -; - --- 02/10/2009 12:18:35 PM --- Add signed amount type to fin report -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58045 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 02/10/2009 12:18:56 PM --- Add signed amount type to fin report -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,Updated,UpdatedBy) VALUES (0,58558,58046,0,444,TO_TIMESTAMP('2009-10-02 12:18:55','YYYY-MM-DD HH24:MI:SS'),100,'PA Period Type',14,'D','The Period Type to report on: Period, Year, Total or Natural. Natural = Year for P & L accounts, Total for Balance Sheet accounts.','Y','Y','Y','N','N','N','N','N','Period Type',165,TO_TIMESTAMP('2009-10-02 12:18:55','YYYY-MM-DD HH24:MI:SS'),100) -; - --- 02/10/2009 12:18:56 PM --- Add signed amount type to fin report -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58046 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 02/10/2009 12:19:04 PM --- Add signed amount type to fin report -UPDATE AD_Field SET IsActive='N',Updated=TO_TIMESTAMP('2009-10-02 12:19:04','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=6043 -; - --- 02/10/2009 1:48:32 PM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53328,53546,TO_TIMESTAMP('2009-10-02 13:48:30','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Quantity (accounted sign)',TO_TIMESTAMP('2009-10-02 13:48:30','YYYY-MM-DD HH24:MI:SS'),100,'R') -; - --- 02/10/2009 1:48:32 PM --- Add signed amount type to fin report -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53546 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 02/10/2009 1:48:43 PM --- Add signed amount type to fin report -UPDATE AD_Ref_List SET Name='Quantity (expected sign)',Updated=TO_TIMESTAMP('2009-10-02 13:48:43','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Ref_List_ID=53544 -; - --- 02/10/2009 1:48:43 PM --- Add signed amount type to fin report -UPDATE AD_Ref_List_Trl SET IsTranslated='N' WHERE AD_Ref_List_ID=53544 -; - -update pa_reportline set paamounttype = substr(amounttype, 1,1), paperiodtype = substr(amounttype,2,1); - -update pa_reportcolumn set paamounttype = substr(amounttype, 1,1), paperiodtype = substr(amounttype,2,1); - - - diff --git a/migration/354a-trunk/postgresql/660_BF_2944056_FixSubstituteRelatedInfoProduct.sql b/migration/354a-trunk/postgresql/660_BF_2944056_FixSubstituteRelatedInfoProduct.sql deleted file mode 100644 index eae9fb4b15..0000000000 --- a/migration/354a-trunk/postgresql/660_BF_2944056_FixSubstituteRelatedInfoProduct.sql +++ /dev/null @@ -1,28 +0,0 @@ ---- BF 2944056 https://sourceforge.net/tracker/?func=detail&aid=2944056&group_id=176962&atid=879332 ---- Fix Related and Substitute Inventory Quantity in the InfoProduct window - -DROP VIEW M_PRODUCT_SUBSTITUTERELATED_V; - -CREATE OR REPLACE VIEW M_PRODUCT_SUBSTITUTERELATED_V AS -SELECT s.ad_client_id, s.ad_org_id, s.isactive, s.created, s.createdby, s.updated, s.updatedby, - s.m_product_id, s.substitute_id, 'S' AS rowtype, mp.name, sum(ms.qtyonhand - ms.qtyreserved) AS qtyavailable, sum(ms.qtyonhand) AS qtyonhand, sum(ms.qtyreserved) AS qtyreserved, -ROUND(MAX(mpr.pricestd),0) AS pricestd, mpr.m_pricelist_version_id, mw.m_warehouse_id, org.name AS orgname - FROM m_substitute s - JOIN m_storage ms ON ms.m_product_id = s.substitute_id - JOIN m_product mp ON ms.m_product_id = mp.m_product_id - JOIN m_locator ml ON ms.m_locator_id = ml.m_locator_id - JOIN m_warehouse mw ON ml.m_warehouse_id = mw.m_warehouse_id - JOIN m_productprice mpr ON ms.m_product_id = mpr.m_product_id - JOIN ad_org org ON org.ad_org_id = mw.ad_org_id - GROUP BY s.ad_client_id, s.ad_org_id, s.isactive, s.created, s.createdby, s.updated, s.updatedby, s.m_product_id, s.substitute_id, mw.m_warehouse_id, mpr.m_pricelist_version_id, org.name, mp.name -UNION - SELECT r.ad_client_id, r.ad_org_id, r.isactive, r.created, r.createdby, r.updated, r.updatedby, - r.m_product_id, r.relatedproduct_id AS substitute_id, 'R' AS rowtype, mp.name, sum(ms.qtyonhand - ms.qtyreserved) AS qtyavailable, sum(ms.qtyonhand) AS qtyonhand, sum(ms.qtyreserved) AS qtyreserved, round(MAX(mpr.pricestd),0) AS pricestd, mpr.m_pricelist_version_id, mw.m_warehouse_id, org.name AS orgname - FROM m_relatedproduct r - JOIN m_storage ms ON ms.m_product_id = r.relatedproduct_id - JOIN m_product mp ON ms.m_product_id = mp.m_product_id - JOIN m_locator ml ON ms.m_locator_id = ml.m_locator_id - JOIN m_warehouse mw ON ml.m_warehouse_id = mw.m_warehouse_id - JOIN m_productprice mpr ON ms.m_product_id = mpr.m_product_id - JOIN ad_org org ON org.ad_org_id = mw.ad_org_id - GROUP BY r.ad_client_id, r.ad_org_id, r.isactive, r.created, r.createdby, r.updated, r.updatedby, r.m_product_id, r.relatedproduct_id, mw.m_warehouse_id, mpr.m_pricelist_version_id, org.name, mp.name; \ No newline at end of file diff --git a/migration/354a-trunk/postgresql/661_FR_2945715_AdvancedSearchMsg.sql b/migration/354a-trunk/postgresql/661_FR_2945715_AdvancedSearchMsg.sql deleted file mode 100644 index 5209053c37..0000000000 --- a/migration/354a-trunk/postgresql/661_FR_2945715_AdvancedSearchMsg.sql +++ /dev/null @@ -1,30 +0,0 @@ --- Feb 8, 2010 3:00:56 PM EST --- Advanced search -INSERT INTO AD_Message (AD_Client_ID,AD_Message_ID,AD_Org_ID,Created,CreatedBy,EntityType,IsActive,MsgText,MsgType,Updated,UpdatedBy,Value) VALUES (0,53092,0,TO_TIMESTAMP('2010-02-08 15:00:52','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','And/Or','I',TO_TIMESTAMP('2010-02-08 15:00:52','YYYY-MM-DD HH24:MI:SS'),100,'And/Or') -; - --- Feb 8, 2010 3:00:57 PM EST --- Advanced search -INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=53092 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) -; - --- Feb 8, 2010 3:01:21 PM EST --- Advanced search -INSERT INTO AD_Message (AD_Client_ID,AD_Message_ID,AD_Org_ID,Created,CreatedBy,EntityType,IsActive,MsgText,MsgType,Updated,UpdatedBy,Value) VALUES (0,53093,0,TO_TIMESTAMP('2010-02-08 15:01:19','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','AND','I',TO_TIMESTAMP('2010-02-08 15:01:19','YYYY-MM-DD HH24:MI:SS'),100,'AND') -; - --- Feb 8, 2010 3:01:21 PM EST --- Advanced search -INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=53093 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) -; - --- Feb 8, 2010 3:01:42 PM EST --- Advanced search -INSERT INTO AD_Message (AD_Client_ID,AD_Message_ID,AD_Org_ID,Created,CreatedBy,EntityType,IsActive,MsgText,MsgType,Updated,UpdatedBy,Value) VALUES (0,53094,0,TO_TIMESTAMP('2010-02-08 15:01:34','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','OR','I',TO_TIMESTAMP('2010-02-08 15:01:34','YYYY-MM-DD HH24:MI:SS'),100,'OR') -; - --- Feb 8, 2010 3:01:42 PM EST --- Advanced search -INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=53094 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) -; - diff --git a/migration/354a-trunk/postgresql/662_BT_2944388.sql b/migration/354a-trunk/postgresql/662_BT_2944388.sql deleted file mode 100644 index 497088507c..0000000000 --- a/migration/354a-trunk/postgresql/662_BT_2944388.sql +++ /dev/null @@ -1,5 +0,0 @@ --- Feb 8, 2010 4:05:08 PM EST --- BF2944388 -UPDATE AD_Column SET IsIdentifier='Y', SeqNo=1,Updated=TO_TIMESTAMP('2010-02-08 16:05:08','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=57563 -; - diff --git a/migration/354a-trunk/postgresql/663_FR2949534_ResetAllocation.sql b/migration/354a-trunk/postgresql/663_FR2949534_ResetAllocation.sql deleted file mode 100644 index 0b42e30c42..0000000000 --- a/migration/354a-trunk/postgresql/663_FR2949534_ResetAllocation.sql +++ /dev/null @@ -1,35 +0,0 @@ --- Feb 11, 2010 3:41:40 PM EST --- Reset Allocation -INSERT INTO AD_Process (AccessLevel,AD_Client_ID,AD_Org_ID,AD_Process_ID,Classname,Created,CreatedBy,Description,EntityType,Help,IsActive,IsBetaFunctionality,IsDirectPrint,IsReport,IsServerProcess,Name,ShowHelp,Statistic_Count,Statistic_Seconds,Updated,UpdatedBy,Value) VALUES ('2',0,0,53199,'org.compiere.process.AllocationReset',TO_TIMESTAMP('2010-02-11 15:41:38','YYYY-MM-DD HH24:MI:SS'),100,'Reset (delete) allocation of invoices to payments','D','Delete individual allocation. In contrast to "Reverse", the allocation is deleted (no trace), if the period is open.','Y','N','N','N','N','Reset Allocation Direct','Y',0,0,TO_TIMESTAMP('2010-02-11 15:41:38','YYYY-MM-DD HH24:MI:SS'),100,'C_Allocation_Reset_Direct') -; - --- Feb 11, 2010 3:41:40 PM EST --- Reset Allocation -INSERT INTO AD_Process_Trl (AD_Language,AD_Process_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_ID=53199 AND NOT EXISTS (SELECT * FROM AD_Process_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Process_ID=t.AD_Process_ID) -; - --- Feb 11, 2010 3:43:37 PM EST --- Reset Allocation -UPDATE AD_Field SET SeqNo=160,IsDisplayed='Y' WHERE AD_Field_ID=10431 -; - --- Feb 11, 2010 3:44:45 PM EST --- Reset Allocation -UPDATE AD_Column SET AD_Process_ID=53199, AD_Reference_ID=28,Updated=TO_TIMESTAMP('2010-02-11 15:44:45','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=12314 -; - --- Feb 11, 2010 3:44:49 PM EST --- Reset Allocation -UPDATE AD_Field SET Description='Reset (delete) allocation of invoices to payments', Name='Reset Allocation',Updated=TO_TIMESTAMP('2010-02-11 15:44:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=10431 -; - --- Feb 11, 2010 3:44:49 PM EST --- Reset Allocation -UPDATE AD_Field_Trl SET IsTranslated='N' WHERE AD_Field_ID=10431 -; - --- Feb 11, 2010 3:50:09 PM EST --- Reset Allocation -UPDATE AD_Column SET IsAlwaysUpdateable='Y',Updated=TO_TIMESTAMP('2010-02-11 15:50:09','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=12314 -; - diff --git a/migration/354a-trunk/postgresql/664_FR2934358_FixedTyposOnElements.sql b/migration/354a-trunk/postgresql/664_FR2934358_FixedTyposOnElements.sql deleted file mode 100644 index cb8cf1e344..0000000000 --- a/migration/354a-trunk/postgresql/664_FR2934358_FixedTyposOnElements.sql +++ /dev/null @@ -1,260 +0,0 @@ -UPDATE AD_ELEMENT SET DESCRIPTION='Trees are used for (financial) reporting and security access (via role)', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=134; -UPDATE AD_ELEMENT SET DESCRIPTION='Trees are used for (financial) reporting', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID IN (131,135,136,137,2514,2515); -UPDATE AD_ELEMENT SET HELP='A Callout allow you to create Java extensions to perform certain tasks always after a value changed. Callouts should not be used for validation but consequences of a user selecting a certain value. -The callout is a Java class implementing org.compiere.model.Callout and a method name to call. Example: "org.compiere.model.CalloutRequest.copyText" instantiates the class "CalloutRequest" and calls the method "copyText". You can have multiple callouts by separating them via a semicolon', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=224; -UPDATE AD_ELEMENT SET HELP='The Costing Method indicates how costs will be calculated (Standard, Average, Lifo, FiFo). The default costing method is defined on accounting schema level and can be optionally overwritten in the product category. The costing method cannot conflict with the Material Movement Policy (defined on Product Category).', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=241; -UPDATE AD_ELEMENT SET NAME='Records deletable',PRINTNAME='Records deletable', HELP='The Records Deletable checkbox indicates if a record can be deleted from the database. If records cannot be deleted, you can only deselect the Active flag', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=366; -UPDATE AD_ELEMENT SET HELP='The Sales Rep checkbox indicates if this business partner is a sales representative. A sales representative may also be an employee, but does not need to be.' -, PO_HELP='The Sales Rep checkbox indicates if this business partner is a company agent. A company agent may also be an employee, but does not need to be.' -, UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=409; -UPDATE AD_ELEMENT SET NAME='Updatable',PRINTNAME='Updatable', HELP='The Updatable checkbox indicates if a field can be updated by the user.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=422; -UPDATE AD_ELEMENT SET NAME='User updatable',PRINTNAME='User updatable', HELP='The User Updatable checkbox indicate if the user can update this field.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=423; -UPDATE AD_ELEMENT SET HELP='The Credit Limit indicates the total amount allowed "on account" in primary accounting currency. If the Credit Limit is 0, no check is performed. Credit Management is based on the Total Open Amount, which includes Vendor activities.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=553; -UPDATE AD_ELEMENT SET HELP='The Order is a control document. The Order is complete when the quantity ordered is the same as the quantity shipped and invoiced. When you close an order, unshipped (backordered) quantities are cancelled.' -, PO_HELP='The Purchase Order is a control document. The Purchase Order is complete when the quantity ordered is the same as the quantity shipped and invoiced. When you close an order, unshipped (backordered) quantities are cancelled.' -, UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=558; -UPDATE AD_ELEMENT SET HELP='The Enforce Price Limit check box indicates that prices cannot be below the limit price in Orders and Invoices. This can be overwritten, if the role allows this.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=882; -UPDATE AD_ELEMENT SET HELP='The SO Sub Type indicates the type of sales order this document refers to. This field only appears when the Document Base Type is Sales Order. The selection made here will determine which documents will be generated when an order is processed and which documents must be generated manually or in batches.
-The following outlines this process.
-SO Sub Type of Standard Order will generate just the Order document when the order is processed.
-The Delivery Note, Invoice and Receipt must be generated via other processes.
-SO Sub Type of Warehouse Order will generate the Order and Delivery Note.
The Invoice and Receipt must be generated via other processes.
-SO Sub Type of Credit Order will generate the Order, Delivery Note and Invoice.
The Receipt must be generated via other processes.
-SO Sub Type of POS (Point of Sale) will generate all document', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=1018; -UPDATE AD_ELEMENT SET DESCRIPTION='Account for Vendor Service Liability', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=1057; -UPDATE AD_ELEMENT SET HELP='The Days After Due Date indicates the number of days after the payment due date to initiate dunning. If the number is negative, it includes not the not due invoices.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=1092; -UPDATE AD_ELEMENT SET HELP='The Relative Priority indicates the location to pick from first if an product is stored in more than one location. (100 = highest priority, 0 = lowest). For outgoing shipments, the location is picked with the highest priority where the entire quantity can be shipped from. If there is no location, the location with the highest priority is used. -The Priority is ignored for products with Guarantee Date (always the oldest first) or if a specific instance is selected. -Incoming receipts are stored at the location with the highest priority, if not explicitly selected.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=1145; -UPDATE AD_ELEMENT SET HELP='When processing a web order, a confirmation is sent to the EMail address of the customer from the request EMail address copying this email address when entered.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=1993; -UPDATE AD_ELEMENT SET HELP='Web Click Details', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2007; -UPDATE AD_ELEMENT SET HELP='Attributes are specific to a Product Attribute Set (e.g. Size for T-Shirts: S,M,L). If you have multiple attributes and want to search under a common attribute, you define a search attribute. Example: have one Size search attribute combining the values of all different sizes (Size for Dress Shirt XL,L,M,S,XS). The Attribute Search allows you to have all values available for selection. This eases the maintenance of the individual product attribute.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2025; -UPDATE AD_ELEMENT SET DESCRIPTION='Included Tab in this Tab (Master Detail)', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2026; -UPDATE AD_ELEMENT SET HELP='Internal (Operating System) Name of the Printer; Please mote that the printer name may be different on different clients. Enter a printer name, which applies to ALL clients (e.g. printer on a server).

-If none is entered, the default printer is used. You specify your default printer when you log in. You can also change the default printer in Preferences.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2051; -UPDATE AD_ELEMENT SET DESCRIPTION='Assignment to (transaction) Organization', HELP='Assignment to the transaction organization (cost center).', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2072; -UPDATE AD_ELEMENT SET HELP='"You can purchase professional support from Adempiere, Inc. or their partners. See http://www.adempiere.com for details. -"', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2124; -UPDATE AD_ELEMENT SET HELP='The Type of data Replication determines the direction of the data replication.
-Reference means that the data in this system is read only ->
-Local means that the data in this system is not replicated to other systems -
-Merge means that the data in this system is synchronized with the other system <->
', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2137; -UPDATE AD_ELEMENT SET HELP='If selected, public users can read/view the entry. Public are users without a Role in the system. Use security rules for more specific access control.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2139; -UPDATE AD_ELEMENT SET HELP='If selected, public users can write/create entries. Public are users without a Role in the system. Use security rules for more specific access control.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2140; -UPDATE AD_ELEMENT SET HELP='Set up knowledge categories and values as a search aid. Examples are Release Version, Product Area, etc. Knowledge Category values act like keywords.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2141; -UPDATE AD_ELEMENT SET DESCRIPTION='Related Entry for this Entry' -, HELP='Related Knowledge Entry for this Knowledge Entry' -, UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2145; -UPDATE AD_ELEMENT SET HELP='The Source of a Knowledge Entry is a pointer to the originating system. The Knowledge Entry has an additional entry (Description URL) for more detailed info.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2146; -UPDATE AD_ELEMENT SET DESCRIPTION='Knowledge Keyword Synonym', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2147; -UPDATE AD_ELEMENT SET HELP='Topic or Discussion Thead', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2148; -UPDATE AD_ELEMENT SET NAME='Knowledge Type', HELP='Area of knowledge - A Type has multiple Topics', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2149; -UPDATE AD_ELEMENT SET DESCRIPTION='Name of the Project Cycle Step', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2165; -UPDATE AD_ELEMENT SET DESCRIPTION='Minimum Amount in Document Currency', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2177; -UPDATE AD_ELEMENT SET DESCRIPTION='Minimum number of guarantee days', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2197; -UPDATE AD_ELEMENT SET HELP='If a line is Description Only, e.g. Product Inventory is not corrected. No accounting transactions are created and the amount or totals are not included in the document. This for including descriptive detail lines, e.g. for an Work Order.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2183; -UPDATE AD_ELEMENT SET HELP='This allows to have the three general situations of "not open" - "open" - "closed"', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2201; -UPDATE AD_ELEMENT SET NAME='Calculate Maximum (?)', DESCRIPTION='Calculate the maximum amount', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2207; -UPDATE AD_ELEMENT SET HELP='A running total creates a sum at the end of a page and on the top of the next page for all columns, which have a Sum function. You should define running total only once per format.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2212; -UPDATE AD_ELEMENT SET DESCRIPTION='Electronic Funds Transfer Payee Account Information', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2233; -UPDATE AD_ELEMENT SET DESCRIPTION='Shelf Life Days remaining to Guarantee Date (minus minimum guarantee days)', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2237; -UPDATE AD_ELEMENT SET HELP='Minimum Shelf Life of products with Guarantee Date instance. If > 0 you cannot select products with a shelf life ((Guarantee Date-Today) / Guarantee Days) less than the minimum shelf life, unless you select "Show All"', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2240; -UPDATE AD_ELEMENT SET HELP='Minimum Shelf Life of products with Guarantee Date instance. If > 0 you cannot select products with a shelf life less than the minimum shelf life, unless you select "Show All"', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2264; -UPDATE AD_ELEMENT SET DESCRIPTION='If selected, the product is displayed in the initial or any empty search' -, HELP='In the display of products in the Web Store, the product is displayed in the initial view or if no search criteria are entered. To be displayed, the product must be in the price list used.' -, UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2277; -UPDATE AD_ELEMENT SET HELP='The loader definition provides the parameters to load bank statements from EFT formats like SWIFT (MT940) or OFX', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2283; -UPDATE AD_ELEMENT SET DESCRIPTION='Date format used in the input format', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2286; -UPDATE AD_ELEMENT SET HELP='Activity Result of the execution of the Workflow Process Instance', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2308; -UPDATE AD_ELEMENT SET HELP='History of changes of the Workflow Process Activity', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2310; -UPDATE AD_ELEMENT SET HELP='Semantics for multiple outgoing Transitions for a Node/Activity. AND represents multiple concurrent threads - XOR represents the first transition with a true Transition condition.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2337; -UPDATE AD_ELEMENT SET HELP='You can create a bid for a topic. Depending on the type, the highest bidder wins the Topic - or you participate in funding for a Topic.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2360; -UPDATE AD_ELEMENT SET HELP='Available Funds (from Payments) and Committed or Uncommitted funds for Bids', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2362; -UPDATE AD_ELEMENT SET HELP='Available Funds (for Payments) and Committed or Uncommitted funds from Offers', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2364; -UPDATE AD_ELEMENT SET DESCRIPTION='An Error occurred in the execution', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2395; -UPDATE AD_ELEMENT SET DESCRIPTION='The response can have just the total amount for the RfQ', HELP='If not selected, the response must be provided per line', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2403; -UPDATE AD_ELEMENT SET DESCRIPTION='Are Responses to the Request for Quotation accepted', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2404; -UPDATE AD_ELEMENT SET DESCRIPTION='The response is the selected winner', HELP='The response is the selected winner. If selected on Response level, the line selections are ignored.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2405; -UPDATE AD_ELEMENT SET DESCRIPTION='Product used to determine the price of the membership for the topic type', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2415; -UPDATE AD_ELEMENT SET HELP='Consecutive range to', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2455; -UPDATE AD_ELEMENT SET HELP='Define the method how the next occurrence is calculated', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2457; -UPDATE AD_ELEMENT SET HELP='If selected and if the window / tab is not read only, you can always update the column. This might be useful for comments, etc.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2468; -UPDATE AD_ELEMENT SET DESCRIPTION='Elapsed Time in milli seconds', HELP='Elapsed Time in milli seconds', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2474; -UPDATE AD_ELEMENT SET DESCRIPTION='Distribution Run Lines define Distribution List, the Product and Quantities', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2486; -UPDATE AD_ELEMENT SET HELP='Maintain and allow to transfer general statistics (number of clients, orgs, business partners, users, products, invoices) to get a better feeling for the application use. This information is not published.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2489; -UPDATE AD_ELEMENT SET HELP='Forecast of Product Quantity by Period', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2499; -UPDATE AD_ELEMENT SET HELP='The Total Open Balance Amount is the calculated open item amount for Customer and Vendor activity. If the Balance is below zero, we owe the Business Partner. The amount is used for Credit Management. -Invoices and Payment Allocations determine the Open Balance (i.e. not Orders or Payments).', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2562; -UPDATE AD_ELEMENT SET HELP='The Attribute Value type determines the data/validation type', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2574; -UPDATE AD_ELEMENT SET DESCRIPTION='Value set by Migration for post-Migration tasks.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2625; -UPDATE AD_ELEMENT SET DESCRIPTION='Type of Workflow', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2626; -UPDATE AD_ELEMENT SET HELP='When a document is due for too long without activity, a reminder is sent. 0 means no reminders. -The Remind Days are the days when the next email reminder is sent.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2631; -UPDATE AD_ELEMENT SET HELP='Internal name of the transaction', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2655; -UPDATE AD_ELEMENT SET HELP='List of classes implementing the interface org.compiere.model.ModelValidator, separated by semicolon. -The class is called for the client and allows to validate documents in the prepare stage and monitor model changes.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2670; -UPDATE AD_ELEMENT SET HELP='This allows to have multiple closed status', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2723; -UPDATE AD_ELEMENT SET HELP='The EMail address is used to send mails to users of the web store', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2731; -UPDATE AD_ELEMENT SET DESCRIPTION='Assignment of Employee (User) to Job Position', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2763; -UPDATE AD_ELEMENT SET HELP='Subscriber to invite to respond to RfQs', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2377; -UPDATE AD_ELEMENT SET HELP='Once per operation', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2779; -UPDATE AD_ELEMENT SET HELP='Change requests for a Bill of Materials. They can be automatically created from Requests, if enabled in the Request Type and the Request Group refers to a Bill of Materials', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2785; -UPDATE AD_ELEMENT SET HELP='The Bill of Material Component determines what products, services and outside processing is included in producing the Product. It references the operation and determines it''s sequence.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2786; -UPDATE AD_ELEMENT SET HELP='Phantom Component are not stored and produced with the product. This is an option to avoid maintaining an Engineering and Manufacturing Bill of Materials.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2788; -UPDATE AD_ELEMENT SET DESCRIPTION='Optional Lead Time offset before starting production', HELP='Optional Lead Time offset before starting production', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2789; -UPDATE AD_ELEMENT SET HELP='If selected, the user has full access to the Business Partner (BP) information (Business Documents like Orders, Invoices - Requests) or resources (Assets, Downloads). If you deselect it, the user has no access rights unless, you explicitly grant it in tab "BP Access"', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2835; -UPDATE AD_ELEMENT SET DESCRIPTION='User/contact access to Business Partner information and resources', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2836; -UPDATE AD_ELEMENT SET HELP='If selected, the accounting consequences are immediately generated when completing a document. Otherwise the document is posted by a batch process. You should select this only if you are testing.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2843; -UPDATE AD_ELEMENT SET HELP='Note that the cost queue may not be the same as the physical movement cost queue due to differences in costing level and warehouse priority.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2845; -UPDATE AD_ELEMENT SET HELP='Account used for posting matched product (item) expenses (e.g. AP Invoice, Invoice Match). You would use a different account then Product Expense, if you want to differentiate service related costs from item related costs. The balance on the clearing account should be zero and accounts for the timing difference between invoice receipt and matching.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2847; -UPDATE AD_ELEMENT SET HELP='If selected, you will post service related revenue to a different receivables account and service related cost to a different payables account.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2849; -UPDATE AD_ELEMENT SET HELP='Enter the number of records the query will return without confirmation to avoid unnecessary system load. If 0, the system default of 500 is used.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2853; -UPDATE AD_ELEMENT SET HELP='Enter the number of records a user will be able to query to avoid unnecessary system load. If 0, no restrictions are imposed.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2854; -UPDATE AD_ELEMENT SET HELP='The Posting Type Commitments is created when posting Purchase Orders; The Posting Type Reservation is created when posting Requisitions. This is used for budgetary control.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2860; -UPDATE AD_ELEMENT SET HELP='Accounting related information for reconciliation with documents. It includes all revenue/expense and tax entries as a base for detail reporting', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2864; -UPDATE AD_ELEMENT SET HELP='If selected AP tax is handled as expense, otherwise it is handled as a VAT credit.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2870; -UPDATE AD_ELEMENT SET HELP='Budget Control allows you to restrict the use of expenditures, commitments (Purchase Orders) and reservations (Requisitions). If defined, you may not be able to approve Requisitions, Purchase Orders, or AP Invoices.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2871; -UPDATE AD_ELEMENT SET HELP='A user defined accounting element refers to a Adempiere table. This allows to use any table content as an accounting dimension (e.g. Project Task). Note that User Elements are optional and are populated from the context of the document (i.e. not requested)', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID IN (2877,2878); -UPDATE AD_ELEMENT SET HELP='Visual representation of performance by color. The Schema has often three levels (e.g. red-yellow-green). Adempiere support two levels (e.g. red-green) or four levels (e.g. gray-bronze-silver-gold). Note that Measures without a goal are represented white. The percentages could be between 0 and unlimited (i.e. above 100%).', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2903; -UPDATE AD_ELEMENT SET DESCRIPTION='Performance Ratio', HELP='Calculation instruction set for a performance ratio', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2919; -UPDATE AD_ELEMENT SET DESCRIPTION='Performance Ratio Used', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2929; -UPDATE AD_ELEMENT SET NAME='Next Maintenance',PRINTNAME='Next Maintenance', DESCRIPTION='Next Maintenance Date', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2932; -UPDATE AD_ELEMENT SET DESCRIPTION='Next Maintenance Unit', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2934; -UPDATE AD_ELEMENT SET HELP='The Meta Robots Tag define on how a search engines robot should handle this page and the following ones. It defines two keywords: (NO)INDEX which defines whether or not to index this content and (NO)FOLLOW which defines whether or not to follow links. The most common combination is INDEX,FOLLOW which will force a search robot to index the content and follow links and images.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2975; -UPDATE AD_ELEMENT SET DESCRIPTION='Contains list of elements separated by CR', HELP='Contains a list of elements this template uses separated by a Carriage Return. Last line should be empty', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2983; -UPDATE AD_ELEMENT SET HELP='A Container defines the abstract level around the content, it defines how the content gets displayed, indexed and stored.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2985; -UPDATE AD_ELEMENT SET DESCRIPTION='External Link (URL) for the Container', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2988; -UPDATE AD_ELEMENT SET HELP='This table contains all the media content like images, flash movies etc.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=2997; -UPDATE AD_ELEMENT SET HELP='If we have a block in content where announce content and also sponsored links we should mention the sponsored ones', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=3007; -UPDATE AD_ELEMENT SET HELP='Media Server list to which content should get transferred', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=3009; -UPDATE AD_ELEMENT SET HELP='A container element defines the smallest definition of content, i.e. the headline, the content etc.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID IN (3013,3023); -UPDATE AD_ELEMENT SET HELP='The date the revenue recognition starts.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=3032; -UPDATE AD_ELEMENT SET DESCRIPTION='Container Stage Template Table', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=3050; -UPDATE AD_ELEMENT SET HELP='The entity type determines the ownership of Application Dictionary entries. The types "Dictionary" and "Adempiere" should not be used and are maintained by Adempiere (i.e. all changes are reversed during migration to the current definition).', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=3052; -UPDATE AD_ELEMENT SET HELP='If your application requires additional jar files, enter them here. The jar files must be located in the $ADEMPIERE_HOME/lib directory.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=3054; -UPDATE AD_ELEMENT SET HELP='Keyword not to be indexed, optional restricted to specific Document Type, Container or Request Type', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=3078; -UPDATE AD_ELEMENT SET DESCRIPTION='Open Debit in document currency & rate', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=3083; -UPDATE AD_ELEMENT SET DESCRIPTION='Open Credit in document currency & rate', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=3084; -UPDATE AD_ELEMENT SET DESCRIPTION='Open Balance in document currency & rate', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=3085; -UPDATE AD_ELEMENT SET HELP='The dunning letter with this level includes all due invoices.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=3088; -UPDATE AD_ELEMENT SET HELP='The dunning letter with this level includes all not due invoices.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=3089; -UPDATE AD_ELEMENT SET HELP='The LDAP Server allows third party software (e.g. Apache) to use the users defined in the system to authenticate and authorize them. There is only one server per Adempiere system. The "o" is the Client key and the optional "ou" is the Interest Area key.', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=3093; -UPDATE AD_ELEMENT SET PRINTNAME=NAME, DESCRIPTION='Table to check whether the migration script has been applied', UPDATED=TO_TIMESTAMP('2010-01-13 10:38:15','YYYY-MM-DD HH24:MI:SS') -WHERE AD_ELEMENT_ID=53350; -COMMIT; diff --git a/migration/354a-trunk/postgresql/665_FR2952245_ImportDataPlanning.sql b/migration/354a-trunk/postgresql/665_FR2952245_ImportDataPlanning.sql deleted file mode 100644 index c7298175da..0000000000 --- a/migration/354a-trunk/postgresql/665_FR2952245_ImportDataPlanning.sql +++ /dev/null @@ -1,2069 +0,0 @@ --- Feb 15, 2010 1:05:07 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Window (AD_Client_ID,AD_Org_ID,AD_Window_ID,Created,CreatedBy,EntityType,IsActive,IsBetaFunctionality,IsDefault,IsSOTrx,Name,Processing,Updated,UpdatedBy,WindowType) VALUES (0,0,53109,TO_TIMESTAMP('2010-02-15 13:05:05','YYYY-MM-DD HH24:MI:SS'),0,'EE01','Y','N','N','Y','Import Product Planning','N',TO_TIMESTAMP('2010-02-15 13:05:05','YYYY-MM-DD HH24:MI:SS'),0,'M') -; - --- Feb 15, 2010 1:05:07 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Window_Trl (AD_Language,AD_Window_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Window_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Window t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Window_ID=53109 AND NOT EXISTS (SELECT * FROM AD_Window_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Window_ID=t.AD_Window_ID) -; - --- Feb 15, 2010 1:05:11 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Table (AD_Client_ID,AD_Org_ID,AD_Table_ID,AD_Window_ID,AccessLevel,Created,CreatedBy,EntityType,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,Name,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53260,53109,'2',TO_TIMESTAMP('2010-02-15 13:05:09','YYYY-MM-DD HH24:MI:SS'),0,'EE01','Y','N','Y','N','N','N','Import Product Planning','L','I_ProductPlanning',TO_TIMESTAMP('2010-02-15 13:05:09','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:05:11 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Table_Trl (AD_Language,AD_Table_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Table_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Table t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53260 AND NOT EXISTS (SELECT * FROM AD_Table_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Table_ID=t.AD_Table_ID) -; - --- Feb 15, 2010 1:05:12 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Sequence (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,Name,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53369,TO_TIMESTAMP('2010-02-15 13:05:11','YYYY-MM-DD HH24:MI:SS'),0,1000000,50000,'Table I_ProductPlanning',1,'Y','N','Y','Y','I_ProductPlanning','N',1000000,TO_TIMESTAMP('2010-02-15 13:05:11','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:05:13 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,54117,0,'I_ProductPlanning_ID',TO_TIMESTAMP('2010-02-15 13:05:12','YYYY-MM-DD HH24:MI:SS'),0,'EE01','Y','Import Product Planning','Import Product Planning',TO_TIMESTAMP('2010-02-15 13:05:12','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:05:13 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=54117 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) -; - --- Feb 15, 2010 1:05:14 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description='10 Digit Identifier', EntityType='D', Help=NULL, IsActive='Y', Name='ID', ValidationType='D',Updated=TO_TIMESTAMP('2010-02-15 13:05:14','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=13 -; - --- Feb 15, 2010 1:05:14 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=13 -; - --- Feb 15, 2010 1:05:15 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58977,54117,0,13,53260,'I_ProductPlanning_ID',TO_TIMESTAMP('2010-02-15 13:05:14','YYYY-MM-DD HH24:MI:SS'),0,'EE01',10,'Y','N','N','N','Y','Y','N','N','Y','N','N','Import Product Planning',TO_TIMESTAMP('2010-02-15 13:05:14','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:15 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58977 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:15 PM CST --- Create new importer for Planning Data and Forecast -CREATE TABLE I_ProductPlanning (I_ProductPlanning_ID NUMERIC(10) NOT NULL, CONSTRAINT I_ProductPlanning_Key PRIMARY KEY (I_ProductPlanning_ID)) -; - --- Feb 15, 2010 1:05:16 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='AD_Client_ID', Description='Client/Tenant for this installation.', EntityType='D', Help='A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.', IsActive='Y', Name='Client', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Client',Updated=TO_TIMESTAMP('2010-02-15 13:05:16','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=102 -; - --- Feb 15, 2010 1:05:16 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=102 -; - --- Feb 15, 2010 1:05:17 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description='Direct Table Access', EntityType='D', Help=NULL, IsActive='Y', Name='Table Direct', ValidationType='D',Updated=TO_TIMESTAMP('2010-02-15 13:05:17','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=19 -; - --- Feb 15, 2010 1:05:17 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=19 -; - --- Feb 15, 2010 1:05:17 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58978,102,0,19,53260,'AD_Client_ID',TO_TIMESTAMP('2010-02-15 13:05:17','YYYY-MM-DD HH24:MI:SS'),0,'@AD_Client_ID@','Client/Tenant for this installation.','EE01',10,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','Y','N','N','Client',TO_TIMESTAMP('2010-02-15 13:05:17','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:17 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58978 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:18 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN AD_Client_ID NUMERIC(10) NOT NULL -; - --- Feb 15, 2010 1:05:18 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='AD_Org_ID', Description='Organizational entity within client', EntityType='D', Help='An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.', IsActive='Y', Name='Organization', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Organization',Updated=TO_TIMESTAMP('2010-02-15 13:05:18','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=113 -; - --- Feb 15, 2010 1:05:18 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=113 -; - --- Feb 15, 2010 1:05:19 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58979,113,0,19,53260,'AD_Org_ID',TO_TIMESTAMP('2010-02-15 13:05:18','YYYY-MM-DD HH24:MI:SS'),0,'@AD_Org_ID@','Organizational entity within client','EE01',10,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','Y','N','N','Organization',TO_TIMESTAMP('2010-02-15 13:05:18','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:19 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58979 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:19 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN AD_Org_ID NUMERIC(10) NOT NULL -; - --- Feb 15, 2010 1:05:19 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='Created', Description='Date this record was created', EntityType='D', Help='The Created field indicates the date that this record was created.', IsActive='Y', Name='Created', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Created',Updated=TO_TIMESTAMP('2010-02-15 13:05:19','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=245 -; - --- Feb 15, 2010 1:05:19 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=245 -; - --- Feb 15, 2010 1:05:19 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description='Date with time', EntityType='D', Help=NULL, IsActive='Y', Name='Date+Time', ValidationType='D',Updated=TO_TIMESTAMP('2010-02-15 13:05:19','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=16 -; - --- Feb 15, 2010 1:05:19 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=16 -; - --- Feb 15, 2010 1:05:20 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58980,245,0,16,53260,'Created',TO_TIMESTAMP('2010-02-15 13:05:19','YYYY-MM-DD HH24:MI:SS'),0,'Date this record was created','EE01',14,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','Y','N','N','Created',TO_TIMESTAMP('2010-02-15 13:05:19','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:20 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58980 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:20 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN Created TIMESTAMP NOT NULL -; - --- Feb 15, 2010 1:05:20 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='CreatedBy', Description='User who created this records', EntityType='D', Help='The Created By field indicates the user who created this record.', IsActive='Y', Name='Created By', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Created By',Updated=TO_TIMESTAMP('2010-02-15 13:05:20','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=246 -; - --- Feb 15, 2010 1:05:20 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=246 -; - --- Feb 15, 2010 1:05:20 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description='10 Digit numeric', EntityType='D', Help=NULL, IsActive='Y', Name='Integer', ValidationType='D',Updated=TO_TIMESTAMP('2010-02-15 13:05:20','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=11 -; - --- Feb 15, 2010 1:05:20 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=11 -; - --- Feb 15, 2010 1:05:21 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58981,246,0,11,53260,'CreatedBy',TO_TIMESTAMP('2010-02-15 13:05:20','YYYY-MM-DD HH24:MI:SS'),0,'User who created this records','EE01',14,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','Y','N','N','Created By',TO_TIMESTAMP('2010-02-15 13:05:20','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:21 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58981 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:21 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN CreatedBy NUMERIC(10) NOT NULL -; - --- Feb 15, 2010 1:05:21 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='IsActive', Description='The record is active in the system', EntityType='D', Help='There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons for de-activating and not deleting records: -(1) The system requires the record for audit purposes. -(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries.', IsActive='Y', Name='Active', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Active',Updated=TO_TIMESTAMP('2010-02-15 13:05:21','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=348 -; - --- Feb 15, 2010 1:05:21 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=348 -; - --- Feb 15, 2010 1:05:22 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description='CheckBox', EntityType='D', Help=NULL, IsActive='Y', Name='Yes-No', ValidationType='D',Updated=TO_TIMESTAMP('2010-02-15 13:05:22','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=20 -; - --- Feb 15, 2010 1:05:22 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=20 -; - --- Feb 15, 2010 1:05:22 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58982,348,0,20,53260,'IsActive',TO_TIMESTAMP('2010-02-15 13:05:22','YYYY-MM-DD HH24:MI:SS'),0,'Y','The record is active in the system','EE01',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons for de-activating and not deleting records: -(1) The system requires the record for audit purposes. -(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries.','Y','N','N','N','N','Y','N','N','Y','N','Y','Active',TO_TIMESTAMP('2010-02-15 13:05:22','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:22 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58982 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:22 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL -; - --- Feb 15, 2010 1:05:23 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='Updated', Description='Date this record was updated', EntityType='D', Help='The Updated field indicates the date that this record was updated.', IsActive='Y', Name='Updated', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Updated',Updated=TO_TIMESTAMP('2010-02-15 13:05:23','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=607 -; - --- Feb 15, 2010 1:05:23 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=607 -; - --- Feb 15, 2010 1:05:24 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58983,607,0,16,53260,'Updated',TO_TIMESTAMP('2010-02-15 13:05:23','YYYY-MM-DD HH24:MI:SS'),0,'Date this record was updated','EE01',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','Y','N','N','Updated',TO_TIMESTAMP('2010-02-15 13:05:23','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:24 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58983 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:24 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN Updated TIMESTAMP NOT NULL -; - --- Feb 15, 2010 1:05:24 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='UpdatedBy', Description='User who updated this records', EntityType='D', Help='The Updated By field indicates the user who updated this record.', IsActive='Y', Name='Updated By', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Updated By',Updated=TO_TIMESTAMP('2010-02-15 13:05:24','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=608 -; - --- Feb 15, 2010 1:05:24 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=608 -; - --- Feb 15, 2010 1:05:25 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58984,608,0,11,53260,'UpdatedBy',TO_TIMESTAMP('2010-02-15 13:05:24','YYYY-MM-DD HH24:MI:SS'),0,'User who updated this records','EE01',14,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','Y','N','N','Updated By',TO_TIMESTAMP('2010-02-15 13:05:24','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:25 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58984 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:25 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN UpdatedBy NUMERIC(10) NOT NULL -; - --- Feb 15, 2010 1:05:25 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='BPartner_Value', Description='The Key of the Business Partner', EntityType='D', Help=NULL, IsActive='Y', Name='Business Partner Key', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Partner Key',Updated=TO_TIMESTAMP('2010-02-15 13:05:25','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=1906 -; - --- Feb 15, 2010 1:05:25 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=1906 -; - --- Feb 15, 2010 1:05:25 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description='Character String', EntityType='D', Help=NULL, IsActive='Y', Name='String', ValidationType='D',Updated=TO_TIMESTAMP('2010-02-15 13:05:25','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=10 -; - --- Feb 15, 2010 1:05:25 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=10 -; - --- Feb 15, 2010 1:05:26 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58985,1906,0,10,53260,'BPartner_Value',TO_TIMESTAMP('2010-02-15 13:05:25','YYYY-MM-DD HH24:MI:SS'),0,'The Key of the Business Partner','EE01',40,'Y','N','N','N','N','N','N','N','Y','N','Y','Business Partner Key',TO_TIMESTAMP('2010-02-15 13:05:25','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:26 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58985 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:26 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN BPartner_Value VARCHAR(40) DEFAULT NULL -; - --- Feb 15, 2010 1:05:26 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='C_BPartner_ID', Description='Identifies a Business Partner', EntityType='D', Help='A Business Partner is anyone with whom you transact. This can include Vendor, Customer, Employee or Salesperson', IsActive='Y', Name='Business Partner ', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Business Partner ',Updated=TO_TIMESTAMP('2010-02-15 13:05:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=187 -; - --- Feb 15, 2010 1:05:26 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=187 -; - --- Feb 15, 2010 1:05:26 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description='Search Field', EntityType='D', Help=NULL, IsActive='Y', Name='Search', ValidationType='D',Updated=TO_TIMESTAMP('2010-02-15 13:05:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=30 -; - --- Feb 15, 2010 1:05:26 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=30 -; - --- Feb 15, 2010 1:05:27 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58986,187,0,30,53260,'C_BPartner_ID',TO_TIMESTAMP('2010-02-15 13:05:26','YYYY-MM-DD HH24:MI:SS'),0,'Identifies a Business Partner','EE01',22,'A Business Partner is anyone with whom you transact. This can include Vendor, Customer, Employee or Salesperson','Y','N','N','N','N','N','N','N','Y','N','Y','Business Partner ',TO_TIMESTAMP('2010-02-15 13:05:26','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:27 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58986 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:27 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN C_BPartner_ID NUMERIC(10) DEFAULT NULL -; - --- Feb 15, 2010 1:05:27 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='I_ErrorMsg', Description='Messages generated from import process', EntityType='D', Help='The Import Error Message displays any error messages generated during the import process.', IsActive='Y', Name='Import Error Message', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Import Error Message',Updated=TO_TIMESTAMP('2010-02-15 13:05:27','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=912 -; - --- Feb 15, 2010 1:05:27 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=912 -; - --- Feb 15, 2010 1:05:28 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58987,912,0,10,53260,'I_ErrorMsg',TO_TIMESTAMP('2010-02-15 13:05:27','YYYY-MM-DD HH24:MI:SS'),0,'Messages generated from import process','EE01',2000,'The Import Error Message displays any error messages generated during the import process.','Y','N','N','N','N','N','N','N','Y','N','Y','Import Error Message',TO_TIMESTAMP('2010-02-15 13:05:27','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:28 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58987 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:29 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN I_ErrorMsg VARCHAR(2000) DEFAULT NULL -; - --- Feb 15, 2010 1:05:29 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='I_IsImported', Description='Has this import been processed', EntityType='D', Help='The Imported check box indicates if this import has been processed.', IsActive='Y', Name='Imported', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Imported',Updated=TO_TIMESTAMP('2010-02-15 13:05:29','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=913 -; - --- Feb 15, 2010 1:05:29 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=913 -; - --- Feb 15, 2010 1:05:30 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58988,913,0,20,53260,'I_IsImported',TO_TIMESTAMP('2010-02-15 13:05:29','YYYY-MM-DD HH24:MI:SS'),0,'Has this import been processed','EE01',1,'The Imported check box indicates if this import has been processed.','Y','N','N','N','N','Y','N','N','Y','N','Y','Imported',TO_TIMESTAMP('2010-02-15 13:05:29','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:30 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58988 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:30 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN I_IsImported CHAR(1) CHECK (I_IsImported IN ('Y','N')) NOT NULL -; - --- Feb 15, 2010 1:05:30 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='Processed', Description='The document has been processed', EntityType='D', Help='The Processed checkbox indicates that a document has been processed.', IsActive='Y', Name='Processed', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Processed',Updated=TO_TIMESTAMP('2010-02-15 13:05:30','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=1047 -; - --- Feb 15, 2010 1:05:30 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=1047 -; - --- Feb 15, 2010 1:05:30 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58989,1047,0,20,53260,'Processed',TO_TIMESTAMP('2010-02-15 13:05:30','YYYY-MM-DD HH24:MI:SS'),0,'The document has been processed','EE01',1,'The Processed checkbox indicates that a document has been processed.','Y','N','N','N','N','N','N','N','Y','N','N','Processed',TO_TIMESTAMP('2010-02-15 13:05:30','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:30 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58989 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:31 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN Processed CHAR(1) DEFAULT NULL CHECK (Processed IN ('Y','N')) -; - --- Feb 15, 2010 1:05:31 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='Processing', Description=NULL, EntityType='D', Help=NULL, IsActive='Y', Name='Process Now', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Process Now',Updated=TO_TIMESTAMP('2010-02-15 13:05:31','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=524 -; - --- Feb 15, 2010 1:05:31 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=524 -; - --- Feb 15, 2010 1:05:31 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description='Command Button - starts a process', EntityType='D', Help=NULL, IsActive='Y', Name='Button', ValidationType='D',Updated=TO_TIMESTAMP('2010-02-15 13:05:31','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=28 -; - --- Feb 15, 2010 1:05:31 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=28 -; - --- Feb 15, 2010 1:05:32 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Process (AD_Client_ID,AD_Org_ID,AD_Process_ID,AccessLevel,Classname,Created,CreatedBy,Description,EntityType,Help,IsActive,IsBetaFunctionality,IsDirectPrint,IsReport,Name,ShowHelp,Statistic_Count,Statistic_Seconds,Updated,UpdatedBy,Value,WorkflowValue) VALUES (0,0,53200,'3','org.eevolution.process.ImportProductPlanning',TO_TIMESTAMP('2010-02-15 13:05:31','YYYY-MM-DD HH24:MI:SS'),0,'Import Product Planning and Forecast','EE01','Import and update product planning data and forecast','Y','N','N','N','Import Product Planning and Forecast','Y',0,0,TO_TIMESTAMP('2010-02-15 13:05:31','YYYY-MM-DD HH24:MI:SS'),0,'Import_ProductPlanning',NULL) -; - --- Feb 15, 2010 1:05:32 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Process_Trl (AD_Language,AD_Process_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_ID=53200 AND NOT EXISTS (SELECT * FROM AD_Process_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Process_ID=t.AD_Process_ID) -; - --- Feb 15, 2010 1:05:33 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Process_Para (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,1922,0,53200,53402,20,'DeleteOldImported',TO_TIMESTAMP('2010-02-15 13:05:32','YYYY-MM-DD HH24:MI:SS'),0,'Before processing delete old imported records in the import table','EE01',0,'Y','Y','N','N','Delete old imported records',30,TO_TIMESTAMP('2010-02-15 13:05:32','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:05:33 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53402 AND NOT EXISTS (SELECT * FROM AD_Process_Para_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Process_Para_ID=t.AD_Process_Para_ID) -; - --- Feb 15, 2010 1:05:34 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Process_Para (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,2169,0,53200,53403,20,'IsImportOnlyNoErrors',TO_TIMESTAMP('2010-02-15 13:05:33','YYYY-MM-DD HH24:MI:SS'),0,'Y','Only start the import, if there are no validation Errors','EE01',0,'Y','Y','N','N','Import only if No Errors',60,TO_TIMESTAMP('2010-02-15 13:05:33','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:05:34 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53403 AND NOT EXISTS (SELECT * FROM AD_Process_Para_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Process_Para_ID=t.AD_Process_Para_ID) -; - --- Feb 15, 2010 1:05:35 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58990,524,0,53200,28,53260,'Processing',TO_TIMESTAMP('2010-02-15 13:05:34','YYYY-MM-DD HH24:MI:SS'),0,'EE01',1,'Y','N','N','N','N','N','N','N','Y','N','Y','Process Now',TO_TIMESTAMP('2010-02-15 13:05:34','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:35 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58990 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:35 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN Processing CHAR(1) DEFAULT NULL -; - --- Feb 15, 2010 1:05:35 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='AD_Workflow_ID', Description='Workflow or combination of tasks', EntityType='D', Help='The Workflow field identifies a unique Workflow in the system.', IsActive='Y', Name='Workflow', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Workflow',Updated=TO_TIMESTAMP('2010-02-15 13:05:35','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=144 -; - --- Feb 15, 2010 1:05:35 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=144 -; - --- Feb 15, 2010 1:05:35 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description='Table List', EntityType='D', Help=NULL, IsActive='Y', Name='Table', ValidationType='D',Updated=TO_TIMESTAMP('2010-02-15 13:05:35','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=18 -; - --- Feb 15, 2010 1:05:35 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=18 -; - --- Feb 15, 2010 1:05:36 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Val_Rule SET Code='WorkflowType=''M''', Description=NULL, EntityType='EE01', IsActive='Y', Name='AD_Workflow Manufacturing', Type='S',Updated=TO_TIMESTAMP('2010-02-15 13:05:36','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Val_Rule_ID=52003 -; - --- Feb 15, 2010 1:05:40 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58991,144,0,18,53260,52003,'AD_Workflow_ID',TO_TIMESTAMP('2010-02-15 13:05:36','YYYY-MM-DD HH24:MI:SS'),0,'Workflow or combination of tasks','EE01',22,'The Workflow field identifies a unique Workflow in the system.','Y','N','N','N','N','N','N','N','Y','N','Y','Workflow',TO_TIMESTAMP('2010-02-15 13:05:36','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:40 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58991 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:40 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN AD_Workflow_ID NUMERIC(10) DEFAULT NULL -; - --- Feb 15, 2010 1:05:40 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='DD_NetworkDistribution_ID', Description=NULL, EntityType='EE01', Help=NULL, IsActive='Y', Name='Network Distribution', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Network Distribution',Updated=TO_TIMESTAMP('2010-02-15 13:05:40','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=53340 -; - --- Feb 15, 2010 1:05:40 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53340 -; - --- Feb 15, 2010 1:05:41 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58992,53340,0,18,53260,'DD_NetworkDistribution_ID',TO_TIMESTAMP('2010-02-15 13:05:40','YYYY-MM-DD HH24:MI:SS'),0,'EE01',22,'Y','N','N','N','N','N','N','N','Y','N','Y','Network Distribution',TO_TIMESTAMP('2010-02-15 13:05:40','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:41 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58992 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:41 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN DD_NetworkDistribution_ID NUMERIC(10) DEFAULT NULL -; - --- Feb 15, 2010 1:05:41 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='DeliveryTime_Promised', Description='Promised days between order and delivery', EntityType='D', Help='The Promised Delivery Time indicates the number of days between the order date and the date that delivery was promised.', IsActive='Y', Name='Promised Delivery Time', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Promised Delivery Time',Updated=TO_TIMESTAMP('2010-02-15 13:05:41','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=1256 -; - --- Feb 15, 2010 1:05:41 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=1256 -; - --- Feb 15, 2010 1:05:41 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description='Quantity data type', EntityType='D', Help=NULL, IsActive='Y', Name='Quantity', ValidationType='D',Updated=TO_TIMESTAMP('2010-02-15 13:05:41','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=29 -; - --- Feb 15, 2010 1:05:41 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=29 -; - --- Feb 15, 2010 1:05:42 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58993,1256,0,29,53260,'DeliveryTime_Promised',TO_TIMESTAMP('2010-02-15 13:05:41','YYYY-MM-DD HH24:MI:SS'),0,'Promised days between order and delivery','EE01',10,'The Promised Delivery Time indicates the number of days between the order date and the date that delivery was promised.','Y','N','N','N','N','N','N','N','Y','N','Y','Promised Delivery Time',TO_TIMESTAMP('2010-02-15 13:05:41','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:42 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58993 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:42 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN DeliveryTime_Promised NUMERIC DEFAULT NULL -; - --- Feb 15, 2010 1:05:42 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='IsCreatePlan', Description='Indicates whether planned orders will be generated by MRP', EntityType='EE01', Help='Indicates whether planned orders will be generated by MRP, if this flag is not just MRP generate a ''Create'' action notice', IsActive='Y', Name='Create Plan', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Create Plan',Updated=TO_TIMESTAMP('2010-02-15 13:05:42','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=53258 -; - --- Feb 15, 2010 1:05:42 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53258 -; - --- Feb 15, 2010 1:05:43 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58994,53258,0,20,53260,'IsCreatePlan',TO_TIMESTAMP('2010-02-15 13:05:42','YYYY-MM-DD HH24:MI:SS'),0,'Indicates whether planned orders will be generated by MRP','EE01',1,'Indicates whether planned orders will be generated by MRP, if this flag is not just MRP generate a ''Create'' action notice','Y','N','N','N','N','Y','N','N','Y','N','Y','Create Plan',TO_TIMESTAMP('2010-02-15 13:05:42','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:43 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58994 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:43 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN IsCreatePlan CHAR(1) CHECK (IsCreatePlan IN ('Y','N')) NOT NULL -; - --- Feb 15, 2010 1:05:43 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='IsMPS', Description=NULL, EntityType='EE01', Help=NULL, IsActive='Y', Name='Is MPS', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Is MPS',Updated=TO_TIMESTAMP('2010-02-15 13:05:43','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=53261 -; - --- Feb 15, 2010 1:05:43 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53261 -; - --- Feb 15, 2010 1:05:48 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58995,53261,0,20,53260,'IsMPS',TO_TIMESTAMP('2010-02-15 13:05:43','YYYY-MM-DD HH24:MI:SS'),0,'EE01',1,'Y','N','N','N','N','N','N','N','Y','N','Y','Is MPS',TO_TIMESTAMP('2010-02-15 13:05:43','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:48 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58995 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:48 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN IsMPS CHAR(1) DEFAULT NULL CHECK (IsMPS IN ('Y','N')) -; - --- Feb 15, 2010 1:05:49 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='IsPhantom', Description='Phantom Component', EntityType='D', Help='Phantom Component are not stored and produced with the product. This is an option to avild maintaining an Engineering and Manufacturing Bill of Materials.', IsActive='Y', Name='Phantom', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Phantom',Updated=TO_TIMESTAMP('2010-02-15 13:05:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=2788 -; - --- Feb 15, 2010 1:05:49 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=2788 -; - --- Feb 15, 2010 1:05:50 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58996,2788,0,20,53260,'IsPhantom',TO_TIMESTAMP('2010-02-15 13:05:49','YYYY-MM-DD HH24:MI:SS'),0,'Phantom Component','EE01',1,'Phantom Component are not stored and produced with the product. This is an option to avild maintaining an Engineering and Manufacturing Bill of Materials.','Y','N','N','N','N','Y','N','N','Y','N','Y','Phantom',TO_TIMESTAMP('2010-02-15 13:05:49','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:50 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58996 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:50 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN IsPhantom CHAR(1) CHECK (IsPhantom IN ('Y','N')) NOT NULL -; - --- Feb 15, 2010 1:05:50 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='M_Product_ID', Description='Product, Service, Item', EntityType='D', Help='Identifies an item which is either purchased or sold in this organization.', IsActive='Y', Name='Product', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Product',Updated=TO_TIMESTAMP('2010-02-15 13:05:50','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=454 -; - --- Feb 15, 2010 1:05:50 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=454 -; - --- Feb 15, 2010 1:05:51 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58997,454,0,30,53260,'M_Product_ID',TO_TIMESTAMP('2010-02-15 13:05:50','YYYY-MM-DD HH24:MI:SS'),0,'Product, Service, Item','EE01',22,'Identifies an item which is either purchased or sold in this organization.','Y','N','N','N','N','N','N','N','Y','N','Y','Product',TO_TIMESTAMP('2010-02-15 13:05:50','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:51 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58997 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:51 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN M_Product_ID NUMERIC(10) DEFAULT NULL -; - --- Feb 15, 2010 1:05:51 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='M_Warehouse_ID', Description='Storage Warehouse and Service Point', EntityType='D', Help='The Warehouse identifies a unique Warehouse where products are stored or Services are provided.', IsActive='Y', Name='Warehouse', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Warehouse',Updated=TO_TIMESTAMP('2010-02-15 13:05:51','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=459 -; - --- Feb 15, 2010 1:05:51 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=459 -; - --- Feb 15, 2010 1:05:52 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58998,459,0,19,53260,'M_Warehouse_ID',TO_TIMESTAMP('2010-02-15 13:05:51','YYYY-MM-DD HH24:MI:SS'),0,'-1','Storage Warehouse and Service Point','EE01',22,'The Warehouse identifies a unique Warehouse where products are stored or Services are provided.','Y','N','N','N','N','N','N','N','Y','N','Y','Warehouse',TO_TIMESTAMP('2010-02-15 13:05:51','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:52 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58998 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:52 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN M_Warehouse_ID NUMERIC(10) DEFAULT NULL -; - --- Feb 15, 2010 1:05:53 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='Order_Max', Description='Maximum order quantity in UOM', EntityType='EE01', Help='The Maximum Order Quantity indicates the biggest quantity of this product which can be ordered.', IsActive='Y', Name='Maximum Order Qty', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Maximum Order Qty',Updated=TO_TIMESTAMP('2010-02-15 13:05:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=53264 -; - --- Feb 15, 2010 1:05:53 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53264 -; - --- Feb 15, 2010 1:05:54 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,58999,53264,0,29,53260,'Order_Max',TO_TIMESTAMP('2010-02-15 13:05:53','YYYY-MM-DD HH24:MI:SS'),0,'Maximum order quantity in UOM','EE01',10,'The Maximum Order Quantity indicates the biggest quantity of this product which can be ordered.','Y','N','N','N','N','N','N','N','Y','N','Y','Maximum Order Qty',TO_TIMESTAMP('2010-02-15 13:05:53','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:54 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=58999 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:54 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN Order_Max NUMERIC DEFAULT NULL -; - --- Feb 15, 2010 1:05:54 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='Order_Min', Description='Minimum order quantity in UOM', EntityType='D', Help='The Minimum Order Quantity indicates the smallest quantity of this product which can be ordered.', IsActive='Y', Name='Minimum Order Qty', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Minimum Order Qty',Updated=TO_TIMESTAMP('2010-02-15 13:05:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=942 -; - --- Feb 15, 2010 1:05:54 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=942 -; - --- Feb 15, 2010 1:05:55 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59000,942,0,29,53260,'Order_Min',TO_TIMESTAMP('2010-02-15 13:05:54','YYYY-MM-DD HH24:MI:SS'),0,'Minimum order quantity in UOM','EE01',14,'The Minimum Order Quantity indicates the smallest quantity of this product which can be ordered.','Y','N','N','N','N','N','N','N','Y','N','Y','Minimum Order Qty',TO_TIMESTAMP('2010-02-15 13:05:54','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:55 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59000 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:55 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN Order_Min NUMERIC DEFAULT NULL -; - --- Feb 15, 2010 1:05:55 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='Order_Pack', Description='Package order size in UOM (e.g. order set of 5 units)', EntityType='D', Help='The Order Pack Quantity indicates the number of units in each pack of this product.', IsActive='Y', Name='Order Pack Qty', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Order Pack Qty',Updated=TO_TIMESTAMP('2010-02-15 13:05:55','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=943 -; - --- Feb 15, 2010 1:05:55 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=943 -; - --- Feb 15, 2010 1:05:56 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59001,943,0,29,53260,'Order_Pack',TO_TIMESTAMP('2010-02-15 13:05:55','YYYY-MM-DD HH24:MI:SS'),0,'Package order size in UOM (e.g. order set of 5 units)','EE01',14,'The Order Pack Quantity indicates the number of units in each pack of this product.','Y','N','N','N','N','N','N','N','Y','N','Y','Order Pack Qty',TO_TIMESTAMP('2010-02-15 13:05:55','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:56 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59001 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:56 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN Order_Pack NUMERIC DEFAULT NULL -; - --- Feb 15, 2010 1:05:56 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='Order_Period', Description=NULL, EntityType='EE01', Help=NULL, IsActive='Y', Name='Order Period', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Order Period',Updated=TO_TIMESTAMP('2010-02-15 13:05:56','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=53265 -; - --- Feb 15, 2010 1:05:56 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53265 -; - --- Feb 15, 2010 1:05:57 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59002,53265,0,29,53260,'Order_Period',TO_TIMESTAMP('2010-02-15 13:05:56','YYYY-MM-DD HH24:MI:SS'),0,'EE01',22,'Y','N','N','N','N','N','N','N','Y','N','Y','Order Period',TO_TIMESTAMP('2010-02-15 13:05:56','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:57 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59002 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:57 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN Order_Period NUMERIC DEFAULT NULL -; - --- Feb 15, 2010 1:05:57 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='Order_Policy', Description=NULL, EntityType='EE01', Help=NULL, IsActive='Y', Name='Order Policy', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Order Policy',Updated=TO_TIMESTAMP('2010-02-15 13:05:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=53266 -; - --- Feb 15, 2010 1:05:57 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53266 -; - --- Feb 15, 2010 1:05:57 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description='Reference List', EntityType='D', Help=NULL, IsActive='Y', Name='List', ValidationType='D',Updated=TO_TIMESTAMP('2010-02-15 13:05:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=17 -; - --- Feb 15, 2010 1:05:57 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=17 -; - --- Feb 15, 2010 1:05:57 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description=NULL, EntityType='EE01', Help=NULL, IsActive='Y', Name='PP_Product_Planning Order Policy', ValidationType='L',Updated=TO_TIMESTAMP('2010-02-15 13:05:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=53228 -; - --- Feb 15, 2010 1:05:57 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=53228 -; - --- Feb 15, 2010 1:05:57 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Ref_List SET AD_Reference_ID=53228, Description=NULL, EntityType='EE01', IsActive='Y', Name='Fixed Order Quantity', Value='FOQ',Updated=TO_TIMESTAMP('2010-02-15 13:05:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Ref_List_ID=53272 -; - --- Feb 15, 2010 1:05:57 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Ref_List_Trl SET IsTranslated='N' WHERE AD_Ref_List_ID=53272 -; - --- Feb 15, 2010 1:05:58 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Ref_List SET AD_Reference_ID=53228, Description=NULL, EntityType='EE01', IsActive='Y', Name='Lot-for-Lot', Value='LFL',Updated=TO_TIMESTAMP('2010-02-15 13:05:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Ref_List_ID=53273 -; - --- Feb 15, 2010 1:05:58 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Ref_List_Trl SET IsTranslated='N' WHERE AD_Ref_List_ID=53273 -; - --- Feb 15, 2010 1:05:58 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Ref_List SET AD_Reference_ID=53228, Description=NULL, EntityType='EE01', IsActive='Y', Name='Period Order Quantity', Value='POQ',Updated=TO_TIMESTAMP('2010-02-15 13:05:58','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Ref_List_ID=53274 -; - --- Feb 15, 2010 1:05:58 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Ref_List_Trl SET IsTranslated='N' WHERE AD_Ref_List_ID=53274 -; - --- Feb 15, 2010 1:05:58 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59003,53266,0,17,53228,53260,'Order_Policy',TO_TIMESTAMP('2010-02-15 13:05:58','YYYY-MM-DD HH24:MI:SS'),0,'EE01',3,'Y','N','N','N','N','N','N','N','Y','N','Y','Order Policy',TO_TIMESTAMP('2010-02-15 13:05:58','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:58 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59003 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:58 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN Order_Policy VARCHAR(3) DEFAULT NULL -; - --- Feb 15, 2010 1:05:59 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='Order_Qty', Description=NULL, EntityType='EE01', Help=NULL, IsActive='Y', Name='Order Qty', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Order Qty',Updated=TO_TIMESTAMP('2010-02-15 13:05:59','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=53267 -; - --- Feb 15, 2010 1:05:59 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53267 -; - --- Feb 15, 2010 1:05:59 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59004,53267,0,29,53260,'Order_Qty',TO_TIMESTAMP('2010-02-15 13:05:59','YYYY-MM-DD HH24:MI:SS'),0,'EE01',22,'Y','N','N','N','N','N','N','N','Y','N','Y','Order Qty',TO_TIMESTAMP('2010-02-15 13:05:59','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:05:59 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59004 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:05:59 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN Order_Qty NUMERIC DEFAULT NULL -; - --- Feb 15, 2010 1:06:00 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='Planner_ID', Description=NULL, EntityType='EE01', Help=NULL, IsActive='Y', Name='Planner', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Planner',Updated=TO_TIMESTAMP('2010-02-15 13:06:00','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=53269 -; - --- Feb 15, 2010 1:06:00 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53269 -; - --- Feb 15, 2010 1:06:00 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description='User selection', EntityType='D', Help=NULL, IsActive='Y', Name='AD_User', ValidationType='T',Updated=TO_TIMESTAMP('2010-02-15 13:06:00','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=110 -; - --- Feb 15, 2010 1:06:00 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=110 -; - --- Feb 15, 2010 1:06:00 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Ref_Table SET AD_Table_ID = 114, AD_Display = 213, AD_Key = 212, isValueDisplayed = 'N', OrderByClause = 'AD_User.Name', EntityType ='D', WhereClause = '' WHERE AD_Reference_ID = 110 -; - --- Feb 15, 2010 1:06:01 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59005,53269,0,18,110,53260,164,'Planner_ID',TO_TIMESTAMP('2010-02-15 13:06:00','YYYY-MM-DD HH24:MI:SS'),0,'EE01',22,'Y','N','N','N','N','N','N','N','Y','N','Y','Planner',TO_TIMESTAMP('2010-02-15 13:06:00','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:01 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59005 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:01 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN Planner_ID NUMERIC(10) DEFAULT NULL -; - --- Feb 15, 2010 1:06:01 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='PP_Product_BOM_ID', Description='BOM & Formula', EntityType='EE01', Help=NULL, IsActive='Y', Name='BOM & Formula', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='BOM & Formula',Updated=TO_TIMESTAMP('2010-02-15 13:06:01','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=53245 -; - --- Feb 15, 2010 1:06:01 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53245 -; - --- Feb 15, 2010 1:06:02 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59006,53245,0,19,53260,'PP_Product_BOM_ID',TO_TIMESTAMP('2010-02-15 13:06:01','YYYY-MM-DD HH24:MI:SS'),0,'BOM & Formula','EE01',22,'Y','N','N','N','N','N','N','N','Y','N','Y','BOM & Formula',TO_TIMESTAMP('2010-02-15 13:06:01','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:02 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59006 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:02 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN PP_Product_BOM_ID NUMERIC(10) DEFAULT NULL -; - --- Feb 15, 2010 1:06:02 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='SafetyStock', Description='Safety stock is a term used to describe a level of stock that is maintained below the cycle stock to buffer against stock-outs', EntityType='EE01', Help='Safety stock is defined as extra units of inventory carried as protection against possible stockouts. It is held when an organization cannot accurately predict demand and/or lead time for the product. - -Rereference: -http://en.wikipedia.org/wiki/Safety_stock', IsActive='Y', Name='Safety Stock Qty', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Safety Stock Qty',Updated=TO_TIMESTAMP('2010-02-15 13:06:02','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=53354 -; - --- Feb 15, 2010 1:06:02 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53354 -; - --- Feb 15, 2010 1:06:03 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59007,53354,0,29,53260,'SafetyStock',TO_TIMESTAMP('2010-02-15 13:06:03','YYYY-MM-DD HH24:MI:SS'),0,'Safety stock is a term used to describe a level of stock that is maintained below the cycle stock to buffer against stock-outs','EE01',22,'Safety stock is defined as extra units of inventory carried as protection against possible stockouts. It is held when an organization cannot accurately predict demand and/or lead time for the product. - -Rereference: -http://en.wikipedia.org/wiki/Safety_stock','Y','N','N','N','N','N','N','N','Y','N','Y','Safety Stock Qty',TO_TIMESTAMP('2010-02-15 13:06:03','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:03 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59007 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:03 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN SafetyStock NUMERIC DEFAULT NULL -; - --- Feb 15, 2010 1:06:03 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='S_Resource_ID', Description='Resource', EntityType='D', Help=NULL, IsActive='Y', Name='Resource', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Resource',Updated=TO_TIMESTAMP('2010-02-15 13:06:03','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=1777 -; - --- Feb 15, 2010 1:06:03 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=1777 -; - --- Feb 15, 2010 1:06:04 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description='Manufacturing Resources', EntityType='EE01', Help=NULL, IsActive='Y', Name='S_Resource_Manufacturing', ValidationType='T',Updated=TO_TIMESTAMP('2010-02-15 13:06:04','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=53320 -; - --- Feb 15, 2010 1:06:04 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=53320 -; - --- Feb 15, 2010 1:06:04 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Ref_Table SET AD_Table_ID = 487, AD_Display = 6853, AD_Key = 6862, isValueDisplayed = 'N', OrderByClause = '', EntityType ='EE01', WhereClause = '' WHERE AD_Reference_ID = 53320 -; - --- Feb 15, 2010 1:06:04 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Val_Rule SET Code='IsManufacturingResource=''Y'' AND ManufacturingResourceType=''PT''', Description=NULL, EntityType='EE01', IsActive='Y', Name='S_Resource Plant', Type='S',Updated=TO_TIMESTAMP('2010-02-15 13:06:04','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Val_Rule_ID=52002 -; - --- Feb 15, 2010 1:06:04 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59008,1777,0,18,53320,53260,52002,'S_Resource_ID',TO_TIMESTAMP('2010-02-15 13:06:04','YYYY-MM-DD HH24:MI:SS'),0,'-1','Resource','EE01',22,'Y','N','N','N','N','N','N','N','Y','N','Y','Resource',TO_TIMESTAMP('2010-02-15 13:06:04','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:04 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59008 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:04 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN S_Resource_ID NUMERIC(10) DEFAULT NULL -; - --- Feb 15, 2010 1:06:05 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='TimeFence', Description=NULL, EntityType='EE01', Help=NULL, IsActive='Y', Name='Time Fence', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Time Fence',Updated=TO_TIMESTAMP('2010-02-15 13:06:05','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=53270 -; - --- Feb 15, 2010 1:06:05 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53270 -; - --- Feb 15, 2010 1:06:07 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59009,53270,0,29,53260,'TimeFence',TO_TIMESTAMP('2010-02-15 13:06:05','YYYY-MM-DD HH24:MI:SS'),0,'EE01',22,'Y','N','N','N','N','N','N','N','Y','N','Y','Time Fence',TO_TIMESTAMP('2010-02-15 13:06:05','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:07 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59009 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:07 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN TimeFence NUMERIC DEFAULT NULL -; - --- Feb 15, 2010 1:06:07 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='TransfertTime', Description=NULL, EntityType='EE01', Help=NULL, IsActive='Y', Name='Transfert Time', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Transfert Time',Updated=TO_TIMESTAMP('2010-02-15 13:06:07','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=53271 -; - --- Feb 15, 2010 1:06:07 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53271 -; - --- Feb 15, 2010 1:06:08 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59010,53271,0,29,53260,'TransfertTime',TO_TIMESTAMP('2010-02-15 13:06:07','YYYY-MM-DD HH24:MI:SS'),0,'EE01',10,'Y','N','N','N','N','N','N','N','Y','N','Y','Transfert Time',TO_TIMESTAMP('2010-02-15 13:06:07','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:08 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59010 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:08 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN TransfertTime NUMERIC DEFAULT NULL -; - --- Feb 15, 2010 1:06:08 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='WorkingTime', Description='Workflow Simulation Execution Time', EntityType='D', Help='Amount of time the performer of the activity needs to perform the task in Duration Unit', IsActive='Y', Name='Working Time', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Working Time',Updated=TO_TIMESTAMP('2010-02-15 13:06:08','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=2333 -; - --- Feb 15, 2010 1:06:08 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=2333 -; - --- Feb 15, 2010 1:06:09 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59011,2333,0,29,53260,'WorkingTime',TO_TIMESTAMP('2010-02-15 13:06:08','YYYY-MM-DD HH24:MI:SS'),0,'Workflow Simulation Execution Time','EE01',22,'Amount of time the performer of the activity needs to perform the task in Duration Unit','Y','N','N','N','N','N','N','N','Y','N','Y','Working Time',TO_TIMESTAMP('2010-02-15 13:06:08','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:09 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59011 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:09 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN WorkingTime NUMERIC DEFAULT NULL -; - --- Feb 15, 2010 1:06:09 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='Yield', Description='The Yield is the percentage of a lot that is expected to be of acceptable wuality may fall below 100 percent', EntityType='EE01', Help='ADempiere Calculate the total yield for a product from the yield for each activity when the process Workflow Cost Roll-Up is executed. - -The expected yield for an Activity can be expressed as: - -Yield = Acceptable Units at Activity End x 100 - -The Total manufacturing yield for a product is determined by multiplying the yied percentage for each activity. - -Manufacturing Yield = Yield % for Activity 10 x Yied % for Activity 20 , etc - -Take care when setting yield to anything but 100% particularly when yied is used for multiples activities - -', IsActive='Y', Name='Yield %', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Yield %',Updated=TO_TIMESTAMP('2010-02-15 13:06:09','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=53272 -; - --- Feb 15, 2010 1:06:09 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53272 -; - --- Feb 15, 2010 1:06:10 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59012,53272,0,11,53260,'Yield',TO_TIMESTAMP('2010-02-15 13:06:09','YYYY-MM-DD HH24:MI:SS'),0,'The Yield is the percentage of a lot that is expected to be of acceptable wuality may fall below 100 percent','EE01',22,'ADempiere Calculate the total yield for a product from the yield for each activity when the process Workflow Cost Roll-Up is executed. - -The expected yield for an Activity can be expressed as: - -Yield = Acceptable Units at Activity End x 100 - -The Total manufacturing yield for a product is determined by multiplying the yied percentage for each activity. - -Manufacturing Yield = Yield % for Activity 10 x Yied % for Activity 20 , etc - -Take care when setting yield to anything but 100% particularly when yied is used for multiples activities - -','Y','N','N','N','N','N','N','N','Y','N','Y','Yield %',TO_TIMESTAMP('2010-02-15 13:06:09','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:10 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59012 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:10 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN Yield NUMERIC(10) DEFAULT NULL -; - --- Feb 15, 2010 1:06:10 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='DatePromised', Description='Date Order was promised', EntityType='D', Help='The Date Promised indicates the date, if any, that an Order was promised for.', IsActive='Y', Name='Date Promised', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Date Promised',Updated=TO_TIMESTAMP('2010-02-15 13:06:10','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=269 -; - --- Feb 15, 2010 1:06:10 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=269 -; - --- Feb 15, 2010 1:06:10 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference SET Description='Date mm/dd/yyyy', EntityType='D', Help=NULL, IsActive='Y', Name='Date', ValidationType='D',Updated=TO_TIMESTAMP('2010-02-15 13:06:10','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Reference_ID=15 -; - --- Feb 15, 2010 1:06:10 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Reference_Trl SET IsTranslated='N' WHERE AD_Reference_ID=15 -; - --- Feb 15, 2010 1:06:11 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59013,269,0,15,53260,'DatePromised',TO_TIMESTAMP('2010-02-15 13:06:10','YYYY-MM-DD HH24:MI:SS'),0,'Date Order was promised','EE01',7,'The Date Promised indicates the date, if any, that an Order was promised for.','Y','N','N','N','N','N','N','N','Y','N','Y','Date Promised',TO_TIMESTAMP('2010-02-15 13:06:10','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:11 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59013 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:11 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN DatePromised TIMESTAMP DEFAULT NULL -; - --- Feb 15, 2010 1:06:11 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='M_Forecast_ID', Description='Material Forecast', EntityType='D', Help='Material Forecast', IsActive='Y', Name='Forecast', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Forecast',Updated=TO_TIMESTAMP('2010-02-15 13:06:11','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=2498 -; - --- Feb 15, 2010 1:06:11 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=2498 -; - --- Feb 15, 2010 1:06:12 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59014,2498,0,19,53260,'M_Forecast_ID',TO_TIMESTAMP('2010-02-15 13:06:11','YYYY-MM-DD HH24:MI:SS'),0,'Material Forecast','EE01',22,'Material Forecast','Y','N','N','N','N','N','N','N','Y','N','Y','Forecast',TO_TIMESTAMP('2010-02-15 13:06:11','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:12 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59014 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:12 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN M_Forecast_ID NUMERIC(10) DEFAULT NULL -; - --- Feb 15, 2010 1:06:12 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='Qty', Description='Quantity', EntityType='D', Help='The Quantity indicates the number of a specific product or item for this document.', IsActive='Y', Name='Quantity', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Qty',Updated=TO_TIMESTAMP('2010-02-15 13:06:12','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=526 -; - --- Feb 15, 2010 1:06:12 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=526 -; - --- Feb 15, 2010 1:06:13 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59015,526,0,29,53260,'Qty',TO_TIMESTAMP('2010-02-15 13:06:12','YYYY-MM-DD HH24:MI:SS'),0,'Quantity','EE01',22,'The Quantity indicates the number of a specific product or item for this document.','Y','N','N','N','N','Y','N','N','Y','N','Y','Quantity',TO_TIMESTAMP('2010-02-15 13:06:12','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:13 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59015 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:13 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN Qty NUMERIC NOT NULL -; - --- Feb 15, 2010 1:06:14 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59016,1063,0,18,53260,'SalesRep_ID',TO_TIMESTAMP('2010-02-15 13:06:13','YYYY-MM-DD HH24:MI:SS'),0,'@#AD_User_ID@','Sales Representative or Company Agent','EE01',22,'The Sales Representative indicates the Sales Rep for this Region. Any Sales Rep must be a valid internal user.','Y','N','N','N','N','N','N','N','Y','N','Y','Sales Representative',TO_TIMESTAMP('2010-02-15 13:06:13','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:14 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59016 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:14 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN SalesRep_ID NUMERIC(10) DEFAULT NULL -; - --- Feb 15, 2010 1:06:14 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='ProductValue', Description='Key of the Product', EntityType='D', Help=NULL, IsActive='Y', Name='Product Key', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Product Key',Updated=TO_TIMESTAMP('2010-02-15 13:06:14','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=1675 -; - --- Feb 15, 2010 1:06:14 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=1675 -; - --- Feb 15, 2010 1:06:15 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59017,1675,0,10,53260,'ProductValue',TO_TIMESTAMP('2010-02-15 13:06:14','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Product','EE01',40,'Y','N','N','N','N','N','N','N','Y','N','Y','Product Key',TO_TIMESTAMP('2010-02-15 13:06:14','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:15 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59017 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:15 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN ProductValue VARCHAR(40) DEFAULT NULL -; - --- Feb 15, 2010 1:06:15 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='WarehouseValue', Description='Key of the Warehouse', EntityType='D', Help='Key to identify the Warehouse', IsActive='Y', Name='Warehouse Key', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Warehouse Key',Updated=TO_TIMESTAMP('2010-02-15 13:06:15','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=2070 -; - --- Feb 15, 2010 1:06:15 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=2070 -; - --- Feb 15, 2010 1:06:16 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59018,2070,0,10,53260,'WarehouseValue',TO_TIMESTAMP('2010-02-15 13:06:15','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Warehouse','EE01',40,'Key to identify the Warehouse','Y','N','N','N','N','N','N','N','Y','N','Y','Warehouse Key',TO_TIMESTAMP('2010-02-15 13:06:15','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:16 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59018 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:16 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN WarehouseValue VARCHAR(40) DEFAULT NULL -; - --- Feb 15, 2010 1:06:16 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='OrgValue', Description='Key of the Organization', EntityType='D', Help=NULL, IsActive='Y', Name='Org Key', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Org Key',Updated=TO_TIMESTAMP('2010-02-15 13:06:16','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=2115 -; - --- Feb 15, 2010 1:06:16 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=2115 -; - --- Feb 15, 2010 1:06:17 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59019,2115,0,10,53260,'OrgValue',TO_TIMESTAMP('2010-02-15 13:06:16','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Organization','EE01',40,'Y','N','N','N','N','N','N','N','Y','N','Y','Org Key',TO_TIMESTAMP('2010-02-15 13:06:16','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:17 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59019 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:17 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN OrgValue VARCHAR(40) DEFAULT NULL -; - --- Feb 15, 2010 1:06:17 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,54118,0,'NetworkDistributionValue',TO_TIMESTAMP('2010-02-15 13:06:17','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Network Distribution','EE01','Y','Network Distribution Key','Network Distribution Key',TO_TIMESTAMP('2010-02-15 13:06:17','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:17 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=54118 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) -; - --- Feb 15, 2010 1:06:18 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59020,54118,0,10,53260,'NetworkDistributionValue',TO_TIMESTAMP('2010-02-15 13:06:17','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Network Distribution','EE01',40,'Y','N','N','N','N','N','N','N','Y','N','Y','Network Distribution Key',TO_TIMESTAMP('2010-02-15 13:06:17','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:18 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59020 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:18 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN NetworkDistributionValue VARCHAR(40) DEFAULT NULL -; - --- Feb 15, 2010 1:06:18 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,54119,0,'Product_BOM_Value',TO_TIMESTAMP('2010-02-15 13:06:18','YYYY-MM-DD HH24:MI:SS'),0,'Key of Product BOM','U','Y','Product BOM Key','Product BOM Key',TO_TIMESTAMP('2010-02-15 13:06:18','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:18 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=54119 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) -; - --- Feb 15, 2010 1:06:19 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59021,54119,0,10,53260,'Product_BOM_Value',TO_TIMESTAMP('2010-02-15 13:06:18','YYYY-MM-DD HH24:MI:SS'),0,'Key of Product BOM','EE01',40,'Y','N','N','N','N','N','N','N','Y','N','Y','Product BOM Key',TO_TIMESTAMP('2010-02-15 13:06:18','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:19 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59021 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:19 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN Product_BOM_Value VARCHAR(40) DEFAULT NULL -; - --- Feb 15, 2010 1:06:20 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,54120,0,'ForecastValue',TO_TIMESTAMP('2010-02-15 13:06:19','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Forecast','EE01','Y','Forecast Key','Forecast Key',TO_TIMESTAMP('2010-02-15 13:06:19','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:20 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=54120 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) -; - --- Feb 15, 2010 1:06:20 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59022,54120,0,10,53260,'ForecastValue',TO_TIMESTAMP('2010-02-15 13:06:20','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Forecast','EE01',40,'Y','N','N','N','N','N','N','N','Y','N','Y','Forecast Key',TO_TIMESTAMP('2010-02-15 13:06:20','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:20 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59022 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:20 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN ForecastValue VARCHAR(40) DEFAULT NULL -; - --- Feb 15, 2010 1:06:21 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,54121,0,'ResourceValue',TO_TIMESTAMP('2010-02-15 13:06:20','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Resource','EE01','Y','Resource Key','Resource Key',TO_TIMESTAMP('2010-02-15 13:06:20','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:21 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=54121 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) -; - --- Feb 15, 2010 1:06:22 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59023,54121,0,10,53260,'ResourceValue',TO_TIMESTAMP('2010-02-15 13:06:21','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Resource','EE01',40,'Y','N','N','N','N','N','N','N','Y','N','Y','Resource Key',TO_TIMESTAMP('2010-02-15 13:06:21','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:22 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59023 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:22 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN ResourceValue VARCHAR(40) DEFAULT NULL -; - --- Feb 15, 2010 1:06:22 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,54122,0,'PlannerValue',TO_TIMESTAMP('2010-02-15 13:06:22','YYYY-MM-DD HH24:MI:SS'),0,'Search Key of the Planning','EE01','Y','Planner Key','Planner Key',TO_TIMESTAMP('2010-02-15 13:06:22','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:22 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=54122 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) -; - --- Feb 15, 2010 1:06:23 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59024,54122,0,10,53260,'PlannerValue',TO_TIMESTAMP('2010-02-15 13:06:22','YYYY-MM-DD HH24:MI:SS'),0,'Search Key of the Planning','EE01',40,'Y','N','N','N','N','N','N','N','Y','N','Y','Planner Key',TO_TIMESTAMP('2010-02-15 13:06:22','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:23 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59024 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:23 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN PlannerValue VARCHAR(40) DEFAULT NULL -; - --- Feb 15, 2010 1:06:23 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='M_ForecastLine_ID', Description='Forecast Line', EntityType='D', Help='Forecast of Product Qyantity by Period', IsActive='Y', Name='Forecast Line', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Forecast Line',Updated=TO_TIMESTAMP('2010-02-15 13:06:23','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=2499 -; - --- Feb 15, 2010 1:06:23 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=2499 -; - --- Feb 15, 2010 1:06:24 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59025,2499,0,19,53260,'M_ForecastLine_ID',TO_TIMESTAMP('2010-02-15 13:06:23','YYYY-MM-DD HH24:MI:SS'),0,'Forecast Line','EE01',10,'Forecast of Product Qyantity by Period','Y','N','N','N','N','N','N','N','Y','N','N','Forecast Line',TO_TIMESTAMP('2010-02-15 13:06:23','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:24 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59025 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:24 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN M_ForecastLine_ID NUMERIC(10) DEFAULT NULL -; - --- Feb 15, 2010 1:06:24 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='PP_Product_Planning_ID', Description=NULL, EntityType='EE01', Help=NULL, IsActive='Y', Name='Product Planning', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='Product Planning',Updated=TO_TIMESTAMP('2010-02-15 13:06:24','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=53268 -; - --- Feb 15, 2010 1:06:24 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53268 -; - --- Feb 15, 2010 1:06:25 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59026,53268,0,19,53260,'PP_Product_Planning_ID',TO_TIMESTAMP('2010-02-15 13:06:24','YYYY-MM-DD HH24:MI:SS'),0,'EE01',10,'Y','N','N','N','N','N','N','N','Y','N','N','Product Planning',TO_TIMESTAMP('2010-02-15 13:06:24','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:25 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59026 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:25 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN PP_Product_Planning_ID NUMERIC(10) DEFAULT NULL -; - --- Feb 15, 2010 1:06:25 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element SET ColumnName='VendorProductNo', Description='Product Key of the Business Partner', EntityType='D', Help='The Business Partner Product Key identifies the number used by the Business Partner for this product. It can be printed on orders and invoices when you include the Product Key in the print format.', IsActive='Y', Name='Partner Product Key', PO_Description=NULL, PO_Help=NULL, PO_Name=NULL, PO_PrintName=NULL, PrintName='BPartner Product Key',Updated=TO_TIMESTAMP('2010-02-15 13:06:25','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Element_ID=623 -; - --- Feb 15, 2010 1:06:25 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=623 -; - --- Feb 15, 2010 1:06:31 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59027,623,0,10,53260,'VendorProductNo',TO_TIMESTAMP('2010-02-15 13:06:25','YYYY-MM-DD HH24:MI:SS'),0,'Product Key of the Business Partner','EE01',30,'The Business Partner Product Key identifies the number used by the Business Partner for this product. It can be printed on orders and invoices when you include the Product Key in the print format.','Y','N','N','N','N','N','N','N','Y','N','Y','Partner Product Key',TO_TIMESTAMP('2010-02-15 13:06:25','YYYY-MM-DD HH24:MI:SS'),0,0) -; - --- Feb 15, 2010 1:06:31 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59027 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 15, 2010 1:06:31 PM CST --- Create new importer for Planning Data and Forecast -ALTER TABLE I_ProductPlanning ADD COLUMN VendorProductNo VARCHAR(30) DEFAULT NULL -; - --- Feb 15, 2010 1:06:32 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Tab (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,CommitWarning,Created,CreatedBy,EntityType,HasTree,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,Name,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53307,53260,53109,NULL,TO_TIMESTAMP('2010-02-15 13:06:31','YYYY-MM-DD HH24:MI:SS'),0,'EE01','N','Y','N','N','Y','N','N','N','N','Import Product Planning','N',10,0,TO_TIMESTAMP('2010-02-15 13:06:31','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:32 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Tab_Trl (AD_Language,AD_Tab_ID, CommitWarning,Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Tab t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53307 AND NOT EXISTS (SELECT * FROM AD_Tab_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Tab_ID=t.AD_Tab_ID) -; - --- Feb 15, 2010 1:06:34 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58982,58726,0,53307,TO_TIMESTAMP('2010-02-15 13:06:32','YYYY-MM-DD HH24:MI:SS'),0,'The record is active in the system',1,'EE01','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons for de-activating and not deleting records: -(1) The system requires the record for audit purposes. -(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries.','Y','Y','N','N','N','N','N','Active',0,0,TO_TIMESTAMP('2010-02-15 13:06:32','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:34 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58726 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:35 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59011,58727,0,53307,TO_TIMESTAMP('2010-02-15 13:06:34','YYYY-MM-DD HH24:MI:SS'),0,'Workflow Simulation Execution Time',22,'EE01','Amount of time the performer of the activity needs to perform the task in Duration Unit','Y','Y','N','N','N','N','Y','Working Time',0,0,TO_TIMESTAMP('2010-02-15 13:06:34','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:35 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58727 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:36 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58978,58728,0,53307,TO_TIMESTAMP('2010-02-15 13:06:35','YYYY-MM-DD HH24:MI:SS'),0,'Client/Tenant for this installation.',10,'EE01','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','Client',10,0,TO_TIMESTAMP('2010-02-15 13:06:35','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:36 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58728 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:37 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59026,50010,58729,0,53307,TO_TIMESTAMP('2010-02-15 13:06:36','YYYY-MM-DD HH24:MI:SS'),0,10,'EE01','Y','Y','Y','N','N','Y','Y','Product Planning',20,0,TO_TIMESTAMP('2010-02-15 13:06:36','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:37 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58729 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:38 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59019,50010,58730,0,53307,TO_TIMESTAMP('2010-02-15 13:06:37','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Organization',22,'EE01','Y','Y','Y','N','N','N','N','Org Key',30,0,TO_TIMESTAMP('2010-02-15 13:06:37','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:38 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58730 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:39 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58979,50010,58731,0,53307,TO_TIMESTAMP('2010-02-15 13:06:38','YYYY-MM-DD HH24:MI:SS'),0,'Organizational entity within client',10,'EE01','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','Y','Organization',40,0,TO_TIMESTAMP('2010-02-15 13:06:38','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:39 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58731 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:39 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59017,50010,58732,0,53307,TO_TIMESTAMP('2010-02-15 13:06:39','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Product',22,'EE01','Y','Y','Y','N','N','N','N','Product Key',50,0,TO_TIMESTAMP('2010-02-15 13:06:39','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:39 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58732 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:40 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58997,50010,58733,0,53307,TO_TIMESTAMP('2010-02-15 13:06:39','YYYY-MM-DD HH24:MI:SS'),0,'Product, Service, Item',22,'EE01','Identifies an item which is either purchased or sold in this organization.','Y','Y','Y','N','N','N','Y','Product',60,0,TO_TIMESTAMP('2010-02-15 13:06:39','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:40 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58733 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:40 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59016,50010,58734,0,53307,TO_TIMESTAMP('2010-02-15 13:06:40','YYYY-MM-DD HH24:MI:SS'),0,'Sales Representative or Company Agent',22,'EE01','The Sales Representative indicates the Sales Rep for this Region. Any Sales Rep must be a valid internal user.','Y','Y','Y','N','N','N','N','Sales Representative',70,0,TO_TIMESTAMP('2010-02-15 13:06:40','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:40 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58734 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:41 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59023,50010,58735,0,53307,TO_TIMESTAMP('2010-02-15 13:06:40','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Resource',22,'EE01','Y','Y','Y','N','N','N','N','Resource Key',80,0,TO_TIMESTAMP('2010-02-15 13:06:40','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:41 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58735 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:41 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59008,50010,58736,0,53307,TO_TIMESTAMP('2010-02-15 13:06:41','YYYY-MM-DD HH24:MI:SS'),0,'Resource',22,'EE01','Y','Y','Y','N','N','N','Y','Resource',90,0,TO_TIMESTAMP('2010-02-15 13:06:41','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:41 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58736 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:42 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59018,50010,58737,0,53307,TO_TIMESTAMP('2010-02-15 13:06:41','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Warehouse',22,'EE01','Key to identify the Warehouse','Y','Y','Y','N','N','N','N','Warehouse Key',100,0,TO_TIMESTAMP('2010-02-15 13:06:41','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:42 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58737 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:43 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58998,50010,58738,0,53307,TO_TIMESTAMP('2010-02-15 13:06:42','YYYY-MM-DD HH24:MI:SS'),0,'Storage Warehouse and Service Point',22,'EE01','The Warehouse identifies a unique Warehouse where products are stored or Services are provided.','Y','Y','Y','N','N','N','Y','Warehouse',110,0,TO_TIMESTAMP('2010-02-15 13:06:42','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:43 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58738 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:43 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59024,50010,58739,0,53307,TO_TIMESTAMP('2010-02-15 13:06:43','YYYY-MM-DD HH24:MI:SS'),0,'Search Key of the Planning',22,'EE01','Y','Y','Y','N','N','N','N','Planner Key',120,0,TO_TIMESTAMP('2010-02-15 13:06:43','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:43 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58739 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:44 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59005,50010,58740,0,53307,TO_TIMESTAMP('2010-02-15 13:06:43','YYYY-MM-DD HH24:MI:SS'),0,22,'EE01','Y','Y','Y','N','N','N','Y','Planner',130,0,TO_TIMESTAMP('2010-02-15 13:06:43','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:44 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58740 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:45 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59021,50010,58741,0,53307,TO_TIMESTAMP('2010-02-15 13:06:44','YYYY-MM-DD HH24:MI:SS'),0,'Key of Product BOM',22,'EE01','Y','Y','Y','N','N','N','N','Product BOM Key',140,0,TO_TIMESTAMP('2010-02-15 13:06:44','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:45 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58741 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:46 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59006,50010,58742,0,53307,TO_TIMESTAMP('2010-02-15 13:06:45','YYYY-MM-DD HH24:MI:SS'),0,'BOM & Formula',22,'EE01','Y','Y','Y','N','N','N','Y','BOM & Formula',150,0,TO_TIMESTAMP('2010-02-15 13:06:45','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:46 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58742 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:46 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58991,50010,58743,0,53307,TO_TIMESTAMP('2010-02-15 13:06:46','YYYY-MM-DD HH24:MI:SS'),0,'Workflow or combination of tasks',60,'EE01','The Workflow field identifies a unique Workflow in the system.','Y','Y','Y','N','N','N','N','Workflow',160,0,TO_TIMESTAMP('2010-02-15 13:06:46','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:46 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58743 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:47 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59020,50010,58744,0,53307,TO_TIMESTAMP('2010-02-15 13:06:46','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Network Distribution',22,'EE01','Y','Y','Y','N','N','N','N','Network Distribution Key',170,0,TO_TIMESTAMP('2010-02-15 13:06:46','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:47 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58744 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:48 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58992,50010,58745,0,53307,TO_TIMESTAMP('2010-02-15 13:06:47','YYYY-MM-DD HH24:MI:SS'),0,22,'EE01','Y','Y','Y','N','N','N','Y','Network Distribution',180,0,TO_TIMESTAMP('2010-02-15 13:06:47','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:48 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58745 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:48 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58995,50010,58746,0,53307,TO_TIMESTAMP('2010-02-15 13:06:48','YYYY-MM-DD HH24:MI:SS'),0,1,'EE01','Y','Y','Y','N','N','N','N','Is MPS',190,0,TO_TIMESTAMP('2010-02-15 13:06:48','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:48 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58746 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:49 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58994,50010,58747,0,53307,TO_TIMESTAMP('2010-02-15 13:06:48','YYYY-MM-DD HH24:MI:SS'),0,'Indicates whether planned orders will be generated by MRP',1,'EE01','Indicates whether planned orders will be generated by MRP, if this flag is not just MRP generate a ''Create'' action notice','Y','Y','Y','N','N','N','Y','Create Plan',200,0,TO_TIMESTAMP('2010-02-15 13:06:48','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:49 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58747 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:49 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58993,50010,58748,0,53307,TO_TIMESTAMP('2010-02-15 13:06:49','YYYY-MM-DD HH24:MI:SS'),0,'Promised days between order and delivery',10,'EE01','The Promised Delivery Time indicates the number of days between the order date and the date that delivery was promised.','Y','Y','Y','N','N','N','N','Promised Delivery Time',210,0,TO_TIMESTAMP('2010-02-15 13:06:49','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:49 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58748 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:50 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59009,50010,58749,0,53307,TO_TIMESTAMP('2010-02-15 13:06:49','YYYY-MM-DD HH24:MI:SS'),0,22,'EE01','Y','Y','Y','N','N','N','Y','Time Fence',220,0,TO_TIMESTAMP('2010-02-15 13:06:49','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:50 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58749 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:51 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59010,50010,58750,0,53307,TO_TIMESTAMP('2010-02-15 13:06:50','YYYY-MM-DD HH24:MI:SS'),0,10,'EE01','Y','Y','Y','N','N','N','N','Transfert Time',230,0,TO_TIMESTAMP('2010-02-15 13:06:50','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:51 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58750 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:51 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59003,50010,58751,0,53307,TO_TIMESTAMP('2010-02-15 13:06:51','YYYY-MM-DD HH24:MI:SS'),0,3,'EE01','Y','Y','Y','N','N','N','Y','Order Policy',240,0,TO_TIMESTAMP('2010-02-15 13:06:51','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:51 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58751 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:52 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59002,50010,58752,0,53307,TO_TIMESTAMP('2010-02-15 13:06:51','YYYY-MM-DD HH24:MI:SS'),0,22,'EE01','Y','Y','Y','N','N','N','N','Order Period',250,0,TO_TIMESTAMP('2010-02-15 13:06:51','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:52 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58752 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:52 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59004,50010,58753,0,53307,TO_TIMESTAMP('2010-02-15 13:06:52','YYYY-MM-DD HH24:MI:SS'),0,22,'EE01','Y','Y','Y','N','N','N','Y','Order Qty',260,0,TO_TIMESTAMP('2010-02-15 13:06:52','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:52 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58753 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:53 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59001,50010,58754,0,53307,TO_TIMESTAMP('2010-02-15 13:06:52','YYYY-MM-DD HH24:MI:SS'),0,'Package order size in UOM (e.g. order set of 5 units)',14,'EE01','The Order Pack Quantity indicates the number of units in each pack of this product.','Y','Y','Y','N','N','N','N','Order Pack Qty',270,0,TO_TIMESTAMP('2010-02-15 13:06:52','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:53 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58754 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:54 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59000,50010,58755,0,53307,TO_TIMESTAMP('2010-02-15 13:06:53','YYYY-MM-DD HH24:MI:SS'),0,'Minimum order quantity in UOM',14,'EE01','The Minimum Order Quantity indicates the smallest quantity of this product which can be ordered.','Y','Y','Y','N','N','N','Y','Minimum Order Qty',280,0,TO_TIMESTAMP('2010-02-15 13:06:53','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:54 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58755 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:54 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58999,50010,58756,0,53307,TO_TIMESTAMP('2010-02-15 13:06:54','YYYY-MM-DD HH24:MI:SS'),0,'Maximum order quantity in UOM',10,'EE01','The Maximum Order Quantity indicates the biggest quantity of this product which can be ordered.','Y','Y','Y','N','N','N','N','Maximum Order Qty',290,0,TO_TIMESTAMP('2010-02-15 13:06:54','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:54 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58756 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:55 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59007,50010,58757,0,53307,TO_TIMESTAMP('2010-02-15 13:06:54','YYYY-MM-DD HH24:MI:SS'),0,'Safety stock is a term used to describe a level of stock that is maintained below the cycle stock to buffer against stock-outs',22,'EE01','Safety stock is defined as extra units of inventory carried as protection against possible stockouts. It is held when an organization cannot accurately predict demand and/or lead time for the product. - -Rereference: -http://en.wikipedia.org/wiki/Safety_stock','Y','Y','Y','N','N','N','Y','Safety Stock Qty',300,0,TO_TIMESTAMP('2010-02-15 13:06:54','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:55 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58757 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:56 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59012,50010,58758,0,53307,TO_TIMESTAMP('2010-02-15 13:06:55','YYYY-MM-DD HH24:MI:SS'),0,'The Yield is the percentage of a lot that is expected to be of acceptable wuality may fall below 100 percent',22,'EE01','ADempiere Calculate the total yield for a product from the yield for each activity when the process Workflow Cost Roll-Up is executed. - -The expected yield for an Activity can be expressed as: - -Yield = Acceptable Units at Activity End x 100 - -The Total manufacturing yield for a product is determined by multiplying the yied percentage for each activity. - -Manufacturing Yield = Yield % for Activity 10 x Yied % for Activity 20 , etc - -Take care when setting yield to anything but 100% particularly when yied is used for multiples activities - -','Y','Y','Y','N','N','N','N','Yield %',310,0,TO_TIMESTAMP('2010-02-15 13:06:55','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:56 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58758 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:57 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58996,50010,58759,0,53307,TO_TIMESTAMP('2010-02-15 13:06:56','YYYY-MM-DD HH24:MI:SS'),0,'Phantom Component',1,'EE01','Phantom Component are not stored and produced with the product. This is an option to avild maintaining an Engineering and Manufacturing Bill of Materials.','Y','Y','Y','N','N','N','Y','Phantom',320,0,TO_TIMESTAMP('2010-02-15 13:06:56','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:57 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58759 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:57 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58985,106,58760,0,53307,TO_TIMESTAMP('2010-02-15 13:06:57','YYYY-MM-DD HH24:MI:SS'),0,'The Key of the Business Partner',22,'EE01','Y','Y','Y','N','N','N','N','Business Partner Key',330,0,TO_TIMESTAMP('2010-02-15 13:06:57','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:57 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58760 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:58 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58986,106,58761,0,53307,TO_TIMESTAMP('2010-02-15 13:06:57','YYYY-MM-DD HH24:MI:SS'),0,'Identifies a Business Partner',22,'EE01','A Business Partner is anyone with whom you transact. This can include Vendor, Customer, Employee or Salesperson','Y','Y','Y','N','N','N','Y','Business Partner ',340,0,TO_TIMESTAMP('2010-02-15 13:06:57','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:58 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58761 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:59 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59027,106,58762,0,53307,TO_TIMESTAMP('2010-02-15 13:06:58','YYYY-MM-DD HH24:MI:SS'),0,'Product Key of the Business Partner',22,'EE01','The Business Partner Product Key identifies the number used by the Business Partner for this product. It can be printed on orders and invoices when you include the Product Key in the print format.','Y','Y','Y','N','N','N','N','Partner Product Key',350,0,TO_TIMESTAMP('2010-02-15 13:06:58','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:59 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58762 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:06:59 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59022,106,58763,0,53307,TO_TIMESTAMP('2010-02-15 13:06:59','YYYY-MM-DD HH24:MI:SS'),0,'Key of the Forecast',22,'EE01','Y','Y','Y','N','N','N','N','Forecast Key',360,0,TO_TIMESTAMP('2010-02-15 13:06:59','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:06:59 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58763 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:07:00 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59014,106,58764,0,53307,TO_TIMESTAMP('2010-02-15 13:06:59','YYYY-MM-DD HH24:MI:SS'),0,'Material Forecast',22,'EE01','Material Forecast','Y','Y','Y','N','N','N','N','Forecast',370,0,TO_TIMESTAMP('2010-02-15 13:06:59','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:07:00 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58764 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:07:01 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59025,106,58765,0,53307,TO_TIMESTAMP('2010-02-15 13:07:00','YYYY-MM-DD HH24:MI:SS'),0,'Forecast Line',10,'EE01','Forecast of Product Qyantity by Period','Y','Y','Y','N','N','Y','Y','Forecast Line',380,0,TO_TIMESTAMP('2010-02-15 13:07:00','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:07:01 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58765 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:07:02 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59013,106,58766,0,53307,TO_TIMESTAMP('2010-02-15 13:07:01','YYYY-MM-DD HH24:MI:SS'),0,'Date Order was promised',7,'EE01','The Date Promised indicates the date, if any, that an Order was promised for.','Y','Y','Y','N','N','N','N','Date Promised',390,0,TO_TIMESTAMP('2010-02-15 13:07:01','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:07:02 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58766 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:07:02 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59015,106,58767,0,53307,TO_TIMESTAMP('2010-02-15 13:07:02','YYYY-MM-DD HH24:MI:SS'),0,'Quantity',22,'EE01','The Quantity indicates the number of a specific product or item for this document.','Y','Y','Y','N','N','N','Y','Quantity',400,0,TO_TIMESTAMP('2010-02-15 13:07:02','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:07:02 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58767 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:07:03 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58987,58768,0,53307,TO_TIMESTAMP('2010-02-15 13:07:02','YYYY-MM-DD HH24:MI:SS'),0,'Messages generated from import process',2000,'EE01','The Import Error Message displays any error messages generated during the import process.','Y','Y','Y','N','N','Y','N','Import Error Message',410,0,TO_TIMESTAMP('2010-02-15 13:07:02','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:07:03 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58768 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:07:04 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58988,58769,0,53307,TO_TIMESTAMP('2010-02-15 13:07:03','YYYY-MM-DD HH24:MI:SS'),0,'Has this import been processed',1,'EE01','The Imported check box indicates if this import has been processed.','Y','Y','Y','N','N','Y','N','Imported',420,0,TO_TIMESTAMP('2010-02-15 13:07:03','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:07:04 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58769 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:07:04 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58989,58770,0,53307,TO_TIMESTAMP('2010-02-15 13:07:04','YYYY-MM-DD HH24:MI:SS'),0,'The document has been processed',1,'EE01','The Processed checkbox indicates that a document has been processed.','Y','Y','Y','N','N','Y','Y','Processed',430,0,TO_TIMESTAMP('2010-02-15 13:07:04','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:07:04 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58770 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:07:05 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58990,58771,0,53307,TO_TIMESTAMP('2010-02-15 13:07:04','YYYY-MM-DD HH24:MI:SS'),0,1,'EE01','Y','N','Y','N','N','N','N','Import Product Planning Data',440,0,TO_TIMESTAMP('2010-02-15 13:07:04','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:07:05 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58771 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:07:06 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,58977,58772,0,53307,TO_TIMESTAMP('2010-02-15 13:07:05','YYYY-MM-DD HH24:MI:SS'),0,10,'EE01','Y','Y','N','N','N','N','N','Import Product Planning',0,0,TO_TIMESTAMP('2010-02-15 13:07:05','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:07:06 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58772 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 15, 2010 1:07:07 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Menu (AD_Client_ID,AD_Menu_ID,AD_Org_ID,AD_Window_ID,"action",Created,CreatedBy,EntityType,IsActive,IsReadOnly,IsSOTrx,IsSummary,Name,Updated,UpdatedBy) VALUES (0,53264,0,53109,'W',TO_TIMESTAMP('2010-02-15 13:07:06','YYYY-MM-DD HH24:MI:SS'),0,'EE01','Y','N','N','N','Import Product Planning',TO_TIMESTAMP('2010-02-15 13:07:06','YYYY-MM-DD HH24:MI:SS'),0) -; - --- Feb 15, 2010 1:07:07 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_Menu_Trl (AD_Language,AD_Menu_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Menu_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Menu t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Menu_ID=53264 AND NOT EXISTS (SELECT * FROM AD_Menu_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Menu_ID=t.AD_Menu_ID) -; - --- Feb 15, 2010 1:07:07 PM CST --- Create new importer for Planning Data and Forecast -INSERT INTO AD_TREENODEMM(AD_Client_ID, AD_Org_ID, CreatedBy, UpdatedBy, Parent_ID, SeqNo, AD_Tree_ID, Node_ID)VALUES(0, 0, 0, 0, 163,4, 10, 53264) -; - diff --git a/migration/354a-trunk/postgresql/666_BF2952456_PP_Identifiers.sql b/migration/354a-trunk/postgresql/666_BF2952456_PP_Identifiers.sql deleted file mode 100644 index c91bcb3572..0000000000 --- a/migration/354a-trunk/postgresql/666_BF2952456_PP_Identifiers.sql +++ /dev/null @@ -1,20 +0,0 @@ --- Feb 15, 2010 5:40:55 PM CST --- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator -UPDATE AD_Column SET AD_Reference_ID=19, AD_Reference_Value_ID=NULL, IsIdentifier='Y', IsUpdateable='N', SeqNo=1,Updated=TO_TIMESTAMP('2010-02-15 17:40:55','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Column_ID=53389 -; - --- Feb 15, 2010 5:41:22 PM CST --- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator -UPDATE AD_Column SET Help=NULL, IsIdentifier='Y', SeqNo=2,Updated=TO_TIMESTAMP('2010-02-15 17:41:22','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Column_ID=53400 -; - --- Feb 15, 2010 5:41:22 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Field SET Name='Resource', Description='Resource', Help=NULL WHERE AD_Column_ID=53400 AND IsCentrallyMaintained='Y' -; - --- Feb 15, 2010 5:41:44 PM CST --- Create new importer for Planning Data and Forecast -UPDATE AD_Column SET AD_Reference_ID=19, AD_Reference_Value_ID=NULL, IsIdentifier='Y', SeqNo=3,Updated=TO_TIMESTAMP('2010-02-15 17:41:44','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Column_ID=53390 -; - diff --git a/migration/354a-trunk/postgresql/667_FR2956390_SchedulerEnhancement.sql b/migration/354a-trunk/postgresql/667_FR2956390_SchedulerEnhancement.sql deleted file mode 100644 index ade82e2b3b..0000000000 --- a/migration/354a-trunk/postgresql/667_FR2956390_SchedulerEnhancement.sql +++ /dev/null @@ -1,160 +0,0 @@ --- Feb 19, 2010 5:22:38 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,Help,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,54123,0,'IsIgnoreProcessingTime',TO_TIMESTAMP('2010-02-19 17:22:35','YYYY-MM-DD HH24:MI:SS'),100,'Do not include processing time for the DateNextRun calculation','D','When this is selected, the previous DateNextRun is always use as the source for the next DateNextRun calculation.','Y','Ignore Processing Time','Ignore Proccessing Time',TO_TIMESTAMP('2010-02-19 17:22:35','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 19, 2010 5:22:38 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=54123 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) -; - --- Feb 19, 2010 5:26:11 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,Help,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,54124,0,'CronPattern',TO_TIMESTAMP('2010-02-19 17:26:04','YYYY-MM-DD HH24:MI:SS'),100,'Cron pattern to define when the process should be invoked.','D','Cron pattern to define when the process should be invoked. See http://en.wikipedia.org/wiki/Cron#crontab_syntax for cron scheduling syntax and example.','Y','Cron Scheduling Pattern','Cron Scheduling Pattern',TO_TIMESTAMP('2010-02-19 17:26:04','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 19, 2010 5:26:11 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=54124 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) -; - --- Feb 19, 2010 5:29:11 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59028,54123,0,20,688,'IsIgnoreProcessingTime',TO_TIMESTAMP('2010-02-19 17:29:09','YYYY-MM-DD HH24:MI:SS'),100,'N','Do not include processing time for the DateNextRun calculation','D',1,'When this is selected, the previous DateNextRun is always use as the source for the next DateNextRun calculation.','Y','Y','N','N','N','N','N','N','N','N','N','N','Y','Ignore Processing Time',0,TO_TIMESTAMP('2010-02-19 17:29:09','YYYY-MM-DD HH24:MI:SS'),100,1.000000000000) -; - --- Feb 19, 2010 5:29:11 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59028 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 19, 2010 5:29:16 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -ALTER TABLE AD_Scheduler ADD COLUMN IsIgnoreProcessingTime CHAR(1) DEFAULT 'N' CHECK (IsIgnoreProcessingTime IN ('Y','N')) -; - --- Feb 19, 2010 5:46:42 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59029,54124,0,10,688,'CronPattern',TO_TIMESTAMP('2010-02-19 17:46:38','YYYY-MM-DD HH24:MI:SS'),100,'Cron pattern to define when the process should be invoked.','D',255,'Cron pattern to define when the process should be invoked. See http://en.wikipedia.org/wiki/Cron#crontab_syntax for cron scheduling syntax and example.','Y','Y','N','N','N','N','N','N','N','N','N','N','Y','Cron Scheduling Pattern',0,TO_TIMESTAMP('2010-02-19 17:46:38','YYYY-MM-DD HH24:MI:SS'),100,1.000000000000) -; - --- Feb 19, 2010 5:46:42 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59029 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Feb 19, 2010 5:46:46 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -ALTER TABLE AD_Scheduler ADD COLUMN CronPattern VARCHAR(255) DEFAULT NULL -; - --- Feb 19, 2010 5:47:11 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -UPDATE AD_Column SET IsMandatory='N',Updated=TO_TIMESTAMP('2010-02-19 17:47:11','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=11247 -; - --- Feb 19, 2010 5:47:18 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -UPDATE AD_Column SET IsMandatory='N',Updated=TO_TIMESTAMP('2010-02-19 17:47:18','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=11255 -; - --- Feb 19, 2010 5:48:07 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -UPDATE AD_Ref_List SET IsActive='N',Updated=TO_TIMESTAMP('2010-02-19 17:48:07','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Ref_List_ID=665 -; - --- Feb 19, 2010 5:48:10 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -UPDATE AD_Ref_List SET IsActive='N',Updated=TO_TIMESTAMP('2010-02-19 17:48:10','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Ref_List_ID=664 -; - --- Feb 19, 2010 5:49:04 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,Description,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,318,53574,TO_TIMESTAMP('2010-02-19 17:49:02','YYYY-MM-DD HH24:MI:SS'),100,'Use cron style scheduling pattern','D','Y','Cron Scheduling Pattern',TO_TIMESTAMP('2010-02-19 17:49:02','YYYY-MM-DD HH24:MI:SS'),100,'C') -; - --- Feb 19, 2010 5:49:04 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53574 AND NOT EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Ref_List_ID=t.AD_Ref_List_ID) -; - --- Feb 19, 2010 5:53:21 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -UPDATE AD_Field SET IsActive='N',Updated=TO_TIMESTAMP('2010-02-19 17:53:21','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=10053 -; - --- Feb 19, 2010 5:53:26 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -UPDATE AD_Field SET IsActive='N',Updated=TO_TIMESTAMP('2010-02-19 17:53:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=10052 -; - --- Feb 19, 2010 5:54:51 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,DisplayLogic,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59028,58773,0,589,TO_TIMESTAMP('2010-02-19 17:54:49','YYYY-MM-DD HH24:MI:SS'),100,'Do not include processing time for the DateNextRun calculation',10,'@ScheduleType@=F','D','When this is selected, the previous DateNextRun is always use as the source for the next DateNextRun calculation.','Y','Y','Y','N','N','N','N','N','Ignore Processing Time',160,0,TO_TIMESTAMP('2010-02-19 17:54:49','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 19, 2010 5:54:51 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58773 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 19, 2010 5:55:49 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,DisplayLogic,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsMandatory,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59029,58774,0,589,TO_TIMESTAMP('2010-02-19 17:55:48','YYYY-MM-DD HH24:MI:SS'),100,'Cron pattern to define when the process should be invoked.',60,'@ScheduleType@=C','D','Cron pattern to define when the process should be invoked. See http://en.wikipedia.org/wiki/Cron#crontab_syntax for cron scheduling syntax and example.','Y','Y','Y','N','N','N','Y','N','N','Cron Scheduling Pattern',170,0,TO_TIMESTAMP('2010-02-19 17:55:48','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 19, 2010 5:55:49 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58774 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Feb 19, 2010 5:57:03 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -UPDATE AD_Field SET SeqNo=0,IsDisplayed='N' WHERE AD_Field_ID=10053 -; - --- Feb 19, 2010 5:57:03 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -UPDATE AD_Field SET SeqNo=0,IsDisplayed='N' WHERE AD_Field_ID=10052 -; - --- Feb 19, 2010 5:57:03 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -UPDATE AD_Field SET SeqNo=80,IsDisplayed='Y' WHERE AD_Field_ID=9437 -; - --- Feb 19, 2010 5:57:03 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -UPDATE AD_Field SET SeqNo=90,IsDisplayed='Y' WHERE AD_Field_ID=9430 -; - --- Feb 19, 2010 5:57:03 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -UPDATE AD_Field SET SeqNo=100,IsDisplayed='Y' WHERE AD_Field_ID=58773 -; - --- Feb 19, 2010 5:57:03 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -UPDATE AD_Field SET SeqNo=110,IsDisplayed='Y' WHERE AD_Field_ID=58774 -; - --- Feb 19, 2010 5:57:21 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -UPDATE AD_Field SET IsMandatory='Y',Updated=TO_TIMESTAMP('2010-02-19 17:57:21','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=9430 -; - --- Feb 19, 2010 5:57:28 PM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -UPDATE AD_Field SET IsMandatory='Y',Updated=TO_TIMESTAMP('2010-02-19 17:57:28','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=9437 -; - --- Feb 22, 2010 9:31:45 AM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Message (AD_Client_ID,AD_Message_ID,AD_Org_ID,Created,CreatedBy,EntityType,IsActive,MsgText,MsgTip,MsgType,Updated,UpdatedBy,Value) VALUES (0,53095,0,TO_TIMESTAMP('2010-02-22 09:31:41','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Invalid cron scheduling pattern','Invalid cron scheduling pattern - check syntax','E',TO_TIMESTAMP('2010-02-22 09:31:41','YYYY-MM-DD HH24:MI:SS'),100,'InvalidCronPattern') -; - --- Feb 22, 2010 9:31:45 AM MYT --- adding cron4j to the Adempiere scheduler - ID: 2950261 -INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=53095 AND NOT EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Message_ID=t.AD_Message_ID) -; - diff --git a/migration/354a-trunk/postgresql/668_FR2957782_PaySelection_DueDate_Para.sql b/migration/354a-trunk/postgresql/668_FR2957782_PaySelection_DueDate_Para.sql deleted file mode 100644 index 88cdb5d5c1..0000000000 --- a/migration/354a-trunk/postgresql/668_FR2957782_PaySelection_DueDate_Para.sql +++ /dev/null @@ -1,10 +0,0 @@ --- Feb 24, 2010 4:03:13 PM EST --- Payment selection due date parameter -INSERT INTO AD_Process_Para (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,Description,DisplayLogic,EntityType,FieldLength,Help,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,2000,0,156,53404,15,'DueDate',TO_TIMESTAMP('2010-02-24 16:03:03','YYYY-MM-DD HH24:MI:SS'),100,'Date when the payment is due','@OnlyDue@=Y','D',7,'Date when the payment is due without deductions or discount','Y','Y','N','N','Due Date',45,TO_TIMESTAMP('2010-02-24 16:03:03','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 24, 2010 4:03:13 PM EST --- Payment selection due date parameter -INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53404 AND NOT EXISTS (SELECT * FROM AD_Process_Para_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Process_Para_ID=t.AD_Process_Para_ID) -; - diff --git a/migration/354a-trunk/postgresql/669_BF2904257.sql b/migration/354a-trunk/postgresql/669_BF2904257.sql deleted file mode 100644 index 46c8ddcd14..0000000000 --- a/migration/354a-trunk/postgresql/669_BF2904257.sql +++ /dev/null @@ -1,5 +0,0 @@ --- 01-mar-2010 12:10:16 COT --- Bug_2904257_wrong validation sql for M_InOutShipment/Receipt (RMA) -UPDATE AD_Val_Rule SET Code='M_InOutLine.M_InOut_ID=@InOut_ID@',Updated=TO_TIMESTAMP('2010-03-01 12:10:16','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Val_Rule_ID=52001 -; - diff --git a/migration/354a-trunk/postgresql/670_FR2962094_AddProcesssedOnColumn.sql b/migration/354a-trunk/postgresql/670_FR2962094_AddProcesssedOnColumn.sql deleted file mode 100644 index 35437b6717..0000000000 --- a/migration/354a-trunk/postgresql/670_FR2962094_AddProcesssedOnColumn.sql +++ /dev/null @@ -1,237 +0,0 @@ --- Mar 2, 2010 2:06:30 PM COT --- FR_2962094_Finish implementation of weighted average costing -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,Help,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,54128,0,'ProcessedOn',TO_TIMESTAMP('2010-03-02 14:06:28','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D','The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','Processed On','Processed On',TO_TIMESTAMP('2010-03-02 14:06:28','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Mar 2, 2010 2:06:30 PM COT -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=54128 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) -; - --- Mar 2, 2010 2:08:58 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59034,54128,0,22,735,'ProcessedOn',TO_TIMESTAMP('2010-03-02 14:08:57','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_TIMESTAMP('2010-03-02 14:08:57','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:08:58 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59034 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:09:03 PM COT -ALTER TABLE C_AllocationHdr ADD COLUMN ProcessedOn NUMERIC DEFAULT NULL -; - --- Mar 2, 2010 2:09:54 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59035,54128,0,22,392,'ProcessedOn',TO_TIMESTAMP('2010-03-02 14:09:54','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_TIMESTAMP('2010-03-02 14:09:54','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:09:54 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59035 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:09:56 PM COT -ALTER TABLE C_BankStatement ADD COLUMN ProcessedOn NUMERIC DEFAULT NULL -; - --- Mar 2, 2010 2:10:39 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59036,54128,0,22,407,'ProcessedOn',TO_TIMESTAMP('2010-03-02 14:10:38','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_TIMESTAMP('2010-03-02 14:10:38','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:10:39 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59036 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:10:42 PM COT -ALTER TABLE C_Cash ADD COLUMN ProcessedOn NUMERIC DEFAULT NULL -; - --- Mar 2, 2010 2:11:19 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59037,54128,0,22,318,'ProcessedOn',TO_TIMESTAMP('2010-03-02 14:11:19','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_TIMESTAMP('2010-03-02 14:11:19','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:11:19 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59037 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:11:22 PM COT -ALTER TABLE C_Invoice ADD COLUMN ProcessedOn NUMERIC DEFAULT NULL -; - --- Mar 2, 2010 2:11:48 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59038,54128,0,22,259,'ProcessedOn',TO_TIMESTAMP('2010-03-02 14:11:48','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_TIMESTAMP('2010-03-02 14:11:48','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:11:48 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59038 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:11:51 PM COT -ALTER TABLE C_Order ADD COLUMN ProcessedOn NUMERIC DEFAULT NULL -; - --- Mar 2, 2010 2:12:19 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59039,54128,0,22,335,'ProcessedOn',TO_TIMESTAMP('2010-03-02 14:12:15','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_TIMESTAMP('2010-03-02 14:12:15','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:12:19 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59039 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:12:22 PM COT -ALTER TABLE C_Payment ADD COLUMN ProcessedOn NUMERIC DEFAULT NULL -; - --- Mar 2, 2010 2:12:53 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59040,54128,0,22,623,'ProcessedOn',TO_TIMESTAMP('2010-03-02 14:12:52','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_TIMESTAMP('2010-03-02 14:12:52','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:12:53 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59040 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:12:55 PM COT -ALTER TABLE C_ProjectIssue ADD COLUMN ProcessedOn NUMERIC DEFAULT NULL -; - --- Mar 2, 2010 2:13:31 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59041,54128,0,22,53037,'ProcessedOn',TO_TIMESTAMP('2010-03-02 14:13:31','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_TIMESTAMP('2010-03-02 14:13:31','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:13:31 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59041 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:13:34 PM COT -ALTER TABLE DD_Order ADD COLUMN ProcessedOn NUMERIC DEFAULT NULL -; - --- Mar 2, 2010 2:13:58 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59042,54128,0,22,224,'ProcessedOn',TO_TIMESTAMP('2010-03-02 14:13:57','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_TIMESTAMP('2010-03-02 14:13:57','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:13:58 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59042 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:14:00 PM COT -ALTER TABLE GL_Journal ADD COLUMN ProcessedOn NUMERIC DEFAULT NULL -; - --- Mar 2, 2010 2:14:24 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59043,54128,0,22,53092,'ProcessedOn',TO_TIMESTAMP('2010-03-02 14:14:24','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_TIMESTAMP('2010-03-02 14:14:24','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:14:24 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59043 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:14:36 PM COT -ALTER TABLE HR_Process ADD COLUMN ProcessedOn NUMERIC DEFAULT NULL -; - --- Mar 2, 2010 2:15:02 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59044,54128,0,22,319,'ProcessedOn',TO_TIMESTAMP('2010-03-02 14:15:00','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_TIMESTAMP('2010-03-02 14:15:00','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:15:02 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59044 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:15:05 PM COT -ALTER TABLE M_InOut ADD COLUMN ProcessedOn NUMERIC DEFAULT NULL -; - --- Mar 2, 2010 2:15:29 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59045,54128,0,22,321,'ProcessedOn',TO_TIMESTAMP('2010-03-02 14:15:28','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_TIMESTAMP('2010-03-02 14:15:28','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:15:29 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59045 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:15:30 PM COT -ALTER TABLE M_Inventory ADD COLUMN ProcessedOn NUMERIC DEFAULT NULL -; - --- Mar 2, 2010 2:15:52 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59046,54128,0,22,472,'ProcessedOn',TO_TIMESTAMP('2010-03-02 14:15:51','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_TIMESTAMP('2010-03-02 14:15:51','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:15:52 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59046 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:15:53 PM COT -ALTER TABLE M_MatchInv ADD COLUMN ProcessedOn NUMERIC DEFAULT NULL -; - --- Mar 2, 2010 2:16:16 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59047,54128,0,22,473,'ProcessedOn',TO_TIMESTAMP('2010-03-02 14:16:15','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_TIMESTAMP('2010-03-02 14:16:15','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:16:16 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59047 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:16:17 PM COT -ALTER TABLE M_MatchPO ADD COLUMN ProcessedOn NUMERIC DEFAULT NULL -; - --- Mar 2, 2010 2:16:43 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59048,54128,0,22,323,'ProcessedOn',TO_TIMESTAMP('2010-03-02 14:16:42','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_TIMESTAMP('2010-03-02 14:16:42','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:16:43 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59048 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:16:44 PM COT -ALTER TABLE M_Movement ADD COLUMN ProcessedOn NUMERIC DEFAULT NULL -; - --- Mar 2, 2010 2:17:09 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59049,54128,0,22,325,'ProcessedOn',TO_TIMESTAMP('2010-03-02 14:17:09','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_TIMESTAMP('2010-03-02 14:17:09','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:17:09 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59049 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:17:11 PM COT -ALTER TABLE M_Production ADD COLUMN ProcessedOn NUMERIC DEFAULT NULL -; - --- Mar 2, 2010 2:17:33 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59050,54128,0,22,702,'ProcessedOn',TO_TIMESTAMP('2010-03-02 14:17:33','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_TIMESTAMP('2010-03-02 14:17:33','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:17:33 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59050 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:17:35 PM COT -ALTER TABLE M_Requisition ADD COLUMN ProcessedOn NUMERIC DEFAULT NULL -; - --- Mar 2, 2010 2:18:10 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59051,54128,0,22,53035,'ProcessedOn',TO_TIMESTAMP('2010-03-02 14:18:09','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_TIMESTAMP('2010-03-02 14:18:09','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:18:10 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59051 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:18:12 PM COT -ALTER TABLE PP_Cost_Collector ADD COLUMN ProcessedOn NUMERIC DEFAULT NULL -; - --- Mar 2, 2010 2:18:38 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59052,54128,0,22,53027,'ProcessedOn',TO_TIMESTAMP('2010-03-02 14:18:38','YYYY-MM-DD HH24:MI:SS'),100,'The date+time (expressed in decimal format) when the document has been processed','D',20,'The ProcessedOn Date+Time save the exact moment (nanoseconds precision if allowed by the DB) when a document has been processed.','Y','N','N','N','N','N','N','N','N','N','Y','Processed On',0,TO_TIMESTAMP('2010-03-02 14:18:38','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 2, 2010 2:18:38 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59052 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 2, 2010 2:18:40 PM COT -ALTER TABLE PP_Order ADD COLUMN ProcessedOn NUMERIC DEFAULT NULL -; - diff --git a/migration/354a-trunk/postgresql/671_FR2962094_FillProcesssedOn.sql b/migration/354a-trunk/postgresql/671_FR2962094_FillProcesssedOn.sql deleted file mode 100644 index 5d62b2c315..0000000000 --- a/migration/354a-trunk/postgresql/671_FR2962094_FillProcesssedOn.sql +++ /dev/null @@ -1,421 +0,0 @@ --- create temporary index -CREATE INDEX tmp_ad_wf_activity_speed ON ad_wf_activity(ad_table_id, record_id); - --- ****** SET ProcessedOn on table C_AllocationHdr ****** - --- try to get the processed from ad_changelog -update C_AllocationHdr set processedon = -(select max(EXTRACT(EPOCH FROM updated)*1000) from ad_changelog - where ad_table_id = 735 and record_id = C_AllocationHdr.C_AllocationHdr_id and ad_column_id = 12309 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update C_AllocationHdr set processedon = -(select max(EXTRACT(EPOCH FROM a.updated)*1000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 735 and a.record_id = C_AllocationHdr.C_AllocationHdr_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update C_AllocationHdr set processedon = EXTRACT(EPOCH FROM created)*1000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table C_BankStatement ****** - --- try to get the processed from ad_changelog -update C_BankStatement set processedon = -(select max(EXTRACT(EPOCH FROM updated)*1000) from ad_changelog - where ad_table_id = 392 and record_id = C_BankStatement.C_BankStatement_id and ad_column_id = 4924 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update C_BankStatement set processedon = -(select max(EXTRACT(EPOCH FROM a.updated)*1000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 392 and a.record_id = C_BankStatement.C_BankStatement_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update C_BankStatement set processedon = EXTRACT(EPOCH FROM created)*1000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table C_Cash ****** - --- try to get the processed from ad_changelog -update C_Cash set processedon = -(select max(EXTRACT(EPOCH FROM updated)*1000) from ad_changelog - where ad_table_id = 407 and record_id = C_Cash.C_Cash_id and ad_column_id = 5258 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update C_Cash set processedon = -(select max(EXTRACT(EPOCH FROM a.updated)*1000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 407 and a.record_id = C_Cash.C_Cash_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update C_Cash set processedon = EXTRACT(EPOCH FROM created)*1000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table C_Invoice ****** - --- try to get the processed from ad_changelog -update C_Invoice set processedon = -(select max(EXTRACT(EPOCH FROM updated)*1000) from ad_changelog - where ad_table_id = 318 and record_id = C_Invoice.C_Invoice_id and ad_column_id = 3497 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update C_Invoice set processedon = -(select max(EXTRACT(EPOCH FROM a.updated)*1000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 318 and a.record_id = C_Invoice.C_Invoice_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update C_Invoice set processedon = EXTRACT(EPOCH FROM created)*1000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table C_Order ****** - --- try to get the processed from ad_changelog -update C_Order set processedon = -(select max(EXTRACT(EPOCH FROM updated)*1000) from ad_changelog - where ad_table_id = 259 and record_id = C_Order.C_Order_id and ad_column_id = 3398 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update C_Order set processedon = -(select max(EXTRACT(EPOCH FROM a.updated)*1000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 259 and a.record_id = C_Order.C_Order_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update C_Order set processedon = EXTRACT(EPOCH FROM created)*1000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table C_Payment ****** - --- try to get the processed from ad_changelog -update C_Payment set processedon = -(select max(EXTRACT(EPOCH FROM updated)*1000) from ad_changelog - where ad_table_id = 335 and record_id = C_Payment.C_Payment_id and ad_column_id = 3878 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update C_Payment set processedon = -(select max(EXTRACT(EPOCH FROM a.updated)*1000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 335 and a.record_id = C_Payment.C_Payment_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update C_Payment set processedon = EXTRACT(EPOCH FROM created)*1000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table C_ProjectIssue ****** - --- try to get the processed from ad_changelog -update C_ProjectIssue set processedon = -(select max(EXTRACT(EPOCH FROM updated)*1000) from ad_changelog - where ad_table_id = 623 and record_id = C_ProjectIssue.C_ProjectIssue_id and ad_column_id = 9842 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update C_ProjectIssue set processedon = -(select max(EXTRACT(EPOCH FROM a.updated)*1000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 623 and a.record_id = C_ProjectIssue.C_ProjectIssue_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update C_ProjectIssue set processedon = EXTRACT(EPOCH FROM created)*1000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table DD_Order ****** - --- try to get the processed from ad_changelog -update DD_Order set processedon = -(select max(EXTRACT(EPOCH FROM updated)*1000) from ad_changelog - where ad_table_id = 53037 and record_id = DD_Order.DD_Order_id and ad_column_id = 53912 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update DD_Order set processedon = -(select max(EXTRACT(EPOCH FROM a.updated)*1000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 53037 and a.record_id = DD_Order.DD_Order_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update DD_Order set processedon = EXTRACT(EPOCH FROM created)*1000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table GL_Journal ****** - --- try to get the processed from ad_changelog -update GL_Journal set processedon = -(select max(EXTRACT(EPOCH FROM updated)*1000) from ad_changelog - where ad_table_id = 224 and record_id = GL_Journal.GL_Journal_id and ad_column_id = 5953 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update GL_Journal set processedon = -(select max(EXTRACT(EPOCH FROM a.updated)*1000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 224 and a.record_id = GL_Journal.GL_Journal_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update GL_Journal set processedon = EXTRACT(EPOCH FROM created)*1000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table HR_Process ****** - --- try to get the processed from ad_changelog -update HR_Process set processedon = -(select max(EXTRACT(EPOCH FROM updated)*1000) from ad_changelog - where ad_table_id = 53092 and record_id = HR_Process.HR_Process_id and ad_column_id = 54876 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update HR_Process set processedon = -(select max(EXTRACT(EPOCH FROM a.updated)*1000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 53092 and a.record_id = HR_Process.HR_Process_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update HR_Process set processedon = EXTRACT(EPOCH FROM created)*1000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table M_InOut ****** - --- try to get the processed from ad_changelog -update M_InOut set processedon = -(select max(EXTRACT(EPOCH FROM updated)*1000) from ad_changelog - where ad_table_id = 319 and record_id = M_InOut.M_InOut_id and ad_column_id = 3518 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update M_InOut set processedon = -(select max(EXTRACT(EPOCH FROM a.updated)*1000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 319 and a.record_id = M_InOut.M_InOut_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update M_InOut set processedon = EXTRACT(EPOCH FROM created)*1000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table M_Inventory ****** - --- try to get the processed from ad_changelog -update M_Inventory set processedon = -(select max(EXTRACT(EPOCH FROM updated)*1000) from ad_changelog - where ad_table_id = 321 and record_id = M_Inventory.M_Inventory_id and ad_column_id = 3553 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update M_Inventory set processedon = -(select max(EXTRACT(EPOCH FROM a.updated)*1000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 321 and a.record_id = M_Inventory.M_Inventory_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update M_Inventory set processedon = EXTRACT(EPOCH FROM created)*1000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table M_MatchInv ****** - --- try to get the processed from ad_changelog -update M_MatchInv set processedon = -(select max(EXTRACT(EPOCH FROM updated)*1000) from ad_changelog - where ad_table_id = 472 and record_id = M_MatchInv.M_MatchInv_id and ad_column_id = 6511 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update M_MatchInv set processedon = -(select max(EXTRACT(EPOCH FROM a.updated)*1000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 472 and a.record_id = M_MatchInv.M_MatchInv_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update M_MatchInv set processedon = EXTRACT(EPOCH FROM created)*1000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table M_MatchPO ****** - --- try to get the processed from ad_changelog -update M_MatchPO set processedon = -(select max(EXTRACT(EPOCH FROM updated)*1000) from ad_changelog - where ad_table_id = 473 and record_id = M_MatchPO.M_MatchPO_id and ad_column_id = 6527 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update M_MatchPO set processedon = -(select max(EXTRACT(EPOCH FROM a.updated)*1000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 473 and a.record_id = M_MatchPO.M_MatchPO_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update M_MatchPO set processedon = EXTRACT(EPOCH FROM created)*1000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table M_Movement ****** - --- try to get the processed from ad_changelog -update M_Movement set processedon = -(select max(EXTRACT(EPOCH FROM updated)*1000) from ad_changelog - where ad_table_id = 323 and record_id = M_Movement.M_Movement_id and ad_column_id = 3580 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update M_Movement set processedon = -(select max(EXTRACT(EPOCH FROM a.updated)*1000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 323 and a.record_id = M_Movement.M_Movement_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update M_Movement set processedon = EXTRACT(EPOCH FROM created)*1000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table M_Production ****** - --- try to get the processed from ad_changelog -update M_Production set processedon = -(select max(EXTRACT(EPOCH FROM updated)*1000) from ad_changelog - where ad_table_id = 325 and record_id = M_Production.M_Production_id and ad_column_id = 3609 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update M_Production set processedon = -(select max(EXTRACT(EPOCH FROM a.updated)*1000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 325 and a.record_id = M_Production.M_Production_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update M_Production set processedon = EXTRACT(EPOCH FROM created)*1000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table M_Requisition ****** - --- try to get the processed from ad_changelog -update M_Requisition set processedon = -(select max(EXTRACT(EPOCH FROM updated)*1000) from ad_changelog - where ad_table_id = 702 and record_id = M_Requisition.M_Requisition_id and ad_column_id = 11473 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update M_Requisition set processedon = -(select max(EXTRACT(EPOCH FROM a.updated)*1000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 702 and a.record_id = M_Requisition.M_Requisition_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update M_Requisition set processedon = EXTRACT(EPOCH FROM created)*1000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table PP_Cost_Collector ****** - --- try to get the processed from ad_changelog -update PP_Cost_Collector set processedon = -(select max(EXTRACT(EPOCH FROM updated)*1000) from ad_changelog - where ad_table_id = 53035 and record_id = PP_Cost_Collector.PP_Cost_Collector_id and ad_column_id = 53834 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update PP_Cost_Collector set processedon = -(select max(EXTRACT(EPOCH FROM a.updated)*1000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 53035 and a.record_id = PP_Cost_Collector.PP_Cost_Collector_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update PP_Cost_Collector set processedon = EXTRACT(EPOCH FROM created)*1000 -where processedon is null and processed = 'Y'; - - - --- ****** SET ProcessedOn on table PP_Order ****** - --- try to get the processed from ad_changelog -update PP_Order set processedon = -(select max(EXTRACT(EPOCH FROM updated)*1000) from ad_changelog - where ad_table_id = 53027 and record_id = PP_Order.PP_Order_id and ad_column_id = 53664 - and (newvalue = 'Y' or newvalue = 'true') and (oldvalue = 'false' or oldvalue = 'NULL' or oldvalue is null)) -where processedon is null and processed = 'Y'; - --- if not then try to get the processed from ad_wf_activity -update PP_Order set processedon = -(select max(EXTRACT(EPOCH FROM a.updated)*1000) from ad_wf_activity a, ad_wf_node n -where a.ad_table_id = 53027 and a.record_id = PP_Order.PP_Order_id -and a.ad_wf_node_id = n.ad_wf_node_id and n.docaction = 'CO' and a.wfstate = 'CC') -where processedon is null and processed = 'Y'; - --- fallback to created date -update PP_Order set processedon = EXTRACT(EPOCH FROM created)*1000 -where processedon is null and processed = 'Y'; - --- drop temporary index -DROP INDEX tmp_ad_wf_activity_speed; diff --git a/migration/354a-trunk/postgresql/672_BF2948897.sql b/migration/354a-trunk/postgresql/672_BF2948897.sql deleted file mode 100644 index 05588a7d2a..0000000000 --- a/migration/354a-trunk/postgresql/672_BF2948897.sql +++ /dev/null @@ -1,15 +0,0 @@ --- Mar 4, 2010 1:33:05 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE AD_Tab SET WhereClause='A_Depreciation_Entry.A_Entry_Type=''DIS''',Updated=TO_TIMESTAMP('2010-03-04 13:33:05','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=53141 -; - --- Mar 4, 2010 1:33:13 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE AD_Tab SET WhereClause='A_Depreciation_Entry.A_Entry_Type=''SPL''',Updated=TO_TIMESTAMP('2010-03-04 13:33:13','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=53151 -; - --- Mar 4, 2010 1:33:21 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE AD_Tab SET WhereClause='A_Depreciation_Entry.A_Entry_Type=''TRN''',Updated=TO_TIMESTAMP('2010-03-04 13:33:21','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=53140 -; - diff --git a/migration/354a-trunk/postgresql/673_BF2948897.sql b/migration/354a-trunk/postgresql/673_BF2948897.sql deleted file mode 100644 index d915069e7c..0000000000 --- a/migration/354a-trunk/postgresql/673_BF2948897.sql +++ /dev/null @@ -1,105 +0,0 @@ --- Mar 4, 2010 1:54:35 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE AD_Column SET AD_Reference_ID=20,Updated=TO_TIMESTAMP('2010-03-04 13:54:35','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=55347 -; - --- Mar 4, 2010 1:55:33 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE AD_Column SET AD_Process_ID=NULL, AD_Reference_ID=20,Updated=TO_TIMESTAMP('2010-03-04 13:55:33','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=55557 -; - --- Mar 4, 2010 1:56:07 PM COT --- BF2948897_Fixed Assets Dictionary Errors -INSERT INTO t_alter_column values('a_depreciation','Processed','CHAR(1)',null,'Y') -; - --- Mar 4, 2010 1:56:08 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE A_Depreciation SET Processed='Y' WHERE Processed IS NULL -; - --- Mar 4, 2010 1:56:28 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE AD_Column SET DefaultValue='N',Updated=TO_TIMESTAMP('2010-03-04 13:56:28','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=55557 -; - --- Mar 4, 2010 1:56:30 PM COT --- BF2948897_Fixed Assets Dictionary Errors -INSERT INTO t_alter_column values('a_depreciation_entry','Processed','CHAR(1)',null,'N') -; - --- Mar 4, 2010 1:56:31 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE A_Depreciation_Entry SET Processed='N' WHERE Processed IS NULL -; - --- Mar 4, 2010 1:56:58 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE AD_Column SET AD_Process_ID=53111, AD_Reference_ID=28,Updated=TO_TIMESTAMP('2010-03-04 13:56:58','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=55703 -; - --- Mar 4, 2010 1:57:00 PM COT --- BF2948897_Fixed Assets Dictionary Errors -INSERT INTO t_alter_column values('a_depreciation_build','Processing','CHAR(1)',null,'NULL') -; - --- Mar 4, 2010 1:57:15 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE AD_Column SET AD_Process_ID=NULL, AD_Reference_ID=20, DefaultValue='N',Updated=TO_TIMESTAMP('2010-03-04 13:57:15','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=55700 -; - --- Mar 4, 2010 1:57:19 PM COT --- BF2948897_Fixed Assets Dictionary Errors -INSERT INTO t_alter_column values('a_depreciation_build','Processed','CHAR(1)',null,'N') -; - --- Mar 4, 2010 1:58:11 PM COT --- BF2948897_Fixed Assets Dictionary Errors -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59065,524,0,53123,28,53125,'Processing',TO_TIMESTAMP('2010-03-04 13:58:09','YYYY-MM-DD HH24:MI:SS'),100,'D',1,'Y','Y','N','N','N','N','N','Y','N','N','Y','N','Y','Process Now',TO_TIMESTAMP('2010-03-04 13:58:09','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 4, 2010 1:58:11 PM COT --- BF2948897_Fixed Assets Dictionary Errors -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59065 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 4, 2010 1:58:36 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE AD_Column SET IsMandatory='N',Updated=TO_TIMESTAMP('2010-03-04 13:58:36','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=59065 -; - --- Mar 4, 2010 1:58:38 PM COT --- BF2948897_Fixed Assets Dictionary Errors -ALTER TABLE A_Depreciation_Convention ADD COLUMN Processing CHAR(1) DEFAULT NULL -; - --- Mar 4, 2010 1:58:51 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE AD_Column SET AD_Process_ID=NULL, AD_Reference_ID=20, DefaultValue='N',Updated=TO_TIMESTAMP('2010-03-04 13:58:51','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=55736 -; - --- Mar 4, 2010 1:58:54 PM COT --- BF2948897_Fixed Assets Dictionary Errors -INSERT INTO t_alter_column values('a_depreciation_convention','Processed','CHAR(1)',null,'N') -; - --- Mar 4, 2010 1:58:54 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE A_Depreciation_Convention SET Processed='N' WHERE Processed IS NULL -; - --- Mar 4, 2010 1:59:46 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE AD_Column SET AD_Process_ID=NULL, AD_Reference_ID=20,Updated=TO_TIMESTAMP('2010-03-04 13:59:46','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=55747 -; - --- Mar 4, 2010 1:59:49 PM COT --- BF2948897_Fixed Assets Dictionary Errors -INSERT INTO t_alter_column values('a_depreciation_method','Processed','CHAR(1)',null,'Y') -; - --- Mar 4, 2010 1:59:49 PM COT --- BF2948897_Fixed Assets Dictionary Errors -UPDATE A_Depreciation_Method SET Processed='Y' WHERE Processed IS NULL -; - diff --git a/migration/354a-trunk/postgresql/674_FR2965494.sql b/migration/354a-trunk/postgresql/674_FR2965494.sql deleted file mode 100644 index f33d0790b1..0000000000 --- a/migration/354a-trunk/postgresql/674_FR2965494.sql +++ /dev/null @@ -1,311 +0,0 @@ --- Mar 8, 2010 4:20:41 PM CET --- Import of Order Source -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59066,53942,0,19,591,'C_OrderSource_ID',TO_TIMESTAMP('2010-03-08 16:20:39','YYYY-MM-DD HH24:MI:SS'),100,'D',10,'Y','N','N','N','N','N','N','N','N','N','N','N','Y','Order Source',0,TO_TIMESTAMP('2010-03-08 16:20:39','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 8, 2010 4:20:41 PM CET --- Import of Order Source -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59066 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 8, 2010 4:20:44 PM CET --- Import of Order Source -ALTER TABLE I_Order ADD COLUMN C_OrderSource_ID NUMERIC(10) DEFAULT NULL -; - --- Mar 8, 2010 4:23:40 PM CET --- Import of Order Source -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,54129,0,'C_OrderSourceValue',TO_TIMESTAMP('2010-03-08 16:23:39','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Order Source Key','Order Source Key',TO_TIMESTAMP('2010-03-08 16:23:39','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Mar 8, 2010 4:23:40 PM CET --- Import of Order Source -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=54129 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) -; - --- Mar 8, 2010 4:27:20 PM CET --- Import of Order Source -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,59068,54129,0,10,591,'C_OrderSourceValue',TO_TIMESTAMP('2010-03-08 16:27:19','YYYY-MM-DD HH24:MI:SS'),100,'D',40,'Y','Y','N','N','N','N','N','N','N','N','N','N','Y','Order Source Key',0,TO_TIMESTAMP('2010-03-08 16:27:19','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 8, 2010 4:27:20 PM CET --- Import of Order Source -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59068 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 8, 2010 4:27:27 PM CET --- Import of Order Source -ALTER TABLE I_Order ADD COLUMN C_OrderSourceValue VARCHAR(40) DEFAULT NULL -; - - - --- Mar 8, 2010 4:32:35 PM CET --- Import of Order Source -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59068,58779,0,512,TO_TIMESTAMP('2010-03-08 16:32:33','YYYY-MM-DD HH24:MI:SS'),100,0,'D','Y','Y','Y','N','N','N','N','N','Order Source Key',590,0,TO_TIMESTAMP('2010-03-08 16:32:33','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Mar 8, 2010 4:32:35 PM CET --- Import of Order Source -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58779 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Mar 8, 2010 4:33:50 PM CET --- Import of Order Source -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59066,58780,0,512,TO_TIMESTAMP('2010-03-08 16:33:47','YYYY-MM-DD HH24:MI:SS'),100,0,'D','Y','Y','Y','N','N','N','N','N','Order Source',600,0,TO_TIMESTAMP('2010-03-08 16:33:47','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Mar 8, 2010 4:33:50 PM CET --- Import of Order Source -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58780 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Mar 8, 2010 4:33:58 PM CET --- Import of Order Source -UPDATE AD_Field SET IsSameLine='Y',Updated=TO_TIMESTAMP('2010-03-08 16:33:58','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=58780 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=0,IsDisplayed='N' WHERE AD_Field_ID=7347 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=0,IsDisplayed='N' WHERE AD_Field_ID=7334 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=10,IsDisplayed='Y' WHERE AD_Field_ID=7328 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=20,IsDisplayed='Y' WHERE AD_Field_ID=7319 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=30,IsDisplayed='Y' WHERE AD_Field_ID=7323 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=40,IsDisplayed='Y' WHERE AD_Field_ID=7324 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=50,IsDisplayed='Y' WHERE AD_Field_ID=7337 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=60,IsDisplayed='Y' WHERE AD_Field_ID=7315 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=70,IsDisplayed='Y' WHERE AD_Field_ID=7355 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=80,IsDisplayed='Y' WHERE AD_Field_ID=7356 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=90,IsDisplayed='Y' WHERE AD_Field_ID=7338 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=100,IsDisplayed='Y' WHERE AD_Field_ID=7322 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=110,IsDisplayed='Y' WHERE AD_Field_ID=7359 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=120,IsDisplayed='Y' WHERE AD_Field_ID=7336 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=130,IsDisplayed='Y' WHERE AD_Field_ID=7318 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=140,IsDisplayed='Y' WHERE AD_Field_ID=7330 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=150,IsDisplayed='Y' WHERE AD_Field_ID=7339 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=160,IsDisplayed='Y' WHERE AD_Field_ID=7325 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=170,IsDisplayed='Y' WHERE AD_Field_ID=7341 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=180,IsDisplayed='Y' WHERE AD_Field_ID=7346 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=190,IsDisplayed='Y' WHERE AD_Field_ID=7345 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=200,IsDisplayed='Y' WHERE AD_Field_ID=7331 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=210,IsDisplayed='Y' WHERE AD_Field_ID=7317 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=220,IsDisplayed='Y' WHERE AD_Field_ID=7360 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=230,IsDisplayed='Y' WHERE AD_Field_ID=7354 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=240,IsDisplayed='Y' WHERE AD_Field_ID=7340 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=250,IsDisplayed='Y' WHERE AD_Field_ID=7645 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=260,IsDisplayed='Y' WHERE AD_Field_ID=7332 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=270,IsDisplayed='Y' WHERE AD_Field_ID=7353 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=280,IsDisplayed='Y' WHERE AD_Field_ID=7361 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=290,IsDisplayed='Y' WHERE AD_Field_ID=7358 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=300,IsDisplayed='Y' WHERE AD_Field_ID=7350 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=310,IsDisplayed='Y' WHERE AD_Field_ID=7640 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=320,IsDisplayed='Y' WHERE AD_Field_ID=7644 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=330,IsDisplayed='Y' WHERE AD_Field_ID=7641 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=340,IsDisplayed='Y' WHERE AD_Field_ID=7326 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=350,IsDisplayed='Y' WHERE AD_Field_ID=7642 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=360,IsDisplayed='Y' WHERE AD_Field_ID=7643 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=370,IsDisplayed='Y' WHERE AD_Field_ID=7343 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=380,IsDisplayed='Y' WHERE AD_Field_ID=8262 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=390,IsDisplayed='Y' WHERE AD_Field_ID=8263 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=400,IsDisplayed='Y' WHERE AD_Field_ID=7329 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=410,IsDisplayed='Y' WHERE AD_Field_ID=7357 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=420,IsDisplayed='Y' WHERE AD_Field_ID=56402 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=430,IsDisplayed='Y' WHERE AD_Field_ID=56403 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=570,IsDisplayed='Y' WHERE AD_Field_ID=58779 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=580,IsDisplayed='Y' WHERE AD_Field_ID=58780 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=590,IsDisplayed='Y' WHERE AD_Field_ID=7327 -; - --- Mar 8, 2010 4:35:20 PM CET --- Import of Order Source -UPDATE AD_Field SET SeqNo=600,IsDisplayed='Y' WHERE AD_Field_ID=7335 -; diff --git a/migration/354a-trunk/postgresql/675_FR2962094_AddAverageCostVarianceDefaultAcct.sql b/migration/354a-trunk/postgresql/675_FR2962094_AddAverageCostVarianceDefaultAcct.sql deleted file mode 100644 index dba1cfa8dc..0000000000 --- a/migration/354a-trunk/postgresql/675_FR2962094_AddAverageCostVarianceDefaultAcct.sql +++ /dev/null @@ -1,413 +0,0 @@ --- Mar 8, 2010 8:44:44 PM COT --- FR2962094_Finish implementation of weighted average costing -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,Help,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,54132,0,'P_AverageCostVariance_Acct',TO_TIMESTAMP('2010-03-08 20:44:43','YYYY-MM-DD HH24:MI:SS'),100,'Average Cost Variance','D','The Average Cost Variance is used in weighted average costing to reflect differences when posting costs for negative inventory.','Y','Average Cost Variance','Average Cost Variance',TO_TIMESTAMP('2010-03-08 20:44:43','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Mar 8, 2010 8:44:44 PM COT -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=54132 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) -; - --- Mar 8, 2010 8:46:06 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59071,54132,0,25,315,'P_AverageCostVariance_Acct',TO_TIMESTAMP('2010-03-08 20:46:05','YYYY-MM-DD HH24:MI:SS'),100,'Average Cost Variance','D',10,'The Average Cost Variance is used in weighted average costing to reflect differences when posting costs for negative inventory.','Y','Y','N','N','N','N','N','N','N','N','N','N','Y','Average Cost Variance',TO_TIMESTAMP('2010-03-08 20:46:05','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 8, 2010 8:46:06 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59071 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 8, 2010 8:46:19 PM COT -ALTER TABLE C_AcctSchema_Default ADD COLUMN P_AverageCostVariance_Acct NUMERIC(10) DEFAULT NULL -; - --- Mar 8, 2010 8:46:45 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59072,54132,0,25,401,'P_AverageCostVariance_Acct',TO_TIMESTAMP('2010-03-08 20:46:45','YYYY-MM-DD HH24:MI:SS'),100,'Average Cost Variance','D',10,'The Average Cost Variance is used in weighted average costing to reflect differences when posting costs for negative inventory.','Y','Y','N','N','N','N','N','N','N','N','N','N','Y','Average Cost Variance',TO_TIMESTAMP('2010-03-08 20:46:45','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 8, 2010 8:46:45 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59072 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 8, 2010 8:46:50 PM COT -ALTER TABLE M_Product_Category_Acct ADD COLUMN P_AverageCostVariance_Acct NUMERIC(10) DEFAULT NULL -; - --- Mar 8, 2010 8:47:12 PM COT -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59073,54132,0,25,273,'P_AverageCostVariance_Acct',TO_TIMESTAMP('2010-03-08 20:47:11','YYYY-MM-DD HH24:MI:SS'),100,'Average Cost Variance','D',10,'The Average Cost Variance is used in weighted average costing to reflect differences when posting costs for negative inventory.','Y','Y','N','N','N','N','N','N','N','N','N','N','Y','Average Cost Variance',TO_TIMESTAMP('2010-03-08 20:47:11','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Mar 8, 2010 8:47:12 PM COT -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59073 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) -; - --- Mar 8, 2010 8:47:17 PM COT -ALTER TABLE M_Product_Acct ADD COLUMN P_AverageCostVariance_Acct NUMERIC(10) DEFAULT NULL -; - --- Mar 8, 2010 8:49:30 PM COT -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59071,106,58783,0,252,TO_TIMESTAMP('2010-03-08 20:49:29','YYYY-MM-DD HH24:MI:SS'),100,'Average Cost Variance',26,'D','The Average Cost Variance is used in weighted average costing to reflect differences when posting costs for negative inventory.','Y','Y','Y','N','N','N','N','N','Average Cost Variance',770,0,TO_TIMESTAMP('2010-03-08 20:49:29','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Mar 8, 2010 8:49:30 PM COT -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58783 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=280,IsDisplayed='Y' WHERE AD_Field_ID=58783 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=290,IsDisplayed='Y' WHERE AD_Field_ID=4861 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=300,IsDisplayed='Y' WHERE AD_Field_ID=4862 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=310,IsDisplayed='Y' WHERE AD_Field_ID=2663 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=320,IsDisplayed='Y' WHERE AD_Field_ID=4863 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=330,IsDisplayed='Y' WHERE AD_Field_ID=2662 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=340,IsDisplayed='Y' WHERE AD_Field_ID=3824 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=350,IsDisplayed='Y' WHERE AD_Field_ID=2654 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=360,IsDisplayed='Y' WHERE AD_Field_ID=3835 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=370,IsDisplayed='Y' WHERE AD_Field_ID=56529 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=380,IsDisplayed='Y' WHERE AD_Field_ID=56522 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=390,IsDisplayed='Y' WHERE AD_Field_ID=56524 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=400,IsDisplayed='Y' WHERE AD_Field_ID=56528 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=410,IsDisplayed='Y' WHERE AD_Field_ID=56527 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=420,IsDisplayed='Y' WHERE AD_Field_ID=56525 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=430,IsDisplayed='Y' WHERE AD_Field_ID=56523 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=440,IsDisplayed='Y' WHERE AD_Field_ID=56520 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=450,IsDisplayed='Y' WHERE AD_Field_ID=56521 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=460,IsDisplayed='Y' WHERE AD_Field_ID=56526 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=470,IsDisplayed='Y' WHERE AD_Field_ID=56550 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=480,IsDisplayed='Y' WHERE AD_Field_ID=56551 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=490,IsDisplayed='Y' WHERE AD_Field_ID=3842 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=500,IsDisplayed='Y' WHERE AD_Field_ID=3841 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=510,IsDisplayed='Y' WHERE AD_Field_ID=3846 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=520,IsDisplayed='Y' WHERE AD_Field_ID=5133 -; - --- Mar 8, 2010 8:50:01 PM COT -UPDATE AD_Field SET SeqNo=530,IsDisplayed='Y' WHERE AD_Field_ID=5132 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=540,IsDisplayed='Y' WHERE AD_Field_ID=3843 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=550,IsDisplayed='Y' WHERE AD_Field_ID=3845 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=560,IsDisplayed='Y' WHERE AD_Field_ID=3844 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=570,IsDisplayed='Y' WHERE AD_Field_ID=3849 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=580,IsDisplayed='Y' WHERE AD_Field_ID=3850 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=590,IsDisplayed='Y' WHERE AD_Field_ID=5138 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=600,IsDisplayed='Y' WHERE AD_Field_ID=3847 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=610,IsDisplayed='Y' WHERE AD_Field_ID=3839 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=620,IsDisplayed='Y' WHERE AD_Field_ID=3837 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=630,IsDisplayed='Y' WHERE AD_Field_ID=3840 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=640,IsDisplayed='Y' WHERE AD_Field_ID=3838 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=650,IsDisplayed='Y' WHERE AD_Field_ID=3836 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=660,IsDisplayed='Y' WHERE AD_Field_ID=3851 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=670,IsDisplayed='Y' WHERE AD_Field_ID=3852 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=680,IsDisplayed='Y' WHERE AD_Field_ID=3830 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=690,IsDisplayed='Y' WHERE AD_Field_ID=3831 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=700,IsDisplayed='Y' WHERE AD_Field_ID=3832 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=710,IsDisplayed='Y' WHERE AD_Field_ID=3833 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=720,IsDisplayed='Y' WHERE AD_Field_ID=4092 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=730,IsDisplayed='Y' WHERE AD_Field_ID=4093 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=740,IsDisplayed='Y' WHERE AD_Field_ID=5134 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=750,IsDisplayed='Y' WHERE AD_Field_ID=4094 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=760,IsDisplayed='Y' WHERE AD_Field_ID=4095 -; - --- Mar 8, 2010 8:50:02 PM COT -UPDATE AD_Field SET SeqNo=770,IsDisplayed='Y' WHERE AD_Field_ID=3823 -; - --- Mar 8, 2010 8:50:56 PM COT -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59072,58784,0,324,TO_TIMESTAMP('2010-03-08 20:50:55','YYYY-MM-DD HH24:MI:SS'),100,'Average Cost Variance',26,'D','The Average Cost Variance is used in weighted average costing to reflect differences when posting costs for negative inventory.','Y','Y','Y','N','N','N','N','N','Average Cost Variance',310,0,TO_TIMESTAMP('2010-03-08 20:50:55','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Mar 8, 2010 8:50:56 PM COT -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58784 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=150,IsDisplayed='Y' WHERE AD_Field_ID=58784 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=160,IsDisplayed='Y' WHERE AD_Field_ID=4872 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=170,IsDisplayed='Y' WHERE AD_Field_ID=4873 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=180,IsDisplayed='Y' WHERE AD_Field_ID=3944 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=190,IsDisplayed='Y' WHERE AD_Field_ID=56539 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=200,IsDisplayed='Y' WHERE AD_Field_ID=56532 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=210,IsDisplayed='Y' WHERE AD_Field_ID=56534 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=220,IsDisplayed='Y' WHERE AD_Field_ID=56538 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=230,IsDisplayed='Y' WHERE AD_Field_ID=56537 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=240,IsDisplayed='Y' WHERE AD_Field_ID=56535 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=250,IsDisplayed='Y' WHERE AD_Field_ID=56533 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=260,IsDisplayed='Y' WHERE AD_Field_ID=56530 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=270,IsDisplayed='Y' WHERE AD_Field_ID=56531 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=280,IsDisplayed='Y' WHERE AD_Field_ID=56536 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=290,IsDisplayed='Y' WHERE AD_Field_ID=56552 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=300,IsDisplayed='Y' WHERE AD_Field_ID=56553 -; - --- Mar 8, 2010 8:51:06 PM COT -UPDATE AD_Field SET SeqNo=310,IsDisplayed='Y' WHERE AD_Field_ID=3945 -; - --- Mar 8, 2010 8:51:50 PM COT -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59073,58785,0,210,TO_TIMESTAMP('2010-03-08 20:51:49','YYYY-MM-DD HH24:MI:SS'),100,'Average Cost Variance',26,'D','The Average Cost Variance is used in weighted average costing to reflect differences when posting costs for negative inventory.','Y','Y','Y','N','N','N','N','N','Average Cost Variance',280,0,TO_TIMESTAMP('2010-03-08 20:51:49','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Mar 8, 2010 8:51:50 PM COT -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58785 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=130,IsDisplayed='Y' WHERE AD_Field_ID=58785 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=140,IsDisplayed='Y' WHERE AD_Field_ID=4868 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=150,IsDisplayed='Y' WHERE AD_Field_ID=4869 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=160,IsDisplayed='Y' WHERE AD_Field_ID=2608 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=170,IsDisplayed='Y' WHERE AD_Field_ID=56549 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=180,IsDisplayed='Y' WHERE AD_Field_ID=56542 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=190,IsDisplayed='Y' WHERE AD_Field_ID=56544 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=200,IsDisplayed='Y' WHERE AD_Field_ID=56548 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=210,IsDisplayed='Y' WHERE AD_Field_ID=56547 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=220,IsDisplayed='Y' WHERE AD_Field_ID=56545 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=230,IsDisplayed='Y' WHERE AD_Field_ID=56543 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=240,IsDisplayed='Y' WHERE AD_Field_ID=56540 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=250,IsDisplayed='Y' WHERE AD_Field_ID=56541 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=260,IsDisplayed='Y' WHERE AD_Field_ID=56546 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=270,IsDisplayed='Y' WHERE AD_Field_ID=56554 -; - --- Mar 8, 2010 8:51:59 PM COT -UPDATE AD_Field SET SeqNo=280,IsDisplayed='Y' WHERE AD_Field_ID=56555 -; - --- Mar 8, 2010 9:03:21 PM COT -UPDATE AD_Field SET IsMandatory='Y',Updated=TO_TIMESTAMP('2010-03-08 21:03:21','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=58783 -; - --- Mar 8, 2010 9:03:44 PM COT -UPDATE AD_Field SET IsMandatory='Y',Updated=TO_TIMESTAMP('2010-03-08 21:03:44','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=58784 -; - --- Mar 8, 2010 9:04:06 PM COT -UPDATE AD_Field SET IsMandatory='Y',Updated=TO_TIMESTAMP('2010-03-08 21:04:06','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=58785 -; - diff --git a/migration/354a-trunk/postgresql/676_FR2962094_SetAverageCostVarianceGW.sql b/migration/354a-trunk/postgresql/676_FR2962094_SetAverageCostVarianceGW.sql deleted file mode 100644 index a5551fb94f..0000000000 --- a/migration/354a-trunk/postgresql/676_FR2962094_SetAverageCostVarianceGW.sql +++ /dev/null @@ -1,56 +0,0 @@ --- Mar 8, 2010 8:56:27 PM COT --- FR2962094_Finish implementation of weighted average costing -INSERT INTO C_ElementValue (AccountSign,AccountType,AD_Client_ID,AD_Org_ID,C_Element_ID,C_ElementValue_ID,Created,CreatedBy,Description,IsActive,IsBankAccount,IsDocControlled,IsForeignCurrency,IsSummary,Name,PostActual,PostBudget,PostEncumbrance,PostStatistical,Updated,UpdatedBy,Value) VALUES ('N','E',11,0,105,50017,TO_TIMESTAMP('2010-03-08 20:56:26','YYYY-MM-DD HH24:MI:SS'),100,'Account for Average Cost Variance','Y','N','Y','N','N','Average Cost Variance','Y','Y','Y','Y',TO_TIMESTAMP('2010-03-08 20:56:26','YYYY-MM-DD HH24:MI:SS'),100,'58800') -; - --- Mar 8, 2010 8:56:27 PM COT -INSERT INTO C_ElementValue_Trl (AD_Language,C_ElementValue_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.C_ElementValue_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, C_ElementValue t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.C_ElementValue_ID=50017 AND NOT EXISTS (SELECT * FROM C_ElementValue_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.C_ElementValue_ID=t.C_ElementValue_ID) -; - --- Mar 8, 2010 8:56:27 PM COT -INSERT INTO AD_TreeNode (AD_Client_ID,AD_Org_ID, IsActive,Created,CreatedBy,Updated,UpdatedBy, AD_Tree_ID, Node_ID, Parent_ID, SeqNo) SELECT t.AD_Client_ID, 0, 'Y', CURRENT_TIMESTAMP, 100, CURRENT_TIMESTAMP, 100,t.AD_Tree_ID, 50017, 0, 999 FROM AD_Tree t WHERE t.AD_Client_ID=11 AND t.IsActive='Y' AND EXISTS (SELECT * FROM C_Element ae WHERE ae.C_Element_ID=105 AND t.AD_Tree_ID=ae.AD_Tree_ID) AND NOT EXISTS (SELECT * FROM AD_TreeNode e WHERE e.AD_Tree_ID=t.AD_Tree_ID AND Node_ID=50017) -; - --- Mar 8, 2010 8:56:34 PM COT -UPDATE AD_TreeNode SET Parent_ID=443, SeqNo=0, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=101 AND Node_ID=444 -; - --- Mar 8, 2010 8:56:34 PM COT -UPDATE AD_TreeNode SET Parent_ID=443, SeqNo=1, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=101 AND Node_ID=445 -; - --- Mar 8, 2010 8:56:34 PM COT -UPDATE AD_TreeNode SET Parent_ID=443, SeqNo=2, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=101 AND Node_ID=635 -; - --- Mar 8, 2010 8:56:34 PM COT -UPDATE AD_TreeNode SET Parent_ID=443, SeqNo=3, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=101 AND Node_ID=50001 -; - --- Mar 8, 2010 8:56:34 PM COT -UPDATE AD_TreeNode SET Parent_ID=443, SeqNo=4, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=101 AND Node_ID=50002 -; - --- Mar 8, 2010 8:56:34 PM COT -UPDATE AD_TreeNode SET Parent_ID=443, SeqNo=5, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=101 AND Node_ID=50003 -; - --- Mar 8, 2010 8:56:34 PM COT -UPDATE AD_TreeNode SET Parent_ID=443, SeqNo=6, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=101 AND Node_ID=50004 -; - --- Mar 8, 2010 8:56:34 PM COT -UPDATE AD_TreeNode SET Parent_ID=443, SeqNo=7, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=101 AND Node_ID=50017 -; - --- Mar 8, 2010 8:58:19 PM COT -INSERT INTO C_ValidCombination (Account_ID,AD_Client_ID,AD_Org_ID,C_AcctSchema_ID,Combination,Created,CreatedBy,C_ValidCombination_ID,Description,IsActive,IsFullyQualified,Updated,UpdatedBy) VALUES (50017,11,11,101,'HQ-58800-_-_-_-_',TO_TIMESTAMP('2010-03-08 20:58:18','YYYY-MM-DD HH24:MI:SS'),100,50013,'HQ-Average Cost Variance-_-_-_-_','Y','Y',TO_TIMESTAMP('2010-03-08 20:58:18','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Mar 8, 2010 8:58:32 PM COT -UPDATE C_AcctSchema_Default SET P_AverageCostVariance_Acct=50013,Updated=TO_TIMESTAMP('2010-03-08 20:58:32','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_AcctSchema_ID=101 -; - -UPDATE M_Product_Category_Acct SET P_AverageCostVariance_Acct=50013,Updated=TO_TIMESTAMP('2010-03-08 20:58:32','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_AcctSchema_ID=101; - -UPDATE M_Product_Acct SET P_AverageCostVariance_Acct=50013,Updated=TO_TIMESTAMP('2010-03-08 20:58:32','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_AcctSchema_ID=101; diff --git a/migration/354a-trunk/postgresql/677_BT_2092712_Unalloc_payment_report.sql b/migration/354a-trunk/postgresql/677_BT_2092712_Unalloc_payment_report.sql deleted file mode 100644 index f4c7bf7056..0000000000 --- a/migration/354a-trunk/postgresql/677_BT_2092712_Unalloc_payment_report.sql +++ /dev/null @@ -1 +0,0 @@ -UPDATE AD_ReportView SET WHERECLAUSE = 'DocStatus IN (''CO'',''CL'') AND IsAllocated=''N''' where ad_reportview_id=155; \ No newline at end of file diff --git a/migration/354a-trunk/postgresql/678_BF_1774758.sql b/migration/354a-trunk/postgresql/678_BF_1774758.sql deleted file mode 100644 index 5532c1953f..0000000000 --- a/migration/354a-trunk/postgresql/678_BF_1774758.sql +++ /dev/null @@ -1,9 +0,0 @@ --- --- BF [ 1774758 ] No default Sales Representant in request window --- - -UPDATE AD_COLUMN - SET DefaultValue = '@#AD_User_ID@' - WHERE DefaultValue = '@AD_User_ID@' AND AD_Column_ID = 5432; - -COMMIT; diff --git a/migration/354a-trunk/postgresql/679_BF2042466FixProductURL.sql b/migration/354a-trunk/postgresql/679_BF2042466FixProductURL.sql deleted file mode 100644 index 288c346a03..0000000000 --- a/migration/354a-trunk/postgresql/679_BF2042466FixProductURL.sql +++ /dev/null @@ -1,8 +0,0 @@ --- Mar 11, 2010 3:09:41 PM COT -UPDATE M_Product SET DescriptionURL='http://www.adempiere.com/index.php/SampleProductDescriptionForDocumentation', ImageURL='http://www.adempiere.com/images/f/f5/C32.png', IsStocked='N',Updated=TO_TIMESTAMP('2010-03-11 15:09:41','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE M_Product_ID=146 -; - --- Mar 11, 2010 3:09:58 PM COT -UPDATE M_Product SET ImageURL='http://www.adempiere.com/images/f/f5/C32.png', IsStocked='N',Updated=TO_TIMESTAMP('2010-03-11 15:09:58','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE M_Product_ID=126 -; - diff --git a/migration/354a-trunk/postgresql/680_BF2970013.sql b/migration/354a-trunk/postgresql/680_BF2970013.sql deleted file mode 100644 index b19c9d78d0..0000000000 --- a/migration/354a-trunk/postgresql/680_BF2970013.sql +++ /dev/null @@ -1,82 +0,0 @@ --- Mar 13, 2010 5:43:23 PM COT --- BF2970013_Process Para uniqueness required -UPDATE AD_Process_Para SET SeqNo=20,Updated=TO_TIMESTAMP('2010-03-13 17:43:23','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=131 -; - --- Mar 13, 2010 5:43:25 PM COT -UPDATE AD_Process_Para SET SeqNo=30,Updated=TO_TIMESTAMP('2010-03-13 17:43:25','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=244 -; - --- Mar 13, 2010 5:43:27 PM COT -UPDATE AD_Process_Para SET SeqNo=40,Updated=TO_TIMESTAMP('2010-03-13 17:43:27','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=53074 -; - --- Mar 13, 2010 5:43:33 PM COT -UPDATE AD_Process_Para SET SeqNo=50,Updated=TO_TIMESTAMP('2010-03-13 17:43:33','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=53073 -; - --- Mar 13, 2010 5:43:58 PM COT -UPDATE AD_Process_Para SET SeqNo=50,Updated=TO_TIMESTAMP('2010-03-13 17:43:58','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=471 -; - --- Mar 13, 2010 5:44:32 PM COT -UPDATE AD_Process_Para SET SeqNo=140,Updated=TO_TIMESTAMP('2010-03-13 17:44:32','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=453 -; - --- Mar 13, 2010 5:45:12 PM COT -UPDATE AD_Process_Para SET SeqNo=140,Updated=TO_TIMESTAMP('2010-03-13 17:45:12','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=454 -; - --- Mar 13, 2010 5:45:56 PM COT -UPDATE AD_Process_Para SET SeqNo=50,Updated=TO_TIMESTAMP('2010-03-13 17:45:56','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=397 -; - --- Mar 13, 2010 5:46:18 PM COT -UPDATE AD_Process_Para SET SeqNo=30,Updated=TO_TIMESTAMP('2010-03-13 17:46:18','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=588 -; - --- Mar 13, 2010 5:46:20 PM COT -UPDATE AD_Process_Para SET SeqNo=40,Updated=TO_TIMESTAMP('2010-03-13 17:46:20','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=585 -; - --- Mar 13, 2010 5:46:22 PM COT -UPDATE AD_Process_Para SET SeqNo=50,Updated=TO_TIMESTAMP('2010-03-13 17:46:22','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=53153 -; - --- Mar 13, 2010 5:46:23 PM COT -UPDATE AD_Process_Para SET SeqNo=60,Updated=TO_TIMESTAMP('2010-03-13 17:46:23','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=53154 -; - --- Mar 13, 2010 5:46:25 PM COT -UPDATE AD_Process_Para SET SeqNo=70,Updated=TO_TIMESTAMP('2010-03-13 17:46:25','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=586 -; - --- Mar 13, 2010 5:46:27 PM COT -UPDATE AD_Process_Para SET SeqNo=80,Updated=TO_TIMESTAMP('2010-03-13 17:46:27','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=587 -; - --- Mar 13, 2010 5:46:55 PM COT -UPDATE AD_Process_Para SET SeqNo=40,Updated=TO_TIMESTAMP('2010-03-13 17:46:55','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=53066 -; - --- Mar 13, 2010 5:46:56 PM COT -UPDATE AD_Process_Para SET SeqNo=50,Updated=TO_TIMESTAMP('2010-03-13 17:46:56','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=53067 -; - --- Mar 13, 2010 5:47:22 PM COT -UPDATE AD_Process_Para SET SeqNo=140,Updated=TO_TIMESTAMP('2010-03-13 17:47:22','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=53123 -; - --- Mar 13, 2010 5:47:43 PM COT -UPDATE AD_Process_Para SET SeqNo=60,Updated=TO_TIMESTAMP('2010-03-13 17:47:43','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=53275 -; - --- Mar 13, 2010 5:47:46 PM COT -UPDATE AD_Process_Para SET SeqNo=70,Updated=TO_TIMESTAMP('2010-03-13 17:47:46','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=53280 -; - --- Mar 13, 2010 5:47:50 PM COT -UPDATE AD_Process_Para SET EntityType='EE01',Updated=TO_TIMESTAMP('2010-03-13 17:47:50','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=53275 -; - -create unique index ad_procpara_procseqno on ad_process_para (ad_process_id, seqno); diff --git a/migration/354a-trunk/postgresql/681_BF2968442.sql b/migration/354a-trunk/postgresql/681_BF2968442.sql deleted file mode 100644 index 50a5bfb19a..0000000000 --- a/migration/354a-trunk/postgresql/681_BF2968442.sql +++ /dev/null @@ -1,146 +0,0 @@ --- Mar 13, 2010 11:54:49 PM COT --- BF_2968442_Post without Application Server -UPDATE AD_Element SET Description='Post the accounting immediately for testing (Deprecated)', Help='If selected, the accounting consequences are immediately generated when completing a document. Otherwise the document is posted by a batch process. You should select this only if you are testing. -Deprecated column - use instead the functionality Client Accounting.', Name='Post Immediately (Deprecated)',Updated=TO_TIMESTAMP('2010-03-13 23:54:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=2843 -; - --- Mar 13, 2010 11:54:49 PM COT -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=2843 -; - --- Mar 13, 2010 11:54:49 PM COT -UPDATE AD_Column SET ColumnName='IsPostImmediate', Name='Post Immediately (Deprecated)', Description='Post the accounting immediately for testing (Deprecated)', Help='If selected, the accounting consequences are immediately generated when completing a document. Otherwise the document is posted by a batch process. You should select this only if you are testing. -Deprecated column - use instead the functionality Client Accounting.' WHERE AD_Element_ID=2843 -; - --- Mar 13, 2010 11:54:50 PM COT -UPDATE AD_Process_Para SET ColumnName='IsPostImmediate', Name='Post Immediately (Deprecated)', Description='Post the accounting immediately for testing (Deprecated)', Help='If selected, the accounting consequences are immediately generated when completing a document. Otherwise the document is posted by a batch process. You should select this only if you are testing. -Deprecated column - use instead the functionality Client Accounting.', AD_Element_ID=2843 WHERE UPPER(ColumnName)='ISPOSTIMMEDIATE' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - --- Mar 13, 2010 11:54:50 PM COT -UPDATE AD_Process_Para SET ColumnName='IsPostImmediate', Name='Post Immediately (Deprecated)', Description='Post the accounting immediately for testing (Deprecated)', Help='If selected, the accounting consequences are immediately generated when completing a document. Otherwise the document is posted by a batch process. You should select this only if you are testing. -Deprecated column - use instead the functionality Client Accounting.' WHERE AD_Element_ID=2843 AND IsCentrallyMaintained='Y' -; - --- Mar 13, 2010 11:54:50 PM COT -UPDATE AD_Field SET Name='Post Immediately (Deprecated)', Description='Post the accounting immediately for testing (Deprecated)', Help='If selected, the accounting consequences are immediately generated when completing a document. Otherwise the document is posted by a batch process. You should select this only if you are testing. -Deprecated column - use instead the functionality Client Accounting.' WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=2843) AND IsCentrallyMaintained='Y' -; - --- Mar 13, 2010 11:54:50 PM COT -UPDATE AD_PrintFormatItem SET PrintName='Post Immediate', Name='Post Immediately (Deprecated)' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=2843) -; - --- Mar 13, 2010 11:55:40 PM COT -UPDATE AD_Field SET IsSameLine='N',Updated=TO_TIMESTAMP('2010-03-13 23:55:40','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=12326 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=0,IsDisplayed='N' WHERE AD_Field_ID=12327 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=20,IsDisplayed='Y' WHERE AD_Field_ID=317 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=30,IsDisplayed='Y' WHERE AD_Field_ID=318 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=40,IsDisplayed='Y' WHERE AD_Field_ID=319 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=50,IsDisplayed='Y' WHERE AD_Field_ID=10318 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=60,IsDisplayed='Y' WHERE AD_Field_ID=5160 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=70,IsDisplayed='Y' WHERE AD_Field_ID=5759 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=80,IsDisplayed='Y' WHERE AD_Field_ID=11025 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=90,IsDisplayed='Y' WHERE AD_Field_ID=11205 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=100,IsDisplayed='Y' WHERE AD_Field_ID=3813 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=110,IsDisplayed='Y' WHERE AD_Field_ID=5887 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=120,IsDisplayed='Y' WHERE AD_Field_ID=5161 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=130,IsDisplayed='Y' WHERE AD_Field_ID=5162 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=140,IsDisplayed='Y' WHERE AD_Field_ID=5163 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=150,IsDisplayed='Y' WHERE AD_Field_ID=5164 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=160,IsDisplayed='Y' WHERE AD_Field_ID=12099 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=170,IsDisplayed='Y' WHERE AD_Field_ID=12098 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=180,IsDisplayed='Y' WHERE AD_Field_ID=11024 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=190,IsDisplayed='Y' WHERE AD_Field_ID=12326 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=200,IsDisplayed='Y' WHERE AD_Field_ID=50158 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=210,IsDisplayed='Y' WHERE AD_Field_ID=50159 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=220,IsDisplayed='Y' WHERE AD_Field_ID=50160 -; - --- Mar 13, 2010 11:55:55 PM COT -UPDATE AD_Field SET SeqNo=230,IsDisplayed='Y' WHERE AD_Field_ID=50184 -; - --- Mar 13, 2010 11:55:56 PM COT -UPDATE AD_Field SET SeqNo=240,IsDisplayed='Y' WHERE AD_Field_ID=50185 -; - --- Mar 13, 2010 11:55:56 PM COT -UPDATE AD_Field SET SeqNo=250,IsDisplayed='Y' WHERE AD_Field_ID=50186 -; - --- Mar 13, 2010 11:55:56 PM COT -UPDATE AD_Field SET SeqNo=260,IsDisplayed='Y' WHERE AD_Field_ID=54238 -; - --- Mar 13, 2010 11:55:56 PM COT -UPDATE AD_Field SET SeqNo=270,IsDisplayed='Y' WHERE AD_Field_ID=54680 -; - diff --git a/migration/360lts-release/oracle/925_PlaceHolder.sql b/migration/360lts-release/oracle/925_PlaceHolder.sql new file mode 100644 index 0000000000..9c4b26e7b5 --- /dev/null +++ b/migration/360lts-release/oracle/925_PlaceHolder.sql @@ -0,0 +1,4 @@ +-- Just a placeholder +SELECT register_migration_script('925_PlaceHolder.sql') FROM dual +; + diff --git a/migration/360lts-release/oracle/926_PlaceHolder.sql b/migration/360lts-release/oracle/926_PlaceHolder.sql new file mode 100644 index 0000000000..7e4f9284fa --- /dev/null +++ b/migration/360lts-release/oracle/926_PlaceHolder.sql @@ -0,0 +1,4 @@ +-- Just a placeholder +SELECT register_migration_script('926_PlaceHolder.sql') FROM dual +; + diff --git a/migration/360lts-release/oracle/937_PlaceHolder.sql b/migration/360lts-release/oracle/937_PlaceHolder.sql new file mode 100644 index 0000000000..c776b2e84a --- /dev/null +++ b/migration/360lts-release/oracle/937_PlaceHolder.sql @@ -0,0 +1,4 @@ +-- Just a placeholder +SELECT register_migration_script('937_PlaceHolder.sql') FROM dual +; + diff --git a/migration/360lts-release/oracle/951_PlaceHolder.sql b/migration/360lts-release/oracle/951_PlaceHolder.sql new file mode 100644 index 0000000000..177fa209f0 --- /dev/null +++ b/migration/360lts-release/oracle/951_PlaceHolder.sql @@ -0,0 +1,4 @@ +-- Just a placeholder +SELECT register_migration_script('951_PlaceHolder.sql') FROM dual +; + diff --git a/migration/360lts-release/oracle/953_PlaceHolder.sql b/migration/360lts-release/oracle/953_PlaceHolder.sql new file mode 100644 index 0000000000..691e45d1b9 --- /dev/null +++ b/migration/360lts-release/oracle/953_PlaceHolder.sql @@ -0,0 +1,4 @@ +-- Just a placeholder +SELECT register_migration_script('953_PlaceHolder.sql') FROM dual +; + diff --git a/migration/360lts-release/oracle/954_UUID_Sync.sql b/migration/360lts-release/oracle/954_UUID_Sync.sql new file mode 100644 index 0000000000..c374fd4f91 --- /dev/null +++ b/migration/360lts-release/oracle/954_UUID_Sync.sql @@ -0,0 +1,7004 @@ +-- Oct 31, 2012 10:18:58 AM COT +-- UUID Sync +INSERT INTO AD_Element (ColumnName,AD_Element_ID,EntityType,Name,PrintName,AD_Element_UU,AD_Client_ID,Created,Updated,AD_Org_ID,CreatedBy,UpdatedBy,IsActive) VALUES ('M_QualityTestResult_UU',200202,'U','M_QualityTestResult_UU','M_QualityTestResult_UU','9d41aaf2-0571-4582-a3e9-c3c1eaee2b31',0,TO_DATE('2012-10-31 10:18:57','YYYY-MM-DD HH24:MI:SS'),TO_DATE('2012-10-31 10:18:57','YYYY-MM-DD HH24:MI:SS'),0,100,100,'Y') +; + +-- Oct 31, 2012 10:18:58 AM COT +INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Help,PO_Description,PO_Help,Name,Description,PrintName,PO_Name,PO_PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Element_Trl_UU ) SELECT l.AD_Language,t.AD_Element_ID, t.Help,t.PO_Description,t.PO_Help,t.Name,t.Description,t.PrintName,t.PO_Name,t.PO_PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=200202 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) +; + +-- Oct 31, 2012 10:18:59 AM COT +INSERT INTO AD_Column (IsEncrypted,Version,AD_Table_ID,AD_Column_ID,EntityType,IsMandatory,IsTranslated,IsIdentifier,IsParent,FieldLength,IsSelectionColumn,AD_Reference_ID,IsKey,AD_Element_ID,AD_Column_UU,IsUpdateable,IsAlwaysUpdateable,ColumnName,Name,Updated,CreatedBy,AD_Org_ID,IsActive,Created,UpdatedBy,AD_Client_ID) VALUES ('N',1.00,53331,200848,'U','N','N','N','N',36,'N',10,'N',200202,'39e6d72f-7b8d-4fc1-bc39-850235495e87','Y','N','M_QualityTestResult_UU','M_QualityTestResult_UU',TO_DATE('2012-10-31 10:18:57','YYYY-MM-DD HH24:MI:SS'),100,0,'Y',TO_DATE('2012-10-31 10:18:57','YYYY-MM-DD HH24:MI:SS'),100,0) +; + +-- Oct 31, 2012 10:18:59 AM COT +INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Column_Trl_UU ) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=200848 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) +; + +-- Oct 31, 2012 10:18:59 AM COT +ALTER TABLE M_QualityTestResult ADD M_QualityTestResult_UU NVARCHAR2(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:18:59 AM COT +CREATE UNIQUE INDEX M_QualityTestResult_UU_idx ON m_qualitytestresult(M_QualityTestResult_UU) +; + +-- Oct 31, 2012 10:19:00 AM COT +INSERT INTO AD_Element (ColumnName,AD_Element_ID,EntityType,Name,PrintName,AD_Element_UU,AD_Client_ID,Created,Updated,AD_Org_ID,CreatedBy,UpdatedBy,IsActive) VALUES ('M_QualityTest_UU',200203,'U','M_QualityTest_UU','M_QualityTest_UU','8e275428-511a-48a2-948f-425b1296507c',0,TO_DATE('2012-10-31 10:19:00','YYYY-MM-DD HH24:MI:SS'),TO_DATE('2012-10-31 10:19:00','YYYY-MM-DD HH24:MI:SS'),0,100,100,'Y') +; + +-- Oct 31, 2012 10:19:00 AM COT +INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Help,PO_Description,PO_Help,Name,Description,PrintName,PO_Name,PO_PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Element_Trl_UU ) SELECT l.AD_Language,t.AD_Element_ID, t.Help,t.PO_Description,t.PO_Help,t.Name,t.Description,t.PrintName,t.PO_Name,t.PO_PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=200203 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) +; + +-- Oct 31, 2012 10:19:01 AM COT +INSERT INTO AD_Column (IsEncrypted,Version,AD_Table_ID,AD_Column_ID,EntityType,IsMandatory,IsTranslated,IsIdentifier,IsParent,FieldLength,IsSelectionColumn,AD_Reference_ID,IsKey,AD_Element_ID,AD_Column_UU,IsUpdateable,IsAlwaysUpdateable,ColumnName,Name,Updated,CreatedBy,AD_Org_ID,IsActive,Created,UpdatedBy,AD_Client_ID) VALUES ('N',1.00,53332,200849,'U','N','N','N','N',36,'N',10,'N',200203,'ec4f96c4-d079-42e9-8c9a-8b683f905b8d','Y','N','M_QualityTest_UU','M_QualityTest_UU',TO_DATE('2012-10-31 10:19:00','YYYY-MM-DD HH24:MI:SS'),100,0,'Y',TO_DATE('2012-10-31 10:19:00','YYYY-MM-DD HH24:MI:SS'),100,0) +; + +-- Oct 31, 2012 10:19:01 AM COT +INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Column_Trl_UU ) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=200849 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) +; + +-- Oct 31, 2012 10:19:01 AM COT +ALTER TABLE M_QualityTest ADD M_QualityTest_UU NVARCHAR2(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:19:01 AM COT +CREATE UNIQUE INDEX M_QualityTest_UU_idx ON m_qualitytest(M_QualityTest_UU) +; + +-- Oct 31, 2012 10:19:01 AM COT +INSERT INTO AD_Element (ColumnName,AD_Element_ID,EntityType,Name,PrintName,AD_Element_UU,AD_Client_ID,Created,Updated,AD_Org_ID,CreatedBy,UpdatedBy,IsActive) VALUES ('M_Product_QualityTest_UU',200204,'U','M_Product_QualityTest_UU','M_Product_QualityTest_UU','f5b424e5-1672-4292-af7b-71d54f6bbf7f',0,TO_DATE('2012-10-31 10:19:01','YYYY-MM-DD HH24:MI:SS'),TO_DATE('2012-10-31 10:19:01','YYYY-MM-DD HH24:MI:SS'),0,100,100,'Y') +; + +-- Oct 31, 2012 10:19:02 AM COT +INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Help,PO_Description,PO_Help,Name,Description,PrintName,PO_Name,PO_PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Element_Trl_UU ) SELECT l.AD_Language,t.AD_Element_ID, t.Help,t.PO_Description,t.PO_Help,t.Name,t.Description,t.PrintName,t.PO_Name,t.PO_PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=200204 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) +; + +-- Oct 31, 2012 10:19:02 AM COT +INSERT INTO AD_Column (IsEncrypted,Version,AD_Table_ID,AD_Column_ID,EntityType,IsMandatory,IsTranslated,IsIdentifier,IsParent,FieldLength,IsSelectionColumn,AD_Reference_ID,IsKey,AD_Element_ID,AD_Column_UU,IsUpdateable,IsAlwaysUpdateable,ColumnName,Name,Updated,CreatedBy,AD_Org_ID,IsActive,Created,UpdatedBy,AD_Client_ID) VALUES ('N',1.00,53333,200850,'U','N','N','N','N',36,'N',10,'N',200204,'2b8bd6b2-1693-43d4-9a0c-a4bd1dce1876','Y','N','M_Product_QualityTest_UU','M_Product_QualityTest_UU',TO_DATE('2012-10-31 10:19:01','YYYY-MM-DD HH24:MI:SS'),100,0,'Y',TO_DATE('2012-10-31 10:19:01','YYYY-MM-DD HH24:MI:SS'),100,0) +; + +-- Oct 31, 2012 10:19:02 AM COT +INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Column_Trl_UU ) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=200850 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) +; + +-- Oct 31, 2012 10:19:02 AM COT +ALTER TABLE M_Product_QualityTest ADD M_Product_QualityTest_UU NVARCHAR2(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:19:02 AM COT +CREATE UNIQUE INDEX M_Product_QualityTest_UU_idx ON m_product_qualitytest(M_Product_QualityTest_UU) +; + +-- Oct 31, 2012 10:19:03 AM COT +INSERT INTO AD_Element (ColumnName,AD_Element_ID,EntityType,Name,PrintName,AD_Element_UU,AD_Client_ID,Created,Updated,AD_Org_ID,CreatedBy,UpdatedBy,IsActive) VALUES ('M_PartType_UU',200205,'U','M_PartType_UU','M_PartType_UU','546c8ee1-a973-4f52-b345-4ff31bc99bca',0,TO_DATE('2012-10-31 10:19:02','YYYY-MM-DD HH24:MI:SS'),TO_DATE('2012-10-31 10:19:02','YYYY-MM-DD HH24:MI:SS'),0,100,100,'Y') +; + +-- Oct 31, 2012 10:19:03 AM COT +INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Help,PO_Description,PO_Help,Name,Description,PrintName,PO_Name,PO_PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Element_Trl_UU ) SELECT l.AD_Language,t.AD_Element_ID, t.Help,t.PO_Description,t.PO_Help,t.Name,t.Description,t.PrintName,t.PO_Name,t.PO_PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=200205 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) +; + +-- Oct 31, 2012 10:19:03 AM COT +INSERT INTO AD_Column (IsEncrypted,Version,AD_Table_ID,AD_Column_ID,EntityType,IsMandatory,IsTranslated,IsIdentifier,IsParent,FieldLength,IsSelectionColumn,AD_Reference_ID,IsKey,AD_Element_ID,AD_Column_UU,IsUpdateable,IsAlwaysUpdateable,ColumnName,Name,Updated,CreatedBy,AD_Org_ID,IsActive,Created,UpdatedBy,AD_Client_ID) VALUES ('N',1.00,53334,200851,'U','N','N','N','N',36,'N',10,'N',200205,'49198395-d3ef-4828-a464-0c92b5b31bf2','Y','N','M_PartType_UU','M_PartType_UU',TO_DATE('2012-10-31 10:19:02','YYYY-MM-DD HH24:MI:SS'),100,0,'Y',TO_DATE('2012-10-31 10:19:02','YYYY-MM-DD HH24:MI:SS'),100,0) +; + +-- Oct 31, 2012 10:19:03 AM COT +INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Column_Trl_UU ) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=200851 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) +; + +-- Oct 31, 2012 10:19:03 AM COT +ALTER TABLE M_PartType ADD M_PartType_UU NVARCHAR2(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:19:04 AM COT +CREATE UNIQUE INDEX M_PartType_UU_idx ON m_parttype(M_PartType_UU) +; + +-- Oct 31, 2012 10:19:04 AM COT +INSERT INTO AD_Element (ColumnName,AD_Element_ID,EntityType,Name,PrintName,AD_Element_UU,AD_Client_ID,Created,Updated,AD_Org_ID,CreatedBy,UpdatedBy,IsActive) VALUES ('T_BOM_Indented_UU',200206,'U','T_BOM_Indented_UU','T_BOM_Indented_UU','2b8d1f8f-1e80-4a17-9bab-1eaa17435d9c',0,TO_DATE('2012-10-31 10:19:04','YYYY-MM-DD HH24:MI:SS'),TO_DATE('2012-10-31 10:19:04','YYYY-MM-DD HH24:MI:SS'),0,100,100,'Y') +; + +-- Oct 31, 2012 10:19:04 AM COT +INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Help,PO_Description,PO_Help,Name,Description,PrintName,PO_Name,PO_PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Element_Trl_UU ) SELECT l.AD_Language,t.AD_Element_ID, t.Help,t.PO_Description,t.PO_Help,t.Name,t.Description,t.PrintName,t.PO_Name,t.PO_PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=200206 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) +; + +-- Oct 31, 2012 10:19:05 AM COT +INSERT INTO AD_Column (IsEncrypted,Version,AD_Table_ID,AD_Column_ID,EntityType,IsMandatory,IsTranslated,IsIdentifier,IsParent,FieldLength,IsSelectionColumn,AD_Reference_ID,IsKey,AD_Element_ID,AD_Column_UU,IsUpdateable,IsAlwaysUpdateable,ColumnName,Name,Updated,CreatedBy,AD_Org_ID,IsActive,Created,UpdatedBy,AD_Client_ID) VALUES ('N',1.00,53335,200852,'U','N','N','N','N',36,'N',10,'N',200206,'1ba153f7-173b-4963-9f3c-cd4f047eb39f','Y','N','T_BOM_Indented_UU','T_BOM_Indented_UU',TO_DATE('2012-10-31 10:19:04','YYYY-MM-DD HH24:MI:SS'),100,0,'Y',TO_DATE('2012-10-31 10:19:04','YYYY-MM-DD HH24:MI:SS'),100,0) +; + +-- Oct 31, 2012 10:19:05 AM COT +INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Column_Trl_UU ) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=200852 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) +; + +-- Oct 31, 2012 10:19:05 AM COT +ALTER TABLE T_BOM_Indented ADD T_BOM_Indented_UU NVARCHAR2(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:19:05 AM COT +CREATE UNIQUE INDEX T_BOM_Indented_UU_idx ON t_bom_indented(T_BOM_Indented_UU) +; + +-- Oct 31, 2012 10:19:06 AM COT +INSERT INTO AD_Element (ColumnName,AD_Element_ID,EntityType,Name,PrintName,AD_Element_UU,AD_Client_ID,Created,Updated,AD_Org_ID,CreatedBy,UpdatedBy,IsActive) VALUES ('AD_Tab_Customization_UU',200207,'U','AD_Tab_Customization_UU','AD_Tab_Customization_UU','82cb368d-5b4d-4cb8-ae56-64a0e295ced6',0,TO_DATE('2012-10-31 10:19:05','YYYY-MM-DD HH24:MI:SS'),TO_DATE('2012-10-31 10:19:05','YYYY-MM-DD HH24:MI:SS'),0,100,100,'Y') +; + +-- Oct 31, 2012 10:19:06 AM COT +INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Help,PO_Description,PO_Help,Name,Description,PrintName,PO_Name,PO_PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Element_Trl_UU ) SELECT l.AD_Language,t.AD_Element_ID, t.Help,t.PO_Description,t.PO_Help,t.Name,t.Description,t.PrintName,t.PO_Name,t.PO_PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=200207 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) +; + +-- Oct 31, 2012 10:19:06 AM COT +INSERT INTO AD_Column (IsEncrypted,Version,AD_Table_ID,AD_Column_ID,EntityType,IsMandatory,IsTranslated,IsIdentifier,IsParent,FieldLength,IsSelectionColumn,AD_Reference_ID,IsKey,AD_Element_ID,AD_Column_UU,IsUpdateable,IsAlwaysUpdateable,ColumnName,Name,Updated,CreatedBy,AD_Org_ID,IsActive,Created,UpdatedBy,AD_Client_ID) VALUES ('N',1.00,200008,200853,'U','N','N','N','N',36,'N',10,'N',200207,'990da79f-1e68-40e6-9546-0b1228439073','Y','N','AD_Tab_Customization_UU','AD_Tab_Customization_UU',TO_DATE('2012-10-31 10:19:05','YYYY-MM-DD HH24:MI:SS'),100,0,'Y',TO_DATE('2012-10-31 10:19:05','YYYY-MM-DD HH24:MI:SS'),100,0) +; + +-- Oct 31, 2012 10:19:06 AM COT +INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Column_Trl_UU ) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=200853 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) +; + +-- Oct 31, 2012 10:19:06 AM COT +ALTER TABLE AD_Tab_Customization ADD AD_Tab_Customization_UU NVARCHAR2(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:19:06 AM COT +CREATE UNIQUE INDEX AD_Tab_Customization_UU_idx ON ad_tab_customization(AD_Tab_Customization_UU) +; + +-- Oct 31, 2012 10:19:07 AM COT +INSERT INTO AD_Element (ColumnName,AD_Element_ID,EntityType,Name,PrintName,AD_Element_UU,AD_Client_ID,Created,Updated,AD_Org_ID,CreatedBy,UpdatedBy,IsActive) VALUES ('PA_DashboardPreference_UU',200208,'U','PA_DashboardPreference_UU','PA_DashboardPreference_UU','16ec8487-fb7f-455e-97d2-9d4c4027cd0b',0,TO_DATE('2012-10-31 10:19:07','YYYY-MM-DD HH24:MI:SS'),TO_DATE('2012-10-31 10:19:07','YYYY-MM-DD HH24:MI:SS'),0,100,100,'Y') +; + +-- Oct 31, 2012 10:19:07 AM COT +INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Help,PO_Description,PO_Help,Name,Description,PrintName,PO_Name,PO_PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Element_Trl_UU ) SELECT l.AD_Language,t.AD_Element_ID, t.Help,t.PO_Description,t.PO_Help,t.Name,t.Description,t.PrintName,t.PO_Name,t.PO_PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=200208 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) +; + +-- Oct 31, 2012 10:19:08 AM COT +INSERT INTO AD_Column (IsEncrypted,Version,AD_Table_ID,AD_Column_ID,EntityType,IsMandatory,IsTranslated,IsIdentifier,IsParent,FieldLength,IsSelectionColumn,AD_Reference_ID,IsKey,AD_Element_ID,AD_Column_UU,IsUpdateable,IsAlwaysUpdateable,ColumnName,Name,Updated,CreatedBy,AD_Org_ID,IsActive,Created,UpdatedBy,AD_Client_ID) VALUES ('N',1.00,200013,200854,'U','N','N','N','N',36,'N',10,'N',200208,'10e9cb0f-132a-4f69-96f0-ec26789bf059','Y','N','PA_DashboardPreference_UU','PA_DashboardPreference_UU',TO_DATE('2012-10-31 10:19:07','YYYY-MM-DD HH24:MI:SS'),100,0,'Y',TO_DATE('2012-10-31 10:19:07','YYYY-MM-DD HH24:MI:SS'),100,0) +; + +-- Oct 31, 2012 10:19:08 AM COT +INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Column_Trl_UU ) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=200854 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) +; + +-- Oct 31, 2012 10:19:08 AM COT +ALTER TABLE PA_DashboardPreference ADD PA_DashboardPreference_UU NVARCHAR2(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:19:08 AM COT +CREATE UNIQUE INDEX PA_DashboardPreference_UU_idx ON pa_dashboardpreference(PA_DashboardPreference_UU) +; + +-- Oct 31, 2012 10:19:08 AM COT +INSERT INTO AD_Element (ColumnName,AD_Element_ID,EntityType,Name,PrintName,AD_Element_UU,AD_Client_ID,Created,Updated,AD_Org_ID,CreatedBy,UpdatedBy,IsActive) VALUES ('A_Asset_Product_UU',200209,'U','A_Asset_Product_UU','A_Asset_Product_UU','d1005ada-66d3-4d29-94f4-0401bdefa063',0,TO_DATE('2012-10-31 10:19:08','YYYY-MM-DD HH24:MI:SS'),TO_DATE('2012-10-31 10:19:08','YYYY-MM-DD HH24:MI:SS'),0,100,100,'Y') +; + +-- Oct 31, 2012 10:19:08 AM COT +INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Help,PO_Description,PO_Help,Name,Description,PrintName,PO_Name,PO_PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Element_Trl_UU ) SELECT l.AD_Language,t.AD_Element_ID, t.Help,t.PO_Description,t.PO_Help,t.Name,t.Description,t.PrintName,t.PO_Name,t.PO_PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=200209 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) +; + +-- Oct 31, 2012 10:19:09 AM COT +INSERT INTO AD_Column (IsEncrypted,Version,AD_Table_ID,AD_Column_ID,EntityType,IsMandatory,IsTranslated,IsIdentifier,IsParent,FieldLength,IsSelectionColumn,AD_Reference_ID,IsKey,AD_Element_ID,AD_Column_UU,IsUpdateable,IsAlwaysUpdateable,ColumnName,Name,Updated,CreatedBy,AD_Org_ID,IsActive,Created,UpdatedBy,AD_Client_ID) VALUES ('N',1.00,53270,200855,'U','N','N','N','N',36,'N',10,'N',200209,'6a783ff8-4c8e-45ee-b15a-0636b97a985a','Y','N','A_Asset_Product_UU','A_Asset_Product_UU',TO_DATE('2012-10-31 10:19:08','YYYY-MM-DD HH24:MI:SS'),100,0,'Y',TO_DATE('2012-10-31 10:19:08','YYYY-MM-DD HH24:MI:SS'),100,0) +; + +-- Oct 31, 2012 10:19:09 AM COT +INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Column_Trl_UU ) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=200855 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) +; + +-- Oct 31, 2012 10:19:09 AM COT +ALTER TABLE A_Asset_Product ADD A_Asset_Product_UU NVARCHAR2(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:19:09 AM COT +CREATE UNIQUE INDEX A_Asset_Product_UU_idx ON a_asset_product(A_Asset_Product_UU) +; + +-- Oct 31, 2012 10:19:10 AM COT +INSERT INTO AD_Element (ColumnName,AD_Element_ID,EntityType,Name,PrintName,AD_Element_UU,AD_Client_ID,Created,Updated,AD_Org_ID,CreatedBy,UpdatedBy,IsActive) VALUES ('A_Asset_Class_UU',200210,'U','A_Asset_Class_UU','A_Asset_Class_UU','5f13032a-b9e1-467f-bc7a-96a255502fa3',0,TO_DATE('2012-10-31 10:19:09','YYYY-MM-DD HH24:MI:SS'),TO_DATE('2012-10-31 10:19:09','YYYY-MM-DD HH24:MI:SS'),0,100,100,'Y') +; + +-- Oct 31, 2012 10:19:10 AM COT +INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Help,PO_Description,PO_Help,Name,Description,PrintName,PO_Name,PO_PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Element_Trl_UU ) SELECT l.AD_Language,t.AD_Element_ID, t.Help,t.PO_Description,t.PO_Help,t.Name,t.Description,t.PrintName,t.PO_Name,t.PO_PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=200210 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) +; + +-- Oct 31, 2012 10:19:10 AM COT +INSERT INTO AD_Column (IsEncrypted,Version,AD_Table_ID,AD_Column_ID,EntityType,IsMandatory,IsTranslated,IsIdentifier,IsParent,FieldLength,IsSelectionColumn,AD_Reference_ID,IsKey,AD_Element_ID,AD_Column_UU,IsUpdateable,IsAlwaysUpdateable,ColumnName,Name,Updated,CreatedBy,AD_Org_ID,IsActive,Created,UpdatedBy,AD_Client_ID) VALUES ('N',1.00,53269,200856,'U','N','N','N','N',36,'N',10,'N',200210,'2dc7a9bd-cf8f-4867-b94d-989e76bd0a45','Y','N','A_Asset_Class_UU','A_Asset_Class_UU',TO_DATE('2012-10-31 10:19:09','YYYY-MM-DD HH24:MI:SS'),100,0,'Y',TO_DATE('2012-10-31 10:19:09','YYYY-MM-DD HH24:MI:SS'),100,0) +; + +-- Oct 31, 2012 10:19:10 AM COT +INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Column_Trl_UU ) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=200856 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) +; + +-- Oct 31, 2012 10:19:10 AM COT +ALTER TABLE A_Asset_Class ADD A_Asset_Class_UU NVARCHAR2(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:19:11 AM COT +CREATE UNIQUE INDEX A_Asset_Class_UU_idx ON a_asset_class(A_Asset_Class_UU) +; + +-- Oct 31, 2012 10:19:11 AM COT +INSERT INTO AD_Element (ColumnName,AD_Element_ID,EntityType,Name,PrintName,AD_Element_UU,AD_Client_ID,Created,Updated,AD_Org_ID,CreatedBy,UpdatedBy,IsActive) VALUES ('A_FundingMode_UU',200211,'U','A_FundingMode_UU','A_FundingMode_UU','205a3722-9a92-496c-bc14-e21edc0314d1',0,TO_DATE('2012-10-31 10:19:11','YYYY-MM-DD HH24:MI:SS'),TO_DATE('2012-10-31 10:19:11','YYYY-MM-DD HH24:MI:SS'),0,100,100,'Y') +; + +-- Oct 31, 2012 10:19:11 AM COT +INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Help,PO_Description,PO_Help,Name,Description,PrintName,PO_Name,PO_PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Element_Trl_UU ) SELECT l.AD_Language,t.AD_Element_ID, t.Help,t.PO_Description,t.PO_Help,t.Name,t.Description,t.PrintName,t.PO_Name,t.PO_PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=200211 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) +; + +-- Oct 31, 2012 10:19:12 AM COT +INSERT INTO AD_Column (IsEncrypted,Version,AD_Table_ID,AD_Column_ID,EntityType,IsMandatory,IsTranslated,IsIdentifier,IsParent,FieldLength,IsSelectionColumn,AD_Reference_ID,IsKey,AD_Element_ID,AD_Column_UU,IsUpdateable,IsAlwaysUpdateable,ColumnName,Name,Updated,CreatedBy,AD_Org_ID,IsActive,Created,UpdatedBy,AD_Client_ID) VALUES ('N',1.00,53273,200857,'U','N','N','N','N',36,'N',10,'N',200211,'b75dd803-c6b4-4cb4-837b-ec666b7778ad','Y','N','A_FundingMode_UU','A_FundingMode_UU',TO_DATE('2012-10-31 10:19:11','YYYY-MM-DD HH24:MI:SS'),100,0,'Y',TO_DATE('2012-10-31 10:19:11','YYYY-MM-DD HH24:MI:SS'),100,0) +; + +-- Oct 31, 2012 10:19:12 AM COT +INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Column_Trl_UU ) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=200857 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) +; + +-- Oct 31, 2012 10:19:12 AM COT +ALTER TABLE A_FundingMode ADD A_FundingMode_UU NVARCHAR2(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:19:12 AM COT +CREATE UNIQUE INDEX A_FundingMode_UU_idx ON a_fundingmode(A_FundingMode_UU) +; + +-- Oct 31, 2012 10:19:12 AM COT +INSERT INTO AD_Element (ColumnName,AD_Element_ID,EntityType,Name,PrintName,AD_Element_UU,AD_Client_ID,Created,Updated,AD_Org_ID,CreatedBy,UpdatedBy,IsActive) VALUES ('A_FundingMode_Acct_UU',200212,'U','A_FundingMode_Acct_UU','A_FundingMode_Acct_UU','e8dcc9e7-e57a-4b53-9b66-5ed4c186794e',0,TO_DATE('2012-10-31 10:19:12','YYYY-MM-DD HH24:MI:SS'),TO_DATE('2012-10-31 10:19:12','YYYY-MM-DD HH24:MI:SS'),0,100,100,'Y') +; + +-- Oct 31, 2012 10:19:12 AM COT +INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Help,PO_Description,PO_Help,Name,Description,PrintName,PO_Name,PO_PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Element_Trl_UU ) SELECT l.AD_Language,t.AD_Element_ID, t.Help,t.PO_Description,t.PO_Help,t.Name,t.Description,t.PrintName,t.PO_Name,t.PO_PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=200212 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) +; + +-- Oct 31, 2012 10:19:13 AM COT +INSERT INTO AD_Column (IsEncrypted,Version,AD_Table_ID,AD_Column_ID,EntityType,IsMandatory,IsTranslated,IsIdentifier,IsParent,FieldLength,IsSelectionColumn,AD_Reference_ID,IsKey,AD_Element_ID,AD_Column_UU,IsUpdateable,IsAlwaysUpdateable,ColumnName,Name,Updated,CreatedBy,AD_Org_ID,IsActive,Created,UpdatedBy,AD_Client_ID) VALUES ('N',1.00,53274,200858,'U','N','N','N','N',36,'N',10,'N',200212,'cf79037c-8d0b-450e-b421-c30a2eb135ba','Y','N','A_FundingMode_Acct_UU','A_FundingMode_Acct_UU',TO_DATE('2012-10-31 10:19:12','YYYY-MM-DD HH24:MI:SS'),100,0,'Y',TO_DATE('2012-10-31 10:19:12','YYYY-MM-DD HH24:MI:SS'),100,0) +; + +-- Oct 31, 2012 10:19:13 AM COT +INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Column_Trl_UU ) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=200858 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) +; + +-- Oct 31, 2012 10:19:13 AM COT +ALTER TABLE A_FundingMode_Acct ADD A_FundingMode_Acct_UU NVARCHAR2(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:19:13 AM COT +CREATE UNIQUE INDEX A_FundingMode_Acct_UU_idx ON a_fundingmode_acct(A_FundingMode_Acct_UU) +; + +-- Oct 31, 2012 10:19:13 AM COT +INSERT INTO AD_Element (ColumnName,AD_Element_ID,EntityType,Name,PrintName,AD_Element_UU,AD_Client_ID,Created,Updated,AD_Org_ID,CreatedBy,UpdatedBy,IsActive) VALUES ('A_Asset_Type_UU',200213,'U','A_Asset_Type_UU','A_Asset_Type_UU','e6e7930d-4be4-4ecd-8f54-5d67186e6894',0,TO_DATE('2012-10-31 10:19:13','YYYY-MM-DD HH24:MI:SS'),TO_DATE('2012-10-31 10:19:13','YYYY-MM-DD HH24:MI:SS'),0,100,100,'Y') +; + +-- Oct 31, 2012 10:19:13 AM COT +INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Help,PO_Description,PO_Help,Name,Description,PrintName,PO_Name,PO_PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Element_Trl_UU ) SELECT l.AD_Language,t.AD_Element_ID, t.Help,t.PO_Description,t.PO_Help,t.Name,t.Description,t.PrintName,t.PO_Name,t.PO_PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=200213 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) +; + +-- Oct 31, 2012 10:19:14 AM COT +INSERT INTO AD_Column (IsEncrypted,Version,AD_Table_ID,AD_Column_ID,EntityType,IsMandatory,IsTranslated,IsIdentifier,IsParent,FieldLength,IsSelectionColumn,AD_Reference_ID,IsKey,AD_Element_ID,AD_Column_UU,IsUpdateable,IsAlwaysUpdateable,ColumnName,Name,Updated,CreatedBy,AD_Org_ID,IsActive,Created,UpdatedBy,AD_Client_ID) VALUES ('N',1.00,53276,200859,'U','N','N','N','N',36,'N',10,'N',200213,'aa8b4c0b-7c61-47cd-8b85-9a290b97af2d','Y','N','A_Asset_Type_UU','A_Asset_Type_UU',TO_DATE('2012-10-31 10:19:13','YYYY-MM-DD HH24:MI:SS'),100,0,'Y',TO_DATE('2012-10-31 10:19:13','YYYY-MM-DD HH24:MI:SS'),100,0) +; + +-- Oct 31, 2012 10:19:14 AM COT +INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Column_Trl_UU ) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=200859 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) +; + +-- Oct 31, 2012 10:19:14 AM COT +ALTER TABLE A_Asset_Type ADD A_Asset_Type_UU NVARCHAR2(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:19:14 AM COT +CREATE UNIQUE INDEX A_Asset_Type_UU_idx ON a_asset_type(A_Asset_Type_UU) +; + +-- Oct 31, 2012 10:19:14 AM COT +INSERT INTO AD_Element (ColumnName,AD_Element_ID,EntityType,Name,PrintName,AD_Element_UU,AD_Client_ID,Created,Updated,AD_Org_ID,CreatedBy,UpdatedBy,IsActive) VALUES ('I_FixedAsset_UU',200214,'U','I_FixedAsset_UU','I_FixedAsset_UU','3a525ba0-af20-42dc-bc10-eeb70b22a703',0,TO_DATE('2012-10-31 10:19:14','YYYY-MM-DD HH24:MI:SS'),TO_DATE('2012-10-31 10:19:14','YYYY-MM-DD HH24:MI:SS'),0,100,100,'Y') +; + +-- Oct 31, 2012 10:19:14 AM COT +INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Help,PO_Description,PO_Help,Name,Description,PrintName,PO_Name,PO_PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Element_Trl_UU ) SELECT l.AD_Language,t.AD_Element_ID, t.Help,t.PO_Description,t.PO_Help,t.Name,t.Description,t.PrintName,t.PO_Name,t.PO_PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=200214 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) +; + +-- Oct 31, 2012 10:19:15 AM COT +INSERT INTO AD_Column (IsEncrypted,Version,AD_Table_ID,AD_Column_ID,EntityType,IsMandatory,IsTranslated,IsIdentifier,IsParent,FieldLength,IsSelectionColumn,AD_Reference_ID,IsKey,AD_Element_ID,AD_Column_UU,IsUpdateable,IsAlwaysUpdateable,ColumnName,Name,Updated,CreatedBy,AD_Org_ID,IsActive,Created,UpdatedBy,AD_Client_ID) VALUES ('N',1.00,53277,200860,'U','N','N','N','N',36,'N',10,'N',200214,'1b18223e-0c22-42fa-b7fd-92671fc20e90','Y','N','I_FixedAsset_UU','I_FixedAsset_UU',TO_DATE('2012-10-31 10:19:14','YYYY-MM-DD HH24:MI:SS'),100,0,'Y',TO_DATE('2012-10-31 10:19:14','YYYY-MM-DD HH24:MI:SS'),100,0) +; + +-- Oct 31, 2012 10:19:15 AM COT +INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Column_Trl_UU ) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=200860 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) +; + +-- Oct 31, 2012 10:19:15 AM COT +ALTER TABLE I_FixedAsset ADD I_FixedAsset_UU NVARCHAR2(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:19:15 AM COT +CREATE UNIQUE INDEX I_FixedAsset_UU_idx ON i_fixedasset(I_FixedAsset_UU) +; + +-- Oct 31, 2012 10:19:16 AM COT +INSERT INTO AD_Element (ColumnName,AD_Element_ID,EntityType,Name,PrintName,AD_Element_UU,AD_Client_ID,Created,Updated,AD_Org_ID,CreatedBy,UpdatedBy,IsActive) VALUES ('A_Asset_Reval_UU',200215,'U','A_Asset_Reval_UU','A_Asset_Reval_UU','f4bd422b-9c8f-457b-88ad-8a5a1fe6576d',0,TO_DATE('2012-10-31 10:19:15','YYYY-MM-DD HH24:MI:SS'),TO_DATE('2012-10-31 10:19:15','YYYY-MM-DD HH24:MI:SS'),0,100,100,'Y') +; + +-- Oct 31, 2012 10:19:16 AM COT +INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Help,PO_Description,PO_Help,Name,Description,PrintName,PO_Name,PO_PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Element_Trl_UU ) SELECT l.AD_Language,t.AD_Element_ID, t.Help,t.PO_Description,t.PO_Help,t.Name,t.Description,t.PrintName,t.PO_Name,t.PO_PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=200215 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) +; + +-- Oct 31, 2012 10:19:16 AM COT +INSERT INTO AD_Column (IsEncrypted,Version,AD_Table_ID,AD_Column_ID,EntityType,IsMandatory,IsTranslated,IsIdentifier,IsParent,FieldLength,IsSelectionColumn,AD_Reference_ID,IsKey,AD_Element_ID,AD_Column_UU,IsUpdateable,IsAlwaysUpdateable,ColumnName,Name,Updated,CreatedBy,AD_Org_ID,IsActive,Created,UpdatedBy,AD_Client_ID) VALUES ('N',1.00,53275,200861,'U','N','N','N','N',36,'N',10,'N',200215,'ac49c3db-0ef1-4830-a535-5f8553dea212','Y','N','A_Asset_Reval_UU','A_Asset_Reval_UU',TO_DATE('2012-10-31 10:19:15','YYYY-MM-DD HH24:MI:SS'),100,0,'Y',TO_DATE('2012-10-31 10:19:15','YYYY-MM-DD HH24:MI:SS'),100,0) +; + +-- Oct 31, 2012 10:19:16 AM COT +INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Column_Trl_UU ) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=200861 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) +; + +-- Oct 31, 2012 10:19:16 AM COT +ALTER TABLE A_Asset_Reval ADD A_Asset_Reval_UU NVARCHAR2(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:19:17 AM COT +CREATE UNIQUE INDEX A_Asset_Reval_UU_idx ON a_asset_reval(A_Asset_Reval_UU) +; + +-- Oct 31, 2012 10:27:40 AM COT +ALTER TABLE A_Asset_Acct ADD A_Asset_Acct_UU NVARCHAR2(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:28:31 AM COT +ALTER TABLE A_Asset_Group_Acct ADD A_Asset_Group_Acct_UU NVARCHAR2(36) DEFAULT NULL +; + +CREATE UNIQUE INDEX a_asset_acct_uu_idx ON a_asset_acct (a_asset_acct_uu); + +CREATE UNIQUE INDEX a_asset_group_acct_uu_idx ON a_asset_group_acct (a_asset_group_acct_uu); + +CREATE UNIQUE INDEX ad_passwordrule_uu_idx ON ad_passwordrule (ad_passwordrule_uu); + +CREATE UNIQUE INDEX asp_ref_list_uu_idx ON asp_ref_list (asp_ref_list_uu); + +CREATE UNIQUE INDEX c_bankaccount_processor_uu_idx ON c_bankaccount_processor (c_bankaccount_processor_uu); + +CREATE UNIQUE INDEX c_pospayment_uu_idx ON c_pospayment (c_pospayment_uu); + +CREATE UNIQUE INDEX c_postendertype_uu_idx ON c_postendertype (c_postendertype_uu); + +CREATE UNIQUE INDEX m_costhistory_uu_idx ON m_costhistory (m_costhistory_uu); + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='dc9682fc-0bb4-4d55-a865-5c419d3ae0a0' WHERE AD_Column_ID=59254 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='020f0a6f-9157-4140-82f1-48777975aa3b' WHERE AD_Column_ID=59255 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='f8ff3ef7-8207-469c-b81f-e68886d47031' WHERE AD_Column_ID=59256 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='8a3728a2-bfc2-4429-a6d1-efd42ea16eea' WHERE AD_Column_ID=59257 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='9a708d3f-a18b-46db-9033-b3fecdc1143a' WHERE AD_Column_ID=59258 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='bd81a383-45c0-4d41-8324-d217498d2f36' WHERE AD_Column_ID=59259 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='d246e51f-9dee-433b-9558-ec5fd785f8e3' WHERE AD_Column_ID=59261 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='52f8fd28-db8b-4fda-8c1b-499b22014b3c' WHERE AD_Column_ID=59262 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='f356f23e-b83a-4719-9173-d4ffdfbc0c65' WHERE AD_Column_ID=59263 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='2a125b14-861e-4d29-b433-60abf2d1452b' WHERE AD_Column_ID=59264 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='6cb1f93d-d287-42b6-ace7-97d5d5b285eb' WHERE AD_Column_ID=59265 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='ec617866-4605-475a-912f-b92877ffabbf' WHERE AD_Column_ID=59266 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='b48788ba-59a1-46e3-947a-8f121ee5713b' WHERE AD_Column_ID=59267 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='32d0bda3-7137-4da2-9ef1-756087b96d4d' WHERE AD_Column_ID=59268 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='2ac77fc4-5cae-4b81-a0c3-93cc960beae5' WHERE AD_Column_ID=59269 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='5573a73d-a911-414a-bb79-7ba04cff84f5' WHERE AD_Column_ID=59270 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='f2133c2b-819a-412f-97a4-cccc70bda1b9' WHERE AD_Column_ID=59271 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='69f28f2b-b87f-4404-8971-4c439f0aacc5' WHERE AD_Column_ID=59272 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='8c4ad81a-01b4-4b5b-a2d4-27c1b43e10c0' WHERE AD_Column_ID=59273 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='fc1feacd-ab7e-4c5a-860f-cad172f0f023' WHERE AD_Column_ID=59274 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='62be85e2-d51f-466f-a4a6-49bfaddebf57' WHERE AD_Column_ID=59275 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='605e2c94-bd65-45ec-a9f1-ba2944d9bc7a' WHERE AD_Column_ID=59276 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='36a06484-044c-490e-9454-89ade8cc0085' WHERE AD_Column_ID=59277 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='dcbf4fbf-53f9-48de-81a7-8ff829cd752e' WHERE AD_Column_ID=59260 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='e743a1dd-75b1-45ff-b99c-8f8f9885b555' WHERE AD_Column_ID=59278 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='c38fe117-ee8d-41b5-b09f-f9cef3a1a507' WHERE AD_Column_ID=59279 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='a354e598-0fdf-476c-bd39-96b31db1f2db' WHERE AD_Column_ID=59280 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='2fc4eb96-093f-4544-acdc-71caa233f049' WHERE AD_Column_ID=59281 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='30aec249-6a07-4bfc-bf49-3b694e0314a1' WHERE AD_Column_ID=59285 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='d7f6feef-cd75-46d2-84de-b2d1de32a8d3' WHERE AD_Column_ID=59286 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='65d887fd-1d79-4504-88ba-ee26811b3df0' WHERE AD_Column_ID=59287 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='341c4899-2ac0-461d-b227-5d6f98d19e3f' WHERE AD_Column_ID=59288 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='143c9024-44bb-456b-a361-371a5ac717ad' WHERE AD_Column_ID=59289 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='a96eb188-5b69-4ece-aa64-4a896d8385c0' WHERE AD_Column_ID=59290 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='b364a2f4-1bec-4ca9-b34d-366f0a9cc868' WHERE AD_Column_ID=59291 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='f9305162-dd81-4bd3-aaef-d218d820d9e9' WHERE AD_Column_ID=59293 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='aa9ed860-1662-40d7-98e3-930e7ee61edf' WHERE AD_Column_ID=59294 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='97ca1e1f-e5e0-47fe-9bd9-8c0f7a2311d1' WHERE AD_Column_ID=59295 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='038fd89f-c23e-4cdb-8562-7885ffa755f4' WHERE AD_Column_ID=59296 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='0e1a7120-609f-4eed-a572-18be3ea92221' WHERE AD_Column_ID=59297 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='3e81b397-261b-413f-b202-c41ccca51ab4' WHERE AD_Column_ID=59298 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='68ad6ed5-37b6-45b0-a2a9-18195134ce06' WHERE AD_Column_ID=59299 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='65794203-22fa-493a-852a-448ec208a743' WHERE AD_Column_ID=59300 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='ff341449-1906-493a-ab49-8aa8e7a9aeac' WHERE AD_Column_ID=59301 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='51df61c6-e308-458f-af6a-65bf05696193' WHERE AD_Column_ID=59303 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='67ca92e3-c873-46ed-8eff-40539e5f9ff8' WHERE AD_Column_ID=59304 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='988d23ee-044c-4ec6-9f1a-5502e098d891' WHERE AD_Column_ID=59305 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='12063627-930a-4301-87c2-b69f0ae16155' WHERE AD_Column_ID=59306 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='f2e38977-6584-4d4b-8463-59933eecfc46' WHERE AD_Column_ID=59308 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='01244d80-f963-43e9-81f1-e358f7e049ae' WHERE AD_Column_ID=59309 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='33ee5f9e-a823-43f0-916f-211119e57bba' WHERE AD_Column_ID=59312 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='2df3c8eb-5b9c-49d5-9ace-b1d6a6a4a888' WHERE AD_Column_ID=59313 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='b9490dde-a0de-4c2b-8050-01ce9534735f' WHERE AD_Column_ID=59314 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='034ca7f8-44f6-4fe1-9edf-84bc001fb22a' WHERE AD_Column_ID=59315 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='15c428e2-d2b3-44b6-9ea8-b545c24f4d1f' WHERE AD_Column_ID=59316 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='110d49e0-e388-42f6-b97f-bd286d3261e0' WHERE AD_Column_ID=59317 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='424e35d6-125e-4e05-9825-dd42fda202fc' WHERE AD_Column_ID=59318 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='3dbc7d9c-c29a-4b02-aae1-92dadab26dfa' WHERE AD_Column_ID=59319 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='7ef8ace9-efa6-4be1-bcd8-e6dbfe23a0f0' WHERE AD_Column_ID=59320 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='5ae1e340-a0d9-4f74-ab7a-04e864000f37' WHERE AD_Column_ID=59321 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='94417e10-fce7-4d0f-99cd-b972774c542f' WHERE AD_Column_ID=59322 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='a108694b-7720-4a25-81f8-a333aeaf5920' WHERE AD_Column_ID=59323 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='1e0322ec-ed48-42c9-9aca-fc5b4d4bfa71' WHERE AD_Column_ID=59324 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='17a49663-67b0-4c86-8313-c802b32b8aae' WHERE AD_Column_ID=59325 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='fb8a21a3-37c6-494b-87e9-541cf115fdb7' WHERE AD_Column_ID=59327 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='faca241a-b1c1-4763-bd34-3fbbea9e6169' WHERE AD_Column_ID=59328 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='e57328ad-d478-49de-92dc-7490e8fa55d0' WHERE AD_Column_ID=59329 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='7c2106fc-fa55-44d7-b530-542078549c30' WHERE AD_Column_ID=59330 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='9d0615ab-7cf1-4a55-8040-fd6cf5628e73' WHERE AD_Column_ID=59331 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='9239e878-cc01-4b8b-b989-c9684c8ad893' WHERE AD_Column_ID=59332 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='c69b59c4-7333-4fed-b452-43e3f1ff0808' WHERE AD_Column_ID=59333 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='bba8a754-d399-4cce-83d3-d990885fbf8b' WHERE AD_Column_ID=59334 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='c5f8c629-a473-4197-aced-2676f4ff6527' WHERE AD_Column_ID=59335 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='964709d4-603b-48b0-8e06-de08feef7e6f' WHERE AD_Column_ID=59336 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='594a6f2a-3e00-4920-9875-5f465f42918d' WHERE AD_Column_ID=59337 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='902f350a-ea79-4473-92d4-29913a0d7192' WHERE AD_Column_ID=59338 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='01a45054-abbb-49e3-8475-0b0af5d21391' WHERE AD_Column_ID=59339 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='c122cece-79d0-4377-9aed-369debffa8bf' WHERE AD_Column_ID=59340 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='d9ce99ae-9d0c-4742-aef3-6c410cc309ac' WHERE AD_Column_ID=59341 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='a7bbd20b-0ca9-476c-a1c1-5e72ee83464e' WHERE AD_Column_ID=59342 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='04829e81-2129-4896-92db-079c0f85fe8f' WHERE AD_Column_ID=59344 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='6574007c-46c2-45ad-a360-9977188c7e21' WHERE AD_Column_ID=59345 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='edaf0a44-892f-4200-8be1-6f6836ce2f85' WHERE AD_Column_ID=59346 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='7514a215-e070-4510-a654-cfed38795366' WHERE AD_Column_ID=59347 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='fa10f536-f4e7-4eb7-924b-c433d2cb95fb' WHERE AD_Column_ID=59348 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='25ddb871-74e0-4c2e-972b-dfcb3340fb9a' WHERE AD_Column_ID=59349 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='14a045e0-ce18-481e-a343-a4a440b91e04' WHERE AD_Column_ID=59350 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='b524fa9a-223d-4dc3-9f0b-f59d9d8cc76c' WHERE AD_Column_ID=59351 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='9239af9f-4b0e-4b40-8b67-183e5cc740d2' WHERE AD_Column_ID=59353 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='e2ef7326-6c87-44f4-b781-f12204da445e' WHERE AD_Column_ID=59354 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='4f2b3fe6-11ca-4fa5-bf77-0f0c57d71ef6' WHERE AD_Column_ID=59355 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='488aec70-a7f2-40a4-b135-ca61d3b0e510' WHERE AD_Column_ID=59356 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='a7c90b99-967b-4a48-b465-ca4a969d89f8' WHERE AD_Column_ID=59357 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='3470e7f3-90ee-4398-bfbc-c3267a7a1ff0' WHERE AD_Column_ID=59358 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='6b97a541-3e97-4163-9358-a83b76b63293' WHERE AD_Column_ID=59359 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='b39798fe-a780-4090-ac36-78ab6cef4cea' WHERE AD_Column_ID=59360 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='7acdf11e-157c-4b00-9353-a32fb5497b50' WHERE AD_Column_ID=59361 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='5e581604-27c0-499b-9467-b72da247c014' WHERE AD_Column_ID=59362 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='b96f5239-d029-482b-9284-219775f8cf26' WHERE AD_Column_ID=59363 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='b6c480b7-d1fc-41af-a470-4f7706794c75' WHERE AD_Column_ID=59364 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='aa50a913-bc8d-4e9e-92e9-f379d5bcdcfe' WHERE AD_Column_ID=59365 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='d717f00a-6b4a-4eb1-b86e-e51e58ddc4fc' WHERE AD_Column_ID=59366 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='54bfe28d-c43a-43f7-b760-7817c6abdfed' WHERE AD_Column_ID=59367 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='eb883da7-9e1a-40e7-9ff2-ada2976bf213' WHERE AD_Column_ID=59368 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='8699258a-77ac-4a16-828b-c816e47707fc' WHERE AD_Column_ID=59369 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='85a66f88-fffa-4c9b-8183-481bc72890c3' WHERE AD_Column_ID=59370 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='8a099125-edbe-4b63-847f-04005f75561d' WHERE AD_Column_ID=59371 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='5b6267b7-5115-492b-9c72-965061b50d13' WHERE AD_Column_ID=59372 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='c5dc406d-28e9-4ed6-8885-223543db7a33' WHERE AD_Column_ID=59373 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='24ae9e8a-039d-41d1-80c7-2a8ecff6b805' WHERE AD_Column_ID=59374 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='5439283c-0039-4823-8a1a-047d06a79bed' WHERE AD_Column_ID=59375 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='afcf3af6-5802-48f0-a168-fec1f999cb9c' WHERE AD_Column_ID=59376 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='759eb462-d43a-4d7b-9405-4ee8b688ee30' WHERE AD_Column_ID=59377 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='f3aef3d9-78d9-46c0-ba65-20f41843a2c4' WHERE AD_Column_ID=59378 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='efb15f6e-bd58-4c29-b859-0e1959531dea' WHERE AD_Column_ID=59379 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='057c184a-e87e-4135-b9a4-c9c6833bae7e' WHERE AD_Column_ID=59380 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='9bfbbd2d-05a7-4667-a851-9f87fb9dfb1a' WHERE AD_Column_ID=59381 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='e2f86183-daee-4cf9-bbbf-53921a77fa54' WHERE AD_Column_ID=59382 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='78ffc54d-bfb8-44c9-b6dd-4cf3692be4cd' WHERE AD_Column_ID=59383 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='45154a17-8892-437b-85ee-e2f726970afa' WHERE AD_Column_ID=59384 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='546c3cb5-4284-44a2-b7cb-a7a657201fa5' WHERE AD_Column_ID=59385 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='0defabcb-5830-4bb8-9e2f-a80361c65e7e' WHERE AD_Column_ID=59386 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='37563b27-3151-4a6d-80ef-b5b0c4c8205e' WHERE AD_Column_ID=59387 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='e154363a-a760-465e-ac7b-39d396921b8f' WHERE AD_Column_ID=59388 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='0f7de766-3eee-4743-b3a9-20443653308e' WHERE AD_Column_ID=59389 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='c72cb1f1-860a-4467-a42b-88ea50efa56c' WHERE AD_Column_ID=59390 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='1b9239bb-5a02-4a91-b876-8bdd28a9229b' WHERE AD_Column_ID=59391 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='2da8e020-9939-4245-90dc-b46f4a820878' WHERE AD_Column_ID=59392 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='12b4069b-c14e-4fb8-b525-8cb7abe17037' WHERE AD_Column_ID=59393 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='6c01e886-d68e-46a8-a0f0-97c04e86b93c' WHERE AD_Column_ID=59394 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='504fe566-7ed4-4de0-912e-fa57129ece3a' WHERE AD_Column_ID=59395 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='aa08d432-af27-4917-a21e-dd5f9861f252' WHERE AD_Column_ID=59396 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='1a321008-3f51-4eb5-ade9-52dcb9db5ad4' WHERE AD_Column_ID=59397 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='58a84e54-f23f-48f7-8f15-59b81ccce241' WHERE AD_Column_ID=59398 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='dd013b0b-82db-4b4c-bff4-906f86cb3e82' WHERE AD_Column_ID=59399 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='55417c6d-be77-42ee-9ccb-ff21b502469f' WHERE AD_Column_ID=59401 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='9f7dd18b-98db-4ae7-a2cb-91ec5bafc95b' WHERE AD_Column_ID=59402 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='2882f4a9-2ed5-4034-b490-027ef3560d11' WHERE AD_Column_ID=59403 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='42636b21-2172-416d-b5c6-c96c4e886b91' WHERE AD_Column_ID=59404 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='51b57e26-f1ea-4bb5-b652-f381c1bdcdc8' WHERE AD_Column_ID=59405 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='441b111e-6d81-4084-936d-699d7bca6a47' WHERE AD_Column_ID=59406 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='5d72e905-06ac-49cc-84fc-1f13840c87b3' WHERE AD_Column_ID=59407 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='c130413e-55e5-4d6f-8c8b-939920afb9ea' WHERE AD_Column_ID=59408 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='d6a45992-b37f-4c78-85b1-1586ee68b648' WHERE AD_Column_ID=59409 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='0da7a8f2-e811-4026-a61b-b706acfa88fe' WHERE AD_Column_ID=59410 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='35a693cf-6673-4600-b13e-3130c4fbf6a9' WHERE AD_Column_ID=59411 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='b36e50dc-22d4-4a42-8e57-21b607f8a5f3' WHERE AD_Column_ID=59412 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='03b7e235-ad37-4c74-9ebc-6ece51a791da' WHERE AD_Column_ID=59413 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='61396dfd-e6a7-4eef-8e97-2f813ec7524d' WHERE AD_Column_ID=59414 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='9657eb6c-a382-4207-9d17-fd8774e44994' WHERE AD_Column_ID=59415 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='88dc1582-efc0-49ad-b62b-0a3ce6c0db74' WHERE AD_Column_ID=59416 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='7493794d-5b84-4571-85ca-bf09e2cfcd86' WHERE AD_Column_ID=59417 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='27e3643c-48c1-47d0-b0ab-c805cf77af74' WHERE AD_Column_ID=59418 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='8c8703ca-15b0-4928-a498-353da75db383' WHERE AD_Column_ID=59419 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='b0b94f1d-cc40-4f8e-89fa-5e138ae3d6c9' WHERE AD_Column_ID=59420 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='f31d9f92-824b-4cc7-a6f5-b0bb4d3499b3' WHERE AD_Column_ID=59421 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='e3565a98-5997-448c-893c-c6e94c3d95f7' WHERE AD_Column_ID=59422 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='a32564ca-4b9b-4fdc-af83-1422b6e2b400' WHERE AD_Column_ID=59423 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='ffacb7a1-a48b-48dd-81a1-32923f7095fb' WHERE AD_Column_ID=59424 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='35f84f29-be10-43a8-b089-a4d843bc33bf' WHERE AD_Column_ID=59425 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='10dc4b8d-48ed-417c-a4fa-c746e8b14847' WHERE AD_Column_ID=59426 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='6642d215-5cbc-4f7c-af3b-2224e529aa4c' WHERE AD_Column_ID=59429 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='dfb6ff96-d0ee-49f5-8307-f71fee5c8e18' WHERE AD_Column_ID=59430 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='16be4721-5dc1-4836-915f-70305ed12c3c' WHERE AD_Column_ID=59431 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='d958899f-ecb8-480f-802a-d023448c5790' WHERE AD_Column_ID=59432 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='e3f0c8a6-85cd-45c7-991f-b00410d323b8' WHERE AD_Column_ID=59433 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='13be8f20-602b-4c6e-aea9-1eafc57d45ba' WHERE AD_Column_ID=59434 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='d8679cdc-0cf2-4f8b-a136-f9c407e3a494' WHERE AD_Column_ID=59435 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='1bda6fca-d377-45e5-9f6a-8804b632ce50' WHERE AD_Column_ID=59436 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='9cb50904-d20d-4c30-b0a4-b1ede46bda11' WHERE AD_Column_ID=59437 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='21a57cd4-83c7-4300-b026-e8832df82c5b' WHERE AD_Column_ID=59438 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='43915668-b1bc-40bc-bf47-337edb03ab20' WHERE AD_Column_ID=59439 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='387dbf8b-8792-4f7e-be40-ac44f34284ba' WHERE AD_Column_ID=59440 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='dbb13bda-3420-462e-985b-af0367391639' WHERE AD_Column_ID=59441 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='7648a4f7-e0de-4c06-ae1d-8cc2da03cd10' WHERE AD_Column_ID=59442 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='d0bd2b01-9cb6-4e34-a65a-1cf8f3d1d7e3' WHERE AD_Column_ID=59443 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='0a153fce-f56b-45ab-8f35-c39cbfe49e6e' WHERE AD_Column_ID=59444 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='bf23fab2-fd03-43e3-ab74-18165ac0040b' WHERE AD_Column_ID=59445 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='6301b5b8-3468-4d87-b5f0-621f5e2c5377' WHERE AD_Column_ID=59446 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='1a3b5d3e-9fce-4d9c-a1ca-7d614617e623' WHERE AD_Column_ID=59447 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='17cd0205-063e-417c-b195-330326f32454' WHERE AD_Column_ID=59448 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='7bc4f553-f6b3-4e68-bda0-dd015749c385' WHERE AD_Column_ID=59449 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='6b184fef-7dd7-404c-ba87-dedaad03da92' WHERE AD_Column_ID=59450 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='f444aa52-b934-4ac6-8e5c-e368691819f1' WHERE AD_Column_ID=59451 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='1bb25aa7-44f0-4786-becf-88621661bb51' WHERE AD_Column_ID=59452 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='3068ef16-821b-40a6-be25-cab6cc4e8f7a' WHERE AD_Column_ID=59453 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='f11abfd4-1e08-4143-9bb4-3053267e40db' WHERE AD_Column_ID=59454 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='0d31481b-96df-4ad9-9b13-d1c03d84107e' WHERE AD_Column_ID=59455 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='38aaaaaa-1f44-48b7-b9e1-592c1b938cf7' WHERE AD_Column_ID=59456 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='72405c67-2703-498b-b7d5-b680d689ed5a' WHERE AD_Column_ID=59457 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='001d1c41-d761-41dd-b19d-15e28c41831f' WHERE AD_Column_ID=59458 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='2661aec9-ef88-4d8a-a832-ab34ad6bd524' WHERE AD_Column_ID=59459 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='87c20b5e-f35f-4711-b334-c57a2c04e60c' WHERE AD_Column_ID=59460 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='c0d727aa-97a9-4991-950d-43c976cc2620' WHERE AD_Column_ID=59463 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='8eb740cb-841b-4e87-97fd-81dfbf795311' WHERE AD_Column_ID=59464 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='ab0ae479-dc31-4b76-8258-6be621c86d2c' WHERE AD_Column_ID=59465 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='cfc0112c-c0a7-4b28-ab6c-ee7c458e0e45' WHERE AD_Column_ID=59466 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='e0b870a1-c724-4c2a-a310-3b361bdea87c' WHERE AD_Column_ID=59467 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='6a776f4e-3372-4527-a6ad-99e806cb1573' WHERE AD_Column_ID=59468 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='21ea0faf-d65f-4c0a-9fd8-fa24902eb1e9' WHERE AD_Column_ID=59470 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='d2ace51a-cb99-4ec4-ba18-43297d2098c8' WHERE AD_Column_ID=59471 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='4a5a79b8-09b6-43cc-b8f8-bb80a848ac2b' WHERE AD_Column_ID=59472 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='15e76bb0-a635-44b3-a46a-bbe90e966d52' WHERE AD_Column_ID=59473 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='e5515444-0f6e-4449-a1b2-90403f30facf' WHERE AD_Column_ID=59474 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='8824d0e8-9e8e-4681-b9e2-6127b192bd60' WHERE AD_Column_ID=59475 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='450c55b5-9d1a-41be-9a6d-d25338b09f77' WHERE AD_Column_ID=59477 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='02c0c8cf-33c8-433f-9f6c-6b43edd75839' WHERE AD_Column_ID=59478 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='5011e5ba-8b6c-40ac-96dc-10b3dd422c22' WHERE AD_Column_ID=59479 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='dd174fd6-82c1-4f5d-a53d-874690163180' WHERE AD_Column_ID=59480 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='03d5c8c3-1d7d-441b-9878-4b35ea30ddd3' WHERE AD_Column_ID=59481 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='c54e9435-3805-4dc9-90ba-a7eb6e738247' WHERE AD_Column_ID=59482 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='0aecd37e-3d30-4b3c-9f6a-b1faf20937ef' WHERE AD_Column_ID=59483 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='f8dbfbb0-943c-4dd4-adef-077aaf86bfd3' WHERE AD_Column_ID=59484 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='7424fdf8-04cb-47f7-ac3c-014f2af5a8be' WHERE AD_Column_ID=59485 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='466094dd-ca70-466b-891b-9c1d65070db6' WHERE AD_Column_ID=59486 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='d3a7a1b6-9925-49e8-8524-e9bf88021ac1' WHERE AD_Column_ID=59487 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='d95f9139-458b-4dbd-91a6-4c1c0c3f00e8' WHERE AD_Column_ID=59488 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='b9bc9dc9-3ab1-432c-a207-61ad8bcbe2f4' WHERE AD_Column_ID=59489 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='85cc9785-3dea-4251-8c0e-e2db6044280a' WHERE AD_Column_ID=59491 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='f8523d32-64ba-40df-a04b-396eb784e240' WHERE AD_Column_ID=59492 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='04b1dae5-f1e7-4afb-9299-eb7499799eb0' WHERE AD_Column_ID=59493 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='9c65a8b0-7feb-48f8-a52a-189fafcaeb94' WHERE AD_Column_ID=59302 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='97df3ab9-6421-476b-98fd-d31e73ea71fe' WHERE AD_Column_ID=59343 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='520f6f68-bf0f-422c-a087-dc0c0b9cfbba' WHERE AD_Column_ID=59326 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='8eb67f70-1ba3-42c2-9f70-e5d68499e72f' WHERE AD_Column_ID=59427 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='ef606d00-512f-4719-b280-579d595a0235' WHERE AD_Column_ID=59496 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='d0e90a7e-e0f1-4dd7-97bc-c4251b5f5b39' WHERE AD_Column_ID=59497 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='44c448e5-e0f5-4ea2-be82-86a08db1e5b6' WHERE AD_Column_ID=59499 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='69c747ea-40ac-4c01-be66-2662b5a9379b' WHERE AD_Column_ID=59500 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='338de78b-7109-4340-8a8c-1e757ce300c5' WHERE AD_Column_ID=59501 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='1d51fcd6-3bd8-45af-b2d8-e8f12a71ed34' WHERE AD_Column_ID=59502 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='41b99a0f-cacf-4e85-b082-5c5b17d7357e' WHERE AD_Column_ID=59503 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='03f54cf3-d7f4-4d5b-9324-65c270ad3c00' WHERE AD_Column_ID=59504 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='28a4d18e-9bbf-4a94-8ea0-c51d111f2ad3' WHERE AD_Column_ID=59505 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='741df0fd-2023-480f-b69a-5ecd92e610cf' WHERE AD_Column_ID=59506 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='185b82da-d061-4031-a1cb-4e1accf08ea3' WHERE AD_Column_ID=59507 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='3fece34b-697e-470d-85f5-3834076ba4da' WHERE AD_Column_ID=59508 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='6cedc429-f088-4182-bb62-0b9fb0f67eec' WHERE AD_Column_ID=59509 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='0fd59656-e7a8-400d-a972-360fcba5b685' WHERE AD_Column_ID=59510 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='e58d36c1-00d2-4bb9-bdb4-d3505c18b45c' WHERE AD_Column_ID=59511 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='dabcdc75-076c-4c1c-8fbe-9121a6f8a685' WHERE AD_Column_ID=59512 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='5cf6151a-268a-425e-8918-ce3d8db3e969' WHERE AD_Column_ID=59513 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='d6d72317-4702-4cdb-9078-60c10c7c9aa7' WHERE AD_Column_ID=59514 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='97a71fcb-c8f5-4f27-a507-f1337c6b1a9f' WHERE AD_Column_ID=59515 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='4732d14d-84c3-4be7-b8fb-76af9ba545f8' WHERE AD_Column_ID=59516 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='36f6f9e5-b0b5-4da2-ba83-727d75950d71' WHERE AD_Column_ID=59517 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='59bed226-9290-4e96-954a-b6c2efd510e5' WHERE AD_Column_ID=59518 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='06ec5c2a-67ec-4cf9-83cc-cd70c4d6f7d7' WHERE AD_Column_ID=59519 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='efa00c3f-1cee-4736-8dd1-8d46d8d10874' WHERE AD_Column_ID=59520 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='fff7025c-4102-4df8-b380-cf10f7b3dc13' WHERE AD_Column_ID=59521 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='3291523d-20fc-491b-8261-07032f78e9ae' WHERE AD_Column_ID=59523 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='b6576e98-2c0b-440f-9c4b-fb809cd26a19' WHERE AD_Column_ID=59524 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='bb57aecd-685c-4bf0-a2cd-4c7c671fbada' WHERE AD_Column_ID=59525 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='2ac489fd-1132-4740-bf81-09cae8422f32' WHERE AD_Column_ID=59526 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='4adfee09-1005-426d-9296-264c88d61730' WHERE AD_Column_ID=59527 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='e037bbe6-712a-4d46-b603-33c4acc95122' WHERE AD_Column_ID=59528 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='4f747c84-d5bc-44cb-ac74-13ba7f66cca3' WHERE AD_Column_ID=59529 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='d9cdc7f2-4670-4fb2-a24d-3bb8832c49d6' WHERE AD_Column_ID=59530 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='25f9e30a-2d2c-4001-8bb3-6c997f8491dd' WHERE AD_Column_ID=59531 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='d78efb00-d832-45e0-80bb-49900cb5be5d' WHERE AD_Column_ID=59532 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='ea5e18f7-feeb-4264-930b-8fe7e026874a' WHERE AD_Column_ID=59533 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='d529a53d-55f9-4a91-bf4e-13a07e3f3275' WHERE AD_Column_ID=59534 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='2cbb016c-fcb8-42b5-a726-2c211db0b5a3' WHERE AD_Column_ID=59535 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='51ccdfd3-d31a-44a9-b3a8-1a58ef8056f2' WHERE AD_Column_ID=59536 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='eeb66667-9f54-4c8a-af0a-bdb2caee20a5' WHERE AD_Column_ID=59537 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='4559c48d-0a51-4ed6-b4f7-e749523a7893' WHERE AD_Column_ID=59538 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='7d3017b9-d488-466e-9d26-0193d65cfa03' WHERE AD_Column_ID=59539 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='18ec800c-e5cf-4f3b-b62f-2e7a6ec39f9a' WHERE AD_Column_ID=59522 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='7cbeb7a3-ec4c-41c9-8436-7d4d32744cac' WHERE AD_Column_ID=59498 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='99841acf-37b1-431e-a7eb-1012e2cbb03c' WHERE AD_Column_ID=59587 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='71df6d55-510c-436f-a091-ff0b2901d3c9' WHERE AD_Column_ID=59588 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='2b9e1567-7bdf-4bfb-b974-b923b6cd0cd1' WHERE AD_Column_ID=59589 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='0dd23954-8131-4cbb-a136-301cecbeac70' WHERE AD_Column_ID=59590 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='8a164482-25af-408c-99b8-155c19c6ec07' WHERE AD_Column_ID=59591 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='46d56e7f-ab4c-4cf6-b968-49daf7241df7' WHERE AD_Column_ID=59592 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='892e8823-c153-48a6-9f65-dbc2ad924e9a' WHERE AD_Column_ID=59593 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='2899493a-b2ce-47c7-8f7c-6da56d18d18d' WHERE AD_Column_ID=61470 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='ca6fb628-83d9-4e54-9377-70ce9800c37b' WHERE AD_Column_ID=59307 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='2fe1610b-fbcf-4281-b91c-4245365d618e' WHERE AD_Column_ID=59292 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='c744f58e-5e8f-480e-b65b-0c4d84799f2b' WHERE AD_Column_ID=59400 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='9eae08aa-ddd3-4ed3-bcf4-00700121dd3c' WHERE AD_Column_ID=59461 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='2392fae3-09e3-4d47-b5d8-fe23ef664172' WHERE AD_Column_ID=59462 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='e46aba37-b92b-498e-85ca-611fefbd5dad' WHERE AD_Column_ID=59469 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='05c86b88-d985-4f39-8454-159fcfaba602' WHERE AD_Column_ID=59476 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='98154498-34b2-4808-94b3-e4379914da8f' WHERE AD_Column_ID=59352 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='0f8ffecb-b4d2-4f88-889a-2498d3f558f5' WHERE AD_Column_ID=59283 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='371f6b39-b57b-4f4e-ac1b-5aa2e7c8bb42' WHERE AD_Column_ID=59284 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='ca384cd3-b6bf-41a6-bd35-c664e5997ce4' WHERE AD_Column_ID=200210 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='744551cd-44ef-43fa-af71-0db6f7e1f2d4' WHERE AD_Column_ID=200211 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='b25be366-718c-4528-bea7-5d1fb73904d9' WHERE AD_Column_ID=59282 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='ed4550ef-c554-469f-8f7e-c53bace3e977' WHERE AD_Column_ID=200587 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='28fffb91-c096-46d1-b759-d01bdb8134e1' WHERE AD_Column_ID=59494 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='7ee7e48c-6e7c-4d9c-9eae-5ca450b751ff' WHERE AD_Column_ID=59428 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='2cce08e1-00f5-49e8-a57e-75b213d32223' WHERE AD_Column_ID=59490 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='85bde74e-57f3-46d3-89c1-fe0107715860' WHERE AD_Column_ID=61471 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='f3c77fce-ded4-4efa-a65c-569671ada957' WHERE AD_Column_ID=200075 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='5e01f2e2-e886-4441-943c-c72831140bda' WHERE AD_Column_ID=200076 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='eeeb71ea-8ee1-4e7b-bf4b-dc6662f04652' WHERE AD_Column_ID=200252 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='d215cbb6-bc77-4a4e-a41a-dd934d828fee' WHERE AD_Column_ID=61943 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='43e25d02-ce57-4195-b12a-5772083c26b1' WHERE AD_Column_ID=61940 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='6ae8572b-c133-4546-8033-17ac51f40564' WHERE AD_Column_ID=61983 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='769cc5d2-7929-40bb-86a3-253cd2dd3678' WHERE AD_Column_ID=200509 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='225becbb-1224-461b-a47e-d7710ebcb8be' WHERE AD_Column_ID=200253 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='8c98f44c-0745-4d4c-baf7-bba4f6115ac6' WHERE AD_Column_ID=61945 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='d70554a1-9f2a-4696-a716-31af1689a807' WHERE AD_Column_ID=61971 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='b7e9bdb0-6667-4066-b31a-03c760959d5a' WHERE AD_Column_ID=61972 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='288325e0-2ef8-421a-80e6-654e26ba1058' WHERE AD_Column_ID=61973 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='4b5c6e18-f2c8-43db-9369-5c13e6dd34a3' WHERE AD_Column_ID=61974 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='57e08074-2723-4d85-9221-9a48502e251b' WHERE AD_Column_ID=62014 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='7acd1736-9c34-4fb6-b7ae-8ba3cbd9d266' WHERE AD_Column_ID=62015 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='33765c16-0fcc-401c-a398-5f14a80739ca' WHERE AD_Column_ID=62020 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='e9e7a69a-595b-4910-bee5-0b9461d29771' WHERE AD_Column_ID=62022 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='cb67b782-2660-4faf-9ad1-68f42501ccbf' WHERE AD_Column_ID=62023 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='05aac944-e26a-4062-92c3-c60749a2dd33' WHERE AD_Column_ID=200213 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='58e36cff-7cf5-4374-b415-59acd8a3f56b' WHERE AD_Column_ID=62019 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='707d999c-0701-41cb-9a79-924e2a961561' WHERE AD_Column_ID=200214 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='29d54d37-e729-4cf0-a3df-c8f9c9100fb0' WHERE AD_Column_ID=62026 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='8e240462-76ba-4b8d-83cc-ba2636cbb29d' WHERE AD_Column_ID=200212 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='2fc7b9d9-f7bd-48fb-a006-630f6bc1aef9' WHERE AD_Column_ID=59962 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='60056d6d-0d84-433e-a686-0b441918b804' WHERE AD_Column_ID=59963 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='244a5ed0-d5a2-4513-b2ce-1f8936591161' WHERE AD_Column_ID=59964 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='947336cc-c4cd-49d8-90b1-ae6880de39ab' WHERE AD_Column_ID=59966 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='70aeafc6-60b9-421f-9597-5c681e7c671e' WHERE AD_Column_ID=59960 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='2708310e-5aab-42f9-9633-ed0d10e3d604' WHERE AD_Column_ID=59967 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='350948b5-954f-4ddb-8767-14e890d48cb6' WHERE AD_Column_ID=61944 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='11711850-ff10-4a1a-8d3c-5e16acf144d3' WHERE AD_Column_ID=200241 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='a3d4b525-ee1a-4d45-9215-8a708448543e' WHERE AD_Column_ID=61941 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='31a956e6-84eb-4d8c-a123-8cfded8b7861' WHERE AD_Column_ID=61942 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='78b6bb32-be4a-479f-933c-f71f397a331d' WHERE AD_Column_ID=62017 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='d35a6f87-00ae-4e29-8896-47f3eb49945b' WHERE AD_Column_ID=62018 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='1365d70b-3b32-42a5-9ec1-df2df53f2e79' WHERE AD_Column_ID=61970 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='3ff8b7b6-c8ce-4226-9efc-856ecd3703b7' WHERE AD_Column_ID=61992 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='b786c056-d65e-41af-9604-e30eb5e67609' WHERE AD_Column_ID=61946 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='c195455d-eec9-4112-b8e6-f1426300bc55' WHERE AD_Column_ID=61947 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='1f6c2a80-dd7e-4af8-a55d-36973d784859' WHERE AD_Column_ID=61948 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='80f49c1f-739d-4fed-85a8-281fabdbfa1e' WHERE AD_Column_ID=61981 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='ac56ad55-230b-423a-bfb2-6c1bb7fefc06' WHERE AD_Column_ID=61949 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='47539e97-5160-420a-84f8-0b3e7ded9b97' WHERE AD_Column_ID=61951 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='e992dca2-7108-4556-b95f-0c089de50116' WHERE AD_Column_ID=61952 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='ad119262-eee6-4741-9e26-bd32f1f9001e' WHERE AD_Column_ID=61954 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='5e85cb6a-d0fc-4ae7-8e28-09a22b1ebf50' WHERE AD_Column_ID=61955 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='f4b61026-232f-46d4-885c-2605dd5eacab' WHERE AD_Column_ID=61956 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='54acdec8-b814-451d-b9cb-ae63dc29d42c' WHERE AD_Column_ID=61957 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='3df0c541-1031-4592-96c8-67c052064777' WHERE AD_Column_ID=61958 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='654b89e2-5c8d-490d-9e5b-efe58f54a92a' WHERE AD_Column_ID=61959 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='da724dcf-78e2-48bd-a125-fe5db1b37615' WHERE AD_Column_ID=61960 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='f242e745-374b-47b6-9d31-c360405ea902' WHERE AD_Column_ID=61961 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='64809848-0628-46ad-b50a-8f05f9a75acd' WHERE AD_Column_ID=61962 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='07a0fd6d-21fc-4d32-bcf0-29772ebfae7a' WHERE AD_Column_ID=61963 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='0b9391b4-e2e4-4052-a098-7876e77c458d' WHERE AD_Column_ID=61964 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='50f287a0-ae6d-455d-8936-d84f8238bacc' WHERE AD_Column_ID=61966 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='5bff0b33-b7f7-455e-b078-5310815d2848' WHERE AD_Column_ID=61967 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='f56a9cfe-63e6-4656-a15e-f0df76f9587a' WHERE AD_Column_ID=61968 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='6364c53a-99bf-49e4-a4d8-c93b2593a041' WHERE AD_Column_ID=61993 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='49adee10-01d5-4cf0-aa22-b9c831b3d21a' WHERE AD_Column_ID=61975 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='0c5b70db-a69b-42ec-97f7-6d2a32952a7e' WHERE AD_Column_ID=61977 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='5f4d7f11-6b31-4186-bcb9-93df0820610c' WHERE AD_Column_ID=61978 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='b31eb59b-9fb4-4b9a-b697-ca54cdcc2a45' WHERE AD_Column_ID=61980 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='9a95f2e3-fcf4-4b2b-9be5-bbd840520c99' WHERE AD_Column_ID=61982 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='e7db1d89-5c8d-4a80-b745-ec8a037161f2' WHERE AD_Column_ID=61984 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='a43b3f02-af9d-4658-ba38-8a42c75e813f' WHERE AD_Column_ID=61985 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='9df2f863-d9c5-46e9-8456-930fafb76d3d' WHERE AD_Column_ID=61986 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='8022dddf-0ca3-4d26-9c8b-6601775db485' WHERE AD_Column_ID=61988 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='27d39df7-126b-4557-ae54-4bdc44ac37f1' WHERE AD_Column_ID=61989 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='872b740c-9473-4b8a-9c4b-c0e5da22fa5e' WHERE AD_Column_ID=61991 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='cb7ca15d-5322-4c86-b822-7e80c48d6469' WHERE AD_Column_ID=61994 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='787e3cee-81e1-4fda-a146-e928b78f8887' WHERE AD_Column_ID=61995 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='43bee906-7866-4cbe-b74f-2b1b5f4197c1' WHERE AD_Column_ID=61996 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='3fc4363d-bf42-4e45-b203-603ac57abc49' WHERE AD_Column_ID=61997 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='8503d6a1-0efc-4d9e-9270-e8a4cfe54b02' WHERE AD_Column_ID=61998 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='2396e7e2-c2ee-4ef2-a538-c52acb69787b' WHERE AD_Column_ID=62000 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='aea2a0dc-f01a-4be0-9ddf-cb8d0d49d206' WHERE AD_Column_ID=62001 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='8d321329-bc4e-4136-a100-32c9c49a3d9e' WHERE AD_Column_ID=62002 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='741f4a1f-85a4-413a-8d7d-dd2cb21bcc27' WHERE AD_Column_ID=62003 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='1220b3ba-9f16-4049-a46f-d5b5de4980c7' WHERE AD_Column_ID=62004 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='d71214b9-c8a5-4ed2-b6e3-bea109cccabb' WHERE AD_Column_ID=62005 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='01e50f3a-7823-45dc-b88d-59771322d4f1' WHERE AD_Column_ID=62007 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='24dd7c71-2509-49ab-b90b-c366273cd706' WHERE AD_Column_ID=62008 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='812d6e92-91c9-456d-bdd9-e2e1b34a1011' WHERE AD_Column_ID=62009 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='cccffb77-508a-4ba6-829c-8b8d5874b8d6' WHERE AD_Column_ID=62010 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='4999e158-3c89-4831-8fde-ed897a100d6e' WHERE AD_Column_ID=62011 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='dba9a056-0f2f-447c-8bcc-863030737397' WHERE AD_Column_ID=62012 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='db79afa1-7b3d-4f80-88f4-20815723ef66' WHERE AD_Column_ID=62024 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='441d7847-f9ed-4c7f-9016-0a082964e2e9' WHERE AD_Column_ID=62025 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='9ab694f7-1b65-4635-951f-8cf6d21e10f9' WHERE AD_Column_ID=62027 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='0bc58aa9-4520-452a-8279-0570d65cb5a7' WHERE AD_Column_ID=61804 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='32f75810-4445-4b71-88c6-b8c5781abda4' WHERE AD_Column_ID=200517 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='f56dc78d-d993-472b-be45-4a62ff0f4e80' WHERE AD_Column_ID=200518 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='c09aae82-a556-42c3-9c5e-33946b8a8fa0' WHERE AD_Column_ID=200519 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='0c4dd1fc-6471-46c2-b3cf-53a406054583' WHERE AD_Column_ID=200520 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='3feba486-d1b4-44ad-97b7-bffc12f67022' WHERE AD_Column_ID=200524 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='06980c54-58d1-45f3-988c-5a0bf982b464' WHERE AD_Column_ID=200521 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='31ee6634-8742-4616-9e26-aa3213eb384e' WHERE AD_Column_ID=200525 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='039a6b4e-1d08-4904-9ee9-740aa8ac353b' WHERE AD_Column_ID=200526 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='6e4e92c9-c261-4fe6-83e6-f3cc0466833b' WHERE AD_Column_ID=200522 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='39b50957-05dc-407b-8124-70afbd54ebbf' WHERE AD_Column_ID=200523 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='2feff17e-fe9e-4c7b-a210-07985738e9e1' WHERE AD_Column_ID=200529 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='23ef2dee-0091-4e40-a085-5f93c3c97385' WHERE AD_Column_ID=200527 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='6af8d3e7-a235-480b-a2b1-fb27151318ae' WHERE AD_Column_ID=200530 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='b596aa59-8b61-4555-ab2e-50dfaca33281' WHERE AD_Column_ID=200531 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='2de254fb-8ab7-40f1-b9c0-a289cf7a4f53' WHERE AD_Column_ID=200532 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='227aabdb-dbc5-438a-bb8b-7d52dd36071e' WHERE AD_Column_ID=200533 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='13da0b8a-a652-49b1-bdcf-45aefeb637e7' WHERE AD_Column_ID=200534 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='13e00eda-f924-4d05-96bf-0de0657b16ba' WHERE AD_Column_ID=200535 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='93c2f3bd-f544-43af-8fde-82033e30326a' WHERE AD_Column_ID=200536 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='b39725ba-2ab0-4b14-ba0b-d8e99e48fd87' WHERE AD_Column_ID=200537 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='e8b078bb-3377-4a06-98c3-95dd46cb97d4' WHERE AD_Column_ID=200497 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='c92c027c-577d-4a47-b023-2374f068f981' WHERE AD_Column_ID=200538 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='6d5b7d9b-0ed1-4271-82c5-db241c459387' WHERE AD_Column_ID=200494 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='e84f507e-ac82-4b09-b298-227135b19346' WHERE AD_Column_ID=200495 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='5f3e6eac-4868-44c9-acff-3e1af4b51503' WHERE AD_Column_ID=200496 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='30d0d946-aadc-4997-aa94-4f35d6f4e277' WHERE AD_Column_ID=200498 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='80a68c3c-0a9c-45e1-9159-9e0b571e8e96' WHERE AD_Column_ID=200499 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='9693c2d6-7755-45ae-80b1-1587fd3f56a3' WHERE AD_Column_ID=200500 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='bb2d3678-ad44-49fe-aa1b-dc8fe9e5f742' WHERE AD_Column_ID=200501 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='f1c7ad68-9473-45ae-9e7a-4d4d6b6552fe' WHERE AD_Column_ID=200502 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='74586716-f39d-4dac-bc28-dfd6732c59d3' WHERE AD_Column_ID=200503 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='19e08a98-f527-4bc5-81e2-b51975dc44f4' WHERE AD_Column_ID=200504 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='6c4c9f5f-1db4-480b-b039-66bad1439b8d' WHERE AD_Column_ID=200505 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='990f459c-e8ba-4093-9715-b8c2d0a8dbb0' WHERE AD_Column_ID=200506 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='4b73d330-1869-4c38-b88e-f1e24a53c1fc' WHERE AD_Column_ID=200507 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='4ccf117a-00a4-492b-92dd-ca777105390d' WHERE AD_Column_ID=200508 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='818069c9-4fc1-4057-86b0-caf69e5b3b3c' WHERE AD_Column_ID=200510 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='325da436-8934-4143-bb91-ca8c5c207ee3' WHERE AD_Column_ID=200511 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='96d16f72-09c9-4fb7-9b96-9ce8bae8c2be' WHERE AD_Column_ID=200512 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='1f70bd7a-1023-45cd-a643-b517a1377057' WHERE AD_Column_ID=200513 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='e4e599f4-f705-48ad-8903-957bbf463faf' WHERE AD_Column_ID=200514 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='f0909a4f-b1a7-4645-a6cf-10473510fcde' WHERE AD_Column_ID=200515 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='59b3afbb-dd74-45bc-b954-8f6b9c122f65' WHERE AD_Column_ID=200516 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='a1f6bd6f-4e0f-478d-b0d0-5e224e0025db' WHERE AD_Column_ID=200539 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='0b4697d7-b8c3-49ad-8e0c-b0c5bc766e1f' WHERE AD_Column_ID=200540 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='5c91bf21-b6e3-4db3-b88e-91f66a1a98fe' WHERE AD_Column_ID=200541 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='3f4918da-e253-4f42-9c26-6badae2ee4ca' WHERE AD_Column_ID=200542 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='6020f4ed-d7ee-439e-98fa-92a491304d9b' WHERE AD_Column_ID=200543 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='82db4896-7b84-4734-ac5b-313da2aab663' WHERE AD_Column_ID=200544 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='182169a3-4a26-490a-b3d6-87141d33d8ce' WHERE AD_Column_ID=200545 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='17c3f64f-6f9b-4896-851a-0fb36de85bb9' WHERE AD_Column_ID=200546 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='2a6a2719-ba27-4834-a5c7-b16422c97eb7' WHERE AD_Column_ID=200528 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='8baf3ea2-9355-4e76-b204-8dcd99ec21d8' WHERE AD_Column_ID=59961 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='4190130f-9488-440f-9de9-0fbb75f4cdab' WHERE AD_Column_ID=200242 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='ddaf01c7-e4a7-4aff-8d73-30782fc264cc' WHERE AD_Column_ID=61950 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='7ba4bc1d-05b0-489b-8cb4-334e8518b62b' WHERE AD_Column_ID=61953 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='9af63eea-3f75-4e1e-b3d3-9afb97f10fb6' WHERE AD_Column_ID=61965 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='17ed35d9-b696-437f-97d0-25eca611b274' WHERE AD_Column_ID=61969 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='0bd12687-c0c0-4cb7-a7da-1d474cb00ccc' WHERE AD_Column_ID=61976 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='89d2a934-64dd-450b-8fa4-71217920ba8a' WHERE AD_Column_ID=61979 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='b3256d65-cd61-406e-b299-70b5295cb5c7' WHERE AD_Column_ID=61987 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='fb689b27-b5f6-413e-aae7-18a1054dac1a' WHERE AD_Column_ID=61990 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='1b65b99c-1b91-418c-9211-28e34dbeb9fd' WHERE AD_Column_ID=61999 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='8c220003-0462-4306-bbcd-c2ab77a08e58' WHERE AD_Column_ID=62006 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='5573c58f-48be-42a4-8ecb-a03319274bbe' WHERE AD_Column_ID=62013 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='449a0f11-654e-471b-b33d-23dd67149552' WHERE AD_Column_ID=62016 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='f0709181-ffeb-494a-a9d4-a42b8603f967' WHERE AD_Column_ID=62021 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='adca00a1-58b5-4620-9525-0f2d5e69011f' WHERE AD_Column_ID=59251 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='e20d124f-1b41-489c-a33c-7dd7b5c87f38' WHERE AD_Column_ID=59252 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='6d59ada1-a9e8-406f-845b-255d7ec94c6f' WHERE AD_Column_ID=59253 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='99a103d1-6790-49b6-b75b-9b7a0aa7e6f9' WHERE AD_Element_ID=55245 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='f0d4937f-56e7-465a-bfe2-720b436d4cd4' WHERE AD_Element_ID=200060 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='528f17a6-0e1f-4a34-8b22-290aae34ec1c' WHERE AD_Element_ID=200061 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='6baa93cb-422c-4eae-a595-0ffb1e734d1e' WHERE AD_Element_ID=200062 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='f0d67a54-4f2a-43ff-8b42-3013caeda7fa' WHERE AD_Element_ID=55243 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='5eb7a9bb-9bb0-4c2c-9b25-b2751b7cae22' WHERE AD_Element_ID=55236 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='eaff36db-ab9b-4a89-8f83-d6e61020ac6e' WHERE AD_Element_ID=55237 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='a9547a2c-99ed-4d2f-9934-ba060c40ec27' WHERE AD_Element_ID=55238 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='edcc00f2-cde6-4bd4-a4e2-5b4b62a28bf6' WHERE AD_Element_ID=55239 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='c6c38450-1d10-4255-a5a8-22e4065eea3a' WHERE AD_Element_ID=55240 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='f7d8b869-fbdb-4c33-83ec-7aa9ee596f65' WHERE AD_Element_ID=55241 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='7b16217b-44e7-483b-b4f9-398c3f767f1a' WHERE AD_Element_ID=55242 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='288503f5-199b-4d4d-9b97-f961dd6f7a30' WHERE AD_Element_ID=55244 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='3100ea04-b3cf-467f-a838-8e46f306c870' WHERE AD_Element_ID=55246 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='30e3c7e4-51b4-480e-aff6-dcf38bfcdd53' WHERE AD_Element_ID=55247 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='abf42d84-e750-481e-b7ce-982bf760fc74' WHERE AD_Element_ID=55248 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='5117b821-b38d-4075-97e8-c6e6b5b8ecda' WHERE AD_Element_ID=200080 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='7230545e-e974-412f-8312-79fd4fcbb721' WHERE AD_Element_ID=200134 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='e0a11afc-9a96-4176-bc44-cb68ee6ae2be' WHERE AD_Element_ID=200135 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='7f9725a7-fce3-46ee-850a-7c6639b80ba4' WHERE AD_Element_ID=200136 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='e603e57e-44a1-4941-b686-fd71603a3118' WHERE AD_Element_ID=200137 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='ce08f4fa-8224-46f7-b4ca-b7ef0c28aee1' WHERE AD_Element_ID=200138 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='d01e15bd-0187-42eb-9447-901afdbc266f' WHERE AD_Element_ID=200139 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='cdec36c7-7056-4e96-b7c7-9b63c2f807f8' WHERE AD_Element_ID=200140 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='881406a9-446f-480f-8e21-b18fbcd843fa' WHERE AD_Element_ID=200141 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='db54dbc1-5bd7-425b-a034-8b24d727603b' WHERE AD_Element_ID=200142 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='746b6910-798b-4101-b5d7-e148a79c8a20' WHERE AD_Element_ID=200143 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='0e4cd5fa-e01d-4573-8bfa-020c2faaf1b6' WHERE AD_Element_ID=200144 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='a7c65caa-1e20-419b-95a3-e33403424b94' WHERE AD_Element_ID=200145 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='bb67e466-b30b-4b21-a2f3-0e5fec1da09a' WHERE AD_Element_ID=200146 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='d362f729-7a90-4bf2-934c-51953c74954a' WHERE AD_Element_ID=54165 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='b92d9612-cc75-4bfd-b380-2fa06d54aa4e' WHERE AD_Element_ID=54166 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='24778f4b-e57e-48d1-89d8-3c29b0a0ec8c' WHERE AD_Element_ID=54167 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='d6944a27-6702-4116-a983-d336a7cc69f1' WHERE AD_Element_ID=54168 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='ceecb012-3cef-40ac-b342-c53f41a6b9ab' WHERE AD_Element_ID=54169 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='52ce6e5c-ace3-4eb7-a855-f6645fdff89b' WHERE AD_Element_ID=54170 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='b124bd67-39ed-4819-9010-bfa057bba0e1' WHERE AD_Element_ID=54172 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='c862f067-69af-4c40-9918-9837130eb74a' WHERE AD_Element_ID=54173 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='c7a75427-08dd-47f4-ad74-ccbd9df13b2d' WHERE AD_Element_ID=54174 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='d00a01f7-9edf-4047-a472-487e3689f998' WHERE AD_Element_ID=54175 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='e718ec0f-55ee-42b7-b4ef-a40b1dff7fd1' WHERE AD_Element_ID=54176 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='729f29bb-0374-48e0-aa7e-2941ff36e7b7' WHERE AD_Element_ID=54177 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='52977e4f-de04-4bf7-b27a-4a5bc5f7daac' WHERE AD_Element_ID=54178 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='3cfea474-6e44-4ea6-9b40-2fc31a193ea3' WHERE AD_Element_ID=54179 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='9bc4d835-6e59-41f1-b4dc-b0cf1a94bcd9' WHERE AD_Element_ID=54180 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='6f2298a4-fd2f-4c98-a39c-9ad619cee230' WHERE AD_Element_ID=54181 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='d9402fc7-7cb4-45e0-aadc-c6c74340d055' WHERE AD_Element_ID=54182 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='926a1290-7f75-49d9-975b-a3cff9edd87a' WHERE AD_Element_ID=54183 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='4b24b0bf-5b86-4e7b-aaf9-84c938734357' WHERE AD_Element_ID=54184 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='bcdb846a-0e66-4fde-b676-894b066c0a27' WHERE AD_Element_ID=54185 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='2f40fded-6c1c-4984-aa29-ce9cb7218ace' WHERE AD_Element_ID=54189 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='8d64b35f-08e1-446e-a727-b5c2ef730351' WHERE AD_Element_ID=54190 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='a4151a44-f0a6-4bde-ba56-01d05bf75c9a' WHERE AD_Element_ID=54191 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='a1521771-b409-4d15-8de5-0a342db4a5ac' WHERE AD_Element_ID=54192 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='66934992-bb6d-4109-9c59-308d982c0a1d' WHERE AD_Element_ID=54193 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='ce4d30ef-961b-4498-9ba1-0e2f018bcf58' WHERE AD_Element_ID=54194 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='5fcb4eb3-2b38-4b83-93b5-b0e2b54d93e0' WHERE AD_Element_ID=54196 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='5eeb9d01-913f-4a8f-8110-3585b49a2e63' WHERE AD_Element_ID=54197 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='7b2c2821-4399-44d8-910d-a73af07d791d' WHERE AD_Element_ID=54198 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='8179e80d-1c41-4286-ba89-5607c0c32f24' WHERE AD_Element_ID=54199 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='d3750c78-4f39-40a9-842a-df0e59a8b735' WHERE AD_Element_ID=54200 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='04023360-b7fd-40cf-be60-9aa4da62963a' WHERE AD_Element_ID=54201 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='609bbd6f-fa69-490e-9957-ed7c5e5bf252' WHERE AD_Element_ID=54188 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='c9866577-8e81-413e-bdd7-af2d613f04f7' WHERE AD_Element_ID=54187 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='328bf53c-cd56-4ec4-b470-4bffdde508a4' WHERE AD_Element_ID=54186 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='f4d4b72e-3b43-4507-a619-26bf5e955592' WHERE AD_Element_ID=54195 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='7b19f9e1-e913-4271-8665-14c56893d6fd' WHERE AD_Element_ID=54171 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='ddeca23f-738e-4f18-b839-49a0becd76d7' WHERE AD_Element_ID=54202 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='cdf56abe-8aae-419e-a227-d11e7183fea6' WHERE AD_Element_ID=54203 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='24c8c328-3637-4da0-bef3-8e21ad5a881b' WHERE AD_Element_ID=54204 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='bc8dc29d-2306-47b3-9698-21c023571bc5' WHERE AD_Element_ID=54205 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='ccc6c860-4649-491d-a713-103db8efcc22' WHERE AD_Element_ID=54206 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='b4d87e87-1a62-4c27-9543-cc1632db20a2' WHERE AD_Element_ID=54207 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='eca981d9-87f5-4aa0-b8de-908bc528921e' WHERE AD_Element_ID=54208 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='23ea7f4b-35d5-4bb9-a4f3-d539d803c8c9' WHERE AD_Element_ID=54209 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='fcb8aa99-14da-4155-902a-f23a16d48cc5' WHERE AD_Element_ID=54210 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='89257618-9a69-47e7-8f38-f50500881656' WHERE AD_Element_ID=54211 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='5b5018c0-ac23-4ada-b973-fca9b4eda8c3' WHERE AD_Element_ID=54212 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='f1ae1dd6-6499-440c-a039-8eaefb3ee63b' WHERE AD_Element_ID=54213 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='ff4b7661-e014-4dd8-92e1-7854be6c99bc' WHERE AD_Element_ID=54214 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='68365552-5257-4afd-afc2-7c01cf8f6be4' WHERE AD_Element_ID=54215 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='c2415533-bb0c-44b1-8619-122376c7b4f7' WHERE AD_Element_ID=54216 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='855a740a-c1b9-4bf0-9546-6d3781d7f203' WHERE AD_Element_ID=54217 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='2d3feb44-5855-4529-a89d-f755c869921d' WHERE AD_Element_ID=54218 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='c87fd47b-2a7c-4270-a210-299988e3f9fe' WHERE AD_Element_ID=54219 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='dc9808bc-75bd-4a44-b0ed-02844b58b794' WHERE AD_Element_ID=54220 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='876d035d-b6a8-4fc2-a463-c26819267b63' WHERE AD_Element_ID=54221 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='0494630e-93f9-4006-ae49-edae24494d46' WHERE AD_Element_ID=54222 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='11b1cabc-bcd3-4943-a55d-52f5350883c7' WHERE AD_Element_ID=54223 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='d7c8de47-d8dd-45d1-ab63-7cca874d7b02' WHERE AD_Element_ID=54224 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='c6b957c2-33f6-4b50-bfd5-5e15da1b2150' WHERE AD_Element_ID=54225 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='7bdacf37-0c45-4c0e-9038-ffee4656537a' WHERE AD_Element_ID=54226 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='33218840-96eb-46c1-9153-170d838d46f8' WHERE AD_Element_ID=54227 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='059ec1ab-7e4f-46e7-9ec1-fa19261f4abf' WHERE AD_Element_ID=54231 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='dbdd7a05-796d-4691-ac4a-a78ed0df8438' WHERE AD_Element_ID=54229 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='8e7d7983-3e6b-4b27-ab4f-31ea0ce8c98f' WHERE AD_Element_ID=54228 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='978839d9-9926-4c64-8d7c-be6eba061c96' WHERE AD_Element_ID=54230 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='d2286051-5fb9-43ac-bd9b-dd760deb1402' WHERE AD_Element_ID=54233 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='b5a7dc7f-7d44-47fb-aec8-e111c1a37314' WHERE AD_Element_ID=54234 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='97b8e15d-59b6-43fb-bb46-e408f0072656' WHERE AD_Element_ID=54235 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='51d5d2d0-2218-4cfe-8ddf-121460e16f13' WHERE AD_Element_ID=54236 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='69b8c90b-b34a-4857-9439-ea57a9fa6818' WHERE AD_Element_ID=54237 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='8a1da7c0-a24d-4538-b019-970fa8cb8271' WHERE AD_Element_ID=54244 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='798a24ee-b601-4a46-9a87-016e90809d1c' WHERE AD_Element_ID=55168 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='307889f9-597f-41aa-99d1-2e6ebdb58ce4' WHERE AD_Element_ID=200015 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='4a3e9eef-5f5e-4110-b61b-2cd5dfffbe66' WHERE AD_Element_ID=200176 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='6a91f10b-45a4-4d7c-8c1c-ab5401e08343' WHERE AD_Element_ID=200079 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Field SET AD_Field_UU='1389b4d0-de95-4060-baa2-df37cd9bfab5' WHERE AD_Field_ID=59827 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Field SET AD_Field_UU='61c6d57c-d1bb-4850-a844-e3771ae35199' WHERE AD_Field_ID=200511 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Field SET AD_Field_UU='e8e9106b-1844-4dda-8ba5-8d776d86d17c' WHERE AD_Field_ID=200516 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Field SET AD_Field_UU='888e22ec-61f2-45ba-9c3d-3355b0e37660' WHERE AD_Field_ID=200520 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Field SET AD_Field_UU='f3ea7baf-268b-4b44-bb41-7f30e6b77704' WHERE AD_Field_ID=200512 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Field SET AD_Field_UU='36a25ec6-dffb-430c-a351-1ee449e70f7d' WHERE AD_Field_ID=200513 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Field SET AD_Field_UU='49fd1997-b262-4e9b-8c9a-40797d6efeff' WHERE AD_Field_ID=200514 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Field SET AD_Field_UU='6ed3b030-bf4b-4731-af84-2e8d1f2d0278' WHERE AD_Field_ID=200515 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Field SET AD_Field_UU='22e88f43-b5be-4892-9584-cf7f7f8e53f8' WHERE AD_Field_ID=200539 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Field SET AD_Field_UU='f0173a89-e4e5-4560-9269-64babe898752' WHERE AD_Field_ID=200521 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Field SET AD_Field_UU='7c20f055-1adb-4a78-8474-e8738401d4d5' WHERE AD_Field_ID=200542 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Field SET AD_Field_UU='20881e4a-7052-4883-9a85-7346c6e1a6f7' WHERE AD_Field_ID=200537 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Field SET AD_Field_UU='961fdfd9-1b61-4c06-b692-d50fad95a222' WHERE AD_Field_ID=59825 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='eef8f7d5-8455-4cce-b187-8d1d165c02cf' WHERE AD_Field_ID=200546 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='3cfea46d-fe9f-4d06-9f57-da31331ef485' WHERE AD_Field_ID=200522 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='5d19ead3-3b72-411c-854f-4375a383175d' WHERE AD_Field_ID=62011 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='e053084f-eb01-415a-ae42-43d3e1cb6bff' WHERE AD_Field_ID=59816 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='ada404a4-1d81-475d-adbe-88a2383bb15a' WHERE AD_Field_ID=200258 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='6136ddf3-69b2-4d6e-911e-6a135a6b5089' WHERE AD_Field_ID=61975 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='44c30f54-b844-4c11-bf33-1604bac48b95' WHERE AD_Field_ID=59760 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='8fb0db78-bd63-44d2-b408-0eec6486a5d5' WHERE AD_Field_ID=61995 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='469f81f2-a590-485f-9bf9-5ed4a0924b5a' WHERE AD_Field_ID=62002 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='c4e1a6d5-209e-4bf9-8f5e-43dc053ed9e4' WHERE AD_Field_ID=59321 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='2f5c51ab-dddf-4275-a197-fce5714e509d' WHERE AD_Field_ID=59780 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='4639adb7-4ee1-4ee2-bb98-6702194fb6e0' WHERE AD_Field_ID=59830 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='9d95b9c2-7d23-45f1-a61b-72e0e7d61607' WHERE AD_Field_ID=62007 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='c1f594ee-9c03-4c14-9a7a-6a4314b1c318' WHERE AD_Field_ID=59815 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='795a80f2-5874-49bb-9cac-1e551fef0f40' WHERE AD_Field_ID=62003 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='075b1df7-5cce-487c-afcf-447003aa466a' WHERE AD_Field_ID=59834 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='82731773-518f-41a2-9e4d-1552e7595362' WHERE AD_Field_ID=59748 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='e6b8a1f4-5efa-4d9f-a997-6d7df764c4ab' WHERE AD_Field_ID=59737 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='d4c00088-23ae-4ef8-bf1d-6478908e5d1c' WHERE AD_Field_ID=200164 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='10a85648-7c4b-49b8-b0d4-a57e3ee295f5' WHERE AD_Field_ID=200162 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='89595c8a-8a63-41c4-abf7-fd55b2b7848a' WHERE AD_Field_ID=59739 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='dda984b7-c0c9-4527-9747-01bcd5c7375e' WHERE AD_Field_ID=59738 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='38c7760c-60f0-4a66-87ad-d0b9aec5130f' WHERE AD_Field_ID=59751 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='95a02a2b-af90-4819-911a-2cd9244ece9f' WHERE AD_Field_ID=59736 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='8ae202d5-6ff1-4e00-b9ad-f06e61208237' WHERE AD_Field_ID=59740 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='27cefb10-dc48-44fe-abc0-a4a1703babc0' WHERE AD_Field_ID=59754 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='8ebf9674-4a0b-4ba5-a99b-3c43d9866ea4' WHERE AD_Field_ID=59758 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='84a6f5c1-be89-418e-9ae8-774542c341ee' WHERE AD_Field_ID=59752 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='578d1bad-2804-4542-a871-3f61779fc487' WHERE AD_Field_ID=59756 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='9550c2cc-219b-4110-9508-3aacf7613e66' WHERE AD_Field_ID=59800 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='af44b95e-a11c-440c-9be6-4b4bca93a942' WHERE AD_Field_ID=59796 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='a4455677-ec3c-4002-8259-2f742a8046c7' WHERE AD_Field_ID=59778 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='33934334-37a6-4b63-9305-15611583faec' WHERE AD_Field_ID=59779 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='4ea489eb-8d46-4fcb-812c-81d0c6555859' WHERE AD_Field_ID=59784 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='7cfefd60-aaaf-40c0-8636-54deccae945b' WHERE AD_Field_ID=59806 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='63721d52-ef4b-4f91-ab6a-04d92a1aad6b' WHERE AD_Field_ID=59781 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='59c1e198-f1aa-43fb-a3f5-05a95add6c4e' WHERE AD_Field_ID=59821 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='993920dd-a8bd-445b-bb80-32725ec4e244' WHERE AD_Field_ID=59786 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='5753e9be-d851-470d-bc19-71ef301f0603' WHERE AD_Field_ID=59782 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='b4afe7c4-6100-474a-b7e6-0076466b14ac' WHERE AD_Field_ID=59832 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='593f26bc-3b75-4dec-acf4-c2d68604b2a6' WHERE AD_Field_ID=59819 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='94a7b0af-e17b-4dd4-a20a-03f00c09e754' WHERE AD_Field_ID=59817 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='b72798ea-2732-44cd-87fe-6d0f89a0547b' WHERE AD_Field_ID=200257 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='db2abd4e-fd5b-4975-8243-432c9d9f4668' WHERE AD_Field_ID=59828 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='01886d8a-f5e1-4440-9542-7f6fba58b7e5' WHERE AD_Field_ID=62013 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='6d30155f-b00f-4a89-a774-b70483ce03f7' WHERE AD_Field_ID=62010 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='76f8a9e1-f439-4825-8df1-40d88c7e500a' WHERE AD_Field_ID=61974 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='00108bc7-add7-4b2f-9e80-2c8d42e509b0' WHERE AD_Field_ID=62015 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='b9349d50-cce9-4ccf-bf93-a13fb425335c' WHERE AD_Field_ID=61976 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='984732a2-2d64-4dd3-a588-da893666f0a0' WHERE AD_Field_ID=61973 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='e78ff29f-0878-4bd2-8670-701f6abf31bb' WHERE AD_Field_ID=62017 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='7607ea9e-2884-4e3c-9174-967a26a3510d' WHERE AD_Field_ID=61972 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='0e2503f6-e976-4943-bdb0-ad821a4cd9b3' WHERE AD_Field_ID=61986 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='c6b6d3a2-0306-4dd0-a8ae-1e713080575b' WHERE AD_Field_ID=62001 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='c1470d0f-3772-488d-8263-3ac75d96455f' WHERE AD_Field_ID=61997 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='367d5bb6-91e9-4f37-9885-a9e869133a7a' WHERE AD_Field_ID=61998 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='ad1b1605-5e58-43b6-983f-1a89c76813ab' WHERE AD_Field_ID=62009 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='3d6991f4-14f8-419e-aed2-14f252417aac' WHERE AD_Field_ID=62000 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='9ade46cd-2a16-4d2e-9d4c-eea8bb9a8a23' WHERE AD_Field_ID=200272 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='c166d7fe-ab6f-4336-8294-5f269248515f' WHERE AD_Field_ID=200290 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='be68cb57-1549-44a5-9d93-0469a6f34b88' WHERE AD_Field_ID=61876 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='0b726243-1656-47dc-93af-f00bcadf6155' WHERE AD_Field_ID=59745 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='fac1da38-485e-4598-8121-1fb4dd8ac1f1' WHERE AD_Field_ID=59741 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='87bd80a3-b0af-4a92-9e11-1b308dfabcbb' WHERE AD_Field_ID=59826 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='e5793584-4bc1-4b5c-a99a-530fa7f5fe1d' WHERE AD_Field_ID=59833 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='bdf440e4-6720-4c46-a45f-9f23ac44dcdd' WHERE AD_Field_ID=59763 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='5be9ed6a-7176-43ae-9d66-6b8c5e724308' WHERE AD_Field_ID=61988 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='873f8af0-5170-4fc1-b020-2e762cbfd2c5' WHERE AD_Field_ID=61989 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='e7631a3a-6409-49eb-be41-908877ab500f' WHERE AD_Field_ID=61978 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='27c148c2-3697-40cc-9156-ac021f2da00a' WHERE AD_Field_ID=200271 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='7860ccd2-c41d-4b78-beca-56b2214f9514' WHERE AD_Field_ID=59776 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='aabb0a61-a390-43ea-840b-5aa88df97886' WHERE AD_Field_ID=59802 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='116a8f3f-1002-4919-91f9-29fd8643ad94' WHERE AD_Field_ID=59755 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='0060be94-b31a-4f8a-aec8-0bb6cd16a716' WHERE AD_Field_ID=59812 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='505324dc-48a6-46ff-93b3-88a6d5e152e0' WHERE AD_Field_ID=200293 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='43620f3c-a6d2-485f-819b-13ccf5204f37' WHERE AD_Field_ID=61993 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='953cbf85-ceab-4f0b-89d6-4ca2279b530b' WHERE AD_Field_ID=59814 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='9dc56e55-e073-4172-9f03-8d7586c9ad4d' WHERE AD_Field_ID=59770 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='27921204-6944-458b-afa7-b1f9971fef0f' WHERE AD_Field_ID=59790 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='8d821e48-6deb-418d-a012-d076578d3396' WHERE AD_Field_ID=59813 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='44ff71f2-18f9-4ac6-8dca-0011ca9c143b' WHERE AD_Field_ID=61982 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='a692682a-cf5c-490f-903f-3a552945f654' WHERE AD_Field_ID=59831 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='0a693a1d-850a-471f-b0d9-1637df4d87d2' WHERE AD_Field_ID=59773 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='9677cf48-074c-4f54-8c28-11c72690482f' WHERE AD_Field_ID=62004 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='70016ef5-b5a2-4121-9b1d-af1079586d06' WHERE AD_Field_ID=59037 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='c855308b-bbad-4bf4-a669-6aaa010435ef' WHERE AD_Field_ID=59039 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='52646bbb-f8eb-4a8a-a8d0-2d2baa2d82bc' WHERE AD_Field_ID=59040 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='f9911021-0e9c-4fd2-8368-9cc58dbc9699' WHERE AD_Field_ID=59764 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='89b5fa8f-8713-479d-ab44-a44d4f6c37d1' WHERE AD_Field_ID=59094 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='28bee03f-ce08-4824-b605-6f73a9106526' WHERE AD_Field_ID=59753 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='349d5b17-6c78-48eb-b907-661c99fe2e4d' WHERE AD_Field_ID=59742 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='ccc48f4e-b742-4944-9a83-e106d97fea95' WHERE AD_Field_ID=59794 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='2616a0ba-da3c-45e0-97b2-5595637ac88f' WHERE AD_Field_ID=59837 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='b411d339-004c-4c33-9446-c2405629a610' WHERE AD_Field_ID=59769 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='5c9d8fbe-7b63-4fff-bef1-5d2c41e24f42' WHERE AD_Field_ID=59762 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='a7ea1f16-17a5-4362-9e37-173b7c91ca16' WHERE AD_Field_ID=59750 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='0def8eb2-ff58-4ca0-8cd1-301f64e1688a' WHERE AD_Field_ID=59835 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='e84d2444-b558-4e4f-93f5-be45a1121664' WHERE AD_Field_ID=61987 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='e6e47d05-b39f-4c0f-b7b1-7c9e77656785' WHERE AD_Field_ID=62005 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='f3be2bf2-adc3-49f6-a099-776e5e1a17fb' WHERE AD_Field_ID=61991 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='3aad0d15-8c36-484c-a44f-42b4b90a37a4' WHERE AD_Field_ID=61994 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='bb73b788-5eee-4bc2-abfd-5d0276d8926e' WHERE AD_Field_ID=62008 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='e83c1aef-474a-4cc1-ba13-7ca92af2009d' WHERE AD_Field_ID=61977 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='3a39a3f3-bc0a-4833-a4a6-87f6e44f4ef9' WHERE AD_Field_ID=61979 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='edd9018a-9f8e-436c-8944-6a006ffb60e5' WHERE AD_Field_ID=59771 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='67826d78-5329-4ee3-b7d5-70523999f7ad' WHERE AD_Field_ID=59792 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='57cb4a95-b464-4519-8a49-fbd713f2bb4e' WHERE AD_Field_ID=59836 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='885c8d24-afc1-4bdb-854f-f53ae80c90c0' WHERE AD_Field_ID=59486 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='080639ed-4c9c-4370-a527-26f4d41a176d' WHERE AD_Field_ID=59765 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='9c371d3e-7e9b-463d-91e3-e7f8bea7165f' WHERE AD_Field_ID=61990 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='55054436-966c-444e-a818-9e84720dc1e8' WHERE AD_Field_ID=61996 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='a29ff295-23c8-4d08-9e21-8595a4316ad3' WHERE AD_Field_ID=59772 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='cd0a08f5-4396-4d1e-a920-faffb082245f' WHERE AD_Field_ID=200292 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='68438a00-2762-4ca8-a5d6-cc6dfe88897e' WHERE AD_Field_ID=59788 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='6d796942-1f94-4975-993c-06977724da18' WHERE AD_Field_ID=59774 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='7d83ebc2-4fcf-46ae-84b5-3f07a453c176' WHERE AD_Field_ID=61984 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='30f4494f-337e-427a-b4fc-84aa73254a5e' WHERE AD_Field_ID=59743 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='9ec6f2ee-3471-47b3-a7b9-47e3ea3585ce' WHERE AD_Field_ID=61999 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='cbc82583-cf9b-490a-a1d1-65b3a2fef1a5' WHERE AD_Field_ID=59744 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='9bca7a3f-5057-42ec-8c13-1c155d5cc112' WHERE AD_Field_ID=59803 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='9bb6937e-3598-4c65-a012-2cd91f9ca0a3' WHERE AD_Field_ID=61985 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='7c47c820-3a41-4729-b9e8-03b6fdb26083' WHERE AD_Field_ID=59793 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='41434cde-9492-4458-a17b-2dddf19735ee' WHERE AD_Field_ID=59820 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='f08fb176-7eff-451d-9d4c-350cf0d4013f' WHERE AD_Field_ID=59783 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='312cf41b-2d14-495c-b87b-15a2d509539b' WHERE AD_Field_ID=59775 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='9bf15f84-82b0-4af3-b067-9bb25b01866d' WHERE AD_Field_ID=61992 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='b8fb81aa-4e1f-4777-8ca5-57db48bede23' WHERE AD_Field_ID=59767 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='39d59c50-b9d7-4701-9f40-276f78fd9afa' WHERE AD_Field_ID=59829 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='1abd5d29-68d1-432e-8660-b9863c2ad5aa' WHERE AD_Field_ID=59777 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='c4024259-6aaf-4336-99ff-41d505c4eb2c' WHERE AD_Field_ID=59801 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='7d9bd807-9a3c-4fbf-8165-604fb6cf3937' WHERE AD_Field_ID=62018 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='961e9ee0-d0ab-479d-848a-30f6af6fb01f' WHERE AD_Field_ID=59759 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='6d8d5d7a-7b7d-4f72-b197-0a366b5e560c' WHERE AD_Field_ID=200163 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='b04c136b-4b2c-48e6-9934-0edf741e292a' WHERE AD_Field_ID=59766 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='6cb0ff81-572b-4804-a8ce-c1ea790020b1' WHERE AD_Field_ID=59746 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='fadabee1-d3bb-4c08-9947-aca374e923dc' WHERE AD_Field_ID=59757 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='a281fcef-b613-4033-ba3f-76a2008576ca' WHERE AD_Field_ID=59761 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='1ee15b4c-da89-47b7-b0b1-a703714eedd5' WHERE AD_Field_ID=59799 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='89fa959e-e537-4ec3-9a1f-45e5983d7a0b' WHERE AD_Field_ID=59787 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='e73616bd-23e0-4928-9051-b89eed8248f6' WHERE AD_Field_ID=61971 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='fe2e9565-08f9-419d-bc46-8d5a0a19060f' WHERE AD_Field_ID=59795 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='b61e2592-9496-4769-b49d-7cd0d6d1e423' WHERE AD_Field_ID=59818 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='1cf89d5a-ba23-4f4b-8b1c-1460e62691ab' WHERE AD_Field_ID=61970 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='97127b38-96a0-448b-9fa3-b8e6d371a830' WHERE AD_Field_ID=59789 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='963efdbb-26e7-42d8-81b8-0f47a1648791' WHERE AD_Field_ID=59822 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='58e6cce6-aecb-45fd-8451-6934312484a5' WHERE AD_Field_ID=62014 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='563e096a-d120-4f41-8695-870d77da2d46' WHERE AD_Field_ID=61980 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='af1f0f59-8984-4cda-9cb8-ae1a705a8fdf' WHERE AD_Field_ID=59220 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='b512cac1-40ec-42ae-9635-a9c567519dcf' WHERE AD_Field_ID=61981 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='e776e895-030f-48b1-908a-23427e9c3439' WHERE AD_Field_ID=62006 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='0ab80277-a013-4f8f-8e5f-4c35d6dec4c3' WHERE AD_Field_ID=59222 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='bad06bb6-c3ae-4b8d-b7f7-3d47b3cb071c' WHERE AD_Field_ID=59475 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='428e82da-5783-499d-9b24-0213e27ea1f9' WHERE AD_Field_ID=59476 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='52d83189-bb10-43bf-9c62-db24ab37a34a' WHERE AD_Field_ID=59074 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='be3dc881-3833-4e49-83dd-d8e489c5d7c2' WHERE AD_Field_ID=62012 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='ff35988a-b301-427a-9859-967b2e66e185' WHERE AD_Field_ID=61969 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='36738000-2829-49e0-ba57-89582b007821' WHERE AD_Field_ID=59809 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='68620ee4-4c05-4113-8be2-1f281addbc50' WHERE AD_Field_ID=59804 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='87e63e44-0928-46cf-b9c0-28616d237305' WHERE AD_Field_ID=59811 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='8875680d-2fc7-4ce9-99cd-b0ab98690139' WHERE AD_Field_ID=59823 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='0f41745a-2b89-43bc-8b4e-76003b6a358e' WHERE AD_Field_ID=200296 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='1067459e-5e28-4ad9-a235-1c9d05e78caf' WHERE AD_Field_ID=59768 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='6712ea36-9774-4a08-bebb-c75c879dfb6c' WHERE AD_Field_ID=200289 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='f22da098-a58a-4d1e-8087-4dd3e1cc4347' WHERE AD_Field_ID=59807 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='6868e927-0fb8-47c1-86e7-28106fcd2813' WHERE AD_Field_ID=59798 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='5cde469b-268d-4169-9035-158f47b3cc97' WHERE AD_Field_ID=59808 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='bb9473d1-f43a-4d7e-a00f-1ef395f54d96' WHERE AD_Field_ID=59810 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='4c79251c-573e-4e90-bc45-ee3b1cfaa7f7' WHERE AD_Field_ID=59749 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='1b4695b3-55c0-4207-9ec5-a02cbd9e3e4e' WHERE AD_Field_ID=59824 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='273f7bb5-05e5-42fb-9226-e3460f204ec0' WHERE AD_Field_ID=62016 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='e15f5286-0da1-47c0-b6d9-42934b6c8a79' WHERE AD_Field_ID=59797 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='820bebf2-f997-441e-814b-8fe879f8ee3c' WHERE AD_Field_ID=59805 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='4e8ac01e-f73c-44df-9fd9-8d322b538510' WHERE AD_Field_ID=61983 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='5dd77c4e-5eec-46b2-88e4-ee2bb9fd33ff' WHERE AD_Field_ID=59785 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='1f0bdb65-60b6-4bf7-bd90-a3e9971e80b1' WHERE AD_Field_ID=58987 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='a1474466-b5b5-4fa0-bb45-3414b564dd61' WHERE AD_Field_ID=58988 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='d6508ba3-eb13-4dde-9439-8de913396875' WHERE AD_Field_ID=58990 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='0b9a3faa-eefd-4f95-be0a-9d956da63a59' WHERE AD_Field_ID=58991 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='90a6fac4-96e5-45c2-a79d-5ba6e20d783a' WHERE AD_Field_ID=58992 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='d680943e-5b8a-432c-8783-74ea14e71d58' WHERE AD_Field_ID=58993 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='455e677e-c2f2-41e7-8b2b-4de9cf956c17' WHERE AD_Field_ID=58994 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='18455496-0099-4959-b7e3-04329251d00a' WHERE AD_Field_ID=58995 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='5071fbc0-9ba1-4d97-a3f0-40396f4aae6e' WHERE AD_Field_ID=58996 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='e13ccc7c-fb80-4fdc-b240-1aa1297af135' WHERE AD_Field_ID=58997 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='d4301dfd-59e0-44f6-8d6a-821f156ef720' WHERE AD_Field_ID=58998 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='0f47d83a-295a-44f8-914d-b3cdf616df70' WHERE AD_Field_ID=58999 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='e2a7d4b0-e793-44cd-9e39-282e77b21438' WHERE AD_Field_ID=59000 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='40735792-9b69-4822-892f-60426b1b88d9' WHERE AD_Field_ID=59003 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='cbbe3205-a414-4ada-a160-c32cca81cf89' WHERE AD_Field_ID=59008 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='f1361c89-5b16-47f0-a372-14487baaa73c' WHERE AD_Field_ID=59009 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='e80d5486-f20e-42a3-b731-b2dff84fecac' WHERE AD_Field_ID=59010 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='dd7b9aea-b6b1-44fb-b5cf-0a989137a1fd' WHERE AD_Field_ID=59011 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='695a5ded-6aec-4c51-9d59-d8800b8993db' WHERE AD_Field_ID=59012 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='fb213039-0ecf-4e0c-bb76-adbe8324d34d' WHERE AD_Field_ID=59013 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='a1dc50d4-aefe-4b44-8173-32cc4cf3a6c3' WHERE AD_Field_ID=59014 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='dcebb922-e754-451b-ac10-71a97bed6b3a' WHERE AD_Field_ID=59015 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='71751ab6-7d70-4512-a8ca-d34737b59bca' WHERE AD_Field_ID=59016 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='cc949914-64fb-43e2-bc01-cd30e46cef2c' WHERE AD_Field_ID=59017 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='eeb8c586-6804-4309-8ad3-11f30487708e' WHERE AD_Field_ID=59018 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='bb7418e9-c46e-464b-8566-ec5f6f136e4e' WHERE AD_Field_ID=59029 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='27a13407-742b-4da6-b860-35eb68a15322' WHERE AD_Field_ID=59030 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='51be1786-9fcc-4742-bccc-7b88d362ec37' WHERE AD_Field_ID=59031 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='99e01b7d-b5ff-4337-bea2-32d8aa9a70a6' WHERE AD_Field_ID=59032 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='92347772-8be5-4119-9529-d96941df67df' WHERE AD_Field_ID=59041 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='2c775614-926c-4468-82cb-7fdb6c069b2f' WHERE AD_Field_ID=59042 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='d6c6d9ae-519f-443d-970f-7195befa505f' WHERE AD_Field_ID=59043 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='fb75f42a-f077-4839-8ee5-4b14d4127e39' WHERE AD_Field_ID=59044 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='fd7bfb43-22df-4f9e-88a7-e93cd3d9a1fa' WHERE AD_Field_ID=59045 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='fedb3fd6-8040-4e13-b3fd-ea321e768bb5' WHERE AD_Field_ID=59051 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='d6f4bc59-4a1e-406f-b21b-6502fa5749cd' WHERE AD_Field_ID=59052 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='b11f6f1b-f209-4a67-b017-0e76d96b7b4b' WHERE AD_Field_ID=59053 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='4f1c3f54-a319-4254-b6a2-cf1d63652695' WHERE AD_Field_ID=59055 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='bd214421-afb8-4bb7-b31d-9903b721c349' WHERE AD_Field_ID=59056 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='cd5fffc6-611a-44ef-a58b-640ff480722c' WHERE AD_Field_ID=59057 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='d8a84830-56b4-450a-9d4b-c2c9415f04f0' WHERE AD_Field_ID=59058 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='d8d08c37-0f41-46c8-8f06-2517ea535200' WHERE AD_Field_ID=59063 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='0362a9a4-7f4b-4031-aaa5-4bd01a7bc970' WHERE AD_Field_ID=59091 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='cba59bda-1b3a-410e-8676-58f0aac6764e' WHERE AD_Field_ID=59092 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='7582a40d-a5d5-4d5b-8e70-0176da385ec5' WHERE AD_Field_ID=59064 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='0bd383d7-1519-454d-974c-3f9378501aef' WHERE AD_Field_ID=59065 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='927ba4e5-a72c-40f6-90af-ef5fe913d7c0' WHERE AD_Field_ID=59066 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='6b9128f9-5ba6-43c2-9370-3e192567b465' WHERE AD_Field_ID=59068 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='284563f6-89cd-4529-84a5-54e2520cc34e' WHERE AD_Field_ID=59069 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='463cf541-ab51-4c34-9284-3cbffd6b9116' WHERE AD_Field_ID=59070 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='2930d104-f0d7-4fb7-b9df-a474b77dad39' WHERE AD_Field_ID=59071 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='36ea3848-430c-4114-9044-74d4112237c4' WHERE AD_Field_ID=59072 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='598a77b9-d823-4874-b9cd-ac6886776200' WHERE AD_Field_ID=59085 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='c27e356a-ed1e-446f-accf-c141de931925' WHERE AD_Field_ID=58989 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='3b053af2-a8c2-4a03-b4f4-57b644c9064c' WHERE AD_Field_ID=59033 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='1007d083-dbe7-4a18-88f2-3ec5d29bcd77' WHERE AD_Field_ID=59034 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='b26c099d-0725-4a39-aac9-288edcc4dab8' WHERE AD_Field_ID=59036 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='426a70fc-5162-4292-a733-51f146f723d6' WHERE AD_Field_ID=59038 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='a8db7502-be0f-480b-9576-faf989e71ca3' WHERE AD_Field_ID=59098 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='ee79f071-fded-41be-92c4-b1c203681d55' WHERE AD_Field_ID=59099 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='7fdb4ae4-91eb-4330-9b07-e2c078850b41' WHERE AD_Field_ID=59100 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='843eb550-ba17-489b-a70d-4795a787b2cc' WHERE AD_Field_ID=59101 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='1039de61-be67-489d-b541-8fca9d1b2fd5' WHERE AD_Field_ID=59105 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='07f8bfe9-824c-4764-a5d4-2d42aa2394fe' WHERE AD_Field_ID=59108 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='09d38e83-9ac4-4cd9-9e2d-ec3923385b19' WHERE AD_Field_ID=59110 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='e0653c6f-0161-4ab4-bc36-82fe68280881' WHERE AD_Field_ID=59093 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='689a1cd3-90c7-48bc-ae1d-c8934d3f9ad5' WHERE AD_Field_ID=59095 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='c66e74c2-1d8d-40da-8275-1d3ab67eebb8' WHERE AD_Field_ID=59117 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='4664c28e-24aa-4d23-904e-78736dc865ba' WHERE AD_Field_ID=59118 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='85056266-ad2a-4d25-abc8-4cc3bb652044' WHERE AD_Field_ID=59120 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='a503accc-1da2-43e8-bc12-490c544bd12b' WHERE AD_Field_ID=59124 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='3f714bcb-b1f1-4ec5-85ad-eea5506c58ba' WHERE AD_Field_ID=59145 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='f889c582-b8f3-475a-b527-01962ba65aeb' WHERE AD_Field_ID=59146 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='3d75d894-8ad6-4c82-badf-1a1623214848' WHERE AD_Field_ID=59147 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='88af4b5f-6a9f-4111-9169-5dd2d71f8969' WHERE AD_Field_ID=59148 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='bc0f97ab-932b-46fe-8001-900886e99d63' WHERE AD_Field_ID=59149 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='aec1745a-f29d-41a7-9a16-4a5b0d65d151' WHERE AD_Field_ID=59150 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='b7ea89d4-c1ea-45a6-ba75-32ed170157a6' WHERE AD_Field_ID=59152 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='ba1346f4-09b5-41f6-9f88-13b21cfe9977' WHERE AD_Field_ID=59154 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='522fc825-f020-48cc-9d59-6c94050d4002' WHERE AD_Field_ID=59157 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='aba76498-50b1-451d-b885-210720635cae' WHERE AD_Field_ID=59172 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='9811b3c4-7851-49f3-b186-de3d440d5cee' WHERE AD_Field_ID=59173 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='d47dbc91-72d0-4a68-8cf7-b8412a03615f' WHERE AD_Field_ID=59174 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='dc48fb36-fe66-4a00-9d0f-3f91f20b7c25' WHERE AD_Field_ID=59176 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='620f9c9e-e584-4b8c-885d-f99e581bc2ff' WHERE AD_Field_ID=59177 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='02296fe6-7339-4554-af2d-ee34e26246f6' WHERE AD_Field_ID=59178 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='f7559f79-87fc-4017-bfd6-1dc9972d990c' WHERE AD_Field_ID=59205 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='93a0bbf5-5b99-40cf-be3f-68cab73410bc' WHERE AD_Field_ID=59206 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='e0007d09-05dc-4458-9560-27f40ce90c4a' WHERE AD_Field_ID=59207 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='23a3920d-d100-4680-8b7a-2c9ecc836ce5' WHERE AD_Field_ID=59208 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='c00149ec-3b62-4fef-8c88-c98e5ddd27a5' WHERE AD_Field_ID=59210 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='ac1b7d94-09ac-4f85-b194-f4c4297e4166' WHERE AD_Field_ID=59211 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='d0fb40db-0c47-48dc-acbf-9aaceedadd29' WHERE AD_Field_ID=59232 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='74c83d1c-2357-46e2-9b31-e25d15801698' WHERE AD_Field_ID=59233 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='5d5009be-cd12-4af2-8752-1015c426e36c' WHERE AD_Field_ID=59234 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='8208fadc-9336-4fac-8fe1-539535d8de36' WHERE AD_Field_ID=59242 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='da26004c-6e90-4468-a756-9489ab90982a' WHERE AD_Field_ID=59251 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='af6b0040-affa-481c-957b-e2a2076e76ac' WHERE AD_Field_ID=59252 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='36c2a0ad-34a8-424b-ba2e-5eaed96d0c65' WHERE AD_Field_ID=59253 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='4e4b4ab2-c761-4b98-83ae-0e0b342665ae' WHERE AD_Field_ID=59254 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='813e05ae-563c-4dc4-937e-4f43e3d9854e' WHERE AD_Field_ID=59255 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='f1475386-943a-4efa-8afe-bbce8759db8f' WHERE AD_Field_ID=59256 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='b90561bd-ae4f-4a10-89d0-4be8065397c9' WHERE AD_Field_ID=59258 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='73f6ce5c-8ee9-40e1-9c1e-53d26f5f9216' WHERE AD_Field_ID=59265 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='3334a6e8-5e80-4999-a120-2e572c44fc81' WHERE AD_Field_ID=59266 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='9a6c29ec-2c6a-474c-b2a9-d34438247711' WHERE AD_Field_ID=59267 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='952eef84-f93e-4aa6-aabe-714f4bafad22' WHERE AD_Field_ID=59268 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='f16f5098-82bb-46c4-860f-7a58157bf590' WHERE AD_Field_ID=59269 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='3c6b1cfc-3780-4bff-b184-b0f252889c3b' WHERE AD_Field_ID=59270 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='1198b088-94b9-4de8-b281-365602d1ffeb' WHERE AD_Field_ID=59271 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='d2807812-0c22-4300-b1d8-523428de30fa' WHERE AD_Field_ID=59279 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='0f91c316-dff8-42a6-bccc-65abbd6b95fe' WHERE AD_Field_ID=59289 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='ec8bb386-4ca2-4387-828e-504ef2116f36' WHERE AD_Field_ID=59292 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='23c57eb7-88af-4551-9018-e25a5ba87333' WHERE AD_Field_ID=59296 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='6d9eb62e-7f1d-4170-8a47-32cd550f3f23' WHERE AD_Field_ID=59299 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='b126fe04-2c7e-4fd3-bc16-24643ea49f11' WHERE AD_Field_ID=59300 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='05021a0a-a55f-4b23-bf8e-426c8be3392d' WHERE AD_Field_ID=59301 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='e569c2cd-e634-470f-9866-2c20ea2d8974' WHERE AD_Field_ID=59305 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='3da84d4f-033f-4106-ae97-c23464f93f3b' WHERE AD_Field_ID=59322 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='5fc174e1-6a55-4388-a1bd-7b8c1407f787' WHERE AD_Field_ID=59323 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='3c23a346-6557-4e76-8c71-94689e39c2b9' WHERE AD_Field_ID=59324 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='02046e9c-e6ab-4bcd-b929-9b4993b7f53c' WHERE AD_Field_ID=59345 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='a6f535ed-8e7a-414e-b14a-a608f44589cf' WHERE AD_Field_ID=59346 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='2e1642ec-a661-4af7-9fbb-2992f8442fd0' WHERE AD_Field_ID=59347 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='c9547eda-f1b5-4f74-bc09-252a61a07633' WHERE AD_Field_ID=59348 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='76aedf34-b80b-4f55-8b0e-1ce3ff1cc330' WHERE AD_Field_ID=59349 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='d7182b08-adc4-45c4-8821-9dcb1194e251' WHERE AD_Field_ID=59350 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='0927931e-1d8c-4725-9edd-9b32383e70b0' WHERE AD_Field_ID=59352 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='c44df213-c5c3-46f7-b8f1-aa59133e4047' WHERE AD_Field_ID=59353 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='b8e23f21-b77d-4d49-8b16-8682548f6dc6' WHERE AD_Field_ID=59354 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='891fa7e4-2be6-413b-a5c3-c65d84fd6d86' WHERE AD_Field_ID=59356 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='f057ca0a-b9e1-4f99-8d1d-d5bce5a6ee9f' WHERE AD_Field_ID=59371 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='13f325d5-1e82-4061-979c-c396e0a4388a' WHERE AD_Field_ID=59372 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='806ad270-ac4f-45bc-82da-f3b909c243de' WHERE AD_Field_ID=59373 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='e2bfb23f-fd25-4188-b225-c0e54bed4ecb' WHERE AD_Field_ID=59374 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='b68c5008-bcd5-47e2-9fa0-13544da55b76' WHERE AD_Field_ID=59375 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='4ecf8276-2bc4-47a1-b005-d5040daa36c9' WHERE AD_Field_ID=59376 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='0d88ba8a-2db2-4d01-9561-d76a740610d9' WHERE AD_Field_ID=59378 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='ce03c4f6-67f7-4973-ac3e-639dc571aec4' WHERE AD_Field_ID=59403 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='45603a84-6ae6-415b-8653-99039bd49740' WHERE AD_Field_ID=59404 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='09afcca9-248c-4bee-8c9f-f928e232cf13' WHERE AD_Field_ID=59405 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='840587e5-2fae-4d22-9e10-242bdd9a9bcd' WHERE AD_Field_ID=59395 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='fd2fff47-8312-41f9-acf5-0097e88e674a' WHERE AD_Field_ID=59402 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='0c8d042e-76b7-449e-812a-39be9c0c9b32' WHERE AD_Field_ID=59224 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='2f9ec34c-2273-484a-8f1f-9d7bebc4abe9' WHERE AD_Field_ID=59501 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='1a01676f-5667-4023-aaef-7dda866fc518' WHERE AD_Field_ID=59502 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='602afc0a-7a1f-419a-9e5c-7bdd35008c43' WHERE AD_Field_ID=59503 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='f47eb94f-953e-4c7d-9736-d8063a67896b' WHERE AD_Field_ID=59504 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='7d9af76e-d674-4529-85d7-3ef3b838adf1' WHERE AD_Field_ID=59505 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='4bf91347-c39c-47f8-a06b-8d44e8bde36e' WHERE AD_Field_ID=59506 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='a2e8e831-47b6-4085-b9f2-7bcd09c71e79' WHERE AD_Field_ID=59507 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='38e01ab4-ab97-419d-a7c5-58950422c47d' WHERE AD_Field_ID=59508 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='c4e6c57c-eb5d-467d-b25f-f59ddf926713' WHERE AD_Field_ID=59509 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='3f72f390-e566-4b45-ac49-c8e4148d011a' WHERE AD_Field_ID=59485 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='7a58ddc4-02a4-441d-b578-fa37f9dbbef2' WHERE AD_Field_ID=59510 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='bb8aab2c-7a95-4247-b77c-715ffc9f3415' WHERE AD_Field_ID=200048 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='2b9e0be5-f35c-4655-ba76-4d3d7c9fbfd8' WHERE AD_Field_ID=59511 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='0d7d209c-c5a1-4e5c-bf8f-f1643f354727' WHERE AD_Field_ID=200035 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='4ba85fdd-2353-4a41-b757-aeb1dc439bf1' WHERE AD_Field_ID=200159 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='2546301e-d118-4ddb-88f0-3b81b5289a9c' WHERE AD_Field_ID=200160 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='61e28fb8-4b65-4f75-a866-e0983f5f881a' WHERE AD_Field_ID=200161 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='68ece19a-acdb-47cd-8e89-12b17b06b484' WHERE AD_Field_ID=200602 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='bdcc7085-a163-4e67-b126-da30a654e6e0' WHERE AD_Field_ID=200532 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='b1457202-8eef-4743-b8d1-846347e69442' WHERE AD_Field_ID=200535 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='1b2e86cf-9d53-4568-bc35-e5690446ed23' WHERE AD_Field_ID=59035 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='0ceffb0b-1aae-410e-a266-cf693ad36baf' WHERE AD_Field_ID=59494 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='770265df-137b-4963-9dfa-a3847d60df52' WHERE AD_Field_ID=59496 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='61088b44-20cc-4835-bc16-6a843b95711b' WHERE AD_Field_ID=59479 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='00e3ff75-d2c7-4955-bbb2-6fd013c8d548' WHERE AD_Field_ID=59482 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='dc60731c-6a03-4361-bf59-88275545f00b' WHERE AD_Field_ID=59484 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='0cd04f51-3eda-4cd5-9ca7-c5483962b728' WHERE AD_Field_ID=200529 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='17c6132a-3fbb-4f76-846e-4cdc8ce5d115' WHERE AD_Field_ID=200530 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='96bfa02e-92f1-438d-9fc4-69d29caa2007' WHERE AD_Field_ID=200549 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='3278295b-273f-4546-a7fe-36f3f36c58ad' WHERE AD_Field_ID=59007 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='5b9da0b0-2c81-42ba-a864-9cb5f4097797' WHERE AD_Field_ID=59083 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='bd8692d0-b210-4369-8d0d-8fbe597bb08b' WHERE AD_Field_ID=59102 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='47f17227-6483-401f-b5ff-a6b0a8652986' WHERE AD_Field_ID=59109 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='b049e9d6-3501-4b08-a522-afbe38ed2552' WHERE AD_Field_ID=59171 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='6e43d035-55f0-46bf-9374-3034431aa347' WHERE AD_Field_ID=59125 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='ae48853e-9deb-42f5-a5c9-a1ca5c0929ab' WHERE AD_Field_ID=59229 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='8459875c-3818-41cb-87fe-eab23276ddbd' WHERE AD_Field_ID=59230 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='34392f90-4dd9-4520-861f-42c386a64924' WHERE AD_Field_ID=59245 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='72e0a88f-8574-4392-b96d-9a104a5d5a9b' WHERE AD_Field_ID=59246 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='cf06075f-7d49-4fad-a4a5-7772b1e54040' WHERE AD_Field_ID=59273 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='46e58d2a-459a-4c41-869c-baab1b2251e2' WHERE AD_Field_ID=59276 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='b30139b0-0861-4927-a807-c695ea409cbb' WHERE AD_Field_ID=59291 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='a7a7a9c5-1300-4e1f-8c38-71d0fc37f979' WHERE AD_Field_ID=59315 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='8431e208-fb76-4116-97e0-0838449ba976' WHERE AD_Field_ID=59396 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='233debb9-6d1a-478d-b804-87ce0560798a' WHERE AD_Field_ID=59497 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='f55a873b-552b-48db-89b9-f6a6f705b425' WHERE AD_Field_ID=59490 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='9c9afc07-b54a-45c1-bf5c-2a9be87f120a' WHERE AD_Field_ID=200538 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='c9a9945f-6b9e-4b90-8c81-95bad0f8b32b' WHERE AD_Field_ID=59198 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='85e812f9-89c5-44de-b395-7f9d35bc619d' WHERE AD_Field_ID=59199 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='1b548f7f-95b4-47e5-a28d-fdbebce491d8' WHERE AD_Field_ID=59200 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='278ed627-40f1-42b7-9ee4-72e5fcab7e6f' WHERE AD_Field_ID=59259 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='501ed669-b742-4051-93ba-cfe4b8aefb4a' WHERE AD_Field_ID=59261 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='43178e00-84b2-4331-b32e-02b5a51db566' WHERE AD_Field_ID=59262 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='9bb715d9-1bb7-464d-8e35-ebb919714c2f' WHERE AD_Field_ID=59263 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='7917d727-25bb-4652-a295-06e9a6cb3a0c' WHERE AD_Field_ID=59221 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='c84fc498-2093-4ca9-b9b5-a57f9ca16735' WHERE AD_Field_ID=59364 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='22617d0f-48ea-44e2-a06f-49bf40a2f906' WHERE AD_Field_ID=59367 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='88d9519e-1114-4885-b180-6e6aa5a0f091' WHERE AD_Field_ID=59369 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='d3b0ca88-0cc0-4c1f-a05e-86b14fd5d989' WHERE AD_Field_ID=59397 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='dd513240-15f7-47c1-b632-73478defdb01' WHERE AD_Field_ID=59400 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='db7f809d-6e00-4a37-97b7-78b43d351079' WHERE AD_Field_ID=59401 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='78bdfa1f-a3ff-47dd-96ad-371bf3e72673' WHERE AD_Field_ID=59393 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='d3812496-12b6-4d91-8dc0-9f7dd87fcd65' WHERE AD_Field_ID=59138 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='eed36323-6d7d-4b78-9ea8-b5c6e6351cbe' WHERE AD_Field_ID=59499 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='352fb0d8-758f-478c-b70e-41faa7da9a94' WHERE AD_Field_ID=59487 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='de4459bc-1562-4ab6-9a8d-8374a75b50be' WHERE AD_Field_ID=59498 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='cb810e21-c816-4c07-be68-6df7fca2bca4' WHERE AD_Field_ID=59470 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='255ae907-8846-4d37-bf8a-e3f1ea759b97' WHERE AD_Field_ID=200541 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='79f6cbb8-164b-4bdc-8c92-222acce17f05' WHERE AD_Field_ID=59193 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='3d0dc40b-231a-4ff5-8467-371c896fa549' WHERE AD_Field_ID=59179 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='86123b40-b6fc-4116-82d4-2c13f3629a59' WHERE AD_Field_ID=59398 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='d57e830a-4377-49d0-80d4-e5bc3ad3cc8c' WHERE AD_Field_ID=59488 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='534dbb4f-a778-46b0-bbcb-077b153077c6' WHERE AD_Field_ID=59067 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='e92d43f5-5825-4df3-8965-c707bc68719b' WHERE AD_Field_ID=59073 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='ccfb391e-9cc1-444f-ab52-1f007c038563' WHERE AD_Field_ID=59075 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='f0614076-1eb9-446a-9d4b-60a4eaab0365' WHERE AD_Field_ID=59077 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='5c3769d7-74b2-46c7-9e10-4e2dcdc2bb7a' WHERE AD_Field_ID=59358 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='f830c00f-0815-45b1-b185-cbd89624a5bb' WHERE AD_Field_ID=59391 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='056a3192-ee59-4bc2-891a-11674b05e3f3' WHERE AD_Field_ID=59201 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='5f29c6c0-e866-46a2-9d63-d18447549dfc' WHERE AD_Field_ID=59202 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='1d2003a4-3dee-4dcc-bf58-1e1aac3e79f1' WHERE AD_Field_ID=59203 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='9d14ea47-0fa3-4ab9-b209-7fca6de5a0ee' WHERE AD_Field_ID=59204 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='fd3458ae-7fa1-4cb6-96d4-5e2974724cea' WHERE AD_Field_ID=59006 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='f0b00529-7da3-4680-a1d9-2bfd7c0b26c9' WHERE AD_Field_ID=59240 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='061d5de3-8437-445e-8e27-d46149bbf198' WHERE AD_Field_ID=59241 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='66364357-901a-4370-bdef-bca1e5bf8cf4' WHERE AD_Field_ID=59335 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='909cef45-eeec-46e1-b40f-adcb6328de45' WHERE AD_Field_ID=59481 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='98c097c6-7795-4464-8c1b-0e109ee04e51' WHERE AD_Field_ID=59483 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='12e436e9-d9ca-4fd1-b370-f50d486bf829' WHERE AD_Field_ID=59020 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='5b8b719d-089c-4de7-9758-84900f71ebd1' WHERE AD_Field_ID=59022 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='f6da9719-b3fa-4eab-a4f9-e205a284a09a' WHERE AD_Field_ID=59024 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='61cd42f2-7fa1-4cd9-b1f8-cbdc9247cd04' WHERE AD_Field_ID=59026 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='60c1a8e4-9a4b-4822-932b-a77186f13225' WHERE AD_Field_ID=59260 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='1a0da8f7-b786-4b00-bdf0-643b040bc843' WHERE AD_Field_ID=200517 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='5a7bf8b0-2ec5-4536-ace9-cf3502783e90' WHERE AD_Field_ID=59050 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='3da4529f-8e07-47bc-b068-0449d0760cc5' WHERE AD_Field_ID=59059 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='7b737833-7e5d-4f10-8334-0bfbcae591d1' WHERE AD_Field_ID=59060 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='87d0ef8f-bbdd-4f21-9165-c4b56e0dab01' WHERE AD_Field_ID=59061 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='02cf215f-0b2f-4250-8fcf-e191048f7648' WHERE AD_Field_ID=59062 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='c349b183-7b22-4c1f-a427-feaf35ae579b' WHERE AD_Field_ID=59079 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='023befd7-e276-4938-8233-40e6eebc0f87' WHERE AD_Field_ID=59084 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='c43a4378-b328-4da4-8352-ad5f3bc2d789' WHERE AD_Field_ID=59090 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='d9c4daa6-ba13-4730-8902-86cad08095f2' WHERE AD_Field_ID=59134 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='3402cc47-5c91-4925-828d-7bc862e8d9be' WHERE AD_Field_ID=59136 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='a1e85219-d6e1-4163-b581-fbcccaee7e42' WHERE AD_Field_ID=59137 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='e65d1d31-062c-4dba-b2c1-e2a6eb91dacd' WHERE AD_Field_ID=59139 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='3a47df87-44bf-4f5b-b017-d5e52f4c0744' WHERE AD_Field_ID=59155 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='f738fa2f-8386-4c9e-ba85-232bc9aa9230' WHERE AD_Field_ID=59161 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='2b1fbae4-a90c-4d5f-826e-f89a33e3ff17' WHERE AD_Field_ID=59163 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='7f473968-b09e-43b0-8441-7dab1a0849c0' WHERE AD_Field_ID=59168 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='8f83cac7-372b-4d7a-9ea2-d329b8ed7f46' WHERE AD_Field_ID=59170 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='a29bfaef-bfbf-4c74-b062-d43b7b4626a6' WHERE AD_Field_ID=59182 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='f4034a43-7aea-4b53-8be8-ac6ce1b18b72' WHERE AD_Field_ID=59183 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='7d9feb11-0812-48f6-8de1-1ea393c4bc41' WHERE AD_Field_ID=59184 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='bceb34ac-f45e-40ae-9756-a9f36c777374' WHERE AD_Field_ID=59187 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='44f683b8-dba9-47cf-9ab8-3b45423e35ff' WHERE AD_Field_ID=59225 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='9a5ab3df-bd44-4bf3-95de-3470782db61f' WHERE AD_Field_ID=59228 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='d1f98e2d-7523-41c6-a6c7-695c32c37d44' WHERE AD_Field_ID=59231 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='3905c7d5-b2ef-4aa4-b4ca-f8b84c23135f' WHERE AD_Field_ID=59236 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='542410e4-719a-4739-b86f-a5a56161b4dc' WHERE AD_Field_ID=59237 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='cb41cff5-5be2-4af9-819e-24bfe5d02b0a' WHERE AD_Field_ID=59238 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='fe1c3efb-1678-445d-a881-82ede086f587' WHERE AD_Field_ID=59239 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='bc4469ac-06cf-438a-b387-701b9fbca646' WHERE AD_Field_ID=59243 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='cced5061-8eff-49f2-8e08-093363c550ec' WHERE AD_Field_ID=59249 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='54f212b1-dc21-45b7-8f20-ef29a83ea3c7' WHERE AD_Field_ID=59274 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='9dae21e9-dc85-4980-867d-b21eaf83489b' WHERE AD_Field_ID=59277 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='5b5d7aec-2603-400b-adbd-e59381f78c30' WHERE AD_Field_ID=59281 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='0db58679-78de-42a8-a3d1-ec28b05dc233' WHERE AD_Field_ID=59283 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='02010263-22d7-4536-8ac2-ea89da9c9253' WHERE AD_Field_ID=59288 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='1ee2b497-aa6e-44f1-8a82-a1b07dfbabe1' WHERE AD_Field_ID=59319 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='d7a16d7d-28dc-40c4-a968-97849c03b86a' WHERE AD_Field_ID=59295 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='5caf9ac3-29e8-47e8-86ff-ebf389055b7e' WHERE AD_Field_ID=59297 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='00722135-5e81-467b-a8d1-ae7e8994897d' WHERE AD_Field_ID=59303 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='6e12e1a0-a11e-4765-94ac-6bba90b39dce' WHERE AD_Field_ID=59306 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='55565bb7-0632-4fc2-b1e0-0f54911c3d5c' WHERE AD_Field_ID=59310 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='1530ed2a-f7b1-4234-b720-ecc64147cb0a' WHERE AD_Field_ID=59311 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='181ac990-8fe4-4070-b5c5-6e5fad669f2f' WHERE AD_Field_ID=59312 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='2275776c-242e-4321-951b-fc6ba2a590fa' WHERE AD_Field_ID=59313 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='72f7e577-b4dd-4799-a94f-1a9a74bf2c72' WHERE AD_Field_ID=59314 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='07811174-084d-44d4-b427-26dfd1af0cea' WHERE AD_Field_ID=59316 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='a24fc0c4-3637-4455-b9db-c10ad610bcbb' WHERE AD_Field_ID=59317 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='46fe299d-4cba-43ac-989f-e4c45615e993' WHERE AD_Field_ID=59318 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='6c76cec0-f557-4ae4-b14b-3a0c371e25a6' WHERE AD_Field_ID=59320 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='0af21310-7dd2-435d-8ad9-9f6c566d26c6' WHERE AD_Field_ID=59114 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='a285bdb7-43a3-4a25-9f4a-7f2aaae87a6d' WHERE AD_Field_ID=59127 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='db71f061-b8b6-4bc1-9c5c-5de1f1090bc5' WHERE AD_Field_ID=59338 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='5a233a25-3469-400c-a6d1-ca76c0d41d57' WHERE AD_Field_ID=59366 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='9c57bd2f-58c2-4c55-ba17-a0c4fbabe096' WHERE AD_Field_ID=59368 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='a6c7962d-fcfd-477e-bd56-a35fcc66d7f3' WHERE AD_Field_ID=59370 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='08f78449-4ec0-4094-b8ba-933b6ad69771' WHERE AD_Field_ID=59380 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='479d167a-d2dc-4be0-a4b4-6f6c0c694a77' WHERE AD_Field_ID=59382 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='0027330d-b9e7-449b-a43c-51b319dd658d' WHERE AD_Field_ID=59384 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='7415258d-b2d8-4455-a8cd-a52e8215a4da' WHERE AD_Field_ID=59387 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='a191e0c0-2462-4190-b054-8f630f259c9f' WHERE AD_Field_ID=59389 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='772f3bea-1aa2-4726-a713-71941c2efeb1' WHERE AD_Field_ID=200534 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='6ab36ff9-173a-4e6d-9d52-adf8d1f19cb2' WHERE AD_Field_ID=200543 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='43285f8c-b8f1-4e0e-adb6-d9e29093b743' WHERE AD_Field_ID=200548 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='4261b70d-120b-4da6-b8d4-a18dfed4ede2' WHERE AD_Field_ID=200291 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='a4d4f7a2-c8ac-4869-9c57-038f11090ceb' WHERE AD_Field_ID=59004 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='d22748f5-d007-45af-b6cb-32510f57c2f7' WHERE AD_Field_ID=59019 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='e245ddbd-2069-44dc-a7d8-8f6de62eebc8' WHERE AD_Field_ID=59153 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='c9f34493-f15a-4734-9d87-ecf7f1e6531f' WHERE AD_Field_ID=59156 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='fea86b13-ef28-4b3a-abe4-a3a42ff58cd0' WHERE AD_Field_ID=59158 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='cfc5f30c-259b-477a-a3fa-15dc341a3468' WHERE AD_Field_ID=59160 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='57d15fb2-dd0f-4c69-bcf5-0352a27dc106' WHERE AD_Field_ID=59186 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='543e899c-214f-4103-8325-799c05cc68c6' WHERE AD_Field_ID=200518 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='078345dd-4fdb-4033-be4f-c405b6af921a' WHERE AD_Field_ID=200536 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='91377f74-4424-4ac1-be8e-2bad8a0539cf' WHERE AD_Field_ID=59005 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='586e7f08-be60-426d-b714-9bcefccf21bf' WHERE AD_Field_ID=59195 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='64be8b64-3c67-4861-a70f-a0888af151d8' WHERE AD_Field_ID=59196 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='7859295c-385d-4b0c-8fc2-2ab9c1b005d4' WHERE AD_Field_ID=59492 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='fc5fe7c8-e698-471d-8edd-c856f7e14bf9' WHERE AD_Field_ID=200297 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='3724a262-6f2c-4f77-857d-ef9a17c5e886' WHERE AD_Field_ID=59197 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='ccf0e1b2-9368-4f7a-9a3b-1834d33c54d0' WHERE AD_Field_ID=59048 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='fedae2d2-2fc8-4412-84de-b25dda76519a' WHERE AD_Field_ID=59049 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='66ce9fba-8ef5-49ef-8bec-002c84bb5f03' WHERE AD_Field_ID=59126 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='6b7ab24b-a1eb-42e8-86c3-5a4900417517' WHERE AD_Field_ID=59128 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='255994a9-4ced-45f4-8886-7e62957b0751' WHERE AD_Field_ID=59129 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='47639edd-a4e4-429c-8d11-eceb5c0b306c' WHERE AD_Field_ID=59130 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='6bb2238c-6ff6-4866-85d4-8548a84a4d4a' WHERE AD_Field_ID=59131 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='8bc6a5a2-167d-4e6c-8617-8888b60563dd' WHERE AD_Field_ID=59218 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='3dda0766-ac96-45eb-8464-fae0e0cbcf4e' WHERE AD_Field_ID=59359 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='6a145a50-696e-46ba-8e65-edaeffa007ab' WHERE AD_Field_ID=59361 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='084c33d1-3309-4bcc-bab8-2d5db7d34d8e' WHERE AD_Field_ID=200294 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='a4858dcc-1187-434e-bafc-177495e9c9a4' WHERE AD_Field_ID=59132 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='ba7a0d77-0ded-4eac-930b-8a48378cc6e9' WHERE AD_Field_ID=200050 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='8ad08d38-7ab2-4f6f-ab57-012e383a4e1c' WHERE AD_Field_ID=59001 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='65ebd17a-170b-4070-b992-4aad4badaaad' WHERE AD_Field_ID=59046 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='6216057c-3867-4a6e-83d3-013da0869ecd' WHERE AD_Field_ID=59047 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='f7228048-9028-4f14-8806-9e81e25f9684' WHERE AD_Field_ID=59298 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='8244801c-73fe-4568-a03f-5c02f5062420' WHERE AD_Field_ID=59325 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='5dd53ed6-6ee3-4e1f-b774-d9d7ebb21d37' WHERE AD_Field_ID=59326 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='38224e38-4397-4ccf-af79-dc10bcfd626d' WHERE AD_Field_ID=59327 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='c8262c92-42b9-451c-b111-42709615598a' WHERE AD_Field_ID=59329 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='860b68d0-6be2-40aa-bd61-a29ed583bc0b' WHERE AD_Field_ID=59333 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='aad6f741-dc36-45e4-b540-91defee8e8b1' WHERE AD_Field_ID=59097 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='d60043f2-45e8-4117-8d4a-b4088ce234a0' WHERE AD_Field_ID=59342 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='a499d918-5f54-4fa2-8890-f1e6f1323823' WHERE AD_Field_ID=59377 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='4172cd04-5068-41a8-bcde-644f0c95e65f' WHERE AD_Field_ID=59379 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='a6a691cf-bf48-4ae5-9212-a8787967bc9c' WHERE AD_Field_ID=59381 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='68c9173d-feee-48d8-834d-473f2620e964' WHERE AD_Field_ID=59383 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='b9efec1f-c65f-473d-bdd6-7bc729eb914e' WHERE AD_Field_ID=59385 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='a5f3ccd8-e1a2-4f17-9a47-1e66bf2036ac' WHERE AD_Field_ID=59406 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='9ab884e9-5986-4f87-bc8c-283afbaffb9f' WHERE AD_Field_ID=59407 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='3404bbeb-221e-4dbf-961b-c94953c6297a' WHERE AD_Field_ID=59408 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='d9fc3cb3-332b-4589-b779-60cc2f72f0ea' WHERE AD_Field_ID=59409 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='8ccf0736-2f0f-4cb0-96e6-e282d2793a5b' WHERE AD_Field_ID=59290 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='d27193fe-988a-477d-8fec-8b6d2bea80e5' WHERE AD_Field_ID=59244 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='5834201d-49cb-4d3a-b50a-f45f34cb3130' WHERE AD_Field_ID=59248 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='ec26ba3e-2b5e-42db-aeb3-06a01f381d48' WHERE AD_Field_ID=59472 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='b6522e0e-244c-4831-aa73-1114e9cc46ea' WHERE AD_Field_ID=59477 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='40bcf2e4-038a-4b6c-a1f9-61bcfdd16aaf' WHERE AD_Field_ID=59223 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='d059ada9-07e3-4da8-9c71-ab006b949a42' WHERE AD_Field_ID=59226 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='c0e3a9c0-570c-43a3-8e45-d294d19518d7' WHERE AD_Field_ID=200526 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='61eccd77-067b-44c9-95b6-9d0dc4ca1a59' WHERE AD_Field_ID=200519 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='e1602081-6875-4c27-94f8-d96155b3a3bc' WHERE AD_Field_ID=200524 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='35653d7e-2244-461b-858f-3cf83b0dde5b' WHERE AD_Field_ID=200525 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='aad442dc-924d-4214-bd89-9d40e5c7cf32' WHERE AD_Field_ID=200527 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='2cab662c-eb60-44eb-b23a-be131d3c91ec' WHERE AD_Field_ID=200531 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='1fd34aeb-3461-4e84-9c59-5217f46735ba' WHERE AD_Field_ID=200533 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='555942f4-3688-4bda-b2cb-10219beef192' WHERE AD_Field_ID=200544 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='1906a8ed-43a5-42e3-86a2-f0b760c78ffb' WHERE AD_Field_ID=200545 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='c92655e5-9932-4f17-bbcc-8a7ef514cc11' WHERE AD_Field_ID=200547 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='396fbb2d-0fa5-462e-b850-fcb6aa5000ca' WHERE AD_Field_ID=200551 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='d8206036-2f94-4dff-8cc1-930f9f803020' WHERE AD_Field_ID=200528 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='7e2ab708-23b4-4f19-a99e-985ab61c1b0b' WHERE AD_Field_ID=59194 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='34d871dc-a9b9-403f-940b-cffdbc84e9a8' WHERE AD_Field_ID=59088 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='ffbc0420-7200-47d4-bb53-30e2e327521d' WHERE AD_Field_ID=59103 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='64b20ff5-d850-4604-b45a-d210679a5bb2' WHERE AD_Field_ID=59104 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='17a709e3-2aaa-41fb-8d24-566403cf215d' WHERE AD_Field_ID=59106 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='490fb370-1b66-4f85-bb67-d04406869e9f' WHERE AD_Field_ID=59107 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='026b8cde-1b56-4835-aa29-a404bae246b1' WHERE AD_Field_ID=59111 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='4a9d03d4-6cf2-4316-b8d3-a359236bc8f2' WHERE AD_Field_ID=59143 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='0580c295-e800-4d1d-8079-aa51f9467d4d' WHERE AD_Field_ID=59166 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='6b8d25b8-dde1-49db-9a9c-5fc8fe2843b7' WHERE AD_Field_ID=59113 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='74f696dd-13fd-4b4a-aaab-631139d6626f' WHERE AD_Field_ID=59115 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='7f0b56bf-20e0-42c8-b340-33db39c8ca05' WHERE AD_Field_ID=59119 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='d2b400cc-a6af-453b-974f-d1f61c197c9d' WHERE AD_Field_ID=59121 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='add71b29-a59c-43a3-ac9e-6329f5c4bd78' WHERE AD_Field_ID=59122 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='8efc6901-ee7e-4250-b6fb-0e63d799cbdc' WHERE AD_Field_ID=59123 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='2c697c39-30d5-443e-94a3-bd9ec5304d36' WHERE AD_Field_ID=59191 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='6ae8b111-b3e2-43f9-9b14-2b65f12ec9ba' WHERE AD_Field_ID=59192 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='8163450b-d82c-4da2-8ea4-2bb2775512a0' WHERE AD_Field_ID=59212 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='7388f5c4-902d-4c5f-b1e7-8067e320100b' WHERE AD_Field_ID=59214 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='955c574f-1162-40c0-bb43-1833b53b3069' WHERE AD_Field_ID=59216 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='b9ce27ce-fb88-4942-9a11-96927717fe49' WHERE AD_Field_ID=59363 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='3fe7cd92-5ecf-4f86-add9-39f4f3a01b87' WHERE AD_Field_ID=59341 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='622cb2b4-3651-403c-beac-3bf7dee1a4b7' WHERE AD_Field_ID=59343 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='f194c091-6e56-4937-ac0b-0e7afd181dc4' WHERE AD_Field_ID=59360 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='31050300-0f28-4e9b-8b2e-0e2c1d00cf65' WHERE AD_Field_ID=59388 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='ab69847a-1f3b-4abe-b2a4-c406515a5f62' WHERE AD_Field_ID=59390 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='e1ebdb1e-cf66-4a73-9950-decc851e486a' WHERE AD_Field_ID=59159 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='1a2a0423-6025-4963-b27f-fb4bf3c9a12c' WHERE AD_Field_ID=59264 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='4dd4f3ea-2f4e-41e5-b6fa-26b8b9c73eaa' WHERE AD_Field_ID=59185 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='04bc2f91-d50e-44a2-8144-e5ec94ec17f6' WHERE AD_Field_ID=59493 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='43829dd9-215d-4e2c-9ff6-563f08e72211' WHERE AD_Field_ID=59495 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='c8f1c3d1-540a-4358-9be5-2075044e9419' WHERE AD_Field_ID=59471 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='5190ebb5-8c06-4dd5-a835-a9ab867f0704' WHERE AD_Field_ID=59474 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='28e69336-826d-4a91-8cde-695f115a00c9' WHERE AD_Field_ID=59478 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='7540432a-799d-4a97-9cbb-d5ed1cb39265' WHERE AD_Field_ID=59480 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='753a1b7f-4359-42ff-b5ff-c0c0e2e87391' WHERE AD_Field_ID=59489 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='164d1c0f-d1ec-4747-8bba-ca610d827bfe' WHERE AD_Field_ID=59140 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='19364181-2d11-4258-9e76-8131473a274d' WHERE AD_Field_ID=59141 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='5ff9536e-36dd-45a2-ad2a-427e29272b65' WHERE AD_Field_ID=59021 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='e1249300-04e1-4174-b76f-3330048f4b72' WHERE AD_Field_ID=59023 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='df4fcba5-8bed-45a9-bdac-a69841b7816c' WHERE AD_Field_ID=59025 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='747e41b7-8a3f-4eb1-b353-d8b02510e904' WHERE AD_Field_ID=59027 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='125f9efe-b1ae-45dc-9bf8-37617983205f' WHERE AD_Field_ID=59028 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='48883773-241c-434e-b3a0-ee226f03df9f' WHERE AD_Field_ID=59076 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='7f026cc7-2237-481c-a01e-6a348a451c78' WHERE AD_Field_ID=59078 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='bae31ae2-d685-4e56-816a-b441037f3ab8' WHERE AD_Field_ID=59080 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='e255bc41-96e4-4493-8ed4-fcb92dc4e740' WHERE AD_Field_ID=59087 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='82373575-c3c6-4e6a-98ee-ba2161b3e465' WHERE AD_Field_ID=59089 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='16eddf29-9d20-428e-beed-19d3ddbc4af9' WHERE AD_Field_ID=59144 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='80038126-c397-4472-836a-275606daec2c' WHERE AD_Field_ID=59116 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='841632ff-e277-416e-adaa-00a8ec6e7b84' WHERE AD_Field_ID=59135 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='8934f832-8e94-4787-91dc-83dfc33acebf' WHERE AD_Field_ID=59162 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='d449226e-1c0d-471a-bbfa-c4c95750e972' WHERE AD_Field_ID=59167 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='a658ee43-67e2-4374-8c6b-975da82dd907' WHERE AD_Field_ID=59169 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='02b9916b-aedb-4744-aa9e-d3added6e918' WHERE AD_Field_ID=59175 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='34633e95-3276-42a4-936a-d72cfe260a8c' WHERE AD_Field_ID=59180 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='f2815212-916d-40c6-9090-62fa21a13662' WHERE AD_Field_ID=59209 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='2ba472dc-8c29-4ab5-b2e3-2d125a4ce3db' WHERE AD_Field_ID=59213 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='0661c008-dcd5-496e-a8ad-cd94e1e7ca98' WHERE AD_Field_ID=59215 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='4cbcea17-67df-41f4-889d-2d7ee71857df' WHERE AD_Field_ID=59217 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='8ecf54bf-7e6f-4bc3-940f-65b9fb657569' WHERE AD_Field_ID=59219 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='226159f7-bbf3-4521-9404-15e4350c1023' WHERE AD_Field_ID=59272 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='9ff692bb-6624-46a0-ba0d-4cc04f01df10' WHERE AD_Field_ID=59275 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='adf0740f-5f28-4840-84d2-35bcb70175fd' WHERE AD_Field_ID=59282 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='112574df-6423-4a8c-95d4-c893f6d81ecd' WHERE AD_Field_ID=59304 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='8f6abdb6-68aa-490d-92b0-ee7712d25000' WHERE AD_Field_ID=59328 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='4855d028-7875-4c8c-ac0e-ac55f403423a' WHERE AD_Field_ID=59330 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='f35ae2c2-0f5e-4b87-b0f5-3d80e039b78b' WHERE AD_Field_ID=59344 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='727b4c8e-1553-4f12-9ca7-d10518e4ea5c' WHERE AD_Field_ID=59351 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='a83818ae-d477-481e-9a94-597ecc09c499' WHERE AD_Field_ID=59355 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='fb7437e8-0b54-4fc3-a924-e01c4c26bc1c' WHERE AD_Field_ID=59357 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='03b95f2e-cb68-41aa-8995-73c48f8a3b3d' WHERE AD_Field_ID=200540 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='5c6bbd70-5086-4184-b8a3-82f98115fb68' WHERE AD_Field_ID=200523 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='024f3d53-49c1-46fc-83bd-a25156404ba6' WHERE AD_Field_ID=200550 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='2ce672c9-512f-4a5d-be45-8aa308eeb3e9' WHERE AD_Field_ID=59081 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='57ef582b-1582-4f60-92f1-5a23e47d1fcf' WHERE AD_Field_ID=59054 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='c1b75178-85f5-4c28-860a-ca379454390e' WHERE AD_Field_ID=59112 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='430c8bae-1ff8-4eb2-bba5-b103fce21d50' WHERE AD_Field_ID=59133 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='7ddf56c6-4c6e-45ff-8622-dab90049e8a8' WHERE AD_Field_ID=59142 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='1df4e8c3-6a49-459c-8324-47ca5941e5a9' WHERE AD_Field_ID=59151 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='0d05282e-3225-46ba-a5c1-d1155b74f4c9' WHERE AD_Field_ID=59164 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='949076fe-c626-4c7d-9911-de8aca48102f' WHERE AD_Field_ID=59181 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='a332cee6-669e-49d3-b6cb-09d20e9479c6' WHERE AD_Field_ID=59188 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='be5cc822-3bf6-43dc-9a42-0ff3811e63b3' WHERE AD_Field_ID=59189 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='e8c4b6b3-f3c9-4595-ac11-7bed43bba8bf' WHERE AD_Field_ID=59339 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='97a3869c-ed35-4a42-ada0-d8ad5dedf13d' WHERE AD_Field_ID=59340 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='df774b8b-e18a-4788-948c-4940302b2833' WHERE AD_Field_ID=59190 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='5d3115a0-c188-4e29-bd09-04a4eba6ea6a' WHERE AD_Field_ID=59227 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='b922d108-3e0d-4642-ba65-7de41b7d17df' WHERE AD_Field_ID=59235 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='d7d225e3-c0a2-4446-8609-c09dcb24fe3b' WHERE AD_Field_ID=59392 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='15685b4c-20d0-4d9d-934f-c91653f58c67' WHERE AD_Field_ID=59247 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='e6466d91-1056-4b6c-914a-0031af1e65c9' WHERE AD_Field_ID=59250 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='ae2c5531-0db1-4b8f-8833-44803a07d311' WHERE AD_Field_ID=59278 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='0517f35a-7ac1-4fd4-bbe3-7f24e90e6491' WHERE AD_Field_ID=59284 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='b97607b7-fb84-483a-b1de-07a5fbe1364d' WHERE AD_Field_ID=59287 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='0d5b688d-dc2d-452e-87aa-25a7bc098d19' WHERE AD_Field_ID=59362 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='aea0170e-2b3f-4b69-b956-61a41e06afae' WHERE AD_Field_ID=59294 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='a5463438-1ce0-41a2-b3f6-a92394d28c33' WHERE AD_Field_ID=59302 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='79340292-ae1a-4f86-9a11-8e452c34e4c7' WHERE AD_Field_ID=59331 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='66e39ec3-3486-4a37-8d38-1fcf9e6c3394' WHERE AD_Field_ID=59334 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='4ac7d00e-cd74-4bc3-b2e1-8ac7ffa9dd4b' WHERE AD_Field_ID=59096 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='e0a5cecf-a910-4202-ab9b-81cd9c5194e6' WHERE AD_Field_ID=59336 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='224f2b7f-e993-4bc8-b325-79564574355f' WHERE AD_Field_ID=59337 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='f93768e3-9fb0-4ece-a283-5cd6a9358cb7' WHERE AD_Field_ID=59365 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='6f1531a0-02c8-4c31-b512-6b00396ac51c' WHERE AD_Field_ID=59386 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='dc9ffe5d-1ac7-4898-bb60-6eb5a7cdd5af' WHERE AD_Field_ID=59394 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='1cd3249a-2f58-4cbc-89e1-ca6468232aea' WHERE AD_Field_ID=59285 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='91445888-0466-422e-9aae-c64542460a64' WHERE AD_Field_ID=59500 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='ff8a9a31-08cc-43be-865d-3210c3971e58' WHERE AD_Field_ID=59491 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='6d434671-b354-4c3f-84f0-82085eb5ac9a' WHERE AD_Field_ID=59473 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='94428f57-ec3e-4dd8-976d-21085c4168d6' WHERE AD_Field_ID=200295 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='8f5039db-0330-4bfb-ad9d-146fa7de687c' WHERE AD_Field_ID=59082 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='e665a552-0a13-40b1-b8f4-6ab7d6b75a28' WHERE AD_Field_ID=59002 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='ef0ea194-c3fb-4a94-a224-00975dfd0cfd' WHERE AD_Field_ID=59165 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='69808185-7dca-4ef2-bd13-8675aa2bd336' WHERE AD_Field_ID=59286 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='14d3f616-f675-4ea5-b607-acf9c0e7aa28' WHERE AD_Field_ID=59307 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='380fdee5-841b-4ad5-8154-a3abccf50e6f' WHERE AD_Field_ID=59332 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='ea2e7f68-0a48-48ae-baaf-7896f206b27f' WHERE AD_Field_ID=59293 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='07c176fd-0835-40d8-907f-7eb238f45717' WHERE AD_Field_ID=59309 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='21d9cad2-b4ec-4b52-8d25-aa527967447a' WHERE AD_Field_ID=59280 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='4c2aed51-b526-4e41-81d8-8550f00350d5' WHERE AD_Field_ID=59399 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='d7222c2b-24c2-432d-bbea-07cdc45d136b' WHERE AD_Field_ID=59086 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='299bdea0-8b22-45a7-82a5-bb267fdf0b81' WHERE AD_Field_ID=59308 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='50695433-efb4-4ac0-b77c-049edaa47054' WHERE AD_Field_ID=59791 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_FieldGroup SET AD_FieldGroup_UU='ebf4f40b-28c2-4ab0-bd85-db514674f47a' WHERE AD_FieldGroup_ID=50016 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_FieldGroup SET AD_FieldGroup_UU='56a0dc0a-527e-4aff-824a-8436a3042afe' WHERE AD_FieldGroup_ID=50017 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_FieldGroup SET AD_FieldGroup_UU='2dd35686-1ba3-472c-afa0-2802b8815528' WHERE AD_FieldGroup_ID=50018 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_FieldGroup SET AD_FieldGroup_UU='70bf682c-e641-4ae1-9413-2389e3660651' WHERE AD_FieldGroup_ID=50019 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_FieldGroup SET AD_FieldGroup_UU='45faed4b-7422-430f-9853-40bf9eab1c3e' WHERE AD_FieldGroup_ID=50020 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Form SET AD_Form_UU='a8a8abd8-04f5-4e4f-959d-e47103e78b01' WHERE AD_Form_ID=53017 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='8d102ae1-dd14-4885-a281-b6120431fa9e' WHERE AD_Menu_ID=53280 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='aafea22c-4783-4862-9e53-8c2efd2a46d9' WHERE AD_Menu_ID=53284 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='7b501a12-7dd6-472f-9f38-536e2842d4ea' WHERE AD_Menu_ID=53297 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='4672fef9-7133-4a74-97b8-40e79f88c258' WHERE AD_Menu_ID=53298 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='53e73ccd-132f-4706-9373-c122868bd872' WHERE AD_Menu_ID=53296 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='7a1b7b3b-0f4d-4b35-bb8d-1636303c84f3' WHERE AD_Menu_ID=53350 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='9b581c1b-0681-47c7-8084-4707bd67f01b' WHERE AD_Menu_ID=53351 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='d6a77fa4-4574-4979-8c13-700d1cc64c23' WHERE AD_Menu_ID=200019 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='0f7fff58-5677-49cf-b5fe-e8b796dafabb' WHERE AD_Menu_ID=53277 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='0cc6f014-a176-424c-a4af-64bf209a3d93' WHERE AD_Menu_ID=53278 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='68b7da8a-0d9f-4a89-9acb-deb42a227e27' WHERE AD_Menu_ID=53275 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='00eaf907-755e-4b70-87ce-b3f7eae67d88' WHERE AD_Menu_ID=53299 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='273996cb-d938-4111-bcf2-11b585e866ea' WHERE AD_Menu_ID=53352 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='db9a8755-1212-4657-9a65-265448f4f5ac' WHERE AD_Menu_ID=53353 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='9d5047b7-be8a-4d84-b91a-147e6ef181d3' WHERE AD_Menu_ID=53354 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='4905acb8-435f-477e-93ea-cc9b3828db2a' WHERE AD_Menu_ID=53301 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='45cd5f4b-01e4-4f71-84c3-17f4681cbb7b' WHERE AD_Menu_ID=53302 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='e1daab44-0127-4862-bd0e-4cdf8b14e34b' WHERE AD_Menu_ID=53273 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='678991cf-c5bd-4e07-9078-1d9064b7917c' WHERE AD_Menu_ID=53274 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='9ee1cf7a-cc44-4d87-bef4-245194479184' WHERE AD_Menu_ID=200006 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='848b0d57-4408-4aa0-b3dd-e16f3b9940cb' WHERE AD_Menu_ID=53300 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Message SET AD_Message_UU='7e929055-9808-46d4-a932-7e20d2f0a24b' WHERE AD_Message_ID=53137 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_ModelValidator SET AD_ModelValidator_UU='661c5a08-4d59-4192-a6c8-5e0269e773ec' WHERE AD_ModelValidator_ID=50004 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_PrintFormat SET AD_PrintFormat_UU='bf914950-4e5e-41ef-a547-7977879eb1d4' WHERE AD_PrintFormat_ID=50057 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_PrintFormat SET AD_PrintFormat_UU='d8688c25-d8ef-4a77-96b7-21a269a3435d' WHERE AD_PrintFormat_ID=200000 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_PrintFormat SET AD_PrintFormat_UU='062bcd68-d50d-4a9b-8641-79a565dea7e3' WHERE AD_PrintFormat_ID=200001 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='27a5f048-fe87-4f62-93e9-6c6c4312bfb0' WHERE AD_PrintFormatItem_ID=51709 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='b2d3414a-0103-435d-be10-30b0231a7edd' WHERE AD_PrintFormatItem_ID=51710 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='0f0b7962-bb77-46b8-a946-09a4a95cb23c' WHERE AD_PrintFormatItem_ID=51711 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='49d7e1ba-f2f6-4bb8-9d10-11dbd7fad643' WHERE AD_PrintFormatItem_ID=51712 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='e935ad92-db5c-4006-9472-fd3c8228ba60' WHERE AD_PrintFormatItem_ID=51713 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='5166c1e2-3786-4494-89de-b61e584aadd0' WHERE AD_PrintFormatItem_ID=51714 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='8196662d-e96e-4b5f-adef-430eba48d212' WHERE AD_PrintFormatItem_ID=51715 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='8a71dc53-d2f1-4bda-953f-7a1bba5972a6' WHERE AD_PrintFormatItem_ID=51716 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='50ac3b81-cc66-4f75-b783-9d67f5b061d6' WHERE AD_PrintFormatItem_ID=51718 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='06a980df-ac11-4165-af95-733a45733819' WHERE AD_PrintFormatItem_ID=51720 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='11524b97-fe07-4c57-90b8-9d87f60fe61e' WHERE AD_PrintFormatItem_ID=51721 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='ba805f41-1ffb-4fbc-b9fd-f1d6190cba2a' WHERE AD_PrintFormatItem_ID=51722 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='09f2f297-fd12-4563-a9f3-1e645f0a1bb1' WHERE AD_PrintFormatItem_ID=51723 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='7db18ed5-0b13-4bbb-be6b-5158bbe384f1' WHERE AD_PrintFormatItem_ID=51717 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='d5b65a82-61a0-4966-b2a5-b92c8d1a9b6c' WHERE AD_PrintFormatItem_ID=51724 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='f6f287c2-5d0d-4529-82e3-8ac81f3e521c' WHERE AD_PrintFormatItem_ID=51725 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='eca8afc4-51da-4111-b110-08747a97e219' WHERE AD_PrintFormatItem_ID=51726 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='bc96a664-66a5-4d39-bcfb-5efd27bef0d1' WHERE AD_PrintFormatItem_ID=51727 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='ae08b040-ead2-47c4-b4f0-693306ac0115' WHERE AD_PrintFormatItem_ID=51728 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='d0f325bf-3029-41cc-82e0-26e0461475c5' WHERE AD_PrintFormatItem_ID=51729 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='992762c0-f247-4cf4-bfb7-3476cc7198ef' WHERE AD_PrintFormatItem_ID=51730 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='619880f4-c673-4592-8c7b-b3777660944f' WHERE AD_PrintFormatItem_ID=200002 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='5baaf657-2034-45a1-8362-5509a05bdb11' WHERE AD_PrintFormatItem_ID=200003 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='1b1cf064-df12-4a5f-af66-0f35cedc13d5' WHERE AD_PrintFormatItem_ID=200005 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='0b9a9015-7ada-47f8-bfb3-cd48d8a8aff6' WHERE AD_PrintFormatItem_ID=200009 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='4f5c6734-d236-483f-82f1-b905a20e85b6' WHERE AD_PrintFormatItem_ID=200007 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='fddd10df-273e-4660-9430-143e93708efe' WHERE AD_PrintFormatItem_ID=200004 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='d6718646-8009-4c8a-a67b-ced6f5aee911' WHERE AD_PrintFormatItem_ID=200006 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='de9f5daf-96ed-473b-9327-cb8e028acbd0' WHERE AD_PrintFormatItem_ID=200023 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='b7a7eb36-7a5b-4510-9c6f-b61b15e31a1f' WHERE AD_PrintFormatItem_ID=200001 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='e822e936-559f-4815-9836-5f074ed38c65' WHERE AD_PrintFormatItem_ID=200000 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='0597ab68-9c96-4e08-b606-7b8f4059cd49' WHERE AD_PrintFormatItem_ID=200008 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='de1edff6-6777-4726-aaf2-b84171ee7069' WHERE AD_PrintFormatItem_ID=200010 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='df91b0ae-bd54-4e87-aa04-36acfa0a7461' WHERE AD_PrintFormatItem_ID=200011 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='f11704eb-7729-415d-919b-f9491dcbb772' WHERE AD_PrintFormatItem_ID=200014 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='0d2493d0-da96-4116-9056-c4dc5e534d4f' WHERE AD_PrintFormatItem_ID=200015 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='6d734aee-1799-4022-a021-617a76925d45' WHERE AD_PrintFormatItem_ID=200025 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='f193f8e1-df02-4169-ae46-b73acd77220f' WHERE AD_PrintFormatItem_ID=200020 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='bc92b97f-5071-4c94-8521-9f03e6537d20' WHERE AD_PrintFormatItem_ID=200018 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='effa540a-f3b9-47d2-ad1d-6fbfbfe8a691' WHERE AD_PrintFormatItem_ID=200032 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='0ede66ba-d99a-4cfc-a58d-f8607dc1a8f3' WHERE AD_PrintFormatItem_ID=200016 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='773e01bb-b336-4826-9f05-960f3e6aeadf' WHERE AD_PrintFormatItem_ID=200030 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='b34d8bc9-6338-404d-be39-0054dc371007' WHERE AD_PrintFormatItem_ID=200027 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='bae6529a-93c0-446d-8f7d-635927b61cc0' WHERE AD_PrintFormatItem_ID=200029 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='d30864ee-7cf6-4f80-b3ad-c10e04db165e' WHERE AD_PrintFormatItem_ID=200019 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='29056c23-dfd6-4075-ac35-b24c28ce6a1b' WHERE AD_PrintFormatItem_ID=200021 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='32013b19-0199-49e9-aa73-dce431086e36' WHERE AD_PrintFormatItem_ID=200022 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='016149f4-6df2-4b1b-8a6b-c80aae2b63db' WHERE AD_PrintFormatItem_ID=200017 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='da3b0244-df9e-4e92-a5f6-b06fd15ab430' WHERE AD_PrintFormatItem_ID=200024 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='19f6763c-23b3-47fb-99c8-d00c93942b61' WHERE AD_PrintFormatItem_ID=200028 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='ee950dbf-8fe0-45d3-aa7f-e3df52ba5286' WHERE AD_PrintFormatItem_ID=200031 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='8c3f047e-6c20-463b-968f-89647c51439a' WHERE AD_PrintFormatItem_ID=200026 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='fdaa384c-a771-41b0-800c-73d95c181c13' WHERE AD_PrintFormatItem_ID=200045 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='7ca70573-930f-43b2-8553-355e50c930dd' WHERE AD_PrintFormatItem_ID=200049 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='39173248-dd4a-4083-8dd8-302f173cb067' WHERE AD_PrintFormatItem_ID=200033 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='4b9373b2-011b-4b84-ae71-db6c01fb730e' WHERE AD_PrintFormatItem_ID=200064 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='eab7d6cf-d23a-4c2d-bb1f-d1e4e70a9142' WHERE AD_PrintFormatItem_ID=200055 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='baf7f2ad-8950-4c1c-9b52-a0548e858b1b' WHERE AD_PrintFormatItem_ID=200054 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='c1c3a5b3-d8ce-4cf0-a984-52d73451d66d' WHERE AD_PrintFormatItem_ID=200038 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='7b53faf9-dccc-44ea-ad51-5a1ff33428ae' WHERE AD_PrintFormatItem_ID=200037 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='1f8d744d-d8de-4f11-afaf-71d6c1ca380d' WHERE AD_PrintFormatItem_ID=200039 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='6b8a2719-d0a1-4f57-848a-8211a70e3eb5' WHERE AD_PrintFormatItem_ID=200040 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='84bbd538-fd73-4ffe-b8d7-91de16806443' WHERE AD_PrintFormatItem_ID=200034 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='ee40e17d-89e6-4ddb-acf7-f10d15f2eacb' WHERE AD_PrintFormatItem_ID=200043 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='93e8ca1c-106a-4266-af4e-2d251351d7a5' WHERE AD_PrintFormatItem_ID=200048 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='2038c387-3115-4c59-8326-a5083c4aa740' WHERE AD_PrintFormatItem_ID=200053 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='cae22754-0c4b-4e04-b38a-96fd9e08b9a4' WHERE AD_PrintFormatItem_ID=200044 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='46f76e49-59b3-4b18-bda2-a0bf65ce47e6' WHERE AD_PrintFormatItem_ID=200051 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='8c6704ab-2195-47e9-bba7-1a1c8faf5ee8' WHERE AD_PrintFormatItem_ID=200036 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='8e948bc3-75d7-4736-8a2d-f283e7b11b82' WHERE AD_PrintFormatItem_ID=200062 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='f11b9bc4-8a55-4aec-80e1-b0adcb619594' WHERE AD_PrintFormatItem_ID=200063 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='3a1c4cb0-22c1-480c-9a36-8721b9ce6933' WHERE AD_PrintFormatItem_ID=200042 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='239c02ad-314d-40b6-9e5f-edab86efb719' WHERE AD_PrintFormatItem_ID=200052 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='9ee204cc-5d4d-44e9-ba37-912e1d92e58d' WHERE AD_PrintFormatItem_ID=200047 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='1629004b-33ef-4162-9b35-3cb7323f0ec4' WHERE AD_PrintFormatItem_ID=200050 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='0184a219-cd08-40d3-aa64-1107ef55930f' WHERE AD_PrintFormatItem_ID=200056 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='9b699129-7fe1-42e0-ae8a-471594409701' WHERE AD_PrintFormatItem_ID=200061 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='c9fa513b-6653-4d6c-814e-29fd8513561d' WHERE AD_PrintFormatItem_ID=200057 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='5785fc70-b879-4f93-bace-4147cbcfa63d' WHERE AD_PrintFormatItem_ID=200035 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='8f79c732-78a1-4bd2-b93a-69f7b2fb72e6' WHERE AD_PrintFormatItem_ID=200041 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='ecbb0987-806a-4620-b7dd-79bf5e057fdf' WHERE AD_PrintFormatItem_ID=200058 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='7f855535-663a-44f8-b3af-8a0c7c5497f5' WHERE AD_PrintFormatItem_ID=200060 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='4f888e22-17bd-492f-8a8b-73bb0692bf33' WHERE AD_PrintFormatItem_ID=200066 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='41eefe9c-d14f-48fa-b6f5-6f673288c1eb' WHERE AD_PrintFormatItem_ID=200059 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='60ce45c2-00ad-4e50-ad7d-e2baa1b3713d' WHERE AD_PrintFormatItem_ID=200078 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='b562f258-9951-4b4b-b48d-b4db81c6d551' WHERE AD_PrintFormatItem_ID=200065 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='6b7939eb-e4de-4131-8421-50794fa5daa3' WHERE AD_PrintFormatItem_ID=200046 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='c29145d8-1009-459c-972b-5926a714fd0e' WHERE AD_PrintFormatItem_ID=200079 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='e9ab7c1e-9600-43d9-9948-ce10713a401b' WHERE AD_PrintFormatItem_ID=200012 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='4f68bb94-19d4-4a39-ac52-9b88ca80a62d' WHERE AD_PrintFormatItem_ID=200068 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='1c50ac71-5be2-4a09-8927-5f02ae2b0f7a' WHERE AD_PrintFormatItem_ID=200070 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='77e89572-31ad-4574-aedc-96af47e81c3d' WHERE AD_PrintFormatItem_ID=200069 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='0a558791-99df-4698-af3c-49cebf7f7fa4' WHERE AD_PrintFormatItem_ID=200071 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='e9d433ad-2c41-4079-83e3-dc9e24904fe8' WHERE AD_PrintFormatItem_ID=200072 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='a7817071-b186-45de-81ff-211e228568cf' WHERE AD_PrintFormatItem_ID=200073 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='9fd5b010-3337-4c84-9095-aa99baea1a13' WHERE AD_PrintFormatItem_ID=200074 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='dc4237db-8745-4ce2-b730-21460219fe60' WHERE AD_PrintFormatItem_ID=51719 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='1c602e1c-cb4d-4a48-bf20-144c6f6fb9b8' WHERE AD_PrintFormatItem_ID=200084 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='d666e9eb-fafd-4b6c-94e1-cd6e7f5f43c8' WHERE AD_PrintFormatItem_ID=200077 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='e1e39277-128f-4ce9-b2ca-29bc92c11f8a' WHERE AD_PrintFormatItem_ID=200080 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='100715a1-6e05-495c-998b-f70966c630d2' WHERE AD_PrintFormatItem_ID=200082 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='4e5aaecb-c53f-4c2b-bf54-4aea3dbf5485' WHERE AD_PrintFormatItem_ID=200076 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='10b9caa9-fafa-4da9-a399-b99187a30037' WHERE AD_PrintFormatItem_ID=200075 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='c6e3cfd3-7846-416c-99f8-0853830afd2d' WHERE AD_PrintFormatItem_ID=200013 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='14aad2a3-8a8a-4685-b210-52fca315b43e' WHERE AD_PrintFormatItem_ID=200085 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='1749b891-78a0-4f76-9353-2838722f7842' WHERE AD_PrintFormatItem_ID=200081 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='8741733a-b1ce-41f0-b40a-b733014ac2f3' WHERE AD_PrintFormatItem_ID=200067 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='6f8ac12a-6f9a-4760-a4cf-2957b75a03c1' WHERE AD_PrintFormatItem_ID=200083 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='01dad84b-1d2c-4965-ae32-2ffdb7758e5c' WHERE AD_Process_ID=53229 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='e355de9c-6c81-4cac-ac8e-5d12d34fe75c' WHERE AD_Process_ID=53230 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='08bf9a66-cd12-431c-b8eb-6ffb8f9be39a' WHERE AD_Process_ID=53265 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='d081800b-458d-468c-b99f-fa3f8f5fcd9b' WHERE AD_Process_ID=53227 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='93f9a3f1-91a2-4e64-bed6-96464e30037c' WHERE AD_Process_ID=53226 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='dffb0add-700b-4a61-b69f-f772da1d1378' WHERE AD_Process_ID=53228 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='191be2cc-9bb9-4ca0-b280-36edaf51c610' WHERE AD_Process_ID=53264 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='8498cbf2-63fe-4ebf-b3c7-e2146c7d5b0e' WHERE AD_Process_ID=200010 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='38ad0704-5ba9-4a6a-83e2-a65054b4c080' WHERE AD_Process_ID=53208 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='10d75dce-5b1c-427f-bc1d-d6884dc679ad' WHERE AD_Process_ID=53210 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='bcd08a2b-4699-4f40-aa41-fa95eede237b' WHERE AD_Process_ID=53212 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='fc7ef5a4-dca3-4f2a-a542-ca5473990d3f' WHERE AD_Process_ID=53214 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='8d1334c7-213b-4ec2-b532-cfc1fa9300db' WHERE AD_Process_ID=53213 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='b48a9168-4ed0-4f4b-b291-a0c50fd93ecf' WHERE AD_Process_ID=53215 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='1c33a3db-41e3-427d-b001-10b00a70575b' WHERE AD_Process_ID=53207 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='3719aed9-c68b-46b3-b313-9d57cdb77805' WHERE AD_Process_ID=53211 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='55d410ae-0308-4d6a-8a0c-b91b184f097c' WHERE AD_Process_ID=53266 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='9fa8bfaa-3709-46c9-93be-19a9983c73e2' WHERE AD_Process_ID=53267 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='780bfd00-d0d0-4bff-a34d-69939ab05269' WHERE AD_Process_ID=200007 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='bdd3b2a7-26a0-426b-bd08-632c31635d1f' WHERE AD_Process_ID=200006 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='090ab380-b479-4b31-a8f5-ad883aebe1ef' WHERE AD_Process_ID=200000 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='a7ef5332-3edd-4594-af42-13e58c9eb7b8' WHERE AD_Process_Para_ID=53466 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='d8ac1956-92a7-42d6-9d65-b7e131ce5e31' WHERE AD_Process_Para_ID=53459 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='9f15521a-2745-4aef-b204-3b1ed7fbd401' WHERE AD_Process_Para_ID=53461 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='73f4a9c0-4ee6-4523-8357-0ce09e34a634' WHERE AD_Process_Para_ID=53462 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='2039eb9c-7fd5-4f56-90f5-ea1e0b443a85' WHERE AD_Process_Para_ID=53463 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='150caa91-f916-4137-9d0d-a09b9a0d0870' WHERE AD_Process_Para_ID=53464 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='6c8cf1c6-956a-42d1-9af0-f674057fdb04' WHERE AD_Process_Para_ID=53465 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='978a0811-69d9-4f89-8555-44a14b38d1b6' WHERE AD_Process_Para_ID=53460 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='827e086c-5f1b-4aa4-90aa-61fc8d0322de' WHERE AD_Process_Para_ID=53526 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='b3b419dc-d061-497a-8182-2e3f4e207257' WHERE AD_Process_Para_ID=53527 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='63faac5e-4521-4651-96dc-b7f9c06083a5' WHERE AD_Process_Para_ID=53528 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='61a34161-c8bb-4e58-9a82-2a187455b3e5' WHERE AD_Process_Para_ID=53525 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='4a82d150-e2cf-4cc2-aa0b-648551c8243d' WHERE AD_Process_Para_ID=53524 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='6e2b7294-e8d4-467a-9379-389c5ed16118' WHERE AD_Process_Para_ID=53523 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='4da38235-105f-4067-99af-c523fc05cab1' WHERE AD_Process_Para_ID=53517 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='f9338c01-6cd2-499b-8562-3355d4922fcc' WHERE AD_Process_Para_ID=53518 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='cff5e281-7ba4-4c5d-b40c-9da9c2bc879b' WHERE AD_Process_Para_ID=53519 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='78272acd-c8d5-4177-a619-610bc0ccaf3b' WHERE AD_Process_Para_ID=53521 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='47d7a84a-32d2-46a7-b7c1-e63ecfbc1d2e' WHERE AD_Process_Para_ID=200041 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='d1e76a8d-5771-4104-bb4a-008d25722588' WHERE AD_Process_Para_ID=200042 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='55d972ee-2341-48d0-90d9-c383daace692' WHERE AD_Process_Para_ID=53520 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='054faa84-27d8-4fb3-9c64-1e81ead1ab3c' WHERE AD_Process_Para_ID=53522 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='5b9f4efd-a1a3-4046-a534-a0a7e1b09c19' WHERE AD_Process_Para_ID=200036 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='222c7938-9b8e-4301-9363-611c6d6cc729' WHERE AD_Process_Para_ID=200037 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='b95cc651-a05d-482c-8e10-392cceb3874d' WHERE AD_Process_Para_ID=200038 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='27d315be-1ca0-4393-9ee7-b600a9b7bc15' WHERE AD_Process_Para_ID=200039 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='07033e00-6aa0-4796-aed4-d9a21cac579e' WHERE AD_Process_Para_ID=53516 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='933bf575-bfb5-41ae-9a06-480cc000d058' WHERE AD_Process_Para_ID=200040 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='9758dc2c-bf41-4a61-ac89-0c7721dba370' WHERE AD_Process_Para_ID=53412 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='5cbbd447-7a37-48c6-b06f-60dd8be2ba02' WHERE AD_Process_Para_ID=53413 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='50518da6-1a2a-4fa6-8de6-e4743dbff4a3' WHERE AD_Process_Para_ID=53414 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='ba3a79b3-57a1-4c78-a240-a9f2a2e11ec5' WHERE AD_Process_Para_ID=53415 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='effbc323-d585-47f9-ad23-8cf491ec1a35' WHERE AD_Process_Para_ID=53416 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='6d4f59ed-5f47-4761-9a0a-b956b21aa6da' WHERE AD_Process_Para_ID=53417 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='cfea5f2d-5d51-4c0e-bf6c-5494dffdf65b' WHERE AD_Process_Para_ID=53418 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='b4288d43-069d-4fcd-81cb-3d2d0d582d47' WHERE AD_Process_Para_ID=200000 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='97118695-b8f5-4600-bb60-27812d462fc9' WHERE AD_Process_Para_ID=200001 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='49d4339e-02b3-4e15-964f-e9bba7dd2d51' WHERE AD_Process_Para_ID=200002 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Reference SET AD_Reference_UU='eca497f3-bfd7-4b8b-b861-1e510877f605' WHERE AD_Reference_ID=53412 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Reference SET AD_Reference_UU='fecfd227-3c55-4ca7-bec7-bd66a7406005' WHERE AD_Reference_ID=200008 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Reference SET AD_Reference_UU='7b48dd14-d089-400c-b16d-50031f6727b8' WHERE AD_Reference_ID=53357 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Reference SET AD_Reference_UU='21572c14-4801-499a-a2cd-0c1c9c1230ba' WHERE AD_Reference_ID=53358 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Reference SET AD_Reference_UU='f973985f-3064-40de-b097-baed00bb8d5d' WHERE AD_Reference_ID=53359 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Reference SET AD_Reference_UU='4d85e435-2f2b-4b11-b080-6b71c7fc2acd' WHERE AD_Reference_ID=53360 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Reference SET AD_Reference_UU='4fa96274-d213-4780-85dd-8c5109c7e1bf' WHERE AD_Reference_ID=53361 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Reference SET AD_Reference_UU='b09cf99b-4e59-4062-916a-fdb5a3bbb49e' WHERE AD_Reference_ID=53362 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Reference SET AD_Reference_UU='e4da3901-4a0f-409b-a84a-ec00d064d287' WHERE AD_Reference_ID=53363 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Reference SET AD_Reference_UU='e792608b-74cb-456f-9fcd-4735b1860a59' WHERE AD_Reference_ID=53364 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Reference SET AD_Reference_UU='559c5ec8-a55d-4145-ac12-8058aa9dfd93' WHERE AD_Reference_ID=53365 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Reference SET AD_Reference_UU='a3ea7a5e-3270-48c7-8d62-fcbd8a6a0b74' WHERE AD_Reference_ID=53366 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='b1964785-5ba4-4522-8661-5d34d78452e3' WHERE AD_Ref_List_ID=53708 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='571f15cf-8cb1-49a4-b1ad-997905b5acd8' WHERE AD_Ref_List_ID=53709 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='e0e8a2fc-a8ad-486f-957c-4c8417d5f5e6' WHERE AD_Ref_List_ID=53710 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='20e2b476-b0fd-48ae-85ac-cf6d165a8012' WHERE AD_Ref_List_ID=200027 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='ae07960f-9620-4c40-bff7-3171d1f52a10' WHERE AD_Ref_List_ID=200028 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='f17a68c5-0488-4718-a249-dd1f96c0f77f' WHERE AD_Ref_List_ID=200029 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='d2cdd31e-4373-4f35-8d01-22946c3c6211' WHERE AD_Ref_List_ID=53587 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='dd8c1848-6fb8-4829-8855-7c3b314514fd' WHERE AD_Ref_List_ID=53588 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='583c5228-ad5d-48cd-819b-97673805b1fa' WHERE AD_Ref_List_ID=53589 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='3f742175-42b0-4775-9eb3-ed5fefd0ca7a' WHERE AD_Ref_List_ID=53590 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='785b94f6-fbd7-49a7-b752-45a6d0df3888' WHERE AD_Ref_List_ID=53591 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='9ac1f818-4159-463f-81c4-b55923e94c9e' WHERE AD_Ref_List_ID=53592 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='b2aa86a9-566c-4762-98d5-c4b5c243a2cd' WHERE AD_Ref_List_ID=53593 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='fee6717e-7137-4035-9a83-bb96a6d111f8' WHERE AD_Ref_List_ID=53594 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='538261b3-5e19-445d-b54d-350c9b9fac92' WHERE AD_Ref_List_ID=53595 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='c72b48b9-f248-4e9d-9fd8-4afae918bef8' WHERE AD_Ref_List_ID=53596 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='c81b8475-74d3-41d5-8ff5-6de9e2db2436' WHERE AD_Ref_List_ID=53597 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='084daa2e-0720-47e2-8923-01793426c9a2' WHERE AD_Ref_List_ID=53598 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='3a74baee-45d7-4d09-84eb-37efa01e9ca0' WHERE AD_Ref_List_ID=53599 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='194f5d34-a04e-48c2-8e5a-8a81c326657c' WHERE AD_Ref_List_ID=53600 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='1bddac4c-bcc8-4758-8630-d80555b14a62' WHERE AD_Ref_List_ID=53601 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='2d7b24ae-5735-41a6-88f6-7aa5cc143493' WHERE AD_Ref_List_ID=53602 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='51a1b186-6af4-4373-9788-f9105aa65cfa' WHERE AD_Ref_List_ID=53603 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='3773d29e-2de2-42bb-a4f9-8b5bfbe771ac' WHERE AD_Ref_List_ID=53604 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='b689ef67-35b6-40c2-b0cb-18417d71b3dc' WHERE AD_Ref_List_ID=53605 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='6fafcbd4-e411-4d4e-ae98-6eb7b5f74f1c' WHERE AD_Ref_List_ID=53606 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='542d4bc6-837a-456a-8fb4-70ab76215909' WHERE AD_Ref_List_ID=53607 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='90cce63c-ef32-4917-97cc-e98bf04c7378' WHERE AD_Ref_List_ID=53608 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='31cd23ed-e20c-43e6-a12a-635f675e23d9' WHERE AD_Ref_List_ID=53609 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='6939008f-29e0-49b8-a30b-206b28c0d2b1' WHERE AD_Ref_List_ID=53610 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='934235d6-5b13-477f-a2b9-0b194a048d91' WHERE AD_Ref_List_ID=53611 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='44c8053c-dead-4cd4-97a8-920ef2aa7919' WHERE AD_Ref_List_ID=53612 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='09f9094c-2674-4f58-878b-a32e5a38b4d4' WHERE AD_Ref_List_ID=53613 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='3392ad55-541f-4a2e-ba62-c92a28f6421d' WHERE AD_Ref_List_ID=53614 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='a45dcc33-c973-4744-955e-dd24518ef099' WHERE AD_Ref_List_ID=200039 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='755ad6f9-b471-4e05-830d-45724bea861a' WHERE AD_Ref_List_ID=53711 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='177e543a-45ef-4cb6-bf4e-b957f711ae41' WHERE AD_Ref_List_ID=53712 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Ref_Table SET AD_Ref_Table_UU='2e639216-f95e-4383-b0e2-cc14cf44217c',Updated=TO_DATE('2012-10-31 12:37:52','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Reference_ID=53357 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Ref_Table SET AD_Ref_Table_UU='7b06011c-d8e4-4250-8136-020621be36f0',Updated=TO_DATE('2012-10-31 12:37:52','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Reference_ID=53358 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Ref_Table SET AD_Ref_Table_UU='c174d0f0-b41d-44c6-bc3b-b5720be8e040',Updated=TO_DATE('2012-10-31 12:37:52','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Reference_ID=53362 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Ref_Table SET AD_Ref_Table_UU='35c39fa8-c329-49be-b7c1-4ad24a2ff53c',Updated=TO_DATE('2012-10-31 12:37:52','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Reference_ID=53366 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Ref_Table SET AD_Ref_Table_UU='e6fb8d40-0bc7-4c17-9c4a-117515ca3bdc',Updated=TO_DATE('2012-10-31 12:37:52','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Reference_ID=53363 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_ReportView SET AD_ReportView_UU='42709692-254a-42c7-976e-ace3c57ba296' WHERE AD_ReportView_ID=53038 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_ReportView SET AD_ReportView_UU='7274b1e6-2041-4276-bf29-f6e76262b2e8' WHERE AD_ReportView_ID=53039 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Schedule SET AD_Schedule_UU='5a06dc76-704e-40f5-bfcf-724829332c50' WHERE AD_Schedule_ID=200000 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Schedule SET AD_Schedule_UU='4f00c688-f09e-4de1-bf8f-843eb880b0b8' WHERE AD_Schedule_ID=200001 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Schedule SET AD_Schedule_UU='7e846d4a-4493-4672-a764-1f34a9d0166f' WHERE AD_Schedule_ID=200002 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Schedule SET AD_Schedule_UU='611de4e7-beef-4914-a826-30d9b9e1be6d' WHERE AD_Schedule_ID=200003 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Schedule SET AD_Schedule_UU='d113fb57-99fd-4ced-98be-40f59ad6b0d6' WHERE AD_Schedule_ID=200004 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='934d6b0f-5206-405b-8d13-b2960e6e39df' WHERE AD_Sequence_ID=200021 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='4da6d4d5-23da-4563-9e5b-4b64c33c0358' WHERE AD_Sequence_ID=200022 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='f9e4cea4-6bfb-479f-9ec0-edc4a0631053' WHERE AD_Sequence_ID=200023 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='cc18290e-4601-4741-a9d0-cb868f710966' WHERE AD_Sequence_ID=53381 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='39e05cd2-73a3-4db6-a362-098e222aa366' WHERE AD_Sequence_ID=53386 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='5d902ee3-1184-45ba-8447-8c53c2859c30' WHERE AD_Sequence_ID=53382 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='2165541e-5001-46f7-80c3-82076cdc06c4' WHERE AD_Sequence_ID=53387 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='8733e529-cfa8-4390-a859-93a99d51bb2c' WHERE AD_Sequence_ID=53388 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='4d4bae0e-f7f3-413a-b477-7031d0596bc6' WHERE AD_Sequence_ID=53385 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='99c378f6-73c8-478f-a3d8-147230624ee5' WHERE AD_Sequence_ID=53391 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='c4d5f799-c3aa-4c30-9d57-751dd37738f1' WHERE AD_Sequence_ID=53445 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='b6662c9f-d215-4fa8-9d20-44d07a62bade' WHERE AD_Sequence_ID=53444 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='d6bbf8b7-659a-43a1-97c7-ff8fb13d2520' WHERE AD_Sequence_ID=53443 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='380ef91b-d162-49c9-8763-fc4581c7552b' WHERE AD_Sequence_ID=53442 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='83633895-36cf-4b72-ba78-47bc3df1e62c' WHERE AD_Sequence_ID=53446 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='b02502df-4de3-4249-9b5e-9c98ec4aabb7' WHERE AD_Tab_ID=53424 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='1b80c9c3-9773-4138-870c-96487f25bdc8' WHERE AD_Tab_ID=53421 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='68fee7b9-f80d-48a6-8a9f-679dbbb3ac97' WHERE AD_Tab_ID=53422 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='93387805-3a24-4c13-af43-72a7356e0930' WHERE AD_Tab_ID=53423 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='bae1dc79-bd36-4935-954d-9378114c3bdd' WHERE AD_Tab_ID=53344 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='8cc500ac-bb02-48c1-a5dc-4c3ddc345979' WHERE AD_Tab_ID=53345 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='f30d9e5b-a2f4-4259-a819-680ddcf2aa33' WHERE AD_Tab_ID=53346 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='59b33b9c-85d2-48ee-a22b-a4b2c91d4cbb' WHERE AD_Tab_ID=53347 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='1344f3e1-f59e-43b3-bfd2-98241a142397' WHERE AD_Tab_ID=200020 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='30d7b4da-8e61-4d22-9038-a26a27dab00e' WHERE AD_Tab_ID=200022 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='736a5f16-ec33-406b-8b8d-917a1cd214ce' WHERE AD_Tab_ID=200021 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='9a599cee-85ca-45e5-a3d0-6c51a45bc83e' WHERE AD_Tab_ID=53320 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='d072f6c0-cc39-4960-9de9-3c0c8effc804' WHERE AD_Tab_ID=53321 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='f640b449-8371-40e1-b7ac-9111a1f89f25' WHERE AD_Tab_ID=53322 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='65faeec2-d493-4df0-8b4f-2ac2623cc572' WHERE AD_Tab_ID=53323 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='e20d585b-44e5-4faf-9353-cbe7fdf929ba' WHERE AD_Tab_ID=53324 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='7375c1e1-a713-4769-8087-c9da6c47fd7b' WHERE AD_Tab_ID=53325 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='3da7ff79-21ec-453a-9237-f098767aa255' WHERE AD_Tab_ID=53326 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='2433e0ad-a36d-4d31-a4f2-e8d8cc29d3f9' WHERE AD_Tab_ID=53327 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='527a9f85-2887-4172-a21d-db9e6f573dc2' WHERE AD_Tab_ID=53328 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Tab SET AD_Tab_UU='eac71ce6-ecd4-4e6a-9a54-492c476de399' WHERE AD_Tab_ID=53329 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Tab SET AD_Tab_UU='0871c486-143b-44a7-b0db-eb1eee42317b' WHERE AD_Tab_ID=53330 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Tab SET AD_Tab_UU='3ea88d92-a7fe-4273-8920-83ebc12bb6c9' WHERE AD_Tab_ID=53331 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Tab SET AD_Tab_UU='329793b0-2b48-44bd-9434-4f1da74b0ad8' WHERE AD_Tab_ID=53332 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Tab SET AD_Tab_UU='d4623147-7c29-4e47-aa67-b83ed6a429dc' WHERE AD_Tab_ID=53333 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Tab SET AD_Tab_UU='11f10490-012f-41cf-8cdf-181714e4bbfa' WHERE AD_Tab_ID=53334 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='d021a6e4-17ae-4795-bc44-ed34a19a6510' WHERE AD_Table_ID=53331 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='2371504c-e412-4f54-bd37-cc9404bb1549' WHERE AD_Table_ID=53332 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='6cf11163-e551-401a-bf94-38a8d702bf26' WHERE AD_Table_ID=53333 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='3c62e8d7-88d3-4b43-a390-e3b0c045596d' WHERE AD_Table_ID=200021 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='8592177a-29a3-47bc-bc53-ccf1e5ad3066' WHERE AD_Table_ID=200022 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='98d91406-da1c-4f84-bb28-19fb7fb50954' WHERE AD_Table_ID=200023 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='e9d44e81-683a-45d4-9c7a-1de113749c2e' WHERE AD_Table_ID=53269 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='1cfd77a4-f1ae-401b-8419-6e6b159cae30' WHERE AD_Table_ID=53270 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='dbed41a4-356a-42b0-bfbb-35b02a02c0a6' WHERE AD_Table_ID=53273 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='84fd14f9-63f1-4032-bf56-81985711a622' WHERE AD_Table_ID=53274 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='2e0ef211-84d9-4f6f-9cd9-dd6f8d9e4fb6' WHERE AD_Table_ID=53276 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='80a3b143-dc22-4c02-a316-1200d2d2223c' WHERE AD_Table_ID=53277 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='4e27b936-4655-4645-8ff5-910aae71458a' WHERE AD_Table_ID=53275 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='09464288-b31a-4d96-a035-9830676fb7a8' WHERE AD_Table_ID=53334 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='2e394589-4dd9-4618-882b-c72763b6ada8' WHERE AD_Table_ID=53335 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='9972e3b4-8204-41b5-9626-f92953ea4e7e',Updated=TO_DATE('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53350 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='bdc95980-5b49-4aee-a3eb-860670c48004',Updated=TO_DATE('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53351 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='fb1c0edd-05fb-4111-81d0-892d324f8411',Updated=TO_DATE('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53298 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='a5d5f564-aabd-442b-a468-f263945f5df2',Updated=TO_DATE('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53299 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='b13155e9-05a6-4995-9d3b-43322786fe75',Updated=TO_DATE('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53300 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='5239b566-b165-416f-9261-2fc9ab184e1b',Updated=TO_DATE('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53301 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='a8bf7e8e-7651-44fb-86d8-866087c96fc1',Updated=TO_DATE('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53352 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='72b6262a-3b70-4623-b30b-f6330d64c890',Updated=TO_DATE('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53302 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='dd1d7547-2207-4112-a310-232ac3fd5eac',Updated=TO_DATE('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53353 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='76ab48f1-b874-419a-857a-534056460eab',Updated=TO_DATE('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53354 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='e0b7f711-d653-4530-8a16-b96f87e813aa',Updated=TO_DATE('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53297 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='d4be133b-8ef1-44aa-a9d4-72132d806e1e',Updated=TO_DATE('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53296 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='17d9565c-1b03-4003-909a-bb72ef060870',Updated=TO_DATE('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=200019 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='bb059ad7-e620-4e7f-8308-700c4cda7145',Updated=TO_DATE('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53284 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='15b4a04c-7d43-400f-a928-05b4cd1c6fc8',Updated=TO_DATE('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53275 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='4df6d60d-3822-40ee-8403-b1a895388c87',Updated=TO_DATE('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=200022 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='acc028a2-c5e4-4c23-aeec-5b8c9b3adabe',Updated=TO_DATE('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53278 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='f8ea14b2-18fa-4e44-9588-2bbe70804aeb',Updated=TO_DATE('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53280 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='19b67207-87f5-4ad4-98e6-a36713327a23',Updated=TO_DATE('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53273 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='7664ff03-aaf3-461c-9650-eafa934d2dba',Updated=TO_DATE('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53274 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='22bd605e-0292-4c65-b4ea-04b1cd9d94de',Updated=TO_DATE('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53277 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='efda1cf3-37d5-422d-8d10-1cb0f48989cf',Updated=TO_DATE('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=200006 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Val_Rule SET AD_Val_Rule_UU='e91138fe-02be-4550-a416-a7789271e1f3' WHERE AD_Val_Rule_ID=52107 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Val_Rule SET AD_Val_Rule_UU='20ab7244-5ef5-4e36-89b0-dffbb6aea710' WHERE AD_Val_Rule_ID=52103 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Val_Rule SET AD_Val_Rule_UU='1d20954f-a861-4cf2-9faf-41e02cdbe492' WHERE AD_Val_Rule_ID=52085 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Val_Rule SET AD_Val_Rule_UU='39d7e0b5-fd71-40f6-896e-0b4890042e26' WHERE AD_Val_Rule_ID=52086 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Val_Rule SET AD_Val_Rule_UU='d9faac16-89ab-436c-825a-93c6ef67b856' WHERE AD_Val_Rule_ID=52087 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Val_Rule SET AD_Val_Rule_UU='210605aa-cb67-4f67-9b2c-6afef55c5db8' WHERE AD_Val_Rule_ID=52088 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='7bc9a1ea-b3bd-47a3-b3d7-779122d35e19' WHERE AD_WF_Node_ID=50119 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='03e0a743-98f5-4c1c-b063-d21a6a32a223' WHERE AD_WF_Node_ID=50118 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='0d0a12ea-17b9-435a-b899-4f43c3b1feae' WHERE AD_WF_Node_ID=50117 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='b96fb19e-f4aa-41b2-a606-80610993d312' WHERE AD_WF_Node_ID=50116 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='f46db649-e7ed-4418-9db2-f801b3ed1de1' WHERE AD_WF_Node_ID=50115 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='d26db474-ddd1-4e0e-a8fa-80c7d2ed3c7c' WHERE AD_WF_Node_ID=50114 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='9a48251f-6df2-4c12-bf98-a5eb389092e5' WHERE AD_WF_Node_ID=50113 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='0ca15c22-dea4-49d3-9a45-6453598cba0c' WHERE AD_WF_Node_ID=50112 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='21db49c7-d167-4541-9dd6-9c3dfb14bce0' WHERE AD_WF_Node_ID=50111 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='d9b46b02-1a4a-4a6e-b93f-e3e633e4a48f' WHERE AD_WF_Node_ID=50110 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='a69e80d5-3410-47ed-81d6-429d4665d5f4' WHERE AD_WF_Node_ID=50109 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='706799c2-ad46-449a-b1b9-eb935c924fda' WHERE AD_WF_Node_ID=50108 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='92eed90a-24b4-49f7-a2d4-f7eb02110886' WHERE AD_WF_Node_ID=50107 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='ae4fba70-bc1b-4a5d-b3ed-7051f7e9e242' WHERE AD_WF_Node_ID=50106 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='e9d115ef-345a-4776-9760-ea1879bdbab3' WHERE AD_WF_Node_ID=50105 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='f8c995c5-2fcd-4dc0-9b64-c8038a738977' WHERE AD_WF_Node_ID=50104 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='e30aad8c-7285-4cbf-a1ac-8e77123538dc' WHERE AD_WF_Node_ID=50103 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='f19c7bfb-fa3f-4a80-a5df-7d1c07eac822' WHERE AD_WF_Node_ID=50102 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='91862fab-23dc-49fa-b8a3-fe52a1683958' WHERE AD_WF_Node_ID=50101 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='65454e3e-e8e1-474a-9f87-4f090f1111a5' WHERE AD_WF_Node_ID=50100 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='7ed25afb-93ff-43b1-b3ec-833cacdc2277' WHERE AD_WF_Node_ID=50099 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='0e78b468-b218-4ee4-99c3-897718208577' WHERE AD_WF_NodeNext_ID=50076 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='e5f362e7-01d3-41f2-ac64-13dfaec28b98' WHERE AD_WF_NodeNext_ID=50077 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='c25a08ea-f5d4-4f5c-81ac-fb2dafaeba3c' WHERE AD_WF_NodeNext_ID=50078 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='f4d807bb-34b7-4555-a590-540f21e4f40c' WHERE AD_WF_NodeNext_ID=50079 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='fd0d064d-2a73-4463-bbf5-150b895be7ed' WHERE AD_WF_NodeNext_ID=50080 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='3306692d-0be7-4069-99ec-70deaf01b828' WHERE AD_WF_NodeNext_ID=50081 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='d37e285d-4567-4df8-b72c-7c8fbf11a297' WHERE AD_WF_NodeNext_ID=50082 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='aea5ff87-23fb-4730-84ba-6006878ecf6b' WHERE AD_WF_NodeNext_ID=50083 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='c203bdbb-f27e-49c2-afc5-ea475abdf560' WHERE AD_WF_NodeNext_ID=50084 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='f2f4f328-6dc9-4758-a450-da23ab6b6143' WHERE AD_WF_NodeNext_ID=50085 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='28029f3d-7cd4-4f91-b118-88fc22e68d11' WHERE AD_WF_NodeNext_ID=50086 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='d2be1873-599d-457f-8cb4-7190238dbeef' WHERE AD_WF_NodeNext_ID=50087 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='ae51336b-69d5-4dea-975c-c3d0fcd0fa87' WHERE AD_WF_NodeNext_ID=50088 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='089b9d8f-597d-49cb-b04d-9c77bff08f46' WHERE AD_WF_NodeNext_ID=50089 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='eaa48812-9c88-48c7-ad5e-fbbf8d4ea20a' WHERE AD_WF_NodeNext_ID=50090 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Window SET AD_Window_UU='2b7e7326-03e2-4cda-b08f-9bdb1ffdfc76' WHERE AD_Window_ID=53127 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Window SET AD_Window_UU='10c8b478-026c-4271-9718-5af0e7508809' WHERE AD_Window_ID=53149 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Window SET AD_Window_UU='f57c0ae5-ffd8-4204-a06d-81dd92afe970' WHERE AD_Window_ID=53150 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Window SET AD_Window_UU='54caabc1-2c76-428d-aa3a-67bc0f2b0f01' WHERE AD_Window_ID=53128 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Window SET AD_Window_UU='c71f6172-b7a1-4b31-b3ad-64b159e36f6d' WHERE AD_Window_ID=200013 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Window SET AD_Window_UU='ab45042b-d29e-480a-87f2-0e37ed6009b4' WHERE AD_Window_ID=53113 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Window SET AD_Window_UU='cd319295-edb3-45c9-937d-994bf4eef911' WHERE AD_Window_ID=53114 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Window SET AD_Window_UU='5201561c-7f0c-4616-9af6-b2677131f369' WHERE AD_Window_ID=53115 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Window SET AD_Window_UU='a3b6f7bb-d7c7-4e6a-9fe9-d9cd36b330c3' WHERE AD_Window_ID=53116 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Window SET AD_Window_UU='d53bfb77-65a5-46d0-b5da-e2fae2780813' WHERE AD_Window_ID=53117 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Window SET AD_Window_UU='5ef56311-286f-486c-9e76-9bd4d35b45c6' WHERE AD_Window_ID=53118 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Window SET AD_Window_UU='152fb55d-1202-44af-b9fe-e58ca79afee6' WHERE AD_Window_ID=53119 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Window SET AD_Window_UU='09015076-dbe5-414a-aa75-9349e7b293a1' WHERE AD_Window_ID=53120 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Workflow SET AD_Workflow_UU='08d3aa3b-93af-4315-b48d-2d3b67d2dbf4' WHERE AD_Workflow_ID=50020 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Workflow SET AD_Workflow_UU='2ca718db-2a56-4129-bca6-d8d2f4771d6a' WHERE AD_Workflow_ID=50021 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Workflow SET AD_Workflow_UU='660d41be-1e1e-4aef-b8d8-d4561739795a' WHERE AD_Workflow_ID=50022 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Workflow SET AD_Workflow_UU='d644a5d9-eb86-4364-b139-052d6f13eeb1' WHERE AD_Workflow_ID=50023 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Workflow SET AD_Workflow_UU='c5b88966-f5fb-4172-bf28-8430df246ef3' WHERE AD_Workflow_ID=50024 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE C_BankAccount_Processor SET C_BankAccount_Processor_UU='f4a64026-bf68-4c8c-b238-8cdf006aae04',Updated=TO_DATE('2012-10-31 12:37:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_BankAccount_ID=100 AND C_PaymentProcessor_ID=100 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE C_BankAccount_Processor SET C_BankAccount_Processor_UU='f8f892f0-36ab-4b4d-9dd3-c3bbe12cf455',Updated=TO_DATE('2012-10-31 12:37:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_BankAccount_ID=101 AND C_PaymentProcessor_ID=101 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='93d7ed15-c0f0-485b-b1f9-92b2b4632e05' WHERE M_Product_BOM_ID=200004 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='aeaa80f1-cc81-4ef0-8d59-7a29da1b95bb' WHERE M_Product_BOM_ID=200005 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='47d7e300-ba02-466c-ab7c-486efe32c638' WHERE M_Product_BOM_ID=200006 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='d3f8f3de-d1c6-4e5c-ac1e-bf1a187a5817' WHERE M_Product_BOM_ID=200007 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='b601ee07-07ca-495c-906b-732c901326a0' WHERE M_Product_BOM_ID=200008 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='04fb5679-f8d0-4f4d-a6e2-e57dc7a8fdaa' WHERE M_Product_BOM_ID=200009 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='839618d6-10ba-4b94-8d10-7f333a39bad9' WHERE M_Product_BOM_ID=200010 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='f63ae4e9-fff4-4c28-8db2-c7dbcf3766ef' WHERE M_Product_BOM_ID=200011 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='cd9153bc-4c6a-4a09-9e56-7646ddcb2a4f' WHERE M_Product_BOM_ID=200012 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='67587202-c34b-4c3d-9dc2-57329c2b76d2' WHERE M_Product_BOM_ID=200013 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='64901e8f-0013-4b6a-a518-3294c26e1eec' WHERE M_Product_BOM_ID=200014 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='f8fea7e3-d0c4-49cb-a606-31d4d688720b' WHERE M_Product_BOM_ID=200015 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='a382444d-7295-474b-be8a-5b8d8e9c5532' WHERE M_Product_BOM_ID=200016 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='e5f40e8e-7f33-4f6a-a1ba-1217bc6ac360' WHERE M_Product_BOM_ID=200017 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='8c886e3e-e14c-4088-a49d-79e0e95149d0' WHERE M_Product_BOM_ID=200018 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='00ed7504-44e9-495c-864d-42e6551d6d6a' WHERE M_Product_BOM_ID=200019 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='0977d78b-df7f-43c2-acbd-b02b7d4a1f9d' WHERE M_Product_BOM_ID=200020 +; + +SELECT register_migration_script('954_UUID_Sync.sql') FROM dual +; + diff --git a/migration/360lts-release/oracle/955_FixWrongEntityTypes.sql b/migration/360lts-release/oracle/955_FixWrongEntityTypes.sql new file mode 100644 index 0000000000..4ae6326895 --- /dev/null +++ b/migration/360lts-release/oracle/955_FixWrongEntityTypes.sql @@ -0,0 +1,29 @@ +UPDATE AD_Process SET EntityType = 'D' WHERE EntityType = 'U' AND AD_Process_ID<1000000; + +UPDATE AD_Process_Para SET EntityType = 'D' WHERE EntityType = 'U' AND AD_Process_Para_ID<1000000; + +UPDATE AD_ReportView SET EntityType = 'D' WHERE EntityType = 'U' AND AD_ReportView_ID<1000000; + +UPDATE AD_Field SET EntityType = 'D' WHERE EntityType = 'U' AND AD_Field_ID<1000000; + +UPDATE AD_Element SET EntityType = 'D' WHERE EntityType = 'U' AND AD_Element_ID<1000000; + +UPDATE AD_Val_Rule SET EntityType = 'D' WHERE EntityType = 'U' AND AD_Val_Rule_ID<1000000; + +UPDATE AD_Reference SET EntityType = 'D' WHERE EntityType = 'U' AND AD_Reference_ID<1000000; + +UPDATE AD_Menu SET EntityType = 'D' WHERE EntityType = 'U' AND AD_Menu_ID<1000000; + +UPDATE AD_Ref_List SET EntityType = 'D' WHERE EntityType = 'U' AND AD_Ref_List_ID<1000000; + +UPDATE AD_Column SET EntityType = 'D' WHERE EntityType = 'U' AND AD_Column_ID<1000000; + +UPDATE AD_Table SET EntityType = 'D' WHERE EntityType = 'U' AND AD_Table_ID<1000000; + +UPDATE AD_Message SET EntityType = 'D' WHERE EntityType = 'U' AND AD_Message_ID<1000000; + +UPDATE AD_Window SET EntityType = 'D' WHERE EntityType = 'U' AND AD_Window_ID<1000000; + +SELECT register_migration_script('955_FixWrongEntityTypes.sql') FROM dual +; + diff --git a/migration/360lts-release/oracle/956_ForeignKeys.sql b/migration/360lts-release/oracle/956_ForeignKeys.sql new file mode 100644 index 0000000000..33de9bbab3 --- /dev/null +++ b/migration/360lts-release/oracle/956_ForeignKeys.sql @@ -0,0 +1,381 @@ +ALTER TABLE A_Asset ADD (CONSTRAINT AAssetClass_AAsset FOREIGN KEY (A_Asset_Class_ID) REFERENCES A_Asset_Class); + +ALTER TABLE A_Asset ADD (CONSTRAINT AAssetType_AAsset FOREIGN KEY (A_Asset_Type_ID) REFERENCES A_Asset_Type); + +ALTER TABLE A_Asset ADD (CONSTRAINT CActivity_AAsset FOREIGN KEY (C_Activity_ID) REFERENCES C_Activity); + +ALTER TABLE A_Asset_Acct ADD (CONSTRAINT ADepreciationF_AAssetAcct FOREIGN KEY (A_Depreciation_F_ID) REFERENCES A_Depreciation); + +ALTER TABLE A_Asset_Acct ADD (CONSTRAINT ADepreciationConvF_AAssetAcct FOREIGN KEY (A_Depreciation_Conv_F_ID) REFERENCES A_Depreciation_Convention); + +ALTER TABLE A_Asset_Acct ADD (CONSTRAINT ADepreciationMethodF_AAssetAcc FOREIGN KEY (A_Depreciation_Method_F_ID) REFERENCES A_Depreciation_Method); + +ALTER TABLE A_Asset_Addition ADD (CONSTRAINT CCharge_AAssetAddition FOREIGN KEY (C_Charge_ID) REFERENCES C_Charge); + +ALTER TABLE A_Asset_Addition ADD (CONSTRAINT CConversionType_AAssetAddition FOREIGN KEY (C_ConversionType_ID) REFERENCES C_ConversionType); + +ALTER TABLE A_Asset_Addition ADD (CONSTRAINT CCurrency_AAssetAddition FOREIGN KEY (C_Currency_ID) REFERENCES C_Currency); + +ALTER TABLE A_Asset_Addition ADD (CONSTRAINT CProject_AAssetAddition FOREIGN KEY (C_Project_ID) REFERENCES C_Project); + +ALTER TABLE A_Asset_Addition ADD (CONSTRAINT IFixedAsset_AAssetAddition FOREIGN KEY (I_FixedAsset_ID) REFERENCES I_FixedAsset); + +ALTER TABLE A_Asset_Addition ADD (CONSTRAINT MInOutLine_AAssetAddition FOREIGN KEY (M_InOutLine_ID) REFERENCES M_InOutLine); + +ALTER TABLE A_Asset_Addition ADD (CONSTRAINT MMatchInv_AAssetAddition FOREIGN KEY (M_MatchInv_ID) REFERENCES M_MatchInv); + +ALTER TABLE A_Asset_Addition ADD (CONSTRAINT MProduct_AAssetAddition FOREIGN KEY (M_Product_ID) REFERENCES M_Product); + +ALTER TABLE A_Asset_Change ADD (CONSTRAINT CBPartner_AAssetChange FOREIGN KEY (C_BPartner_ID) REFERENCES C_BPartner); + +ALTER TABLE A_Asset_Disposed ADD (CONSTRAINT AAsset_AAssetDisposed FOREIGN KEY (A_Asset_ID) REFERENCES A_Asset); + +ALTER TABLE A_Asset_Disposed ADD (CONSTRAINT CInvoice_AAssetDisposed FOREIGN KEY (C_Invoice_ID) REFERENCES C_Invoice); + +ALTER TABLE A_Asset_Disposed ADD (CONSTRAINT CInvoiceLine_AAssetDisposed FOREIGN KEY (C_InvoiceLine_ID) REFERENCES C_InvoiceLine); + +ALTER TABLE A_Asset_Group ADD (CONSTRAINT AAssetClass_AAssetGroup FOREIGN KEY (A_Asset_Class_ID) REFERENCES A_Asset_Class); + +ALTER TABLE A_Asset_Group ADD (CONSTRAINT AAssetType_AAssetGroup FOREIGN KEY (A_Asset_Type_ID) REFERENCES A_Asset_Type); + +ALTER TABLE A_Asset_Group_Acct ADD (CONSTRAINT ADepreciationF_AAssetGroupAcct FOREIGN KEY (A_Depreciation_F_ID) REFERENCES A_Depreciation); + +ALTER TABLE A_Asset_Group_Acct ADD (CONSTRAINT ADepreciationConvF_AAssetGroup FOREIGN KEY (A_Depreciation_Conv_F_ID) REFERENCES A_Depreciation_Convention); + +ALTER TABLE A_Asset_Group_Acct ADD (CONSTRAINT ADepreciationConv_AAssetGroupA FOREIGN KEY (A_Depreciation_Conv_ID) REFERENCES A_Depreciation_Convention); + +ALTER TABLE A_Asset_Group_Acct ADD (CONSTRAINT ADepreciationMethodF_AAssetGro FOREIGN KEY (A_Depreciation_Method_F_ID) REFERENCES A_Depreciation_Method); + +ALTER TABLE A_Asset_Group_Acct ADD (CONSTRAINT ADepreciationMethod_AAssetGrou FOREIGN KEY (A_Depreciation_Method_ID) REFERENCES A_Depreciation_Method); + +ALTER TABLE A_Asset_Info_Fin ADD (CONSTRAINT AAsset_AAssetInfoFin FOREIGN KEY (A_Asset_ID) REFERENCES A_Asset); + +ALTER TABLE A_Asset_Info_Fin ADD (CONSTRAINT CBPartner_AAssetInfoFin FOREIGN KEY (C_BPartner_ID) REFERENCES C_BPartner); + +ALTER TABLE A_Asset_Info_Lic ADD (CONSTRAINT AAsset_AAssetInfoLic FOREIGN KEY (A_Asset_ID) REFERENCES A_Asset); + +ALTER TABLE A_Asset_Product ADD (CONSTRAINT AAsset_AAssetProduct FOREIGN KEY (A_Asset_ID) REFERENCES A_Asset); + +ALTER TABLE A_Asset_Product ADD (CONSTRAINT MProduct_AAssetProduct FOREIGN KEY (M_Product_ID) REFERENCES M_Product); + +ALTER TABLE A_Asset_Reval ADD (CONSTRAINT AAsset_AAssetReval FOREIGN KEY (A_Asset_ID) REFERENCES A_Asset); + +ALTER TABLE A_Asset_Transfer ADD (CONSTRAINT AAsset_AAssetTransfer FOREIGN KEY (A_Asset_ID) REFERENCES A_Asset); + +ALTER TABLE AD_AlertProcessor ADD (CONSTRAINT ADSchedule_ADAlertProcessor FOREIGN KEY (AD_Schedule_ID) REFERENCES AD_Schedule); + +ALTER TABLE AD_Client ADD (CONSTRAINT ADPasswordRule_ADClient FOREIGN KEY (AD_PasswordRule_ID) REFERENCES AD_PasswordRule); + +ALTER TABLE A_Depreciation_Exp ADD (CONSTRAINT AAsset_ADepreciationExp FOREIGN KEY (A_Asset_ID) REFERENCES A_Asset); + +ALTER TABLE A_Depreciation_Exp ADD (CONSTRAINT AAssetAddition_ADepreciationEx FOREIGN KEY (A_Asset_Addition_ID) REFERENCES A_Asset_Addition); + +ALTER TABLE A_Depreciation_Exp ADD (CONSTRAINT AAssetDisposed_ADepreciationEx FOREIGN KEY (A_Asset_Disposed_ID) REFERENCES A_Asset_Disposed); + +ALTER TABLE A_Depreciation_Exp ADD (CONSTRAINT ADepreciationEntry_ADepreciati FOREIGN KEY (A_Depreciation_Entry_ID) REFERENCES A_Depreciation_Entry); + +ALTER TABLE A_Depreciation_Workfile ADD (CONSTRAINT AAsset_ADepreciationWorkfile FOREIGN KEY (A_Asset_ID) REFERENCES A_Asset); + +ALTER TABLE A_Depreciation_Workfile ADD (CONSTRAINT AFundingMode_ADepreciationWork FOREIGN KEY (A_FundingMode_ID) REFERENCES A_FundingMode); + +ALTER TABLE AD_Package_Exp_Detail ADD (CONSTRAINT ADPackageExp_ADPackageExpDetai FOREIGN KEY (AD_Package_Exp_ID) REFERENCES AD_Package_Exp); + +ALTER TABLE AD_PInstance_Log ADD (CONSTRAINT ADTable_ADPInstanceLog FOREIGN KEY (AD_Table_ID) REFERENCES AD_Table); + +ALTER TABLE AD_RecentItem ADD (CONSTRAINT ADRole_ADRecentItem FOREIGN KEY (AD_Role_ID) REFERENCES AD_Role); + +ALTER TABLE AD_RecentItem ADD (CONSTRAINT ADTab_ADRecentItem FOREIGN KEY (AD_Tab_ID) REFERENCES AD_Tab); + +ALTER TABLE AD_RecentItem ADD (CONSTRAINT ADTable_ADRecentItem FOREIGN KEY (AD_Table_ID) REFERENCES AD_Table); + +ALTER TABLE AD_RecentItem ADD (CONSTRAINT ADUser_ADRecentItem FOREIGN KEY (AD_User_ID) REFERENCES AD_User); + +ALTER TABLE AD_RecentItem ADD (CONSTRAINT ADWindow_ADRecentItem FOREIGN KEY (AD_Window_ID) REFERENCES AD_Window); + +ALTER TABLE AD_Scheduler ADD (CONSTRAINT ADSchedule_ADScheduler FOREIGN KEY (AD_Schedule_ID) REFERENCES AD_Schedule); + +ALTER TABLE AD_Scheduler ADD (CONSTRAINT ADTable_ADScheduler FOREIGN KEY (AD_Table_ID) REFERENCES AD_Table); + +ALTER TABLE AD_Tab_Customization ADD (CONSTRAINT ADTab_ADTabCustomization FOREIGN KEY (AD_Tab_ID) REFERENCES AD_Tab); + +ALTER TABLE AD_Tab_Customization ADD (CONSTRAINT ADUser_ADTabCustomization FOREIGN KEY (AD_User_ID) REFERENCES AD_User); + +ALTER TABLE AD_ToolBarButton ADD (CONSTRAINT ADProcess_ADToolBarButton FOREIGN KEY (AD_Process_ID) REFERENCES AD_Process); + +ALTER TABLE AD_ToolBarButton ADD (CONSTRAINT ADTab_ADToolBarButton FOREIGN KEY (AD_Tab_ID) REFERENCES AD_Tab); + +ALTER TABLE AD_ToolBarButtonRestrict ADD (CONSTRAINT ADProcess_ADToolBarButtonRestr FOREIGN KEY (AD_Process_ID) REFERENCES AD_Process); + +ALTER TABLE AD_ToolBarButtonRestrict ADD (CONSTRAINT ADRole_ADToolBarButtonRestrict FOREIGN KEY (AD_Role_ID) REFERENCES AD_Role); + +ALTER TABLE AD_ToolBarButtonRestrict ADD (CONSTRAINT ADTab_ADToolBarButtonRestrict FOREIGN KEY (AD_Tab_ID) REFERENCES AD_Tab); + +ALTER TABLE AD_ToolBarButtonRestrict ADD (CONSTRAINT ADToolBarButton_ADToolBarButto FOREIGN KEY (AD_ToolBarButton_ID) REFERENCES AD_ToolBarButton); + +ALTER TABLE AD_ToolBarButtonRestrict ADD (CONSTRAINT ADWindow_ADToolBarButtonRestri FOREIGN KEY (AD_Window_ID) REFERENCES AD_Window); + +ALTER TABLE AD_WizardProcess ADD (CONSTRAINT ADWFNode_ADWizardProcess FOREIGN KEY (AD_WF_Node_ID) REFERENCES AD_WF_Node); + +ALTER TABLE AD_WorkflowProcessor ADD (CONSTRAINT ADSchedule_ADWorkflowProcessor FOREIGN KEY (AD_Schedule_ID) REFERENCES AD_Schedule); + +ALTER TABLE A_FundingMode_Acct ADD (CONSTRAINT AFundingMode_AFundingModeAcct FOREIGN KEY (A_FundingMode_ID) REFERENCES A_FundingMode); + +ALTER TABLE A_FundingMode_Acct ADD (CONSTRAINT CAcctSchema_AFundingModeAcct FOREIGN KEY (C_AcctSchema_ID) REFERENCES C_AcctSchema); + +ALTER TABLE ASP_Ref_List ADD (CONSTRAINT ADReference_ASPRefList FOREIGN KEY (AD_Reference_ID) REFERENCES AD_Reference); + +ALTER TABLE ASP_Ref_List ADD (CONSTRAINT ADRefList_ASPRefList FOREIGN KEY (AD_Ref_List_ID) REFERENCES AD_Ref_List); + +ALTER TABLE ASP_Ref_List ADD (CONSTRAINT ASPLevel_ASPRefList FOREIGN KEY (ASP_Level_ID) REFERENCES ASP_Level); + +ALTER TABLE C_AcctProcessor ADD (CONSTRAINT ADSchedule_CAcctProcessor FOREIGN KEY (AD_Schedule_ID) REFERENCES AD_Schedule); + +ALTER TABLE C_AllocationLine ADD (CONSTRAINT CCharge_CAllocationLine FOREIGN KEY (C_Charge_ID) REFERENCES C_Charge); + +ALTER TABLE C_BankAccount_Processor ADD (CONSTRAINT CBankAccount_CBankAccountProce FOREIGN KEY (C_BankAccount_ID) REFERENCES C_BankAccount); + +ALTER TABLE C_BankAccount_Processor ADD (CONSTRAINT CPaymentProcessor_CBankAccount FOREIGN KEY (C_PaymentProcessor_ID) REFERENCES C_PaymentProcessor); + +ALTER TABLE C_Payment ADD (CONSTRAINT CPaymentProcessor_CPayment FOREIGN KEY (C_PaymentProcessor_ID) REFERENCES C_PaymentProcessor); + +ALTER TABLE C_Payment ADD (CONSTRAINT CPOSTenderType_CPayment FOREIGN KEY (C_POSTenderType_ID) REFERENCES C_POSTenderType); + +ALTER TABLE C_POSPayment ADD (CONSTRAINT COrder_CPOSPayment FOREIGN KEY (C_Order_ID) REFERENCES C_Order); + +ALTER TABLE C_POSPayment ADD (CONSTRAINT CPayment_CPOSPayment FOREIGN KEY (C_Payment_ID) REFERENCES C_Payment); + +ALTER TABLE C_POSPayment ADD (CONSTRAINT CPOSTenderType_CPOSPayment FOREIGN KEY (C_POSTenderType_ID) REFERENCES C_POSTenderType); + +ALTER TABLE DD_OrderLine ADD (CONSTRAINT MShipper_DDOrderLine FOREIGN KEY (M_Shipper_ID) REFERENCES M_Shipper); + +ALTER TABLE Fact_Acct_Summary ADD (CONSTRAINT ADOrgTrx_FactAcctSummary FOREIGN KEY (AD_OrgTrx_ID) REFERENCES AD_Org); + +ALTER TABLE Fact_Acct_Summary ADD (CONSTRAINT CLocFrom_FactAcctSummary FOREIGN KEY (C_LocFrom_ID) REFERENCES C_Location); + +ALTER TABLE Fact_Acct_Summary ADD (CONSTRAINT CLocTo_FactAcctSummary FOREIGN KEY (C_LocTo_ID) REFERENCES C_Location); + +ALTER TABLE Fact_Reconciliation ADD (CONSTRAINT FactAcct_FactReconciliation FOREIGN KEY (Fact_Acct_ID) REFERENCES Fact_Acct); + +ALTER TABLE GL_JournalGeneratorSource ADD (CONSTRAINT GLCategory_GLJournalGeneratorS FOREIGN KEY (GL_Category_ID) REFERENCES GL_Category); + +ALTER TABLE GL_JournalLine ADD (CONSTRAINT ADOrgTrx_GLJournalLine FOREIGN KEY (AD_OrgTrx_ID) REFERENCES AD_Org); + +ALTER TABLE GL_JournalLine ADD (CONSTRAINT CActivity_GLJournalLine FOREIGN KEY (C_Activity_ID) REFERENCES C_Activity); + +ALTER TABLE GL_JournalLine ADD (CONSTRAINT CBPartner_GLJournalLine FOREIGN KEY (C_BPartner_ID) REFERENCES C_BPartner); + +ALTER TABLE GL_JournalLine ADD (CONSTRAINT CCampaign_GLJournalLine FOREIGN KEY (C_Campaign_ID) REFERENCES C_Campaign); + +ALTER TABLE GL_JournalLine ADD (CONSTRAINT Account_GLJournalLine FOREIGN KEY (Account_ID) REFERENCES C_ElementValue); + +ALTER TABLE GL_JournalLine ADD (CONSTRAINT User1_GLJournalLine FOREIGN KEY (User1_ID) REFERENCES C_ElementValue); + +ALTER TABLE GL_JournalLine ADD (CONSTRAINT User2_GLJournalLine FOREIGN KEY (User2_ID) REFERENCES C_ElementValue); + +ALTER TABLE GL_JournalLine ADD (CONSTRAINT CLocFrom_GLJournalLine FOREIGN KEY (C_LocFrom_ID) REFERENCES C_Location); + +ALTER TABLE GL_JournalLine ADD (CONSTRAINT CLocTo_GLJournalLine FOREIGN KEY (C_LocTo_ID) REFERENCES C_Location); + +ALTER TABLE GL_JournalLine ADD (CONSTRAINT CProject_GLJournalLine FOREIGN KEY (C_Project_ID) REFERENCES C_Project); + +ALTER TABLE GL_JournalLine ADD (CONSTRAINT CSalesRegion_GLJournalLine FOREIGN KEY (C_SalesRegion_ID) REFERENCES C_SalesRegion); + +ALTER TABLE GL_JournalLine ADD (CONSTRAINT CSubAcct_GLJournalLine FOREIGN KEY (C_SubAcct_ID) REFERENCES C_SubAcct); + +ALTER TABLE GL_JournalLine ADD (CONSTRAINT AliasValidCombination_GLJourna FOREIGN KEY (Alias_ValidCombination_ID) REFERENCES C_ValidCombination); + +ALTER TABLE GL_JournalLine ADD (CONSTRAINT MProduct_GLJournalLine FOREIGN KEY (M_Product_ID) REFERENCES M_Product); + +ALTER TABLE HR_Movement ADD (CONSTRAINT CBPBankAccount_HRMovement FOREIGN KEY (C_BP_BankAccount_ID) REFERENCES C_BP_BankAccount); + +ALTER TABLE HR_Movement ADD (CONSTRAINT CBPGroup_HRMovement FOREIGN KEY (C_BP_Group_ID) REFERENCES C_BP_Group); + +ALTER TABLE I_FixedAsset ADD (CONSTRAINT AAsset_IFixedAsset FOREIGN KEY (A_Asset_ID) REFERENCES A_Asset); + +ALTER TABLE I_FixedAsset ADD (CONSTRAINT AAssetClass_IFixedAsset FOREIGN KEY (A_Asset_Class_ID) REFERENCES A_Asset_Class); + +ALTER TABLE I_FixedAsset ADD (CONSTRAINT AAssetGroup_IFixedAsset FOREIGN KEY (A_Asset_Group_ID) REFERENCES A_Asset_Group); + +ALTER TABLE I_FixedAsset ADD (CONSTRAINT AAssetType_IFixedAsset FOREIGN KEY (A_Asset_Type_ID) REFERENCES A_Asset_Type); + +ALTER TABLE I_FixedAsset ADD (CONSTRAINT CBPartnerSR_IFixedAsset FOREIGN KEY (C_BPartnerSR_ID) REFERENCES C_BPartner); + +ALTER TABLE I_FixedAsset ADD (CONSTRAINT CCity_IFixedAsset FOREIGN KEY (C_City_ID) REFERENCES C_City); + +ALTER TABLE I_FixedAsset ADD (CONSTRAINT CUOM_IFixedAsset FOREIGN KEY (C_UOM_ID) REFERENCES C_UOM); + +ALTER TABLE I_FixedAsset ADD (CONSTRAINT MLocator_IFixedAsset FOREIGN KEY (M_Locator_ID) REFERENCES M_Locator); + +ALTER TABLE I_FixedAsset ADD (CONSTRAINT MProduct_IFixedAsset FOREIGN KEY (M_Product_ID) REFERENCES M_Product); + +ALTER TABLE I_HR_Movement ADD (CONSTRAINT CBPartner_IHRMovement FOREIGN KEY (C_BPartner_ID) REFERENCES C_BPartner); + +ALTER TABLE I_HR_Movement ADD (CONSTRAINT HRConcept_IHRMovement FOREIGN KEY (HR_Concept_ID) REFERENCES HR_Concept); + +ALTER TABLE I_HR_Movement ADD (CONSTRAINT HRMovement_IHRMovement FOREIGN KEY (HR_Movement_ID) REFERENCES HR_Movement); + +ALTER TABLE I_HR_Movement ADD (CONSTRAINT HRProcess_IHRMovement FOREIGN KEY (HR_Process_ID) REFERENCES HR_Process); + +ALTER TABLE I_Inventory ADD (CONSTRAINT CCharge_IInventory FOREIGN KEY (C_Charge_ID) REFERENCES C_Charge); + +ALTER TABLE I_Inventory ADD (CONSTRAINT CDocType_IInventory FOREIGN KEY (C_DocType_ID) REFERENCES C_DocType); + +ALTER TABLE I_Movement ADD (CONSTRAINT ADOrgTrx_IMovement FOREIGN KEY (AD_OrgTrx_ID) REFERENCES AD_Org); + +ALTER TABLE I_Movement ADD (CONSTRAINT ADUser_IMovement FOREIGN KEY (AD_User_ID) REFERENCES AD_User); + +ALTER TABLE I_Movement ADD (CONSTRAINT CBPartner_IMovement FOREIGN KEY (C_BPartner_ID) REFERENCES C_BPartner); + +ALTER TABLE I_Movement ADD (CONSTRAINT CCampaign_IMovement FOREIGN KEY (C_Campaign_ID) REFERENCES C_Campaign); + +ALTER TABLE I_Movement ADD (CONSTRAINT CDocType_IMovement FOREIGN KEY (C_DocType_ID) REFERENCES C_DocType); + +ALTER TABLE I_Movement ADD (CONSTRAINT CProject_IMovement FOREIGN KEY (C_Project_ID) REFERENCES C_Project); + +ALTER TABLE I_Movement ADD (CONSTRAINT MMovement_IMovement FOREIGN KEY (M_Movement_ID) REFERENCES M_Movement); + +ALTER TABLE I_Movement ADD (CONSTRAINT MMovementLine_IMovement FOREIGN KEY (M_MovementLine_ID) REFERENCES M_MovementLine); + +ALTER TABLE I_Movement ADD (CONSTRAINT MProduct_IMovement FOREIGN KEY (M_Product_ID) REFERENCES M_Product); + +ALTER TABLE I_Movement ADD (CONSTRAINT MShipper_IMovement FOREIGN KEY (M_Shipper_ID) REFERENCES M_Shipper); + +ALTER TABLE M_CostHistory ADD (CONSTRAINT MCostDetail_MCostHistory FOREIGN KEY (M_CostDetail_ID) REFERENCES M_CostDetail); + +ALTER TABLE M_CostHistory ADD (CONSTRAINT MCostElement_MCostHistory FOREIGN KEY (M_CostElement_ID) REFERENCES M_CostElement); + +ALTER TABLE M_CostHistory ADD (CONSTRAINT MCostType_MCostHistory FOREIGN KEY (M_CostType_ID) REFERENCES M_CostType); + +ALTER TABLE M_Product ADD (CONSTRAINT MPartType_MProduct FOREIGN KEY (M_PartType_ID) REFERENCES M_PartType); + +ALTER TABLE M_Production ADD (CONSTRAINT COrderLine_MProduction FOREIGN KEY (C_OrderLine_ID) REFERENCES C_OrderLine); + +ALTER TABLE M_Production ADD (CONSTRAINT MProduct_MProduction FOREIGN KEY (M_Product_ID) REFERENCES M_Product); + +ALTER TABLE M_ProductionLine ADD (CONSTRAINT MProduction_MProductionLine FOREIGN KEY (M_Production_ID) REFERENCES M_Production); + +ALTER TABLE M_Product_QualityTest ADD (CONSTRAINT MProduct_MProductQualityTest FOREIGN KEY (M_Product_ID) REFERENCES M_Product); + +ALTER TABLE M_Product_QualityTest ADD (CONSTRAINT MQualityTest_MProductQualityTe FOREIGN KEY (M_QualityTest_ID) REFERENCES M_QualityTest); + +ALTER TABLE M_QualityTestResult ADD (CONSTRAINT MQualityTest_MQualityTestResul FOREIGN KEY (M_QualityTest_ID) REFERENCES M_QualityTest); + +ALTER TABLE PA_DashboardContent ADD (CONSTRAINT ADProcess_PADashboardContent FOREIGN KEY (AD_Process_ID) REFERENCES AD_Process); + +ALTER TABLE PA_DashboardContent ADD (CONSTRAINT ADRole_PADashboardContent FOREIGN KEY (AD_Role_ID) REFERENCES AD_Role); + +ALTER TABLE PA_DashboardContent ADD (CONSTRAINT ADUser_PADashboardContent FOREIGN KEY (AD_User_ID) REFERENCES AD_User); + +ALTER TABLE PA_DashboardPreference ADD (CONSTRAINT ADRole_PADashboardPreference FOREIGN KEY (AD_Role_ID) REFERENCES AD_Role); + +ALTER TABLE PA_DashboardPreference ADD (CONSTRAINT ADUser_PADashboardPreference FOREIGN KEY (AD_User_ID) REFERENCES AD_User); + +ALTER TABLE PA_DashboardPreference ADD (CONSTRAINT PADashboardContent_PADashPref FOREIGN KEY (PA_DashboardContent_ID) REFERENCES PA_DashboardContent); + +ALTER TABLE R_RequestProcessor ADD (CONSTRAINT ADSchedule_RRequestProcessor FOREIGN KEY (AD_Schedule_ID) REFERENCES AD_Schedule); + +ALTER TABLE A_Asset_Acct ADD (CONSTRAINT AAccumdepreciation_AAssetAcct FOREIGN KEY(A_Accumdepreciation_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Acct ADD (CONSTRAINT ADisposalGain_AAssetAcct FOREIGN KEY(A_Disposal_Gain_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Acct ADD (CONSTRAINT ADisposalLoss_AAssetAcct FOREIGN KEY(A_Disposal_Loss_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Acct ADD (CONSTRAINT ADisposalRevenue_AAssetAcct FOREIGN KEY(A_Disposal_Revenue_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Acct ADD (CONSTRAINT ARevalAdepOffsetCur_AAssetAcct FOREIGN KEY(A_Reval_Adep_Offset_Cur_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Acct ADD (CONSTRAINT ARevalAdepOffsetPrior_AAssetAc FOREIGN KEY(A_Reval_Adep_Offset_Prior_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Acct ADD (CONSTRAINT ARevalCostOffset_AAssetAcct FOREIGN KEY(A_Reval_Cost_Offset_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Acct ADD (CONSTRAINT ARevalCostOffsetPrior_AAssetAc FOREIGN KEY(A_Reval_Cost_Offset_Prior_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Acct ADD (CONSTRAINT ARevalDepexpOffset_AAssetAcct FOREIGN KEY(A_Reval_Depexp_Offset_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Addition ADD (CONSTRAINT MAttributeSetInstance_AAssetAd FOREIGN KEY(M_AttributeSetInstance_ID) REFERENCES M_AttributeSetInstance(M_AttributeSetInstance_ID)); + +ALTER TABLE A_Asset_Addition ADD (CONSTRAINT MLocator_AAssetAddition FOREIGN KEY(M_Locator_ID) REFERENCES M_Locator(M_Locator_ID)); + +ALTER TABLE A_Asset_Change ADD (CONSTRAINT AAccumdepreciation_AAssetChang FOREIGN KEY(A_Accumdepreciation_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Change ADD (CONSTRAINT ADepreciation_AAssetChange FOREIGN KEY(A_Depreciation_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Change ADD (CONSTRAINT ADisposalLoss_AAssetChange FOREIGN KEY(A_Disposal_Loss_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Change ADD (CONSTRAINT ADisposalRevenue_AAssetChange FOREIGN KEY(A_Disposal_Revenue_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Change ADD (CONSTRAINT CValidCombinati_AAssetChange FOREIGN KEY(C_ValidCombination_ID) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Group_Acct ADD (CONSTRAINT AAccumdepreciation_AAssetGroup FOREIGN KEY(A_Accumdepreciation_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Group_Acct ADD (CONSTRAINT AAsset_AAssetGroupAcct FOREIGN KEY(A_Asset_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Group_Acct ADD (CONSTRAINT ADisposalGain_AAssetGroupAcct FOREIGN KEY(A_Disposal_Gain_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Group_Acct ADD (CONSTRAINT ADisposalLoss_AAssetGroupAcct FOREIGN KEY(A_Disposal_Loss_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Group_Acct ADD (CONSTRAINT ADisposalRevenue_AAssetGroupAc FOREIGN KEY(A_Disposal_Revenue_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Group_Acct ADD (CONSTRAINT ARevalAdepOffsetCur_AAssetGrou FOREIGN KEY(A_Reval_Adep_Offset_Cur_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Group_Acct ADD (CONSTRAINT ARevalAdepOffsetPrior_AAssetGr FOREIGN KEY(A_Reval_Adep_Offset_Prior_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Group_Acct ADD (CONSTRAINT ARevalCostOffset_AAssetGroupAc FOREIGN KEY(A_Reval_Cost_Offset_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Group_Acct ADD (CONSTRAINT ARevalCostOffsetPrior_AAssetGr FOREIGN KEY(A_Reval_Cost_Offset_Prior_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Group_Acct ADD (CONSTRAINT ARevalDepexpOffset_AAssetGroup FOREIGN KEY(A_Reval_Depexp_Offset_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Product ADD (CONSTRAINT MAttributeSetInstance_AAssetPr FOREIGN KEY(M_AttributeSetInstance_ID) REFERENCES M_AttributeSetInstance(M_AttributeSetInstance_ID)); + +ALTER TABLE A_Asset_Product ADD (CONSTRAINT MLocator_AAssetProduct FOREIGN KEY(M_Locator_ID) REFERENCES M_Locator(M_Locator_ID)); + +ALTER TABLE A_Asset_Transfer ADD (CONSTRAINT AAccumdepreciation_AAssetTrans FOREIGN KEY(A_Accumdepreciation_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Transfer ADD (CONSTRAINT AAccumdepreciationNew_AAssetTr FOREIGN KEY(A_Accumdepreciation_New_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Transfer ADD (CONSTRAINT AAssetNew_AAssetTransfer FOREIGN KEY(A_Asset_New_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Transfer ADD (CONSTRAINT ADepreciation_AAssetTransfer FOREIGN KEY(A_Depreciation_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Transfer ADD (CONSTRAINT ADepreciationNew_AAssetTransfe FOREIGN KEY(A_Depreciation_New_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Transfer ADD (CONSTRAINT ADisposalLoss_AAssetTransfer FOREIGN KEY(A_Disposal_Loss_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Transfer ADD (CONSTRAINT ADisposalLossNew_AAssetTransfe FOREIGN KEY(A_Disposal_Loss_New_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Transfer ADD (CONSTRAINT ADisposalRevenue_AAssetTransfe FOREIGN KEY(A_Disposal_Revenue_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Asset_Transfer ADD (CONSTRAINT ADisposalRevenueNew_AAssetTran FOREIGN KEY(A_Disposal_Revenue_New_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Depreciation_Exp ADD (CONSTRAINT AAccountNumber_ADepreciationEx FOREIGN KEY(A_Account_Number_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Depreciation_Exp ADD (CONSTRAINT CRAccou_ADepreciationExp FOREIGN KEY(CR_Account_ID) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE A_Depreciation_Exp ADD (CONSTRAINT DRAccou_ADepreciationExp FOREIGN KEY(DR_Account_ID) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE C_AcctSchema_Default ADD (CONSTRAINT ChRevenue_CAcctSchemaDefault FOREIGN KEY(Ch_Revenue_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE C_Charge_Acct ADD (CONSTRAINT ChRevenue_CChargeAcct FOREIGN KEY(Ch_Revenue_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE I_Asset ADD (CONSTRAINT AAccumdepreciation_IAsset FOREIGN KEY(A_Accumdepreciation_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE I_Asset ADD (CONSTRAINT AAsset_IAsset FOREIGN KEY(A_Asset_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE I_Asset ADD (CONSTRAINT ADepreciation_IAsset FOREIGN KEY(A_Depreciation_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID)); + +ALTER TABLE I_Asset ADD (CONSTRAINT MAttributeSetInstance_IAsset FOREIGN KEY(M_AttributeSetInstance_ID) REFERENCES M_AttributeSetInstance(M_AttributeSetInstance_ID)); + +ALTER TABLE I_Movement ADD (CONSTRAINT MLocator_IMovement FOREIGN KEY(M_Locator_ID) REFERENCES M_Locator(M_Locator_ID)); + +ALTER TABLE I_Movement ADD (CONSTRAINT MLocatorTo_IMovement FOREIGN KEY(M_LocatorTo_ID) REFERENCES M_Locator(M_Locator_ID)); + +ALTER TABLE M_CostHistory ADD (CONSTRAINT MAttributeSetInstance_MCostHis FOREIGN KEY(M_AttributeSetInstance_ID) REFERENCES M_AttributeSetInstance(M_AttributeSetInstance_ID)); + +ALTER TABLE M_Production ADD (CONSTRAINT MLocator_MProduction FOREIGN KEY(M_Locator_ID) REFERENCES M_Locator(M_Locator_ID)); + +ALTER TABLE M_QualityTestResult ADD (CONSTRAINT MAttributeSetInstance_MQuality FOREIGN KEY(M_AttributeSetInstance_ID) REFERENCES M_AttributeSetInstance(M_AttributeSetInstance_ID)); + +SELECT register_migration_script('956_ForeignKeys.sql') FROM dual +; + diff --git a/migration/360lts-release/oracle/957_SetSysConfig.sql b/migration/360lts-release/oracle/957_SetSysConfig.sql new file mode 100644 index 0000000000..58b783c7b3 --- /dev/null +++ b/migration/360lts-release/oracle/957_SetSysConfig.sql @@ -0,0 +1,36 @@ +update ad_sysconfig set value='N' where ad_sysconfig_id=50041 /* 'ALogin_ShowOneRole' */ +; + +update ad_sysconfig set value='N' where ad_sysconfig_id=200019 /* 'LOGIN_SHOW_RESETPASSWORD' */ +; + +update ad_sysconfig set value='HTML' where ad_sysconfig_id=200003 /* ZK_REPORT_TABLE_OUTPUT_TYPE */ +; + +UPDATE R_RequestProcessor SET IsActive='N' WHERE R_RequestProcessor_ID=100 +; + +update ad_field set isdisplayedgrid='N' where ad_column_id in (select ad_column_id from ad_column where ad_element_id=102) /* ad_client_id */ +and ad_column_id not in (315, 904, 12629) /* except client window */ +and ad_field_id < 1000000 +; + +update ad_field set isdisplayed='N', isdisplayedgrid='N' +where ad_field_id in ( +200508, +200510, +200280, +200504, +200505, +200605, +200638) +; + +update ad_field set isdisplayedgrid='N' +where isdisplayedgrid='Y' and isdisplayed='N' +and ad_field_id < 1000000 +; + +SELECT register_migration_script('957_SetSysConfig.sql') FROM dual +; + diff --git a/migration/360lts-release/postgresql/925_PlaceHolder.sql b/migration/360lts-release/postgresql/925_PlaceHolder.sql new file mode 100644 index 0000000000..9c4b26e7b5 --- /dev/null +++ b/migration/360lts-release/postgresql/925_PlaceHolder.sql @@ -0,0 +1,4 @@ +-- Just a placeholder +SELECT register_migration_script('925_PlaceHolder.sql') FROM dual +; + diff --git a/migration/360lts-release/postgresql/926_PlaceHolder.sql b/migration/360lts-release/postgresql/926_PlaceHolder.sql new file mode 100644 index 0000000000..7e4f9284fa --- /dev/null +++ b/migration/360lts-release/postgresql/926_PlaceHolder.sql @@ -0,0 +1,4 @@ +-- Just a placeholder +SELECT register_migration_script('926_PlaceHolder.sql') FROM dual +; + diff --git a/migration/360lts-release/postgresql/937_PlaceHolder.sql b/migration/360lts-release/postgresql/937_PlaceHolder.sql new file mode 100644 index 0000000000..c776b2e84a --- /dev/null +++ b/migration/360lts-release/postgresql/937_PlaceHolder.sql @@ -0,0 +1,4 @@ +-- Just a placeholder +SELECT register_migration_script('937_PlaceHolder.sql') FROM dual +; + diff --git a/migration/360lts-release/postgresql/951_PlaceHolder.sql b/migration/360lts-release/postgresql/951_PlaceHolder.sql new file mode 100644 index 0000000000..177fa209f0 --- /dev/null +++ b/migration/360lts-release/postgresql/951_PlaceHolder.sql @@ -0,0 +1,4 @@ +-- Just a placeholder +SELECT register_migration_script('951_PlaceHolder.sql') FROM dual +; + diff --git a/migration/360lts-release/postgresql/953_PlaceHolder.sql b/migration/360lts-release/postgresql/953_PlaceHolder.sql new file mode 100644 index 0000000000..691e45d1b9 --- /dev/null +++ b/migration/360lts-release/postgresql/953_PlaceHolder.sql @@ -0,0 +1,4 @@ +-- Just a placeholder +SELECT register_migration_script('953_PlaceHolder.sql') FROM dual +; + diff --git a/migration/360lts-release/postgresql/954_UUID_Sync.sql b/migration/360lts-release/postgresql/954_UUID_Sync.sql new file mode 100644 index 0000000000..2245697950 --- /dev/null +++ b/migration/360lts-release/postgresql/954_UUID_Sync.sql @@ -0,0 +1,7004 @@ +-- Oct 31, 2012 10:18:58 AM COT +-- UUID Sync +INSERT INTO AD_Element (ColumnName,AD_Element_ID,EntityType,Name,PrintName,AD_Element_UU,AD_Client_ID,Created,Updated,AD_Org_ID,CreatedBy,UpdatedBy,IsActive) VALUES ('M_QualityTestResult_UU',200202,'U','M_QualityTestResult_UU','M_QualityTestResult_UU','9d41aaf2-0571-4582-a3e9-c3c1eaee2b31',0,TO_TIMESTAMP('2012-10-31 10:18:57','YYYY-MM-DD HH24:MI:SS'),TO_TIMESTAMP('2012-10-31 10:18:57','YYYY-MM-DD HH24:MI:SS'),0,100,100,'Y') +; + +-- Oct 31, 2012 10:18:58 AM COT +INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Help,PO_Description,PO_Help,Name,Description,PrintName,PO_Name,PO_PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Element_Trl_UU ) SELECT l.AD_Language,t.AD_Element_ID, t.Help,t.PO_Description,t.PO_Help,t.Name,t.Description,t.PrintName,t.PO_Name,t.PO_PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=200202 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) +; + +-- Oct 31, 2012 10:18:59 AM COT +INSERT INTO AD_Column (IsEncrypted,Version,AD_Table_ID,AD_Column_ID,EntityType,IsMandatory,IsTranslated,IsIdentifier,IsParent,FieldLength,IsSelectionColumn,AD_Reference_ID,IsKey,AD_Element_ID,AD_Column_UU,IsUpdateable,IsAlwaysUpdateable,ColumnName,Name,Updated,CreatedBy,AD_Org_ID,IsActive,Created,UpdatedBy,AD_Client_ID) VALUES ('N',1.00,53331,200848,'U','N','N','N','N',36,'N',10,'N',200202,'39e6d72f-7b8d-4fc1-bc39-850235495e87','Y','N','M_QualityTestResult_UU','M_QualityTestResult_UU',TO_TIMESTAMP('2012-10-31 10:18:57','YYYY-MM-DD HH24:MI:SS'),100,0,'Y',TO_TIMESTAMP('2012-10-31 10:18:57','YYYY-MM-DD HH24:MI:SS'),100,0) +; + +-- Oct 31, 2012 10:18:59 AM COT +INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Column_Trl_UU ) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=200848 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) +; + +-- Oct 31, 2012 10:18:59 AM COT +ALTER TABLE M_QualityTestResult ADD COLUMN M_QualityTestResult_UU VARCHAR(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:18:59 AM COT +CREATE UNIQUE INDEX M_QualityTestResult_UU_idx ON m_qualitytestresult(M_QualityTestResult_UU) +; + +-- Oct 31, 2012 10:19:00 AM COT +INSERT INTO AD_Element (ColumnName,AD_Element_ID,EntityType,Name,PrintName,AD_Element_UU,AD_Client_ID,Created,Updated,AD_Org_ID,CreatedBy,UpdatedBy,IsActive) VALUES ('M_QualityTest_UU',200203,'U','M_QualityTest_UU','M_QualityTest_UU','8e275428-511a-48a2-948f-425b1296507c',0,TO_TIMESTAMP('2012-10-31 10:19:00','YYYY-MM-DD HH24:MI:SS'),TO_TIMESTAMP('2012-10-31 10:19:00','YYYY-MM-DD HH24:MI:SS'),0,100,100,'Y') +; + +-- Oct 31, 2012 10:19:00 AM COT +INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Help,PO_Description,PO_Help,Name,Description,PrintName,PO_Name,PO_PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Element_Trl_UU ) SELECT l.AD_Language,t.AD_Element_ID, t.Help,t.PO_Description,t.PO_Help,t.Name,t.Description,t.PrintName,t.PO_Name,t.PO_PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=200203 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) +; + +-- Oct 31, 2012 10:19:01 AM COT +INSERT INTO AD_Column (IsEncrypted,Version,AD_Table_ID,AD_Column_ID,EntityType,IsMandatory,IsTranslated,IsIdentifier,IsParent,FieldLength,IsSelectionColumn,AD_Reference_ID,IsKey,AD_Element_ID,AD_Column_UU,IsUpdateable,IsAlwaysUpdateable,ColumnName,Name,Updated,CreatedBy,AD_Org_ID,IsActive,Created,UpdatedBy,AD_Client_ID) VALUES ('N',1.00,53332,200849,'U','N','N','N','N',36,'N',10,'N',200203,'ec4f96c4-d079-42e9-8c9a-8b683f905b8d','Y','N','M_QualityTest_UU','M_QualityTest_UU',TO_TIMESTAMP('2012-10-31 10:19:00','YYYY-MM-DD HH24:MI:SS'),100,0,'Y',TO_TIMESTAMP('2012-10-31 10:19:00','YYYY-MM-DD HH24:MI:SS'),100,0) +; + +-- Oct 31, 2012 10:19:01 AM COT +INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Column_Trl_UU ) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=200849 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) +; + +-- Oct 31, 2012 10:19:01 AM COT +ALTER TABLE M_QualityTest ADD COLUMN M_QualityTest_UU VARCHAR(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:19:01 AM COT +CREATE UNIQUE INDEX M_QualityTest_UU_idx ON m_qualitytest(M_QualityTest_UU) +; + +-- Oct 31, 2012 10:19:01 AM COT +INSERT INTO AD_Element (ColumnName,AD_Element_ID,EntityType,Name,PrintName,AD_Element_UU,AD_Client_ID,Created,Updated,AD_Org_ID,CreatedBy,UpdatedBy,IsActive) VALUES ('M_Product_QualityTest_UU',200204,'U','M_Product_QualityTest_UU','M_Product_QualityTest_UU','f5b424e5-1672-4292-af7b-71d54f6bbf7f',0,TO_TIMESTAMP('2012-10-31 10:19:01','YYYY-MM-DD HH24:MI:SS'),TO_TIMESTAMP('2012-10-31 10:19:01','YYYY-MM-DD HH24:MI:SS'),0,100,100,'Y') +; + +-- Oct 31, 2012 10:19:02 AM COT +INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Help,PO_Description,PO_Help,Name,Description,PrintName,PO_Name,PO_PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Element_Trl_UU ) SELECT l.AD_Language,t.AD_Element_ID, t.Help,t.PO_Description,t.PO_Help,t.Name,t.Description,t.PrintName,t.PO_Name,t.PO_PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=200204 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) +; + +-- Oct 31, 2012 10:19:02 AM COT +INSERT INTO AD_Column (IsEncrypted,Version,AD_Table_ID,AD_Column_ID,EntityType,IsMandatory,IsTranslated,IsIdentifier,IsParent,FieldLength,IsSelectionColumn,AD_Reference_ID,IsKey,AD_Element_ID,AD_Column_UU,IsUpdateable,IsAlwaysUpdateable,ColumnName,Name,Updated,CreatedBy,AD_Org_ID,IsActive,Created,UpdatedBy,AD_Client_ID) VALUES ('N',1.00,53333,200850,'U','N','N','N','N',36,'N',10,'N',200204,'2b8bd6b2-1693-43d4-9a0c-a4bd1dce1876','Y','N','M_Product_QualityTest_UU','M_Product_QualityTest_UU',TO_TIMESTAMP('2012-10-31 10:19:01','YYYY-MM-DD HH24:MI:SS'),100,0,'Y',TO_TIMESTAMP('2012-10-31 10:19:01','YYYY-MM-DD HH24:MI:SS'),100,0) +; + +-- Oct 31, 2012 10:19:02 AM COT +INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Column_Trl_UU ) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=200850 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) +; + +-- Oct 31, 2012 10:19:02 AM COT +ALTER TABLE M_Product_QualityTest ADD COLUMN M_Product_QualityTest_UU VARCHAR(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:19:02 AM COT +CREATE UNIQUE INDEX M_Product_QualityTest_UU_idx ON m_product_qualitytest(M_Product_QualityTest_UU) +; + +-- Oct 31, 2012 10:19:03 AM COT +INSERT INTO AD_Element (ColumnName,AD_Element_ID,EntityType,Name,PrintName,AD_Element_UU,AD_Client_ID,Created,Updated,AD_Org_ID,CreatedBy,UpdatedBy,IsActive) VALUES ('M_PartType_UU',200205,'U','M_PartType_UU','M_PartType_UU','546c8ee1-a973-4f52-b345-4ff31bc99bca',0,TO_TIMESTAMP('2012-10-31 10:19:02','YYYY-MM-DD HH24:MI:SS'),TO_TIMESTAMP('2012-10-31 10:19:02','YYYY-MM-DD HH24:MI:SS'),0,100,100,'Y') +; + +-- Oct 31, 2012 10:19:03 AM COT +INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Help,PO_Description,PO_Help,Name,Description,PrintName,PO_Name,PO_PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Element_Trl_UU ) SELECT l.AD_Language,t.AD_Element_ID, t.Help,t.PO_Description,t.PO_Help,t.Name,t.Description,t.PrintName,t.PO_Name,t.PO_PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=200205 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) +; + +-- Oct 31, 2012 10:19:03 AM COT +INSERT INTO AD_Column (IsEncrypted,Version,AD_Table_ID,AD_Column_ID,EntityType,IsMandatory,IsTranslated,IsIdentifier,IsParent,FieldLength,IsSelectionColumn,AD_Reference_ID,IsKey,AD_Element_ID,AD_Column_UU,IsUpdateable,IsAlwaysUpdateable,ColumnName,Name,Updated,CreatedBy,AD_Org_ID,IsActive,Created,UpdatedBy,AD_Client_ID) VALUES ('N',1.00,53334,200851,'U','N','N','N','N',36,'N',10,'N',200205,'49198395-d3ef-4828-a464-0c92b5b31bf2','Y','N','M_PartType_UU','M_PartType_UU',TO_TIMESTAMP('2012-10-31 10:19:02','YYYY-MM-DD HH24:MI:SS'),100,0,'Y',TO_TIMESTAMP('2012-10-31 10:19:02','YYYY-MM-DD HH24:MI:SS'),100,0) +; + +-- Oct 31, 2012 10:19:03 AM COT +INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Column_Trl_UU ) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=200851 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) +; + +-- Oct 31, 2012 10:19:03 AM COT +ALTER TABLE M_PartType ADD COLUMN M_PartType_UU VARCHAR(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:19:04 AM COT +CREATE UNIQUE INDEX M_PartType_UU_idx ON m_parttype(M_PartType_UU) +; + +-- Oct 31, 2012 10:19:04 AM COT +INSERT INTO AD_Element (ColumnName,AD_Element_ID,EntityType,Name,PrintName,AD_Element_UU,AD_Client_ID,Created,Updated,AD_Org_ID,CreatedBy,UpdatedBy,IsActive) VALUES ('T_BOM_Indented_UU',200206,'U','T_BOM_Indented_UU','T_BOM_Indented_UU','2b8d1f8f-1e80-4a17-9bab-1eaa17435d9c',0,TO_TIMESTAMP('2012-10-31 10:19:04','YYYY-MM-DD HH24:MI:SS'),TO_TIMESTAMP('2012-10-31 10:19:04','YYYY-MM-DD HH24:MI:SS'),0,100,100,'Y') +; + +-- Oct 31, 2012 10:19:04 AM COT +INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Help,PO_Description,PO_Help,Name,Description,PrintName,PO_Name,PO_PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Element_Trl_UU ) SELECT l.AD_Language,t.AD_Element_ID, t.Help,t.PO_Description,t.PO_Help,t.Name,t.Description,t.PrintName,t.PO_Name,t.PO_PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=200206 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) +; + +-- Oct 31, 2012 10:19:05 AM COT +INSERT INTO AD_Column (IsEncrypted,Version,AD_Table_ID,AD_Column_ID,EntityType,IsMandatory,IsTranslated,IsIdentifier,IsParent,FieldLength,IsSelectionColumn,AD_Reference_ID,IsKey,AD_Element_ID,AD_Column_UU,IsUpdateable,IsAlwaysUpdateable,ColumnName,Name,Updated,CreatedBy,AD_Org_ID,IsActive,Created,UpdatedBy,AD_Client_ID) VALUES ('N',1.00,53335,200852,'U','N','N','N','N',36,'N',10,'N',200206,'1ba153f7-173b-4963-9f3c-cd4f047eb39f','Y','N','T_BOM_Indented_UU','T_BOM_Indented_UU',TO_TIMESTAMP('2012-10-31 10:19:04','YYYY-MM-DD HH24:MI:SS'),100,0,'Y',TO_TIMESTAMP('2012-10-31 10:19:04','YYYY-MM-DD HH24:MI:SS'),100,0) +; + +-- Oct 31, 2012 10:19:05 AM COT +INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Column_Trl_UU ) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=200852 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) +; + +-- Oct 31, 2012 10:19:05 AM COT +ALTER TABLE T_BOM_Indented ADD COLUMN T_BOM_Indented_UU VARCHAR(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:19:05 AM COT +CREATE UNIQUE INDEX T_BOM_Indented_UU_idx ON t_bom_indented(T_BOM_Indented_UU) +; + +-- Oct 31, 2012 10:19:06 AM COT +INSERT INTO AD_Element (ColumnName,AD_Element_ID,EntityType,Name,PrintName,AD_Element_UU,AD_Client_ID,Created,Updated,AD_Org_ID,CreatedBy,UpdatedBy,IsActive) VALUES ('AD_Tab_Customization_UU',200207,'U','AD_Tab_Customization_UU','AD_Tab_Customization_UU','82cb368d-5b4d-4cb8-ae56-64a0e295ced6',0,TO_TIMESTAMP('2012-10-31 10:19:05','YYYY-MM-DD HH24:MI:SS'),TO_TIMESTAMP('2012-10-31 10:19:05','YYYY-MM-DD HH24:MI:SS'),0,100,100,'Y') +; + +-- Oct 31, 2012 10:19:06 AM COT +INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Help,PO_Description,PO_Help,Name,Description,PrintName,PO_Name,PO_PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Element_Trl_UU ) SELECT l.AD_Language,t.AD_Element_ID, t.Help,t.PO_Description,t.PO_Help,t.Name,t.Description,t.PrintName,t.PO_Name,t.PO_PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=200207 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) +; + +-- Oct 31, 2012 10:19:06 AM COT +INSERT INTO AD_Column (IsEncrypted,Version,AD_Table_ID,AD_Column_ID,EntityType,IsMandatory,IsTranslated,IsIdentifier,IsParent,FieldLength,IsSelectionColumn,AD_Reference_ID,IsKey,AD_Element_ID,AD_Column_UU,IsUpdateable,IsAlwaysUpdateable,ColumnName,Name,Updated,CreatedBy,AD_Org_ID,IsActive,Created,UpdatedBy,AD_Client_ID) VALUES ('N',1.00,200008,200853,'U','N','N','N','N',36,'N',10,'N',200207,'990da79f-1e68-40e6-9546-0b1228439073','Y','N','AD_Tab_Customization_UU','AD_Tab_Customization_UU',TO_TIMESTAMP('2012-10-31 10:19:05','YYYY-MM-DD HH24:MI:SS'),100,0,'Y',TO_TIMESTAMP('2012-10-31 10:19:05','YYYY-MM-DD HH24:MI:SS'),100,0) +; + +-- Oct 31, 2012 10:19:06 AM COT +INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Column_Trl_UU ) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=200853 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) +; + +-- Oct 31, 2012 10:19:06 AM COT +ALTER TABLE AD_Tab_Customization ADD COLUMN AD_Tab_Customization_UU VARCHAR(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:19:06 AM COT +CREATE UNIQUE INDEX AD_Tab_Customization_UU_idx ON ad_tab_customization(AD_Tab_Customization_UU) +; + +-- Oct 31, 2012 10:19:07 AM COT +INSERT INTO AD_Element (ColumnName,AD_Element_ID,EntityType,Name,PrintName,AD_Element_UU,AD_Client_ID,Created,Updated,AD_Org_ID,CreatedBy,UpdatedBy,IsActive) VALUES ('PA_DashboardPreference_UU',200208,'U','PA_DashboardPreference_UU','PA_DashboardPreference_UU','16ec8487-fb7f-455e-97d2-9d4c4027cd0b',0,TO_TIMESTAMP('2012-10-31 10:19:07','YYYY-MM-DD HH24:MI:SS'),TO_TIMESTAMP('2012-10-31 10:19:07','YYYY-MM-DD HH24:MI:SS'),0,100,100,'Y') +; + +-- Oct 31, 2012 10:19:07 AM COT +INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Help,PO_Description,PO_Help,Name,Description,PrintName,PO_Name,PO_PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Element_Trl_UU ) SELECT l.AD_Language,t.AD_Element_ID, t.Help,t.PO_Description,t.PO_Help,t.Name,t.Description,t.PrintName,t.PO_Name,t.PO_PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=200208 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) +; + +-- Oct 31, 2012 10:19:08 AM COT +INSERT INTO AD_Column (IsEncrypted,Version,AD_Table_ID,AD_Column_ID,EntityType,IsMandatory,IsTranslated,IsIdentifier,IsParent,FieldLength,IsSelectionColumn,AD_Reference_ID,IsKey,AD_Element_ID,AD_Column_UU,IsUpdateable,IsAlwaysUpdateable,ColumnName,Name,Updated,CreatedBy,AD_Org_ID,IsActive,Created,UpdatedBy,AD_Client_ID) VALUES ('N',1.00,200013,200854,'U','N','N','N','N',36,'N',10,'N',200208,'10e9cb0f-132a-4f69-96f0-ec26789bf059','Y','N','PA_DashboardPreference_UU','PA_DashboardPreference_UU',TO_TIMESTAMP('2012-10-31 10:19:07','YYYY-MM-DD HH24:MI:SS'),100,0,'Y',TO_TIMESTAMP('2012-10-31 10:19:07','YYYY-MM-DD HH24:MI:SS'),100,0) +; + +-- Oct 31, 2012 10:19:08 AM COT +INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Column_Trl_UU ) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=200854 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) +; + +-- Oct 31, 2012 10:19:08 AM COT +ALTER TABLE PA_DashboardPreference ADD COLUMN PA_DashboardPreference_UU VARCHAR(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:19:08 AM COT +CREATE UNIQUE INDEX PA_DashboardPreference_UU_idx ON pa_dashboardpreference(PA_DashboardPreference_UU) +; + +-- Oct 31, 2012 10:19:08 AM COT +INSERT INTO AD_Element (ColumnName,AD_Element_ID,EntityType,Name,PrintName,AD_Element_UU,AD_Client_ID,Created,Updated,AD_Org_ID,CreatedBy,UpdatedBy,IsActive) VALUES ('A_Asset_Product_UU',200209,'U','A_Asset_Product_UU','A_Asset_Product_UU','d1005ada-66d3-4d29-94f4-0401bdefa063',0,TO_TIMESTAMP('2012-10-31 10:19:08','YYYY-MM-DD HH24:MI:SS'),TO_TIMESTAMP('2012-10-31 10:19:08','YYYY-MM-DD HH24:MI:SS'),0,100,100,'Y') +; + +-- Oct 31, 2012 10:19:08 AM COT +INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Help,PO_Description,PO_Help,Name,Description,PrintName,PO_Name,PO_PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Element_Trl_UU ) SELECT l.AD_Language,t.AD_Element_ID, t.Help,t.PO_Description,t.PO_Help,t.Name,t.Description,t.PrintName,t.PO_Name,t.PO_PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=200209 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) +; + +-- Oct 31, 2012 10:19:09 AM COT +INSERT INTO AD_Column (IsEncrypted,Version,AD_Table_ID,AD_Column_ID,EntityType,IsMandatory,IsTranslated,IsIdentifier,IsParent,FieldLength,IsSelectionColumn,AD_Reference_ID,IsKey,AD_Element_ID,AD_Column_UU,IsUpdateable,IsAlwaysUpdateable,ColumnName,Name,Updated,CreatedBy,AD_Org_ID,IsActive,Created,UpdatedBy,AD_Client_ID) VALUES ('N',1.00,53270,200855,'U','N','N','N','N',36,'N',10,'N',200209,'6a783ff8-4c8e-45ee-b15a-0636b97a985a','Y','N','A_Asset_Product_UU','A_Asset_Product_UU',TO_TIMESTAMP('2012-10-31 10:19:08','YYYY-MM-DD HH24:MI:SS'),100,0,'Y',TO_TIMESTAMP('2012-10-31 10:19:08','YYYY-MM-DD HH24:MI:SS'),100,0) +; + +-- Oct 31, 2012 10:19:09 AM COT +INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Column_Trl_UU ) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=200855 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) +; + +-- Oct 31, 2012 10:19:09 AM COT +ALTER TABLE A_Asset_Product ADD COLUMN A_Asset_Product_UU VARCHAR(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:19:09 AM COT +CREATE UNIQUE INDEX A_Asset_Product_UU_idx ON a_asset_product(A_Asset_Product_UU) +; + +-- Oct 31, 2012 10:19:10 AM COT +INSERT INTO AD_Element (ColumnName,AD_Element_ID,EntityType,Name,PrintName,AD_Element_UU,AD_Client_ID,Created,Updated,AD_Org_ID,CreatedBy,UpdatedBy,IsActive) VALUES ('A_Asset_Class_UU',200210,'U','A_Asset_Class_UU','A_Asset_Class_UU','5f13032a-b9e1-467f-bc7a-96a255502fa3',0,TO_TIMESTAMP('2012-10-31 10:19:09','YYYY-MM-DD HH24:MI:SS'),TO_TIMESTAMP('2012-10-31 10:19:09','YYYY-MM-DD HH24:MI:SS'),0,100,100,'Y') +; + +-- Oct 31, 2012 10:19:10 AM COT +INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Help,PO_Description,PO_Help,Name,Description,PrintName,PO_Name,PO_PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Element_Trl_UU ) SELECT l.AD_Language,t.AD_Element_ID, t.Help,t.PO_Description,t.PO_Help,t.Name,t.Description,t.PrintName,t.PO_Name,t.PO_PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=200210 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) +; + +-- Oct 31, 2012 10:19:10 AM COT +INSERT INTO AD_Column (IsEncrypted,Version,AD_Table_ID,AD_Column_ID,EntityType,IsMandatory,IsTranslated,IsIdentifier,IsParent,FieldLength,IsSelectionColumn,AD_Reference_ID,IsKey,AD_Element_ID,AD_Column_UU,IsUpdateable,IsAlwaysUpdateable,ColumnName,Name,Updated,CreatedBy,AD_Org_ID,IsActive,Created,UpdatedBy,AD_Client_ID) VALUES ('N',1.00,53269,200856,'U','N','N','N','N',36,'N',10,'N',200210,'2dc7a9bd-cf8f-4867-b94d-989e76bd0a45','Y','N','A_Asset_Class_UU','A_Asset_Class_UU',TO_TIMESTAMP('2012-10-31 10:19:09','YYYY-MM-DD HH24:MI:SS'),100,0,'Y',TO_TIMESTAMP('2012-10-31 10:19:09','YYYY-MM-DD HH24:MI:SS'),100,0) +; + +-- Oct 31, 2012 10:19:10 AM COT +INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Column_Trl_UU ) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=200856 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) +; + +-- Oct 31, 2012 10:19:10 AM COT +ALTER TABLE A_Asset_Class ADD COLUMN A_Asset_Class_UU VARCHAR(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:19:11 AM COT +CREATE UNIQUE INDEX A_Asset_Class_UU_idx ON a_asset_class(A_Asset_Class_UU) +; + +-- Oct 31, 2012 10:19:11 AM COT +INSERT INTO AD_Element (ColumnName,AD_Element_ID,EntityType,Name,PrintName,AD_Element_UU,AD_Client_ID,Created,Updated,AD_Org_ID,CreatedBy,UpdatedBy,IsActive) VALUES ('A_FundingMode_UU',200211,'U','A_FundingMode_UU','A_FundingMode_UU','205a3722-9a92-496c-bc14-e21edc0314d1',0,TO_TIMESTAMP('2012-10-31 10:19:11','YYYY-MM-DD HH24:MI:SS'),TO_TIMESTAMP('2012-10-31 10:19:11','YYYY-MM-DD HH24:MI:SS'),0,100,100,'Y') +; + +-- Oct 31, 2012 10:19:11 AM COT +INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Help,PO_Description,PO_Help,Name,Description,PrintName,PO_Name,PO_PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Element_Trl_UU ) SELECT l.AD_Language,t.AD_Element_ID, t.Help,t.PO_Description,t.PO_Help,t.Name,t.Description,t.PrintName,t.PO_Name,t.PO_PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=200211 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) +; + +-- Oct 31, 2012 10:19:12 AM COT +INSERT INTO AD_Column (IsEncrypted,Version,AD_Table_ID,AD_Column_ID,EntityType,IsMandatory,IsTranslated,IsIdentifier,IsParent,FieldLength,IsSelectionColumn,AD_Reference_ID,IsKey,AD_Element_ID,AD_Column_UU,IsUpdateable,IsAlwaysUpdateable,ColumnName,Name,Updated,CreatedBy,AD_Org_ID,IsActive,Created,UpdatedBy,AD_Client_ID) VALUES ('N',1.00,53273,200857,'U','N','N','N','N',36,'N',10,'N',200211,'b75dd803-c6b4-4cb4-837b-ec666b7778ad','Y','N','A_FundingMode_UU','A_FundingMode_UU',TO_TIMESTAMP('2012-10-31 10:19:11','YYYY-MM-DD HH24:MI:SS'),100,0,'Y',TO_TIMESTAMP('2012-10-31 10:19:11','YYYY-MM-DD HH24:MI:SS'),100,0) +; + +-- Oct 31, 2012 10:19:12 AM COT +INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Column_Trl_UU ) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=200857 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) +; + +-- Oct 31, 2012 10:19:12 AM COT +ALTER TABLE A_FundingMode ADD COLUMN A_FundingMode_UU VARCHAR(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:19:12 AM COT +CREATE UNIQUE INDEX A_FundingMode_UU_idx ON a_fundingmode(A_FundingMode_UU) +; + +-- Oct 31, 2012 10:19:12 AM COT +INSERT INTO AD_Element (ColumnName,AD_Element_ID,EntityType,Name,PrintName,AD_Element_UU,AD_Client_ID,Created,Updated,AD_Org_ID,CreatedBy,UpdatedBy,IsActive) VALUES ('A_FundingMode_Acct_UU',200212,'U','A_FundingMode_Acct_UU','A_FundingMode_Acct_UU','e8dcc9e7-e57a-4b53-9b66-5ed4c186794e',0,TO_TIMESTAMP('2012-10-31 10:19:12','YYYY-MM-DD HH24:MI:SS'),TO_TIMESTAMP('2012-10-31 10:19:12','YYYY-MM-DD HH24:MI:SS'),0,100,100,'Y') +; + +-- Oct 31, 2012 10:19:12 AM COT +INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Help,PO_Description,PO_Help,Name,Description,PrintName,PO_Name,PO_PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Element_Trl_UU ) SELECT l.AD_Language,t.AD_Element_ID, t.Help,t.PO_Description,t.PO_Help,t.Name,t.Description,t.PrintName,t.PO_Name,t.PO_PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=200212 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) +; + +-- Oct 31, 2012 10:19:13 AM COT +INSERT INTO AD_Column (IsEncrypted,Version,AD_Table_ID,AD_Column_ID,EntityType,IsMandatory,IsTranslated,IsIdentifier,IsParent,FieldLength,IsSelectionColumn,AD_Reference_ID,IsKey,AD_Element_ID,AD_Column_UU,IsUpdateable,IsAlwaysUpdateable,ColumnName,Name,Updated,CreatedBy,AD_Org_ID,IsActive,Created,UpdatedBy,AD_Client_ID) VALUES ('N',1.00,53274,200858,'U','N','N','N','N',36,'N',10,'N',200212,'cf79037c-8d0b-450e-b421-c30a2eb135ba','Y','N','A_FundingMode_Acct_UU','A_FundingMode_Acct_UU',TO_TIMESTAMP('2012-10-31 10:19:12','YYYY-MM-DD HH24:MI:SS'),100,0,'Y',TO_TIMESTAMP('2012-10-31 10:19:12','YYYY-MM-DD HH24:MI:SS'),100,0) +; + +-- Oct 31, 2012 10:19:13 AM COT +INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Column_Trl_UU ) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=200858 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) +; + +-- Oct 31, 2012 10:19:13 AM COT +ALTER TABLE A_FundingMode_Acct ADD COLUMN A_FundingMode_Acct_UU VARCHAR(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:19:13 AM COT +CREATE UNIQUE INDEX A_FundingMode_Acct_UU_idx ON a_fundingmode_acct(A_FundingMode_Acct_UU) +; + +-- Oct 31, 2012 10:19:13 AM COT +INSERT INTO AD_Element (ColumnName,AD_Element_ID,EntityType,Name,PrintName,AD_Element_UU,AD_Client_ID,Created,Updated,AD_Org_ID,CreatedBy,UpdatedBy,IsActive) VALUES ('A_Asset_Type_UU',200213,'U','A_Asset_Type_UU','A_Asset_Type_UU','e6e7930d-4be4-4ecd-8f54-5d67186e6894',0,TO_TIMESTAMP('2012-10-31 10:19:13','YYYY-MM-DD HH24:MI:SS'),TO_TIMESTAMP('2012-10-31 10:19:13','YYYY-MM-DD HH24:MI:SS'),0,100,100,'Y') +; + +-- Oct 31, 2012 10:19:13 AM COT +INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Help,PO_Description,PO_Help,Name,Description,PrintName,PO_Name,PO_PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Element_Trl_UU ) SELECT l.AD_Language,t.AD_Element_ID, t.Help,t.PO_Description,t.PO_Help,t.Name,t.Description,t.PrintName,t.PO_Name,t.PO_PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=200213 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) +; + +-- Oct 31, 2012 10:19:14 AM COT +INSERT INTO AD_Column (IsEncrypted,Version,AD_Table_ID,AD_Column_ID,EntityType,IsMandatory,IsTranslated,IsIdentifier,IsParent,FieldLength,IsSelectionColumn,AD_Reference_ID,IsKey,AD_Element_ID,AD_Column_UU,IsUpdateable,IsAlwaysUpdateable,ColumnName,Name,Updated,CreatedBy,AD_Org_ID,IsActive,Created,UpdatedBy,AD_Client_ID) VALUES ('N',1.00,53276,200859,'U','N','N','N','N',36,'N',10,'N',200213,'aa8b4c0b-7c61-47cd-8b85-9a290b97af2d','Y','N','A_Asset_Type_UU','A_Asset_Type_UU',TO_TIMESTAMP('2012-10-31 10:19:13','YYYY-MM-DD HH24:MI:SS'),100,0,'Y',TO_TIMESTAMP('2012-10-31 10:19:13','YYYY-MM-DD HH24:MI:SS'),100,0) +; + +-- Oct 31, 2012 10:19:14 AM COT +INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Column_Trl_UU ) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=200859 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) +; + +-- Oct 31, 2012 10:19:14 AM COT +ALTER TABLE A_Asset_Type ADD COLUMN A_Asset_Type_UU VARCHAR(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:19:14 AM COT +CREATE UNIQUE INDEX A_Asset_Type_UU_idx ON a_asset_type(A_Asset_Type_UU) +; + +-- Oct 31, 2012 10:19:14 AM COT +INSERT INTO AD_Element (ColumnName,AD_Element_ID,EntityType,Name,PrintName,AD_Element_UU,AD_Client_ID,Created,Updated,AD_Org_ID,CreatedBy,UpdatedBy,IsActive) VALUES ('I_FixedAsset_UU',200214,'U','I_FixedAsset_UU','I_FixedAsset_UU','3a525ba0-af20-42dc-bc10-eeb70b22a703',0,TO_TIMESTAMP('2012-10-31 10:19:14','YYYY-MM-DD HH24:MI:SS'),TO_TIMESTAMP('2012-10-31 10:19:14','YYYY-MM-DD HH24:MI:SS'),0,100,100,'Y') +; + +-- Oct 31, 2012 10:19:14 AM COT +INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Help,PO_Description,PO_Help,Name,Description,PrintName,PO_Name,PO_PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Element_Trl_UU ) SELECT l.AD_Language,t.AD_Element_ID, t.Help,t.PO_Description,t.PO_Help,t.Name,t.Description,t.PrintName,t.PO_Name,t.PO_PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=200214 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) +; + +-- Oct 31, 2012 10:19:15 AM COT +INSERT INTO AD_Column (IsEncrypted,Version,AD_Table_ID,AD_Column_ID,EntityType,IsMandatory,IsTranslated,IsIdentifier,IsParent,FieldLength,IsSelectionColumn,AD_Reference_ID,IsKey,AD_Element_ID,AD_Column_UU,IsUpdateable,IsAlwaysUpdateable,ColumnName,Name,Updated,CreatedBy,AD_Org_ID,IsActive,Created,UpdatedBy,AD_Client_ID) VALUES ('N',1.00,53277,200860,'U','N','N','N','N',36,'N',10,'N',200214,'1b18223e-0c22-42fa-b7fd-92671fc20e90','Y','N','I_FixedAsset_UU','I_FixedAsset_UU',TO_TIMESTAMP('2012-10-31 10:19:14','YYYY-MM-DD HH24:MI:SS'),100,0,'Y',TO_TIMESTAMP('2012-10-31 10:19:14','YYYY-MM-DD HH24:MI:SS'),100,0) +; + +-- Oct 31, 2012 10:19:15 AM COT +INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Column_Trl_UU ) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=200860 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) +; + +-- Oct 31, 2012 10:19:15 AM COT +ALTER TABLE I_FixedAsset ADD COLUMN I_FixedAsset_UU VARCHAR(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:19:15 AM COT +CREATE UNIQUE INDEX I_FixedAsset_UU_idx ON i_fixedasset(I_FixedAsset_UU) +; + +-- Oct 31, 2012 10:19:16 AM COT +INSERT INTO AD_Element (ColumnName,AD_Element_ID,EntityType,Name,PrintName,AD_Element_UU,AD_Client_ID,Created,Updated,AD_Org_ID,CreatedBy,UpdatedBy,IsActive) VALUES ('A_Asset_Reval_UU',200215,'U','A_Asset_Reval_UU','A_Asset_Reval_UU','f4bd422b-9c8f-457b-88ad-8a5a1fe6576d',0,TO_TIMESTAMP('2012-10-31 10:19:15','YYYY-MM-DD HH24:MI:SS'),TO_TIMESTAMP('2012-10-31 10:19:15','YYYY-MM-DD HH24:MI:SS'),0,100,100,'Y') +; + +-- Oct 31, 2012 10:19:16 AM COT +INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Help,PO_Description,PO_Help,Name,Description,PrintName,PO_Name,PO_PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Element_Trl_UU ) SELECT l.AD_Language,t.AD_Element_ID, t.Help,t.PO_Description,t.PO_Help,t.Name,t.Description,t.PrintName,t.PO_Name,t.PO_PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=200215 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) +; + +-- Oct 31, 2012 10:19:16 AM COT +INSERT INTO AD_Column (IsEncrypted,Version,AD_Table_ID,AD_Column_ID,EntityType,IsMandatory,IsTranslated,IsIdentifier,IsParent,FieldLength,IsSelectionColumn,AD_Reference_ID,IsKey,AD_Element_ID,AD_Column_UU,IsUpdateable,IsAlwaysUpdateable,ColumnName,Name,Updated,CreatedBy,AD_Org_ID,IsActive,Created,UpdatedBy,AD_Client_ID) VALUES ('N',1.00,53275,200861,'U','N','N','N','N',36,'N',10,'N',200215,'ac49c3db-0ef1-4830-a535-5f8553dea212','Y','N','A_Asset_Reval_UU','A_Asset_Reval_UU',TO_TIMESTAMP('2012-10-31 10:19:15','YYYY-MM-DD HH24:MI:SS'),100,0,'Y',TO_TIMESTAMP('2012-10-31 10:19:15','YYYY-MM-DD HH24:MI:SS'),100,0) +; + +-- Oct 31, 2012 10:19:16 AM COT +INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,AD_Column_Trl_UU ) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,Generate_UUID() FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=200861 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) +; + +-- Oct 31, 2012 10:19:16 AM COT +ALTER TABLE A_Asset_Reval ADD COLUMN A_Asset_Reval_UU VARCHAR(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:19:17 AM COT +CREATE UNIQUE INDEX A_Asset_Reval_UU_idx ON a_asset_reval(A_Asset_Reval_UU) +; + +-- Oct 31, 2012 10:27:40 AM COT +ALTER TABLE A_Asset_Acct ADD A_Asset_Acct_UU VARCHAR(36) DEFAULT NULL +; + +-- Oct 31, 2012 10:28:31 AM COT +ALTER TABLE A_Asset_Group_Acct ADD A_Asset_Group_Acct_UU VARCHAR(36) DEFAULT NULL +; + +CREATE UNIQUE INDEX a_asset_acct_uu_idx ON a_asset_acct (a_asset_acct_uu); + +CREATE UNIQUE INDEX a_asset_group_acct_uu_idx ON a_asset_group_acct (a_asset_group_acct_uu); + +CREATE UNIQUE INDEX ad_passwordrule_uu_idx ON ad_passwordrule (ad_passwordrule_uu); + +CREATE UNIQUE INDEX asp_ref_list_uu_idx ON asp_ref_list (asp_ref_list_uu); + +CREATE UNIQUE INDEX c_bankaccount_processor_uu_idx ON c_bankaccount_processor (c_bankaccount_processor_uu); + +CREATE UNIQUE INDEX c_pospayment_uu_idx ON c_pospayment (c_pospayment_uu); + +CREATE UNIQUE INDEX c_postendertype_uu_idx ON c_postendertype (c_postendertype_uu); + +CREATE UNIQUE INDEX m_costhistory_uu_idx ON m_costhistory (m_costhistory_uu); + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='dc9682fc-0bb4-4d55-a865-5c419d3ae0a0' WHERE AD_Column_ID=59254 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='020f0a6f-9157-4140-82f1-48777975aa3b' WHERE AD_Column_ID=59255 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='f8ff3ef7-8207-469c-b81f-e68886d47031' WHERE AD_Column_ID=59256 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='8a3728a2-bfc2-4429-a6d1-efd42ea16eea' WHERE AD_Column_ID=59257 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='9a708d3f-a18b-46db-9033-b3fecdc1143a' WHERE AD_Column_ID=59258 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='bd81a383-45c0-4d41-8324-d217498d2f36' WHERE AD_Column_ID=59259 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='d246e51f-9dee-433b-9558-ec5fd785f8e3' WHERE AD_Column_ID=59261 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='52f8fd28-db8b-4fda-8c1b-499b22014b3c' WHERE AD_Column_ID=59262 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='f356f23e-b83a-4719-9173-d4ffdfbc0c65' WHERE AD_Column_ID=59263 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='2a125b14-861e-4d29-b433-60abf2d1452b' WHERE AD_Column_ID=59264 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='6cb1f93d-d287-42b6-ace7-97d5d5b285eb' WHERE AD_Column_ID=59265 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='ec617866-4605-475a-912f-b92877ffabbf' WHERE AD_Column_ID=59266 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='b48788ba-59a1-46e3-947a-8f121ee5713b' WHERE AD_Column_ID=59267 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='32d0bda3-7137-4da2-9ef1-756087b96d4d' WHERE AD_Column_ID=59268 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='2ac77fc4-5cae-4b81-a0c3-93cc960beae5' WHERE AD_Column_ID=59269 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='5573a73d-a911-414a-bb79-7ba04cff84f5' WHERE AD_Column_ID=59270 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='f2133c2b-819a-412f-97a4-cccc70bda1b9' WHERE AD_Column_ID=59271 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='69f28f2b-b87f-4404-8971-4c439f0aacc5' WHERE AD_Column_ID=59272 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='8c4ad81a-01b4-4b5b-a2d4-27c1b43e10c0' WHERE AD_Column_ID=59273 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='fc1feacd-ab7e-4c5a-860f-cad172f0f023' WHERE AD_Column_ID=59274 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='62be85e2-d51f-466f-a4a6-49bfaddebf57' WHERE AD_Column_ID=59275 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='605e2c94-bd65-45ec-a9f1-ba2944d9bc7a' WHERE AD_Column_ID=59276 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='36a06484-044c-490e-9454-89ade8cc0085' WHERE AD_Column_ID=59277 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='dcbf4fbf-53f9-48de-81a7-8ff829cd752e' WHERE AD_Column_ID=59260 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='e743a1dd-75b1-45ff-b99c-8f8f9885b555' WHERE AD_Column_ID=59278 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='c38fe117-ee8d-41b5-b09f-f9cef3a1a507' WHERE AD_Column_ID=59279 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='a354e598-0fdf-476c-bd39-96b31db1f2db' WHERE AD_Column_ID=59280 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='2fc4eb96-093f-4544-acdc-71caa233f049' WHERE AD_Column_ID=59281 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='30aec249-6a07-4bfc-bf49-3b694e0314a1' WHERE AD_Column_ID=59285 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='d7f6feef-cd75-46d2-84de-b2d1de32a8d3' WHERE AD_Column_ID=59286 +; + +-- Oct 31, 2012 12:37:32 PM COT +UPDATE AD_Column SET AD_Column_UU='65d887fd-1d79-4504-88ba-ee26811b3df0' WHERE AD_Column_ID=59287 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='341c4899-2ac0-461d-b227-5d6f98d19e3f' WHERE AD_Column_ID=59288 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='143c9024-44bb-456b-a361-371a5ac717ad' WHERE AD_Column_ID=59289 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='a96eb188-5b69-4ece-aa64-4a896d8385c0' WHERE AD_Column_ID=59290 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='b364a2f4-1bec-4ca9-b34d-366f0a9cc868' WHERE AD_Column_ID=59291 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='f9305162-dd81-4bd3-aaef-d218d820d9e9' WHERE AD_Column_ID=59293 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='aa9ed860-1662-40d7-98e3-930e7ee61edf' WHERE AD_Column_ID=59294 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='97ca1e1f-e5e0-47fe-9bd9-8c0f7a2311d1' WHERE AD_Column_ID=59295 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='038fd89f-c23e-4cdb-8562-7885ffa755f4' WHERE AD_Column_ID=59296 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='0e1a7120-609f-4eed-a572-18be3ea92221' WHERE AD_Column_ID=59297 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='3e81b397-261b-413f-b202-c41ccca51ab4' WHERE AD_Column_ID=59298 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='68ad6ed5-37b6-45b0-a2a9-18195134ce06' WHERE AD_Column_ID=59299 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='65794203-22fa-493a-852a-448ec208a743' WHERE AD_Column_ID=59300 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='ff341449-1906-493a-ab49-8aa8e7a9aeac' WHERE AD_Column_ID=59301 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='51df61c6-e308-458f-af6a-65bf05696193' WHERE AD_Column_ID=59303 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='67ca92e3-c873-46ed-8eff-40539e5f9ff8' WHERE AD_Column_ID=59304 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='988d23ee-044c-4ec6-9f1a-5502e098d891' WHERE AD_Column_ID=59305 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='12063627-930a-4301-87c2-b69f0ae16155' WHERE AD_Column_ID=59306 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='f2e38977-6584-4d4b-8463-59933eecfc46' WHERE AD_Column_ID=59308 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='01244d80-f963-43e9-81f1-e358f7e049ae' WHERE AD_Column_ID=59309 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='33ee5f9e-a823-43f0-916f-211119e57bba' WHERE AD_Column_ID=59312 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='2df3c8eb-5b9c-49d5-9ace-b1d6a6a4a888' WHERE AD_Column_ID=59313 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='b9490dde-a0de-4c2b-8050-01ce9534735f' WHERE AD_Column_ID=59314 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='034ca7f8-44f6-4fe1-9edf-84bc001fb22a' WHERE AD_Column_ID=59315 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='15c428e2-d2b3-44b6-9ea8-b545c24f4d1f' WHERE AD_Column_ID=59316 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='110d49e0-e388-42f6-b97f-bd286d3261e0' WHERE AD_Column_ID=59317 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='424e35d6-125e-4e05-9825-dd42fda202fc' WHERE AD_Column_ID=59318 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='3dbc7d9c-c29a-4b02-aae1-92dadab26dfa' WHERE AD_Column_ID=59319 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='7ef8ace9-efa6-4be1-bcd8-e6dbfe23a0f0' WHERE AD_Column_ID=59320 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='5ae1e340-a0d9-4f74-ab7a-04e864000f37' WHERE AD_Column_ID=59321 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='94417e10-fce7-4d0f-99cd-b972774c542f' WHERE AD_Column_ID=59322 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='a108694b-7720-4a25-81f8-a333aeaf5920' WHERE AD_Column_ID=59323 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='1e0322ec-ed48-42c9-9aca-fc5b4d4bfa71' WHERE AD_Column_ID=59324 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='17a49663-67b0-4c86-8313-c802b32b8aae' WHERE AD_Column_ID=59325 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='fb8a21a3-37c6-494b-87e9-541cf115fdb7' WHERE AD_Column_ID=59327 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='faca241a-b1c1-4763-bd34-3fbbea9e6169' WHERE AD_Column_ID=59328 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='e57328ad-d478-49de-92dc-7490e8fa55d0' WHERE AD_Column_ID=59329 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='7c2106fc-fa55-44d7-b530-542078549c30' WHERE AD_Column_ID=59330 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='9d0615ab-7cf1-4a55-8040-fd6cf5628e73' WHERE AD_Column_ID=59331 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='9239e878-cc01-4b8b-b989-c9684c8ad893' WHERE AD_Column_ID=59332 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='c69b59c4-7333-4fed-b452-43e3f1ff0808' WHERE AD_Column_ID=59333 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='bba8a754-d399-4cce-83d3-d990885fbf8b' WHERE AD_Column_ID=59334 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='c5f8c629-a473-4197-aced-2676f4ff6527' WHERE AD_Column_ID=59335 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='964709d4-603b-48b0-8e06-de08feef7e6f' WHERE AD_Column_ID=59336 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='594a6f2a-3e00-4920-9875-5f465f42918d' WHERE AD_Column_ID=59337 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='902f350a-ea79-4473-92d4-29913a0d7192' WHERE AD_Column_ID=59338 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='01a45054-abbb-49e3-8475-0b0af5d21391' WHERE AD_Column_ID=59339 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='c122cece-79d0-4377-9aed-369debffa8bf' WHERE AD_Column_ID=59340 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='d9ce99ae-9d0c-4742-aef3-6c410cc309ac' WHERE AD_Column_ID=59341 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='a7bbd20b-0ca9-476c-a1c1-5e72ee83464e' WHERE AD_Column_ID=59342 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='04829e81-2129-4896-92db-079c0f85fe8f' WHERE AD_Column_ID=59344 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='6574007c-46c2-45ad-a360-9977188c7e21' WHERE AD_Column_ID=59345 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='edaf0a44-892f-4200-8be1-6f6836ce2f85' WHERE AD_Column_ID=59346 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='7514a215-e070-4510-a654-cfed38795366' WHERE AD_Column_ID=59347 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='fa10f536-f4e7-4eb7-924b-c433d2cb95fb' WHERE AD_Column_ID=59348 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='25ddb871-74e0-4c2e-972b-dfcb3340fb9a' WHERE AD_Column_ID=59349 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='14a045e0-ce18-481e-a343-a4a440b91e04' WHERE AD_Column_ID=59350 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='b524fa9a-223d-4dc3-9f0b-f59d9d8cc76c' WHERE AD_Column_ID=59351 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='9239af9f-4b0e-4b40-8b67-183e5cc740d2' WHERE AD_Column_ID=59353 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='e2ef7326-6c87-44f4-b781-f12204da445e' WHERE AD_Column_ID=59354 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='4f2b3fe6-11ca-4fa5-bf77-0f0c57d71ef6' WHERE AD_Column_ID=59355 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='488aec70-a7f2-40a4-b135-ca61d3b0e510' WHERE AD_Column_ID=59356 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='a7c90b99-967b-4a48-b465-ca4a969d89f8' WHERE AD_Column_ID=59357 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='3470e7f3-90ee-4398-bfbc-c3267a7a1ff0' WHERE AD_Column_ID=59358 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='6b97a541-3e97-4163-9358-a83b76b63293' WHERE AD_Column_ID=59359 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='b39798fe-a780-4090-ac36-78ab6cef4cea' WHERE AD_Column_ID=59360 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='7acdf11e-157c-4b00-9353-a32fb5497b50' WHERE AD_Column_ID=59361 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='5e581604-27c0-499b-9467-b72da247c014' WHERE AD_Column_ID=59362 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='b96f5239-d029-482b-9284-219775f8cf26' WHERE AD_Column_ID=59363 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='b6c480b7-d1fc-41af-a470-4f7706794c75' WHERE AD_Column_ID=59364 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='aa50a913-bc8d-4e9e-92e9-f379d5bcdcfe' WHERE AD_Column_ID=59365 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='d717f00a-6b4a-4eb1-b86e-e51e58ddc4fc' WHERE AD_Column_ID=59366 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='54bfe28d-c43a-43f7-b760-7817c6abdfed' WHERE AD_Column_ID=59367 +; + +-- Oct 31, 2012 12:37:33 PM COT +UPDATE AD_Column SET AD_Column_UU='eb883da7-9e1a-40e7-9ff2-ada2976bf213' WHERE AD_Column_ID=59368 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='8699258a-77ac-4a16-828b-c816e47707fc' WHERE AD_Column_ID=59369 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='85a66f88-fffa-4c9b-8183-481bc72890c3' WHERE AD_Column_ID=59370 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='8a099125-edbe-4b63-847f-04005f75561d' WHERE AD_Column_ID=59371 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='5b6267b7-5115-492b-9c72-965061b50d13' WHERE AD_Column_ID=59372 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='c5dc406d-28e9-4ed6-8885-223543db7a33' WHERE AD_Column_ID=59373 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='24ae9e8a-039d-41d1-80c7-2a8ecff6b805' WHERE AD_Column_ID=59374 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='5439283c-0039-4823-8a1a-047d06a79bed' WHERE AD_Column_ID=59375 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='afcf3af6-5802-48f0-a168-fec1f999cb9c' WHERE AD_Column_ID=59376 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='759eb462-d43a-4d7b-9405-4ee8b688ee30' WHERE AD_Column_ID=59377 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='f3aef3d9-78d9-46c0-ba65-20f41843a2c4' WHERE AD_Column_ID=59378 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='efb15f6e-bd58-4c29-b859-0e1959531dea' WHERE AD_Column_ID=59379 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='057c184a-e87e-4135-b9a4-c9c6833bae7e' WHERE AD_Column_ID=59380 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='9bfbbd2d-05a7-4667-a851-9f87fb9dfb1a' WHERE AD_Column_ID=59381 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='e2f86183-daee-4cf9-bbbf-53921a77fa54' WHERE AD_Column_ID=59382 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='78ffc54d-bfb8-44c9-b6dd-4cf3692be4cd' WHERE AD_Column_ID=59383 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='45154a17-8892-437b-85ee-e2f726970afa' WHERE AD_Column_ID=59384 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='546c3cb5-4284-44a2-b7cb-a7a657201fa5' WHERE AD_Column_ID=59385 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='0defabcb-5830-4bb8-9e2f-a80361c65e7e' WHERE AD_Column_ID=59386 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='37563b27-3151-4a6d-80ef-b5b0c4c8205e' WHERE AD_Column_ID=59387 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='e154363a-a760-465e-ac7b-39d396921b8f' WHERE AD_Column_ID=59388 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='0f7de766-3eee-4743-b3a9-20443653308e' WHERE AD_Column_ID=59389 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='c72cb1f1-860a-4467-a42b-88ea50efa56c' WHERE AD_Column_ID=59390 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='1b9239bb-5a02-4a91-b876-8bdd28a9229b' WHERE AD_Column_ID=59391 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='2da8e020-9939-4245-90dc-b46f4a820878' WHERE AD_Column_ID=59392 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='12b4069b-c14e-4fb8-b525-8cb7abe17037' WHERE AD_Column_ID=59393 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='6c01e886-d68e-46a8-a0f0-97c04e86b93c' WHERE AD_Column_ID=59394 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='504fe566-7ed4-4de0-912e-fa57129ece3a' WHERE AD_Column_ID=59395 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='aa08d432-af27-4917-a21e-dd5f9861f252' WHERE AD_Column_ID=59396 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='1a321008-3f51-4eb5-ade9-52dcb9db5ad4' WHERE AD_Column_ID=59397 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='58a84e54-f23f-48f7-8f15-59b81ccce241' WHERE AD_Column_ID=59398 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='dd013b0b-82db-4b4c-bff4-906f86cb3e82' WHERE AD_Column_ID=59399 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='55417c6d-be77-42ee-9ccb-ff21b502469f' WHERE AD_Column_ID=59401 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='9f7dd18b-98db-4ae7-a2cb-91ec5bafc95b' WHERE AD_Column_ID=59402 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='2882f4a9-2ed5-4034-b490-027ef3560d11' WHERE AD_Column_ID=59403 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='42636b21-2172-416d-b5c6-c96c4e886b91' WHERE AD_Column_ID=59404 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='51b57e26-f1ea-4bb5-b652-f381c1bdcdc8' WHERE AD_Column_ID=59405 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='441b111e-6d81-4084-936d-699d7bca6a47' WHERE AD_Column_ID=59406 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='5d72e905-06ac-49cc-84fc-1f13840c87b3' WHERE AD_Column_ID=59407 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='c130413e-55e5-4d6f-8c8b-939920afb9ea' WHERE AD_Column_ID=59408 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='d6a45992-b37f-4c78-85b1-1586ee68b648' WHERE AD_Column_ID=59409 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='0da7a8f2-e811-4026-a61b-b706acfa88fe' WHERE AD_Column_ID=59410 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='35a693cf-6673-4600-b13e-3130c4fbf6a9' WHERE AD_Column_ID=59411 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='b36e50dc-22d4-4a42-8e57-21b607f8a5f3' WHERE AD_Column_ID=59412 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='03b7e235-ad37-4c74-9ebc-6ece51a791da' WHERE AD_Column_ID=59413 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='61396dfd-e6a7-4eef-8e97-2f813ec7524d' WHERE AD_Column_ID=59414 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='9657eb6c-a382-4207-9d17-fd8774e44994' WHERE AD_Column_ID=59415 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='88dc1582-efc0-49ad-b62b-0a3ce6c0db74' WHERE AD_Column_ID=59416 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='7493794d-5b84-4571-85ca-bf09e2cfcd86' WHERE AD_Column_ID=59417 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='27e3643c-48c1-47d0-b0ab-c805cf77af74' WHERE AD_Column_ID=59418 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='8c8703ca-15b0-4928-a498-353da75db383' WHERE AD_Column_ID=59419 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='b0b94f1d-cc40-4f8e-89fa-5e138ae3d6c9' WHERE AD_Column_ID=59420 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='f31d9f92-824b-4cc7-a6f5-b0bb4d3499b3' WHERE AD_Column_ID=59421 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='e3565a98-5997-448c-893c-c6e94c3d95f7' WHERE AD_Column_ID=59422 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='a32564ca-4b9b-4fdc-af83-1422b6e2b400' WHERE AD_Column_ID=59423 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='ffacb7a1-a48b-48dd-81a1-32923f7095fb' WHERE AD_Column_ID=59424 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='35f84f29-be10-43a8-b089-a4d843bc33bf' WHERE AD_Column_ID=59425 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='10dc4b8d-48ed-417c-a4fa-c746e8b14847' WHERE AD_Column_ID=59426 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='6642d215-5cbc-4f7c-af3b-2224e529aa4c' WHERE AD_Column_ID=59429 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='dfb6ff96-d0ee-49f5-8307-f71fee5c8e18' WHERE AD_Column_ID=59430 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='16be4721-5dc1-4836-915f-70305ed12c3c' WHERE AD_Column_ID=59431 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='d958899f-ecb8-480f-802a-d023448c5790' WHERE AD_Column_ID=59432 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='e3f0c8a6-85cd-45c7-991f-b00410d323b8' WHERE AD_Column_ID=59433 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='13be8f20-602b-4c6e-aea9-1eafc57d45ba' WHERE AD_Column_ID=59434 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='d8679cdc-0cf2-4f8b-a136-f9c407e3a494' WHERE AD_Column_ID=59435 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='1bda6fca-d377-45e5-9f6a-8804b632ce50' WHERE AD_Column_ID=59436 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='9cb50904-d20d-4c30-b0a4-b1ede46bda11' WHERE AD_Column_ID=59437 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='21a57cd4-83c7-4300-b026-e8832df82c5b' WHERE AD_Column_ID=59438 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='43915668-b1bc-40bc-bf47-337edb03ab20' WHERE AD_Column_ID=59439 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='387dbf8b-8792-4f7e-be40-ac44f34284ba' WHERE AD_Column_ID=59440 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='dbb13bda-3420-462e-985b-af0367391639' WHERE AD_Column_ID=59441 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='7648a4f7-e0de-4c06-ae1d-8cc2da03cd10' WHERE AD_Column_ID=59442 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='d0bd2b01-9cb6-4e34-a65a-1cf8f3d1d7e3' WHERE AD_Column_ID=59443 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='0a153fce-f56b-45ab-8f35-c39cbfe49e6e' WHERE AD_Column_ID=59444 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='bf23fab2-fd03-43e3-ab74-18165ac0040b' WHERE AD_Column_ID=59445 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='6301b5b8-3468-4d87-b5f0-621f5e2c5377' WHERE AD_Column_ID=59446 +; + +-- Oct 31, 2012 12:37:34 PM COT +UPDATE AD_Column SET AD_Column_UU='1a3b5d3e-9fce-4d9c-a1ca-7d614617e623' WHERE AD_Column_ID=59447 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='17cd0205-063e-417c-b195-330326f32454' WHERE AD_Column_ID=59448 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='7bc4f553-f6b3-4e68-bda0-dd015749c385' WHERE AD_Column_ID=59449 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='6b184fef-7dd7-404c-ba87-dedaad03da92' WHERE AD_Column_ID=59450 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='f444aa52-b934-4ac6-8e5c-e368691819f1' WHERE AD_Column_ID=59451 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='1bb25aa7-44f0-4786-becf-88621661bb51' WHERE AD_Column_ID=59452 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='3068ef16-821b-40a6-be25-cab6cc4e8f7a' WHERE AD_Column_ID=59453 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='f11abfd4-1e08-4143-9bb4-3053267e40db' WHERE AD_Column_ID=59454 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='0d31481b-96df-4ad9-9b13-d1c03d84107e' WHERE AD_Column_ID=59455 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='38aaaaaa-1f44-48b7-b9e1-592c1b938cf7' WHERE AD_Column_ID=59456 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='72405c67-2703-498b-b7d5-b680d689ed5a' WHERE AD_Column_ID=59457 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='001d1c41-d761-41dd-b19d-15e28c41831f' WHERE AD_Column_ID=59458 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='2661aec9-ef88-4d8a-a832-ab34ad6bd524' WHERE AD_Column_ID=59459 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='87c20b5e-f35f-4711-b334-c57a2c04e60c' WHERE AD_Column_ID=59460 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='c0d727aa-97a9-4991-950d-43c976cc2620' WHERE AD_Column_ID=59463 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='8eb740cb-841b-4e87-97fd-81dfbf795311' WHERE AD_Column_ID=59464 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='ab0ae479-dc31-4b76-8258-6be621c86d2c' WHERE AD_Column_ID=59465 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='cfc0112c-c0a7-4b28-ab6c-ee7c458e0e45' WHERE AD_Column_ID=59466 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='e0b870a1-c724-4c2a-a310-3b361bdea87c' WHERE AD_Column_ID=59467 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='6a776f4e-3372-4527-a6ad-99e806cb1573' WHERE AD_Column_ID=59468 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='21ea0faf-d65f-4c0a-9fd8-fa24902eb1e9' WHERE AD_Column_ID=59470 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='d2ace51a-cb99-4ec4-ba18-43297d2098c8' WHERE AD_Column_ID=59471 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='4a5a79b8-09b6-43cc-b8f8-bb80a848ac2b' WHERE AD_Column_ID=59472 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='15e76bb0-a635-44b3-a46a-bbe90e966d52' WHERE AD_Column_ID=59473 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='e5515444-0f6e-4449-a1b2-90403f30facf' WHERE AD_Column_ID=59474 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='8824d0e8-9e8e-4681-b9e2-6127b192bd60' WHERE AD_Column_ID=59475 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='450c55b5-9d1a-41be-9a6d-d25338b09f77' WHERE AD_Column_ID=59477 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='02c0c8cf-33c8-433f-9f6c-6b43edd75839' WHERE AD_Column_ID=59478 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='5011e5ba-8b6c-40ac-96dc-10b3dd422c22' WHERE AD_Column_ID=59479 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='dd174fd6-82c1-4f5d-a53d-874690163180' WHERE AD_Column_ID=59480 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='03d5c8c3-1d7d-441b-9878-4b35ea30ddd3' WHERE AD_Column_ID=59481 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='c54e9435-3805-4dc9-90ba-a7eb6e738247' WHERE AD_Column_ID=59482 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='0aecd37e-3d30-4b3c-9f6a-b1faf20937ef' WHERE AD_Column_ID=59483 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='f8dbfbb0-943c-4dd4-adef-077aaf86bfd3' WHERE AD_Column_ID=59484 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='7424fdf8-04cb-47f7-ac3c-014f2af5a8be' WHERE AD_Column_ID=59485 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='466094dd-ca70-466b-891b-9c1d65070db6' WHERE AD_Column_ID=59486 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='d3a7a1b6-9925-49e8-8524-e9bf88021ac1' WHERE AD_Column_ID=59487 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='d95f9139-458b-4dbd-91a6-4c1c0c3f00e8' WHERE AD_Column_ID=59488 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='b9bc9dc9-3ab1-432c-a207-61ad8bcbe2f4' WHERE AD_Column_ID=59489 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='85cc9785-3dea-4251-8c0e-e2db6044280a' WHERE AD_Column_ID=59491 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='f8523d32-64ba-40df-a04b-396eb784e240' WHERE AD_Column_ID=59492 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='04b1dae5-f1e7-4afb-9299-eb7499799eb0' WHERE AD_Column_ID=59493 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='9c65a8b0-7feb-48f8-a52a-189fafcaeb94' WHERE AD_Column_ID=59302 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='97df3ab9-6421-476b-98fd-d31e73ea71fe' WHERE AD_Column_ID=59343 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='520f6f68-bf0f-422c-a087-dc0c0b9cfbba' WHERE AD_Column_ID=59326 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='8eb67f70-1ba3-42c2-9f70-e5d68499e72f' WHERE AD_Column_ID=59427 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='ef606d00-512f-4719-b280-579d595a0235' WHERE AD_Column_ID=59496 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='d0e90a7e-e0f1-4dd7-97bc-c4251b5f5b39' WHERE AD_Column_ID=59497 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='44c448e5-e0f5-4ea2-be82-86a08db1e5b6' WHERE AD_Column_ID=59499 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='69c747ea-40ac-4c01-be66-2662b5a9379b' WHERE AD_Column_ID=59500 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='338de78b-7109-4340-8a8c-1e757ce300c5' WHERE AD_Column_ID=59501 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='1d51fcd6-3bd8-45af-b2d8-e8f12a71ed34' WHERE AD_Column_ID=59502 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='41b99a0f-cacf-4e85-b082-5c5b17d7357e' WHERE AD_Column_ID=59503 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='03f54cf3-d7f4-4d5b-9324-65c270ad3c00' WHERE AD_Column_ID=59504 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='28a4d18e-9bbf-4a94-8ea0-c51d111f2ad3' WHERE AD_Column_ID=59505 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='741df0fd-2023-480f-b69a-5ecd92e610cf' WHERE AD_Column_ID=59506 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='185b82da-d061-4031-a1cb-4e1accf08ea3' WHERE AD_Column_ID=59507 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='3fece34b-697e-470d-85f5-3834076ba4da' WHERE AD_Column_ID=59508 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='6cedc429-f088-4182-bb62-0b9fb0f67eec' WHERE AD_Column_ID=59509 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='0fd59656-e7a8-400d-a972-360fcba5b685' WHERE AD_Column_ID=59510 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='e58d36c1-00d2-4bb9-bdb4-d3505c18b45c' WHERE AD_Column_ID=59511 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='dabcdc75-076c-4c1c-8fbe-9121a6f8a685' WHERE AD_Column_ID=59512 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='5cf6151a-268a-425e-8918-ce3d8db3e969' WHERE AD_Column_ID=59513 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='d6d72317-4702-4cdb-9078-60c10c7c9aa7' WHERE AD_Column_ID=59514 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='97a71fcb-c8f5-4f27-a507-f1337c6b1a9f' WHERE AD_Column_ID=59515 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='4732d14d-84c3-4be7-b8fb-76af9ba545f8' WHERE AD_Column_ID=59516 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='36f6f9e5-b0b5-4da2-ba83-727d75950d71' WHERE AD_Column_ID=59517 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='59bed226-9290-4e96-954a-b6c2efd510e5' WHERE AD_Column_ID=59518 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='06ec5c2a-67ec-4cf9-83cc-cd70c4d6f7d7' WHERE AD_Column_ID=59519 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='efa00c3f-1cee-4736-8dd1-8d46d8d10874' WHERE AD_Column_ID=59520 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='fff7025c-4102-4df8-b380-cf10f7b3dc13' WHERE AD_Column_ID=59521 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='3291523d-20fc-491b-8261-07032f78e9ae' WHERE AD_Column_ID=59523 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='b6576e98-2c0b-440f-9c4b-fb809cd26a19' WHERE AD_Column_ID=59524 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='bb57aecd-685c-4bf0-a2cd-4c7c671fbada' WHERE AD_Column_ID=59525 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='2ac489fd-1132-4740-bf81-09cae8422f32' WHERE AD_Column_ID=59526 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='4adfee09-1005-426d-9296-264c88d61730' WHERE AD_Column_ID=59527 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='e037bbe6-712a-4d46-b603-33c4acc95122' WHERE AD_Column_ID=59528 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='4f747c84-d5bc-44cb-ac74-13ba7f66cca3' WHERE AD_Column_ID=59529 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='d9cdc7f2-4670-4fb2-a24d-3bb8832c49d6' WHERE AD_Column_ID=59530 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='25f9e30a-2d2c-4001-8bb3-6c997f8491dd' WHERE AD_Column_ID=59531 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='d78efb00-d832-45e0-80bb-49900cb5be5d' WHERE AD_Column_ID=59532 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='ea5e18f7-feeb-4264-930b-8fe7e026874a' WHERE AD_Column_ID=59533 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='d529a53d-55f9-4a91-bf4e-13a07e3f3275' WHERE AD_Column_ID=59534 +; + +-- Oct 31, 2012 12:37:35 PM COT +UPDATE AD_Column SET AD_Column_UU='2cbb016c-fcb8-42b5-a726-2c211db0b5a3' WHERE AD_Column_ID=59535 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='51ccdfd3-d31a-44a9-b3a8-1a58ef8056f2' WHERE AD_Column_ID=59536 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='eeb66667-9f54-4c8a-af0a-bdb2caee20a5' WHERE AD_Column_ID=59537 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='4559c48d-0a51-4ed6-b4f7-e749523a7893' WHERE AD_Column_ID=59538 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='7d3017b9-d488-466e-9d26-0193d65cfa03' WHERE AD_Column_ID=59539 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='18ec800c-e5cf-4f3b-b62f-2e7a6ec39f9a' WHERE AD_Column_ID=59522 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='7cbeb7a3-ec4c-41c9-8436-7d4d32744cac' WHERE AD_Column_ID=59498 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='99841acf-37b1-431e-a7eb-1012e2cbb03c' WHERE AD_Column_ID=59587 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='71df6d55-510c-436f-a091-ff0b2901d3c9' WHERE AD_Column_ID=59588 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='2b9e1567-7bdf-4bfb-b974-b923b6cd0cd1' WHERE AD_Column_ID=59589 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='0dd23954-8131-4cbb-a136-301cecbeac70' WHERE AD_Column_ID=59590 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='8a164482-25af-408c-99b8-155c19c6ec07' WHERE AD_Column_ID=59591 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='46d56e7f-ab4c-4cf6-b968-49daf7241df7' WHERE AD_Column_ID=59592 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='892e8823-c153-48a6-9f65-dbc2ad924e9a' WHERE AD_Column_ID=59593 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='2899493a-b2ce-47c7-8f7c-6da56d18d18d' WHERE AD_Column_ID=61470 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='ca6fb628-83d9-4e54-9377-70ce9800c37b' WHERE AD_Column_ID=59307 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='2fe1610b-fbcf-4281-b91c-4245365d618e' WHERE AD_Column_ID=59292 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='c744f58e-5e8f-480e-b65b-0c4d84799f2b' WHERE AD_Column_ID=59400 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='9eae08aa-ddd3-4ed3-bcf4-00700121dd3c' WHERE AD_Column_ID=59461 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='2392fae3-09e3-4d47-b5d8-fe23ef664172' WHERE AD_Column_ID=59462 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='e46aba37-b92b-498e-85ca-611fefbd5dad' WHERE AD_Column_ID=59469 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='05c86b88-d985-4f39-8454-159fcfaba602' WHERE AD_Column_ID=59476 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='98154498-34b2-4808-94b3-e4379914da8f' WHERE AD_Column_ID=59352 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='0f8ffecb-b4d2-4f88-889a-2498d3f558f5' WHERE AD_Column_ID=59283 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='371f6b39-b57b-4f4e-ac1b-5aa2e7c8bb42' WHERE AD_Column_ID=59284 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='ca384cd3-b6bf-41a6-bd35-c664e5997ce4' WHERE AD_Column_ID=200210 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='744551cd-44ef-43fa-af71-0db6f7e1f2d4' WHERE AD_Column_ID=200211 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='b25be366-718c-4528-bea7-5d1fb73904d9' WHERE AD_Column_ID=59282 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='ed4550ef-c554-469f-8f7e-c53bace3e977' WHERE AD_Column_ID=200587 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='28fffb91-c096-46d1-b759-d01bdb8134e1' WHERE AD_Column_ID=59494 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='7ee7e48c-6e7c-4d9c-9eae-5ca450b751ff' WHERE AD_Column_ID=59428 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='2cce08e1-00f5-49e8-a57e-75b213d32223' WHERE AD_Column_ID=59490 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='85bde74e-57f3-46d3-89c1-fe0107715860' WHERE AD_Column_ID=61471 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='f3c77fce-ded4-4efa-a65c-569671ada957' WHERE AD_Column_ID=200075 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='5e01f2e2-e886-4441-943c-c72831140bda' WHERE AD_Column_ID=200076 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='eeeb71ea-8ee1-4e7b-bf4b-dc6662f04652' WHERE AD_Column_ID=200252 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='d215cbb6-bc77-4a4e-a41a-dd934d828fee' WHERE AD_Column_ID=61943 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='43e25d02-ce57-4195-b12a-5772083c26b1' WHERE AD_Column_ID=61940 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='6ae8572b-c133-4546-8033-17ac51f40564' WHERE AD_Column_ID=61983 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='769cc5d2-7929-40bb-86a3-253cd2dd3678' WHERE AD_Column_ID=200509 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='225becbb-1224-461b-a47e-d7710ebcb8be' WHERE AD_Column_ID=200253 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='8c98f44c-0745-4d4c-baf7-bba4f6115ac6' WHERE AD_Column_ID=61945 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='d70554a1-9f2a-4696-a716-31af1689a807' WHERE AD_Column_ID=61971 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='b7e9bdb0-6667-4066-b31a-03c760959d5a' WHERE AD_Column_ID=61972 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='288325e0-2ef8-421a-80e6-654e26ba1058' WHERE AD_Column_ID=61973 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='4b5c6e18-f2c8-43db-9369-5c13e6dd34a3' WHERE AD_Column_ID=61974 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='57e08074-2723-4d85-9221-9a48502e251b' WHERE AD_Column_ID=62014 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='7acd1736-9c34-4fb6-b7ae-8ba3cbd9d266' WHERE AD_Column_ID=62015 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='33765c16-0fcc-401c-a398-5f14a80739ca' WHERE AD_Column_ID=62020 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='e9e7a69a-595b-4910-bee5-0b9461d29771' WHERE AD_Column_ID=62022 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='cb67b782-2660-4faf-9ad1-68f42501ccbf' WHERE AD_Column_ID=62023 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='05aac944-e26a-4062-92c3-c60749a2dd33' WHERE AD_Column_ID=200213 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='58e36cff-7cf5-4374-b415-59acd8a3f56b' WHERE AD_Column_ID=62019 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='707d999c-0701-41cb-9a79-924e2a961561' WHERE AD_Column_ID=200214 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='29d54d37-e729-4cf0-a3df-c8f9c9100fb0' WHERE AD_Column_ID=62026 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='8e240462-76ba-4b8d-83cc-ba2636cbb29d' WHERE AD_Column_ID=200212 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='2fc7b9d9-f7bd-48fb-a006-630f6bc1aef9' WHERE AD_Column_ID=59962 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='60056d6d-0d84-433e-a686-0b441918b804' WHERE AD_Column_ID=59963 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='244a5ed0-d5a2-4513-b2ce-1f8936591161' WHERE AD_Column_ID=59964 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='947336cc-c4cd-49d8-90b1-ae6880de39ab' WHERE AD_Column_ID=59966 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='70aeafc6-60b9-421f-9597-5c681e7c671e' WHERE AD_Column_ID=59960 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='2708310e-5aab-42f9-9633-ed0d10e3d604' WHERE AD_Column_ID=59967 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='350948b5-954f-4ddb-8767-14e890d48cb6' WHERE AD_Column_ID=61944 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='11711850-ff10-4a1a-8d3c-5e16acf144d3' WHERE AD_Column_ID=200241 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='a3d4b525-ee1a-4d45-9215-8a708448543e' WHERE AD_Column_ID=61941 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='31a956e6-84eb-4d8c-a123-8cfded8b7861' WHERE AD_Column_ID=61942 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='78b6bb32-be4a-479f-933c-f71f397a331d' WHERE AD_Column_ID=62017 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='d35a6f87-00ae-4e29-8896-47f3eb49945b' WHERE AD_Column_ID=62018 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='1365d70b-3b32-42a5-9ec1-df2df53f2e79' WHERE AD_Column_ID=61970 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='3ff8b7b6-c8ce-4226-9efc-856ecd3703b7' WHERE AD_Column_ID=61992 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='b786c056-d65e-41af-9604-e30eb5e67609' WHERE AD_Column_ID=61946 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='c195455d-eec9-4112-b8e6-f1426300bc55' WHERE AD_Column_ID=61947 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='1f6c2a80-dd7e-4af8-a55d-36973d784859' WHERE AD_Column_ID=61948 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='80f49c1f-739d-4fed-85a8-281fabdbfa1e' WHERE AD_Column_ID=61981 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='ac56ad55-230b-423a-bfb2-6c1bb7fefc06' WHERE AD_Column_ID=61949 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='47539e97-5160-420a-84f8-0b3e7ded9b97' WHERE AD_Column_ID=61951 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='e992dca2-7108-4556-b95f-0c089de50116' WHERE AD_Column_ID=61952 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='ad119262-eee6-4741-9e26-bd32f1f9001e' WHERE AD_Column_ID=61954 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='5e85cb6a-d0fc-4ae7-8e28-09a22b1ebf50' WHERE AD_Column_ID=61955 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='f4b61026-232f-46d4-885c-2605dd5eacab' WHERE AD_Column_ID=61956 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='54acdec8-b814-451d-b9cb-ae63dc29d42c' WHERE AD_Column_ID=61957 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='3df0c541-1031-4592-96c8-67c052064777' WHERE AD_Column_ID=61958 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='654b89e2-5c8d-490d-9e5b-efe58f54a92a' WHERE AD_Column_ID=61959 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='da724dcf-78e2-48bd-a125-fe5db1b37615' WHERE AD_Column_ID=61960 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='f242e745-374b-47b6-9d31-c360405ea902' WHERE AD_Column_ID=61961 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='64809848-0628-46ad-b50a-8f05f9a75acd' WHERE AD_Column_ID=61962 +; + +-- Oct 31, 2012 12:37:36 PM COT +UPDATE AD_Column SET AD_Column_UU='07a0fd6d-21fc-4d32-bcf0-29772ebfae7a' WHERE AD_Column_ID=61963 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='0b9391b4-e2e4-4052-a098-7876e77c458d' WHERE AD_Column_ID=61964 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='50f287a0-ae6d-455d-8936-d84f8238bacc' WHERE AD_Column_ID=61966 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='5bff0b33-b7f7-455e-b078-5310815d2848' WHERE AD_Column_ID=61967 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='f56a9cfe-63e6-4656-a15e-f0df76f9587a' WHERE AD_Column_ID=61968 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='6364c53a-99bf-49e4-a4d8-c93b2593a041' WHERE AD_Column_ID=61993 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='49adee10-01d5-4cf0-aa22-b9c831b3d21a' WHERE AD_Column_ID=61975 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='0c5b70db-a69b-42ec-97f7-6d2a32952a7e' WHERE AD_Column_ID=61977 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='5f4d7f11-6b31-4186-bcb9-93df0820610c' WHERE AD_Column_ID=61978 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='b31eb59b-9fb4-4b9a-b697-ca54cdcc2a45' WHERE AD_Column_ID=61980 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='9a95f2e3-fcf4-4b2b-9be5-bbd840520c99' WHERE AD_Column_ID=61982 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='e7db1d89-5c8d-4a80-b745-ec8a037161f2' WHERE AD_Column_ID=61984 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='a43b3f02-af9d-4658-ba38-8a42c75e813f' WHERE AD_Column_ID=61985 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='9df2f863-d9c5-46e9-8456-930fafb76d3d' WHERE AD_Column_ID=61986 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='8022dddf-0ca3-4d26-9c8b-6601775db485' WHERE AD_Column_ID=61988 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='27d39df7-126b-4557-ae54-4bdc44ac37f1' WHERE AD_Column_ID=61989 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='872b740c-9473-4b8a-9c4b-c0e5da22fa5e' WHERE AD_Column_ID=61991 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='cb7ca15d-5322-4c86-b822-7e80c48d6469' WHERE AD_Column_ID=61994 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='787e3cee-81e1-4fda-a146-e928b78f8887' WHERE AD_Column_ID=61995 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='43bee906-7866-4cbe-b74f-2b1b5f4197c1' WHERE AD_Column_ID=61996 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='3fc4363d-bf42-4e45-b203-603ac57abc49' WHERE AD_Column_ID=61997 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='8503d6a1-0efc-4d9e-9270-e8a4cfe54b02' WHERE AD_Column_ID=61998 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='2396e7e2-c2ee-4ef2-a538-c52acb69787b' WHERE AD_Column_ID=62000 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='aea2a0dc-f01a-4be0-9ddf-cb8d0d49d206' WHERE AD_Column_ID=62001 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='8d321329-bc4e-4136-a100-32c9c49a3d9e' WHERE AD_Column_ID=62002 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='741f4a1f-85a4-413a-8d7d-dd2cb21bcc27' WHERE AD_Column_ID=62003 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='1220b3ba-9f16-4049-a46f-d5b5de4980c7' WHERE AD_Column_ID=62004 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='d71214b9-c8a5-4ed2-b6e3-bea109cccabb' WHERE AD_Column_ID=62005 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='01e50f3a-7823-45dc-b88d-59771322d4f1' WHERE AD_Column_ID=62007 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='24dd7c71-2509-49ab-b90b-c366273cd706' WHERE AD_Column_ID=62008 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='812d6e92-91c9-456d-bdd9-e2e1b34a1011' WHERE AD_Column_ID=62009 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='cccffb77-508a-4ba6-829c-8b8d5874b8d6' WHERE AD_Column_ID=62010 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='4999e158-3c89-4831-8fde-ed897a100d6e' WHERE AD_Column_ID=62011 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='dba9a056-0f2f-447c-8bcc-863030737397' WHERE AD_Column_ID=62012 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='db79afa1-7b3d-4f80-88f4-20815723ef66' WHERE AD_Column_ID=62024 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='441d7847-f9ed-4c7f-9016-0a082964e2e9' WHERE AD_Column_ID=62025 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='9ab694f7-1b65-4635-951f-8cf6d21e10f9' WHERE AD_Column_ID=62027 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='0bc58aa9-4520-452a-8279-0570d65cb5a7' WHERE AD_Column_ID=61804 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='32f75810-4445-4b71-88c6-b8c5781abda4' WHERE AD_Column_ID=200517 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='f56dc78d-d993-472b-be45-4a62ff0f4e80' WHERE AD_Column_ID=200518 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='c09aae82-a556-42c3-9c5e-33946b8a8fa0' WHERE AD_Column_ID=200519 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='0c4dd1fc-6471-46c2-b3cf-53a406054583' WHERE AD_Column_ID=200520 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='3feba486-d1b4-44ad-97b7-bffc12f67022' WHERE AD_Column_ID=200524 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='06980c54-58d1-45f3-988c-5a0bf982b464' WHERE AD_Column_ID=200521 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='31ee6634-8742-4616-9e26-aa3213eb384e' WHERE AD_Column_ID=200525 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='039a6b4e-1d08-4904-9ee9-740aa8ac353b' WHERE AD_Column_ID=200526 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='6e4e92c9-c261-4fe6-83e6-f3cc0466833b' WHERE AD_Column_ID=200522 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='39b50957-05dc-407b-8124-70afbd54ebbf' WHERE AD_Column_ID=200523 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='2feff17e-fe9e-4c7b-a210-07985738e9e1' WHERE AD_Column_ID=200529 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='23ef2dee-0091-4e40-a085-5f93c3c97385' WHERE AD_Column_ID=200527 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='6af8d3e7-a235-480b-a2b1-fb27151318ae' WHERE AD_Column_ID=200530 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='b596aa59-8b61-4555-ab2e-50dfaca33281' WHERE AD_Column_ID=200531 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='2de254fb-8ab7-40f1-b9c0-a289cf7a4f53' WHERE AD_Column_ID=200532 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='227aabdb-dbc5-438a-bb8b-7d52dd36071e' WHERE AD_Column_ID=200533 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='13da0b8a-a652-49b1-bdcf-45aefeb637e7' WHERE AD_Column_ID=200534 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='13e00eda-f924-4d05-96bf-0de0657b16ba' WHERE AD_Column_ID=200535 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='93c2f3bd-f544-43af-8fde-82033e30326a' WHERE AD_Column_ID=200536 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='b39725ba-2ab0-4b14-ba0b-d8e99e48fd87' WHERE AD_Column_ID=200537 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='e8b078bb-3377-4a06-98c3-95dd46cb97d4' WHERE AD_Column_ID=200497 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='c92c027c-577d-4a47-b023-2374f068f981' WHERE AD_Column_ID=200538 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='6d5b7d9b-0ed1-4271-82c5-db241c459387' WHERE AD_Column_ID=200494 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='e84f507e-ac82-4b09-b298-227135b19346' WHERE AD_Column_ID=200495 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='5f3e6eac-4868-44c9-acff-3e1af4b51503' WHERE AD_Column_ID=200496 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='30d0d946-aadc-4997-aa94-4f35d6f4e277' WHERE AD_Column_ID=200498 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='80a68c3c-0a9c-45e1-9159-9e0b571e8e96' WHERE AD_Column_ID=200499 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='9693c2d6-7755-45ae-80b1-1587fd3f56a3' WHERE AD_Column_ID=200500 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='bb2d3678-ad44-49fe-aa1b-dc8fe9e5f742' WHERE AD_Column_ID=200501 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='f1c7ad68-9473-45ae-9e7a-4d4d6b6552fe' WHERE AD_Column_ID=200502 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='74586716-f39d-4dac-bc28-dfd6732c59d3' WHERE AD_Column_ID=200503 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='19e08a98-f527-4bc5-81e2-b51975dc44f4' WHERE AD_Column_ID=200504 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='6c4c9f5f-1db4-480b-b039-66bad1439b8d' WHERE AD_Column_ID=200505 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='990f459c-e8ba-4093-9715-b8c2d0a8dbb0' WHERE AD_Column_ID=200506 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='4b73d330-1869-4c38-b88e-f1e24a53c1fc' WHERE AD_Column_ID=200507 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='4ccf117a-00a4-492b-92dd-ca777105390d' WHERE AD_Column_ID=200508 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='818069c9-4fc1-4057-86b0-caf69e5b3b3c' WHERE AD_Column_ID=200510 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='325da436-8934-4143-bb91-ca8c5c207ee3' WHERE AD_Column_ID=200511 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='96d16f72-09c9-4fb7-9b96-9ce8bae8c2be' WHERE AD_Column_ID=200512 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='1f70bd7a-1023-45cd-a643-b517a1377057' WHERE AD_Column_ID=200513 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='e4e599f4-f705-48ad-8903-957bbf463faf' WHERE AD_Column_ID=200514 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='f0909a4f-b1a7-4645-a6cf-10473510fcde' WHERE AD_Column_ID=200515 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='59b3afbb-dd74-45bc-b954-8f6b9c122f65' WHERE AD_Column_ID=200516 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='a1f6bd6f-4e0f-478d-b0d0-5e224e0025db' WHERE AD_Column_ID=200539 +; + +-- Oct 31, 2012 12:37:37 PM COT +UPDATE AD_Column SET AD_Column_UU='0b4697d7-b8c3-49ad-8e0c-b0c5bc766e1f' WHERE AD_Column_ID=200540 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='5c91bf21-b6e3-4db3-b88e-91f66a1a98fe' WHERE AD_Column_ID=200541 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='3f4918da-e253-4f42-9c26-6badae2ee4ca' WHERE AD_Column_ID=200542 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='6020f4ed-d7ee-439e-98fa-92a491304d9b' WHERE AD_Column_ID=200543 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='82db4896-7b84-4734-ac5b-313da2aab663' WHERE AD_Column_ID=200544 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='182169a3-4a26-490a-b3d6-87141d33d8ce' WHERE AD_Column_ID=200545 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='17c3f64f-6f9b-4896-851a-0fb36de85bb9' WHERE AD_Column_ID=200546 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='2a6a2719-ba27-4834-a5c7-b16422c97eb7' WHERE AD_Column_ID=200528 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='8baf3ea2-9355-4e76-b204-8dcd99ec21d8' WHERE AD_Column_ID=59961 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='4190130f-9488-440f-9de9-0fbb75f4cdab' WHERE AD_Column_ID=200242 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='ddaf01c7-e4a7-4aff-8d73-30782fc264cc' WHERE AD_Column_ID=61950 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='7ba4bc1d-05b0-489b-8cb4-334e8518b62b' WHERE AD_Column_ID=61953 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='9af63eea-3f75-4e1e-b3d3-9afb97f10fb6' WHERE AD_Column_ID=61965 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='17ed35d9-b696-437f-97d0-25eca611b274' WHERE AD_Column_ID=61969 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='0bd12687-c0c0-4cb7-a7da-1d474cb00ccc' WHERE AD_Column_ID=61976 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='89d2a934-64dd-450b-8fa4-71217920ba8a' WHERE AD_Column_ID=61979 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='b3256d65-cd61-406e-b299-70b5295cb5c7' WHERE AD_Column_ID=61987 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='fb689b27-b5f6-413e-aae7-18a1054dac1a' WHERE AD_Column_ID=61990 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='1b65b99c-1b91-418c-9211-28e34dbeb9fd' WHERE AD_Column_ID=61999 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='8c220003-0462-4306-bbcd-c2ab77a08e58' WHERE AD_Column_ID=62006 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='5573c58f-48be-42a4-8ecb-a03319274bbe' WHERE AD_Column_ID=62013 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='449a0f11-654e-471b-b33d-23dd67149552' WHERE AD_Column_ID=62016 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='f0709181-ffeb-494a-a9d4-a42b8603f967' WHERE AD_Column_ID=62021 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='adca00a1-58b5-4620-9525-0f2d5e69011f' WHERE AD_Column_ID=59251 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='e20d124f-1b41-489c-a33c-7dd7b5c87f38' WHERE AD_Column_ID=59252 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Column SET AD_Column_UU='6d59ada1-a9e8-406f-845b-255d7ec94c6f' WHERE AD_Column_ID=59253 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='99a103d1-6790-49b6-b75b-9b7a0aa7e6f9' WHERE AD_Element_ID=55245 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='f0d4937f-56e7-465a-bfe2-720b436d4cd4' WHERE AD_Element_ID=200060 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='528f17a6-0e1f-4a34-8b22-290aae34ec1c' WHERE AD_Element_ID=200061 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='6baa93cb-422c-4eae-a595-0ffb1e734d1e' WHERE AD_Element_ID=200062 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='f0d67a54-4f2a-43ff-8b42-3013caeda7fa' WHERE AD_Element_ID=55243 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='5eb7a9bb-9bb0-4c2c-9b25-b2751b7cae22' WHERE AD_Element_ID=55236 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='eaff36db-ab9b-4a89-8f83-d6e61020ac6e' WHERE AD_Element_ID=55237 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='a9547a2c-99ed-4d2f-9934-ba060c40ec27' WHERE AD_Element_ID=55238 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='edcc00f2-cde6-4bd4-a4e2-5b4b62a28bf6' WHERE AD_Element_ID=55239 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='c6c38450-1d10-4255-a5a8-22e4065eea3a' WHERE AD_Element_ID=55240 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='f7d8b869-fbdb-4c33-83ec-7aa9ee596f65' WHERE AD_Element_ID=55241 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='7b16217b-44e7-483b-b4f9-398c3f767f1a' WHERE AD_Element_ID=55242 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='288503f5-199b-4d4d-9b97-f961dd6f7a30' WHERE AD_Element_ID=55244 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='3100ea04-b3cf-467f-a838-8e46f306c870' WHERE AD_Element_ID=55246 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='30e3c7e4-51b4-480e-aff6-dcf38bfcdd53' WHERE AD_Element_ID=55247 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='abf42d84-e750-481e-b7ce-982bf760fc74' WHERE AD_Element_ID=55248 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='5117b821-b38d-4075-97e8-c6e6b5b8ecda' WHERE AD_Element_ID=200080 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='7230545e-e974-412f-8312-79fd4fcbb721' WHERE AD_Element_ID=200134 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='e0a11afc-9a96-4176-bc44-cb68ee6ae2be' WHERE AD_Element_ID=200135 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='7f9725a7-fce3-46ee-850a-7c6639b80ba4' WHERE AD_Element_ID=200136 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='e603e57e-44a1-4941-b686-fd71603a3118' WHERE AD_Element_ID=200137 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='ce08f4fa-8224-46f7-b4ca-b7ef0c28aee1' WHERE AD_Element_ID=200138 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='d01e15bd-0187-42eb-9447-901afdbc266f' WHERE AD_Element_ID=200139 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='cdec36c7-7056-4e96-b7c7-9b63c2f807f8' WHERE AD_Element_ID=200140 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='881406a9-446f-480f-8e21-b18fbcd843fa' WHERE AD_Element_ID=200141 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='db54dbc1-5bd7-425b-a034-8b24d727603b' WHERE AD_Element_ID=200142 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='746b6910-798b-4101-b5d7-e148a79c8a20' WHERE AD_Element_ID=200143 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='0e4cd5fa-e01d-4573-8bfa-020c2faaf1b6' WHERE AD_Element_ID=200144 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='a7c65caa-1e20-419b-95a3-e33403424b94' WHERE AD_Element_ID=200145 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='bb67e466-b30b-4b21-a2f3-0e5fec1da09a' WHERE AD_Element_ID=200146 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='d362f729-7a90-4bf2-934c-51953c74954a' WHERE AD_Element_ID=54165 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='b92d9612-cc75-4bfd-b380-2fa06d54aa4e' WHERE AD_Element_ID=54166 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='24778f4b-e57e-48d1-89d8-3c29b0a0ec8c' WHERE AD_Element_ID=54167 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='d6944a27-6702-4116-a983-d336a7cc69f1' WHERE AD_Element_ID=54168 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='ceecb012-3cef-40ac-b342-c53f41a6b9ab' WHERE AD_Element_ID=54169 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='52ce6e5c-ace3-4eb7-a855-f6645fdff89b' WHERE AD_Element_ID=54170 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='b124bd67-39ed-4819-9010-bfa057bba0e1' WHERE AD_Element_ID=54172 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='c862f067-69af-4c40-9918-9837130eb74a' WHERE AD_Element_ID=54173 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='c7a75427-08dd-47f4-ad74-ccbd9df13b2d' WHERE AD_Element_ID=54174 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='d00a01f7-9edf-4047-a472-487e3689f998' WHERE AD_Element_ID=54175 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='e718ec0f-55ee-42b7-b4ef-a40b1dff7fd1' WHERE AD_Element_ID=54176 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='729f29bb-0374-48e0-aa7e-2941ff36e7b7' WHERE AD_Element_ID=54177 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='52977e4f-de04-4bf7-b27a-4a5bc5f7daac' WHERE AD_Element_ID=54178 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='3cfea474-6e44-4ea6-9b40-2fc31a193ea3' WHERE AD_Element_ID=54179 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='9bc4d835-6e59-41f1-b4dc-b0cf1a94bcd9' WHERE AD_Element_ID=54180 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='6f2298a4-fd2f-4c98-a39c-9ad619cee230' WHERE AD_Element_ID=54181 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='d9402fc7-7cb4-45e0-aadc-c6c74340d055' WHERE AD_Element_ID=54182 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='926a1290-7f75-49d9-975b-a3cff9edd87a' WHERE AD_Element_ID=54183 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='4b24b0bf-5b86-4e7b-aaf9-84c938734357' WHERE AD_Element_ID=54184 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='bcdb846a-0e66-4fde-b676-894b066c0a27' WHERE AD_Element_ID=54185 +; + +-- Oct 31, 2012 12:37:38 PM COT +UPDATE AD_Element SET AD_Element_UU='2f40fded-6c1c-4984-aa29-ce9cb7218ace' WHERE AD_Element_ID=54189 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='8d64b35f-08e1-446e-a727-b5c2ef730351' WHERE AD_Element_ID=54190 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='a4151a44-f0a6-4bde-ba56-01d05bf75c9a' WHERE AD_Element_ID=54191 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='a1521771-b409-4d15-8de5-0a342db4a5ac' WHERE AD_Element_ID=54192 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='66934992-bb6d-4109-9c59-308d982c0a1d' WHERE AD_Element_ID=54193 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='ce4d30ef-961b-4498-9ba1-0e2f018bcf58' WHERE AD_Element_ID=54194 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='5fcb4eb3-2b38-4b83-93b5-b0e2b54d93e0' WHERE AD_Element_ID=54196 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='5eeb9d01-913f-4a8f-8110-3585b49a2e63' WHERE AD_Element_ID=54197 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='7b2c2821-4399-44d8-910d-a73af07d791d' WHERE AD_Element_ID=54198 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='8179e80d-1c41-4286-ba89-5607c0c32f24' WHERE AD_Element_ID=54199 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='d3750c78-4f39-40a9-842a-df0e59a8b735' WHERE AD_Element_ID=54200 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='04023360-b7fd-40cf-be60-9aa4da62963a' WHERE AD_Element_ID=54201 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='609bbd6f-fa69-490e-9957-ed7c5e5bf252' WHERE AD_Element_ID=54188 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='c9866577-8e81-413e-bdd7-af2d613f04f7' WHERE AD_Element_ID=54187 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='328bf53c-cd56-4ec4-b470-4bffdde508a4' WHERE AD_Element_ID=54186 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='f4d4b72e-3b43-4507-a619-26bf5e955592' WHERE AD_Element_ID=54195 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='7b19f9e1-e913-4271-8665-14c56893d6fd' WHERE AD_Element_ID=54171 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='ddeca23f-738e-4f18-b839-49a0becd76d7' WHERE AD_Element_ID=54202 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='cdf56abe-8aae-419e-a227-d11e7183fea6' WHERE AD_Element_ID=54203 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='24c8c328-3637-4da0-bef3-8e21ad5a881b' WHERE AD_Element_ID=54204 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='bc8dc29d-2306-47b3-9698-21c023571bc5' WHERE AD_Element_ID=54205 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='ccc6c860-4649-491d-a713-103db8efcc22' WHERE AD_Element_ID=54206 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='b4d87e87-1a62-4c27-9543-cc1632db20a2' WHERE AD_Element_ID=54207 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='eca981d9-87f5-4aa0-b8de-908bc528921e' WHERE AD_Element_ID=54208 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='23ea7f4b-35d5-4bb9-a4f3-d539d803c8c9' WHERE AD_Element_ID=54209 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='fcb8aa99-14da-4155-902a-f23a16d48cc5' WHERE AD_Element_ID=54210 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='89257618-9a69-47e7-8f38-f50500881656' WHERE AD_Element_ID=54211 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='5b5018c0-ac23-4ada-b973-fca9b4eda8c3' WHERE AD_Element_ID=54212 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='f1ae1dd6-6499-440c-a039-8eaefb3ee63b' WHERE AD_Element_ID=54213 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='ff4b7661-e014-4dd8-92e1-7854be6c99bc' WHERE AD_Element_ID=54214 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='68365552-5257-4afd-afc2-7c01cf8f6be4' WHERE AD_Element_ID=54215 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='c2415533-bb0c-44b1-8619-122376c7b4f7' WHERE AD_Element_ID=54216 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='855a740a-c1b9-4bf0-9546-6d3781d7f203' WHERE AD_Element_ID=54217 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='2d3feb44-5855-4529-a89d-f755c869921d' WHERE AD_Element_ID=54218 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='c87fd47b-2a7c-4270-a210-299988e3f9fe' WHERE AD_Element_ID=54219 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='dc9808bc-75bd-4a44-b0ed-02844b58b794' WHERE AD_Element_ID=54220 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='876d035d-b6a8-4fc2-a463-c26819267b63' WHERE AD_Element_ID=54221 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='0494630e-93f9-4006-ae49-edae24494d46' WHERE AD_Element_ID=54222 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='11b1cabc-bcd3-4943-a55d-52f5350883c7' WHERE AD_Element_ID=54223 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='d7c8de47-d8dd-45d1-ab63-7cca874d7b02' WHERE AD_Element_ID=54224 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='c6b957c2-33f6-4b50-bfd5-5e15da1b2150' WHERE AD_Element_ID=54225 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='7bdacf37-0c45-4c0e-9038-ffee4656537a' WHERE AD_Element_ID=54226 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='33218840-96eb-46c1-9153-170d838d46f8' WHERE AD_Element_ID=54227 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='059ec1ab-7e4f-46e7-9ec1-fa19261f4abf' WHERE AD_Element_ID=54231 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='dbdd7a05-796d-4691-ac4a-a78ed0df8438' WHERE AD_Element_ID=54229 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='8e7d7983-3e6b-4b27-ab4f-31ea0ce8c98f' WHERE AD_Element_ID=54228 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='978839d9-9926-4c64-8d7c-be6eba061c96' WHERE AD_Element_ID=54230 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='d2286051-5fb9-43ac-bd9b-dd760deb1402' WHERE AD_Element_ID=54233 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='b5a7dc7f-7d44-47fb-aec8-e111c1a37314' WHERE AD_Element_ID=54234 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='97b8e15d-59b6-43fb-bb46-e408f0072656' WHERE AD_Element_ID=54235 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='51d5d2d0-2218-4cfe-8ddf-121460e16f13' WHERE AD_Element_ID=54236 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='69b8c90b-b34a-4857-9439-ea57a9fa6818' WHERE AD_Element_ID=54237 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='8a1da7c0-a24d-4538-b019-970fa8cb8271' WHERE AD_Element_ID=54244 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='798a24ee-b601-4a46-9a87-016e90809d1c' WHERE AD_Element_ID=55168 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='307889f9-597f-41aa-99d1-2e6ebdb58ce4' WHERE AD_Element_ID=200015 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='4a3e9eef-5f5e-4110-b61b-2cd5dfffbe66' WHERE AD_Element_ID=200176 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Element SET AD_Element_UU='6a91f10b-45a4-4d7c-8c1c-ab5401e08343' WHERE AD_Element_ID=200079 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Field SET AD_Field_UU='1389b4d0-de95-4060-baa2-df37cd9bfab5' WHERE AD_Field_ID=59827 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Field SET AD_Field_UU='61c6d57c-d1bb-4850-a844-e3771ae35199' WHERE AD_Field_ID=200511 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Field SET AD_Field_UU='e8e9106b-1844-4dda-8ba5-8d776d86d17c' WHERE AD_Field_ID=200516 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Field SET AD_Field_UU='888e22ec-61f2-45ba-9c3d-3355b0e37660' WHERE AD_Field_ID=200520 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Field SET AD_Field_UU='f3ea7baf-268b-4b44-bb41-7f30e6b77704' WHERE AD_Field_ID=200512 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Field SET AD_Field_UU='36a25ec6-dffb-430c-a351-1ee449e70f7d' WHERE AD_Field_ID=200513 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Field SET AD_Field_UU='49fd1997-b262-4e9b-8c9a-40797d6efeff' WHERE AD_Field_ID=200514 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Field SET AD_Field_UU='6ed3b030-bf4b-4731-af84-2e8d1f2d0278' WHERE AD_Field_ID=200515 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Field SET AD_Field_UU='22e88f43-b5be-4892-9584-cf7f7f8e53f8' WHERE AD_Field_ID=200539 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Field SET AD_Field_UU='f0173a89-e4e5-4560-9269-64babe898752' WHERE AD_Field_ID=200521 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Field SET AD_Field_UU='7c20f055-1adb-4a78-8474-e8738401d4d5' WHERE AD_Field_ID=200542 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Field SET AD_Field_UU='20881e4a-7052-4883-9a85-7346c6e1a6f7' WHERE AD_Field_ID=200537 +; + +-- Oct 31, 2012 12:37:39 PM COT +UPDATE AD_Field SET AD_Field_UU='961fdfd9-1b61-4c06-b692-d50fad95a222' WHERE AD_Field_ID=59825 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='eef8f7d5-8455-4cce-b187-8d1d165c02cf' WHERE AD_Field_ID=200546 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='3cfea46d-fe9f-4d06-9f57-da31331ef485' WHERE AD_Field_ID=200522 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='5d19ead3-3b72-411c-854f-4375a383175d' WHERE AD_Field_ID=62011 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='e053084f-eb01-415a-ae42-43d3e1cb6bff' WHERE AD_Field_ID=59816 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='ada404a4-1d81-475d-adbe-88a2383bb15a' WHERE AD_Field_ID=200258 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='6136ddf3-69b2-4d6e-911e-6a135a6b5089' WHERE AD_Field_ID=61975 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='44c30f54-b844-4c11-bf33-1604bac48b95' WHERE AD_Field_ID=59760 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='8fb0db78-bd63-44d2-b408-0eec6486a5d5' WHERE AD_Field_ID=61995 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='469f81f2-a590-485f-9bf9-5ed4a0924b5a' WHERE AD_Field_ID=62002 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='c4e1a6d5-209e-4bf9-8f5e-43dc053ed9e4' WHERE AD_Field_ID=59321 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='2f5c51ab-dddf-4275-a197-fce5714e509d' WHERE AD_Field_ID=59780 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='4639adb7-4ee1-4ee2-bb98-6702194fb6e0' WHERE AD_Field_ID=59830 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='9d95b9c2-7d23-45f1-a61b-72e0e7d61607' WHERE AD_Field_ID=62007 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='c1f594ee-9c03-4c14-9a7a-6a4314b1c318' WHERE AD_Field_ID=59815 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='795a80f2-5874-49bb-9cac-1e551fef0f40' WHERE AD_Field_ID=62003 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='075b1df7-5cce-487c-afcf-447003aa466a' WHERE AD_Field_ID=59834 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='82731773-518f-41a2-9e4d-1552e7595362' WHERE AD_Field_ID=59748 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='e6b8a1f4-5efa-4d9f-a997-6d7df764c4ab' WHERE AD_Field_ID=59737 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='d4c00088-23ae-4ef8-bf1d-6478908e5d1c' WHERE AD_Field_ID=200164 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='10a85648-7c4b-49b8-b0d4-a57e3ee295f5' WHERE AD_Field_ID=200162 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='89595c8a-8a63-41c4-abf7-fd55b2b7848a' WHERE AD_Field_ID=59739 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='dda984b7-c0c9-4527-9747-01bcd5c7375e' WHERE AD_Field_ID=59738 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='38c7760c-60f0-4a66-87ad-d0b9aec5130f' WHERE AD_Field_ID=59751 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='95a02a2b-af90-4819-911a-2cd9244ece9f' WHERE AD_Field_ID=59736 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='8ae202d5-6ff1-4e00-b9ad-f06e61208237' WHERE AD_Field_ID=59740 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='27cefb10-dc48-44fe-abc0-a4a1703babc0' WHERE AD_Field_ID=59754 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='8ebf9674-4a0b-4ba5-a99b-3c43d9866ea4' WHERE AD_Field_ID=59758 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='84a6f5c1-be89-418e-9ae8-774542c341ee' WHERE AD_Field_ID=59752 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='578d1bad-2804-4542-a871-3f61779fc487' WHERE AD_Field_ID=59756 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='9550c2cc-219b-4110-9508-3aacf7613e66' WHERE AD_Field_ID=59800 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='af44b95e-a11c-440c-9be6-4b4bca93a942' WHERE AD_Field_ID=59796 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='a4455677-ec3c-4002-8259-2f742a8046c7' WHERE AD_Field_ID=59778 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='33934334-37a6-4b63-9305-15611583faec' WHERE AD_Field_ID=59779 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='4ea489eb-8d46-4fcb-812c-81d0c6555859' WHERE AD_Field_ID=59784 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='7cfefd60-aaaf-40c0-8636-54deccae945b' WHERE AD_Field_ID=59806 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='63721d52-ef4b-4f91-ab6a-04d92a1aad6b' WHERE AD_Field_ID=59781 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='59c1e198-f1aa-43fb-a3f5-05a95add6c4e' WHERE AD_Field_ID=59821 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='993920dd-a8bd-445b-bb80-32725ec4e244' WHERE AD_Field_ID=59786 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='5753e9be-d851-470d-bc19-71ef301f0603' WHERE AD_Field_ID=59782 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='b4afe7c4-6100-474a-b7e6-0076466b14ac' WHERE AD_Field_ID=59832 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='593f26bc-3b75-4dec-acf4-c2d68604b2a6' WHERE AD_Field_ID=59819 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='94a7b0af-e17b-4dd4-a20a-03f00c09e754' WHERE AD_Field_ID=59817 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='b72798ea-2732-44cd-87fe-6d0f89a0547b' WHERE AD_Field_ID=200257 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='db2abd4e-fd5b-4975-8243-432c9d9f4668' WHERE AD_Field_ID=59828 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='01886d8a-f5e1-4440-9542-7f6fba58b7e5' WHERE AD_Field_ID=62013 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='6d30155f-b00f-4a89-a774-b70483ce03f7' WHERE AD_Field_ID=62010 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='76f8a9e1-f439-4825-8df1-40d88c7e500a' WHERE AD_Field_ID=61974 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='00108bc7-add7-4b2f-9e80-2c8d42e509b0' WHERE AD_Field_ID=62015 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='b9349d50-cce9-4ccf-bf93-a13fb425335c' WHERE AD_Field_ID=61976 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='984732a2-2d64-4dd3-a588-da893666f0a0' WHERE AD_Field_ID=61973 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='e78ff29f-0878-4bd2-8670-701f6abf31bb' WHERE AD_Field_ID=62017 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='7607ea9e-2884-4e3c-9174-967a26a3510d' WHERE AD_Field_ID=61972 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='0e2503f6-e976-4943-bdb0-ad821a4cd9b3' WHERE AD_Field_ID=61986 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='c6b6d3a2-0306-4dd0-a8ae-1e713080575b' WHERE AD_Field_ID=62001 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='c1470d0f-3772-488d-8263-3ac75d96455f' WHERE AD_Field_ID=61997 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='367d5bb6-91e9-4f37-9885-a9e869133a7a' WHERE AD_Field_ID=61998 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='ad1b1605-5e58-43b6-983f-1a89c76813ab' WHERE AD_Field_ID=62009 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='3d6991f4-14f8-419e-aed2-14f252417aac' WHERE AD_Field_ID=62000 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='9ade46cd-2a16-4d2e-9d4c-eea8bb9a8a23' WHERE AD_Field_ID=200272 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='c166d7fe-ab6f-4336-8294-5f269248515f' WHERE AD_Field_ID=200290 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='be68cb57-1549-44a5-9d93-0469a6f34b88' WHERE AD_Field_ID=61876 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='0b726243-1656-47dc-93af-f00bcadf6155' WHERE AD_Field_ID=59745 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='fac1da38-485e-4598-8121-1fb4dd8ac1f1' WHERE AD_Field_ID=59741 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='87bd80a3-b0af-4a92-9e11-1b308dfabcbb' WHERE AD_Field_ID=59826 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='e5793584-4bc1-4b5c-a99a-530fa7f5fe1d' WHERE AD_Field_ID=59833 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='bdf440e4-6720-4c46-a45f-9f23ac44dcdd' WHERE AD_Field_ID=59763 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='5be9ed6a-7176-43ae-9d66-6b8c5e724308' WHERE AD_Field_ID=61988 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='873f8af0-5170-4fc1-b020-2e762cbfd2c5' WHERE AD_Field_ID=61989 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='e7631a3a-6409-49eb-be41-908877ab500f' WHERE AD_Field_ID=61978 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='27c148c2-3697-40cc-9156-ac021f2da00a' WHERE AD_Field_ID=200271 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='7860ccd2-c41d-4b78-beca-56b2214f9514' WHERE AD_Field_ID=59776 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='aabb0a61-a390-43ea-840b-5aa88df97886' WHERE AD_Field_ID=59802 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='116a8f3f-1002-4919-91f9-29fd8643ad94' WHERE AD_Field_ID=59755 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='0060be94-b31a-4f8a-aec8-0bb6cd16a716' WHERE AD_Field_ID=59812 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='505324dc-48a6-46ff-93b3-88a6d5e152e0' WHERE AD_Field_ID=200293 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='43620f3c-a6d2-485f-819b-13ccf5204f37' WHERE AD_Field_ID=61993 +; + +-- Oct 31, 2012 12:37:40 PM COT +UPDATE AD_Field SET AD_Field_UU='953cbf85-ceab-4f0b-89d6-4ca2279b530b' WHERE AD_Field_ID=59814 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='9dc56e55-e073-4172-9f03-8d7586c9ad4d' WHERE AD_Field_ID=59770 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='27921204-6944-458b-afa7-b1f9971fef0f' WHERE AD_Field_ID=59790 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='8d821e48-6deb-418d-a012-d076578d3396' WHERE AD_Field_ID=59813 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='44ff71f2-18f9-4ac6-8dca-0011ca9c143b' WHERE AD_Field_ID=61982 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='a692682a-cf5c-490f-903f-3a552945f654' WHERE AD_Field_ID=59831 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='0a693a1d-850a-471f-b0d9-1637df4d87d2' WHERE AD_Field_ID=59773 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='9677cf48-074c-4f54-8c28-11c72690482f' WHERE AD_Field_ID=62004 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='70016ef5-b5a2-4121-9b1d-af1079586d06' WHERE AD_Field_ID=59037 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='c855308b-bbad-4bf4-a669-6aaa010435ef' WHERE AD_Field_ID=59039 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='52646bbb-f8eb-4a8a-a8d0-2d2baa2d82bc' WHERE AD_Field_ID=59040 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='f9911021-0e9c-4fd2-8368-9cc58dbc9699' WHERE AD_Field_ID=59764 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='89b5fa8f-8713-479d-ab44-a44d4f6c37d1' WHERE AD_Field_ID=59094 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='28bee03f-ce08-4824-b605-6f73a9106526' WHERE AD_Field_ID=59753 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='349d5b17-6c78-48eb-b907-661c99fe2e4d' WHERE AD_Field_ID=59742 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='ccc48f4e-b742-4944-9a83-e106d97fea95' WHERE AD_Field_ID=59794 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='2616a0ba-da3c-45e0-97b2-5595637ac88f' WHERE AD_Field_ID=59837 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='b411d339-004c-4c33-9446-c2405629a610' WHERE AD_Field_ID=59769 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='5c9d8fbe-7b63-4fff-bef1-5d2c41e24f42' WHERE AD_Field_ID=59762 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='a7ea1f16-17a5-4362-9e37-173b7c91ca16' WHERE AD_Field_ID=59750 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='0def8eb2-ff58-4ca0-8cd1-301f64e1688a' WHERE AD_Field_ID=59835 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='e84d2444-b558-4e4f-93f5-be45a1121664' WHERE AD_Field_ID=61987 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='e6e47d05-b39f-4c0f-b7b1-7c9e77656785' WHERE AD_Field_ID=62005 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='f3be2bf2-adc3-49f6-a099-776e5e1a17fb' WHERE AD_Field_ID=61991 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='3aad0d15-8c36-484c-a44f-42b4b90a37a4' WHERE AD_Field_ID=61994 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='bb73b788-5eee-4bc2-abfd-5d0276d8926e' WHERE AD_Field_ID=62008 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='e83c1aef-474a-4cc1-ba13-7ca92af2009d' WHERE AD_Field_ID=61977 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='3a39a3f3-bc0a-4833-a4a6-87f6e44f4ef9' WHERE AD_Field_ID=61979 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='edd9018a-9f8e-436c-8944-6a006ffb60e5' WHERE AD_Field_ID=59771 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='67826d78-5329-4ee3-b7d5-70523999f7ad' WHERE AD_Field_ID=59792 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='57cb4a95-b464-4519-8a49-fbd713f2bb4e' WHERE AD_Field_ID=59836 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='885c8d24-afc1-4bdb-854f-f53ae80c90c0' WHERE AD_Field_ID=59486 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='080639ed-4c9c-4370-a527-26f4d41a176d' WHERE AD_Field_ID=59765 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='9c371d3e-7e9b-463d-91e3-e7f8bea7165f' WHERE AD_Field_ID=61990 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='55054436-966c-444e-a818-9e84720dc1e8' WHERE AD_Field_ID=61996 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='a29ff295-23c8-4d08-9e21-8595a4316ad3' WHERE AD_Field_ID=59772 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='cd0a08f5-4396-4d1e-a920-faffb082245f' WHERE AD_Field_ID=200292 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='68438a00-2762-4ca8-a5d6-cc6dfe88897e' WHERE AD_Field_ID=59788 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='6d796942-1f94-4975-993c-06977724da18' WHERE AD_Field_ID=59774 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='7d83ebc2-4fcf-46ae-84b5-3f07a453c176' WHERE AD_Field_ID=61984 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='30f4494f-337e-427a-b4fc-84aa73254a5e' WHERE AD_Field_ID=59743 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='9ec6f2ee-3471-47b3-a7b9-47e3ea3585ce' WHERE AD_Field_ID=61999 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='cbc82583-cf9b-490a-a1d1-65b3a2fef1a5' WHERE AD_Field_ID=59744 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='9bca7a3f-5057-42ec-8c13-1c155d5cc112' WHERE AD_Field_ID=59803 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='9bb6937e-3598-4c65-a012-2cd91f9ca0a3' WHERE AD_Field_ID=61985 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='7c47c820-3a41-4729-b9e8-03b6fdb26083' WHERE AD_Field_ID=59793 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='41434cde-9492-4458-a17b-2dddf19735ee' WHERE AD_Field_ID=59820 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='f08fb176-7eff-451d-9d4c-350cf0d4013f' WHERE AD_Field_ID=59783 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='312cf41b-2d14-495c-b87b-15a2d509539b' WHERE AD_Field_ID=59775 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='9bf15f84-82b0-4af3-b067-9bb25b01866d' WHERE AD_Field_ID=61992 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='b8fb81aa-4e1f-4777-8ca5-57db48bede23' WHERE AD_Field_ID=59767 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='39d59c50-b9d7-4701-9f40-276f78fd9afa' WHERE AD_Field_ID=59829 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='1abd5d29-68d1-432e-8660-b9863c2ad5aa' WHERE AD_Field_ID=59777 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='c4024259-6aaf-4336-99ff-41d505c4eb2c' WHERE AD_Field_ID=59801 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='7d9bd807-9a3c-4fbf-8165-604fb6cf3937' WHERE AD_Field_ID=62018 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='961e9ee0-d0ab-479d-848a-30f6af6fb01f' WHERE AD_Field_ID=59759 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='6d8d5d7a-7b7d-4f72-b197-0a366b5e560c' WHERE AD_Field_ID=200163 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='b04c136b-4b2c-48e6-9934-0edf741e292a' WHERE AD_Field_ID=59766 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='6cb0ff81-572b-4804-a8ce-c1ea790020b1' WHERE AD_Field_ID=59746 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='fadabee1-d3bb-4c08-9947-aca374e923dc' WHERE AD_Field_ID=59757 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='a281fcef-b613-4033-ba3f-76a2008576ca' WHERE AD_Field_ID=59761 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='1ee15b4c-da89-47b7-b0b1-a703714eedd5' WHERE AD_Field_ID=59799 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='89fa959e-e537-4ec3-9a1f-45e5983d7a0b' WHERE AD_Field_ID=59787 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='e73616bd-23e0-4928-9051-b89eed8248f6' WHERE AD_Field_ID=61971 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='fe2e9565-08f9-419d-bc46-8d5a0a19060f' WHERE AD_Field_ID=59795 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='b61e2592-9496-4769-b49d-7cd0d6d1e423' WHERE AD_Field_ID=59818 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='1cf89d5a-ba23-4f4b-8b1c-1460e62691ab' WHERE AD_Field_ID=61970 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='97127b38-96a0-448b-9fa3-b8e6d371a830' WHERE AD_Field_ID=59789 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='963efdbb-26e7-42d8-81b8-0f47a1648791' WHERE AD_Field_ID=59822 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='58e6cce6-aecb-45fd-8451-6934312484a5' WHERE AD_Field_ID=62014 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='563e096a-d120-4f41-8695-870d77da2d46' WHERE AD_Field_ID=61980 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='af1f0f59-8984-4cda-9cb8-ae1a705a8fdf' WHERE AD_Field_ID=59220 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='b512cac1-40ec-42ae-9635-a9c567519dcf' WHERE AD_Field_ID=61981 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='e776e895-030f-48b1-908a-23427e9c3439' WHERE AD_Field_ID=62006 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='0ab80277-a013-4f8f-8e5f-4c35d6dec4c3' WHERE AD_Field_ID=59222 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='bad06bb6-c3ae-4b8d-b7f7-3d47b3cb071c' WHERE AD_Field_ID=59475 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='428e82da-5783-499d-9b24-0213e27ea1f9' WHERE AD_Field_ID=59476 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='52d83189-bb10-43bf-9c62-db24ab37a34a' WHERE AD_Field_ID=59074 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='be3dc881-3833-4e49-83dd-d8e489c5d7c2' WHERE AD_Field_ID=62012 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='ff35988a-b301-427a-9859-967b2e66e185' WHERE AD_Field_ID=61969 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='36738000-2829-49e0-ba57-89582b007821' WHERE AD_Field_ID=59809 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='68620ee4-4c05-4113-8be2-1f281addbc50' WHERE AD_Field_ID=59804 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='87e63e44-0928-46cf-b9c0-28616d237305' WHERE AD_Field_ID=59811 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='8875680d-2fc7-4ce9-99cd-b0ab98690139' WHERE AD_Field_ID=59823 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='0f41745a-2b89-43bc-8b4e-76003b6a358e' WHERE AD_Field_ID=200296 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='1067459e-5e28-4ad9-a235-1c9d05e78caf' WHERE AD_Field_ID=59768 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='6712ea36-9774-4a08-bebb-c75c879dfb6c' WHERE AD_Field_ID=200289 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='f22da098-a58a-4d1e-8087-4dd3e1cc4347' WHERE AD_Field_ID=59807 +; + +-- Oct 31, 2012 12:37:41 PM COT +UPDATE AD_Field SET AD_Field_UU='6868e927-0fb8-47c1-86e7-28106fcd2813' WHERE AD_Field_ID=59798 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='5cde469b-268d-4169-9035-158f47b3cc97' WHERE AD_Field_ID=59808 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='bb9473d1-f43a-4d7e-a00f-1ef395f54d96' WHERE AD_Field_ID=59810 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='4c79251c-573e-4e90-bc45-ee3b1cfaa7f7' WHERE AD_Field_ID=59749 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='1b4695b3-55c0-4207-9ec5-a02cbd9e3e4e' WHERE AD_Field_ID=59824 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='273f7bb5-05e5-42fb-9226-e3460f204ec0' WHERE AD_Field_ID=62016 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='e15f5286-0da1-47c0-b6d9-42934b6c8a79' WHERE AD_Field_ID=59797 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='820bebf2-f997-441e-814b-8fe879f8ee3c' WHERE AD_Field_ID=59805 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='4e8ac01e-f73c-44df-9fd9-8d322b538510' WHERE AD_Field_ID=61983 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='5dd77c4e-5eec-46b2-88e4-ee2bb9fd33ff' WHERE AD_Field_ID=59785 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='1f0bdb65-60b6-4bf7-bd90-a3e9971e80b1' WHERE AD_Field_ID=58987 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='a1474466-b5b5-4fa0-bb45-3414b564dd61' WHERE AD_Field_ID=58988 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='d6508ba3-eb13-4dde-9439-8de913396875' WHERE AD_Field_ID=58990 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='0b9a3faa-eefd-4f95-be0a-9d956da63a59' WHERE AD_Field_ID=58991 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='90a6fac4-96e5-45c2-a79d-5ba6e20d783a' WHERE AD_Field_ID=58992 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='d680943e-5b8a-432c-8783-74ea14e71d58' WHERE AD_Field_ID=58993 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='455e677e-c2f2-41e7-8b2b-4de9cf956c17' WHERE AD_Field_ID=58994 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='18455496-0099-4959-b7e3-04329251d00a' WHERE AD_Field_ID=58995 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='5071fbc0-9ba1-4d97-a3f0-40396f4aae6e' WHERE AD_Field_ID=58996 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='e13ccc7c-fb80-4fdc-b240-1aa1297af135' WHERE AD_Field_ID=58997 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='d4301dfd-59e0-44f6-8d6a-821f156ef720' WHERE AD_Field_ID=58998 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='0f47d83a-295a-44f8-914d-b3cdf616df70' WHERE AD_Field_ID=58999 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='e2a7d4b0-e793-44cd-9e39-282e77b21438' WHERE AD_Field_ID=59000 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='40735792-9b69-4822-892f-60426b1b88d9' WHERE AD_Field_ID=59003 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='cbbe3205-a414-4ada-a160-c32cca81cf89' WHERE AD_Field_ID=59008 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='f1361c89-5b16-47f0-a372-14487baaa73c' WHERE AD_Field_ID=59009 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='e80d5486-f20e-42a3-b731-b2dff84fecac' WHERE AD_Field_ID=59010 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='dd7b9aea-b6b1-44fb-b5cf-0a989137a1fd' WHERE AD_Field_ID=59011 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='695a5ded-6aec-4c51-9d59-d8800b8993db' WHERE AD_Field_ID=59012 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='fb213039-0ecf-4e0c-bb76-adbe8324d34d' WHERE AD_Field_ID=59013 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='a1dc50d4-aefe-4b44-8173-32cc4cf3a6c3' WHERE AD_Field_ID=59014 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='dcebb922-e754-451b-ac10-71a97bed6b3a' WHERE AD_Field_ID=59015 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='71751ab6-7d70-4512-a8ca-d34737b59bca' WHERE AD_Field_ID=59016 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='cc949914-64fb-43e2-bc01-cd30e46cef2c' WHERE AD_Field_ID=59017 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='eeb8c586-6804-4309-8ad3-11f30487708e' WHERE AD_Field_ID=59018 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='bb7418e9-c46e-464b-8566-ec5f6f136e4e' WHERE AD_Field_ID=59029 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='27a13407-742b-4da6-b860-35eb68a15322' WHERE AD_Field_ID=59030 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='51be1786-9fcc-4742-bccc-7b88d362ec37' WHERE AD_Field_ID=59031 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='99e01b7d-b5ff-4337-bea2-32d8aa9a70a6' WHERE AD_Field_ID=59032 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='92347772-8be5-4119-9529-d96941df67df' WHERE AD_Field_ID=59041 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='2c775614-926c-4468-82cb-7fdb6c069b2f' WHERE AD_Field_ID=59042 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='d6c6d9ae-519f-443d-970f-7195befa505f' WHERE AD_Field_ID=59043 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='fb75f42a-f077-4839-8ee5-4b14d4127e39' WHERE AD_Field_ID=59044 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='fd7bfb43-22df-4f9e-88a7-e93cd3d9a1fa' WHERE AD_Field_ID=59045 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='fedb3fd6-8040-4e13-b3fd-ea321e768bb5' WHERE AD_Field_ID=59051 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='d6f4bc59-4a1e-406f-b21b-6502fa5749cd' WHERE AD_Field_ID=59052 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='b11f6f1b-f209-4a67-b017-0e76d96b7b4b' WHERE AD_Field_ID=59053 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='4f1c3f54-a319-4254-b6a2-cf1d63652695' WHERE AD_Field_ID=59055 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='bd214421-afb8-4bb7-b31d-9903b721c349' WHERE AD_Field_ID=59056 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='cd5fffc6-611a-44ef-a58b-640ff480722c' WHERE AD_Field_ID=59057 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='d8a84830-56b4-450a-9d4b-c2c9415f04f0' WHERE AD_Field_ID=59058 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='d8d08c37-0f41-46c8-8f06-2517ea535200' WHERE AD_Field_ID=59063 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='0362a9a4-7f4b-4031-aaa5-4bd01a7bc970' WHERE AD_Field_ID=59091 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='cba59bda-1b3a-410e-8676-58f0aac6764e' WHERE AD_Field_ID=59092 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='7582a40d-a5d5-4d5b-8e70-0176da385ec5' WHERE AD_Field_ID=59064 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='0bd383d7-1519-454d-974c-3f9378501aef' WHERE AD_Field_ID=59065 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='927ba4e5-a72c-40f6-90af-ef5fe913d7c0' WHERE AD_Field_ID=59066 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='6b9128f9-5ba6-43c2-9370-3e192567b465' WHERE AD_Field_ID=59068 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='284563f6-89cd-4529-84a5-54e2520cc34e' WHERE AD_Field_ID=59069 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='463cf541-ab51-4c34-9284-3cbffd6b9116' WHERE AD_Field_ID=59070 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='2930d104-f0d7-4fb7-b9df-a474b77dad39' WHERE AD_Field_ID=59071 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='36ea3848-430c-4114-9044-74d4112237c4' WHERE AD_Field_ID=59072 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='598a77b9-d823-4874-b9cd-ac6886776200' WHERE AD_Field_ID=59085 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='c27e356a-ed1e-446f-accf-c141de931925' WHERE AD_Field_ID=58989 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='3b053af2-a8c2-4a03-b4f4-57b644c9064c' WHERE AD_Field_ID=59033 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='1007d083-dbe7-4a18-88f2-3ec5d29bcd77' WHERE AD_Field_ID=59034 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='b26c099d-0725-4a39-aac9-288edcc4dab8' WHERE AD_Field_ID=59036 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='426a70fc-5162-4292-a733-51f146f723d6' WHERE AD_Field_ID=59038 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='a8db7502-be0f-480b-9576-faf989e71ca3' WHERE AD_Field_ID=59098 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='ee79f071-fded-41be-92c4-b1c203681d55' WHERE AD_Field_ID=59099 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='7fdb4ae4-91eb-4330-9b07-e2c078850b41' WHERE AD_Field_ID=59100 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='843eb550-ba17-489b-a70d-4795a787b2cc' WHERE AD_Field_ID=59101 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='1039de61-be67-489d-b541-8fca9d1b2fd5' WHERE AD_Field_ID=59105 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='07f8bfe9-824c-4764-a5d4-2d42aa2394fe' WHERE AD_Field_ID=59108 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='09d38e83-9ac4-4cd9-9e2d-ec3923385b19' WHERE AD_Field_ID=59110 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='e0653c6f-0161-4ab4-bc36-82fe68280881' WHERE AD_Field_ID=59093 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='689a1cd3-90c7-48bc-ae1d-c8934d3f9ad5' WHERE AD_Field_ID=59095 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='c66e74c2-1d8d-40da-8275-1d3ab67eebb8' WHERE AD_Field_ID=59117 +; + +-- Oct 31, 2012 12:37:42 PM COT +UPDATE AD_Field SET AD_Field_UU='4664c28e-24aa-4d23-904e-78736dc865ba' WHERE AD_Field_ID=59118 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='85056266-ad2a-4d25-abc8-4cc3bb652044' WHERE AD_Field_ID=59120 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='a503accc-1da2-43e8-bc12-490c544bd12b' WHERE AD_Field_ID=59124 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='3f714bcb-b1f1-4ec5-85ad-eea5506c58ba' WHERE AD_Field_ID=59145 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='f889c582-b8f3-475a-b527-01962ba65aeb' WHERE AD_Field_ID=59146 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='3d75d894-8ad6-4c82-badf-1a1623214848' WHERE AD_Field_ID=59147 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='88af4b5f-6a9f-4111-9169-5dd2d71f8969' WHERE AD_Field_ID=59148 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='bc0f97ab-932b-46fe-8001-900886e99d63' WHERE AD_Field_ID=59149 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='aec1745a-f29d-41a7-9a16-4a5b0d65d151' WHERE AD_Field_ID=59150 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='b7ea89d4-c1ea-45a6-ba75-32ed170157a6' WHERE AD_Field_ID=59152 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='ba1346f4-09b5-41f6-9f88-13b21cfe9977' WHERE AD_Field_ID=59154 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='522fc825-f020-48cc-9d59-6c94050d4002' WHERE AD_Field_ID=59157 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='aba76498-50b1-451d-b885-210720635cae' WHERE AD_Field_ID=59172 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='9811b3c4-7851-49f3-b186-de3d440d5cee' WHERE AD_Field_ID=59173 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='d47dbc91-72d0-4a68-8cf7-b8412a03615f' WHERE AD_Field_ID=59174 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='dc48fb36-fe66-4a00-9d0f-3f91f20b7c25' WHERE AD_Field_ID=59176 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='620f9c9e-e584-4b8c-885d-f99e581bc2ff' WHERE AD_Field_ID=59177 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='02296fe6-7339-4554-af2d-ee34e26246f6' WHERE AD_Field_ID=59178 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='f7559f79-87fc-4017-bfd6-1dc9972d990c' WHERE AD_Field_ID=59205 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='93a0bbf5-5b99-40cf-be3f-68cab73410bc' WHERE AD_Field_ID=59206 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='e0007d09-05dc-4458-9560-27f40ce90c4a' WHERE AD_Field_ID=59207 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='23a3920d-d100-4680-8b7a-2c9ecc836ce5' WHERE AD_Field_ID=59208 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='c00149ec-3b62-4fef-8c88-c98e5ddd27a5' WHERE AD_Field_ID=59210 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='ac1b7d94-09ac-4f85-b194-f4c4297e4166' WHERE AD_Field_ID=59211 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='d0fb40db-0c47-48dc-acbf-9aaceedadd29' WHERE AD_Field_ID=59232 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='74c83d1c-2357-46e2-9b31-e25d15801698' WHERE AD_Field_ID=59233 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='5d5009be-cd12-4af2-8752-1015c426e36c' WHERE AD_Field_ID=59234 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='8208fadc-9336-4fac-8fe1-539535d8de36' WHERE AD_Field_ID=59242 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='da26004c-6e90-4468-a756-9489ab90982a' WHERE AD_Field_ID=59251 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='af6b0040-affa-481c-957b-e2a2076e76ac' WHERE AD_Field_ID=59252 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='36c2a0ad-34a8-424b-ba2e-5eaed96d0c65' WHERE AD_Field_ID=59253 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='4e4b4ab2-c761-4b98-83ae-0e0b342665ae' WHERE AD_Field_ID=59254 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='813e05ae-563c-4dc4-937e-4f43e3d9854e' WHERE AD_Field_ID=59255 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='f1475386-943a-4efa-8afe-bbce8759db8f' WHERE AD_Field_ID=59256 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='b90561bd-ae4f-4a10-89d0-4be8065397c9' WHERE AD_Field_ID=59258 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='73f6ce5c-8ee9-40e1-9c1e-53d26f5f9216' WHERE AD_Field_ID=59265 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='3334a6e8-5e80-4999-a120-2e572c44fc81' WHERE AD_Field_ID=59266 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='9a6c29ec-2c6a-474c-b2a9-d34438247711' WHERE AD_Field_ID=59267 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='952eef84-f93e-4aa6-aabe-714f4bafad22' WHERE AD_Field_ID=59268 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='f16f5098-82bb-46c4-860f-7a58157bf590' WHERE AD_Field_ID=59269 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='3c6b1cfc-3780-4bff-b184-b0f252889c3b' WHERE AD_Field_ID=59270 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='1198b088-94b9-4de8-b281-365602d1ffeb' WHERE AD_Field_ID=59271 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='d2807812-0c22-4300-b1d8-523428de30fa' WHERE AD_Field_ID=59279 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='0f91c316-dff8-42a6-bccc-65abbd6b95fe' WHERE AD_Field_ID=59289 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='ec8bb386-4ca2-4387-828e-504ef2116f36' WHERE AD_Field_ID=59292 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='23c57eb7-88af-4551-9018-e25a5ba87333' WHERE AD_Field_ID=59296 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='6d9eb62e-7f1d-4170-8a47-32cd550f3f23' WHERE AD_Field_ID=59299 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='b126fe04-2c7e-4fd3-bc16-24643ea49f11' WHERE AD_Field_ID=59300 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='05021a0a-a55f-4b23-bf8e-426c8be3392d' WHERE AD_Field_ID=59301 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='e569c2cd-e634-470f-9866-2c20ea2d8974' WHERE AD_Field_ID=59305 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='3da84d4f-033f-4106-ae97-c23464f93f3b' WHERE AD_Field_ID=59322 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='5fc174e1-6a55-4388-a1bd-7b8c1407f787' WHERE AD_Field_ID=59323 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='3c23a346-6557-4e76-8c71-94689e39c2b9' WHERE AD_Field_ID=59324 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='02046e9c-e6ab-4bcd-b929-9b4993b7f53c' WHERE AD_Field_ID=59345 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='a6f535ed-8e7a-414e-b14a-a608f44589cf' WHERE AD_Field_ID=59346 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='2e1642ec-a661-4af7-9fbb-2992f8442fd0' WHERE AD_Field_ID=59347 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='c9547eda-f1b5-4f74-bc09-252a61a07633' WHERE AD_Field_ID=59348 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='76aedf34-b80b-4f55-8b0e-1ce3ff1cc330' WHERE AD_Field_ID=59349 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='d7182b08-adc4-45c4-8821-9dcb1194e251' WHERE AD_Field_ID=59350 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='0927931e-1d8c-4725-9edd-9b32383e70b0' WHERE AD_Field_ID=59352 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='c44df213-c5c3-46f7-b8f1-aa59133e4047' WHERE AD_Field_ID=59353 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='b8e23f21-b77d-4d49-8b16-8682548f6dc6' WHERE AD_Field_ID=59354 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='891fa7e4-2be6-413b-a5c3-c65d84fd6d86' WHERE AD_Field_ID=59356 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='f057ca0a-b9e1-4f99-8d1d-d5bce5a6ee9f' WHERE AD_Field_ID=59371 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='13f325d5-1e82-4061-979c-c396e0a4388a' WHERE AD_Field_ID=59372 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='806ad270-ac4f-45bc-82da-f3b909c243de' WHERE AD_Field_ID=59373 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='e2bfb23f-fd25-4188-b225-c0e54bed4ecb' WHERE AD_Field_ID=59374 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='b68c5008-bcd5-47e2-9fa0-13544da55b76' WHERE AD_Field_ID=59375 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='4ecf8276-2bc4-47a1-b005-d5040daa36c9' WHERE AD_Field_ID=59376 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='0d88ba8a-2db2-4d01-9561-d76a740610d9' WHERE AD_Field_ID=59378 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='ce03c4f6-67f7-4973-ac3e-639dc571aec4' WHERE AD_Field_ID=59403 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='45603a84-6ae6-415b-8653-99039bd49740' WHERE AD_Field_ID=59404 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='09afcca9-248c-4bee-8c9f-f928e232cf13' WHERE AD_Field_ID=59405 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='840587e5-2fae-4d22-9e10-242bdd9a9bcd' WHERE AD_Field_ID=59395 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='fd2fff47-8312-41f9-acf5-0097e88e674a' WHERE AD_Field_ID=59402 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='0c8d042e-76b7-449e-812a-39be9c0c9b32' WHERE AD_Field_ID=59224 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='2f9ec34c-2273-484a-8f1f-9d7bebc4abe9' WHERE AD_Field_ID=59501 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='1a01676f-5667-4023-aaef-7dda866fc518' WHERE AD_Field_ID=59502 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='602afc0a-7a1f-419a-9e5c-7bdd35008c43' WHERE AD_Field_ID=59503 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='f47eb94f-953e-4c7d-9736-d8063a67896b' WHERE AD_Field_ID=59504 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='7d9af76e-d674-4529-85d7-3ef3b838adf1' WHERE AD_Field_ID=59505 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='4bf91347-c39c-47f8-a06b-8d44e8bde36e' WHERE AD_Field_ID=59506 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='a2e8e831-47b6-4085-b9f2-7bcd09c71e79' WHERE AD_Field_ID=59507 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='38e01ab4-ab97-419d-a7c5-58950422c47d' WHERE AD_Field_ID=59508 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='c4e6c57c-eb5d-467d-b25f-f59ddf926713' WHERE AD_Field_ID=59509 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='3f72f390-e566-4b45-ac49-c8e4148d011a' WHERE AD_Field_ID=59485 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='7a58ddc4-02a4-441d-b578-fa37f9dbbef2' WHERE AD_Field_ID=59510 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='bb8aab2c-7a95-4247-b77c-715ffc9f3415' WHERE AD_Field_ID=200048 +; + +-- Oct 31, 2012 12:37:43 PM COT +UPDATE AD_Field SET AD_Field_UU='2b9e0be5-f35c-4655-ba76-4d3d7c9fbfd8' WHERE AD_Field_ID=59511 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='0d7d209c-c5a1-4e5c-bf8f-f1643f354727' WHERE AD_Field_ID=200035 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='4ba85fdd-2353-4a41-b757-aeb1dc439bf1' WHERE AD_Field_ID=200159 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='2546301e-d118-4ddb-88f0-3b81b5289a9c' WHERE AD_Field_ID=200160 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='61e28fb8-4b65-4f75-a866-e0983f5f881a' WHERE AD_Field_ID=200161 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='68ece19a-acdb-47cd-8e89-12b17b06b484' WHERE AD_Field_ID=200602 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='bdcc7085-a163-4e67-b126-da30a654e6e0' WHERE AD_Field_ID=200532 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='b1457202-8eef-4743-b8d1-846347e69442' WHERE AD_Field_ID=200535 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='1b2e86cf-9d53-4568-bc35-e5690446ed23' WHERE AD_Field_ID=59035 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='0ceffb0b-1aae-410e-a266-cf693ad36baf' WHERE AD_Field_ID=59494 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='770265df-137b-4963-9dfa-a3847d60df52' WHERE AD_Field_ID=59496 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='61088b44-20cc-4835-bc16-6a843b95711b' WHERE AD_Field_ID=59479 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='00e3ff75-d2c7-4955-bbb2-6fd013c8d548' WHERE AD_Field_ID=59482 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='dc60731c-6a03-4361-bf59-88275545f00b' WHERE AD_Field_ID=59484 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='0cd04f51-3eda-4cd5-9ca7-c5483962b728' WHERE AD_Field_ID=200529 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='17c6132a-3fbb-4f76-846e-4cdc8ce5d115' WHERE AD_Field_ID=200530 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='96bfa02e-92f1-438d-9fc4-69d29caa2007' WHERE AD_Field_ID=200549 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='3278295b-273f-4546-a7fe-36f3f36c58ad' WHERE AD_Field_ID=59007 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='5b9da0b0-2c81-42ba-a864-9cb5f4097797' WHERE AD_Field_ID=59083 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='bd8692d0-b210-4369-8d0d-8fbe597bb08b' WHERE AD_Field_ID=59102 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='47f17227-6483-401f-b5ff-a6b0a8652986' WHERE AD_Field_ID=59109 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='b049e9d6-3501-4b08-a522-afbe38ed2552' WHERE AD_Field_ID=59171 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='6e43d035-55f0-46bf-9374-3034431aa347' WHERE AD_Field_ID=59125 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='ae48853e-9deb-42f5-a5c9-a1ca5c0929ab' WHERE AD_Field_ID=59229 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='8459875c-3818-41cb-87fe-eab23276ddbd' WHERE AD_Field_ID=59230 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='34392f90-4dd9-4520-861f-42c386a64924' WHERE AD_Field_ID=59245 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='72e0a88f-8574-4392-b96d-9a104a5d5a9b' WHERE AD_Field_ID=59246 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='cf06075f-7d49-4fad-a4a5-7772b1e54040' WHERE AD_Field_ID=59273 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='46e58d2a-459a-4c41-869c-baab1b2251e2' WHERE AD_Field_ID=59276 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='b30139b0-0861-4927-a807-c695ea409cbb' WHERE AD_Field_ID=59291 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='a7a7a9c5-1300-4e1f-8c38-71d0fc37f979' WHERE AD_Field_ID=59315 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='8431e208-fb76-4116-97e0-0838449ba976' WHERE AD_Field_ID=59396 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='233debb9-6d1a-478d-b804-87ce0560798a' WHERE AD_Field_ID=59497 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='f55a873b-552b-48db-89b9-f6a6f705b425' WHERE AD_Field_ID=59490 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='9c9afc07-b54a-45c1-bf5c-2a9be87f120a' WHERE AD_Field_ID=200538 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='c9a9945f-6b9e-4b90-8c81-95bad0f8b32b' WHERE AD_Field_ID=59198 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='85e812f9-89c5-44de-b395-7f9d35bc619d' WHERE AD_Field_ID=59199 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='1b548f7f-95b4-47e5-a28d-fdbebce491d8' WHERE AD_Field_ID=59200 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='278ed627-40f1-42b7-9ee4-72e5fcab7e6f' WHERE AD_Field_ID=59259 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='501ed669-b742-4051-93ba-cfe4b8aefb4a' WHERE AD_Field_ID=59261 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='43178e00-84b2-4331-b32e-02b5a51db566' WHERE AD_Field_ID=59262 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='9bb715d9-1bb7-464d-8e35-ebb919714c2f' WHERE AD_Field_ID=59263 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='7917d727-25bb-4652-a295-06e9a6cb3a0c' WHERE AD_Field_ID=59221 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='c84fc498-2093-4ca9-b9b5-a57f9ca16735' WHERE AD_Field_ID=59364 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='22617d0f-48ea-44e2-a06f-49bf40a2f906' WHERE AD_Field_ID=59367 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='88d9519e-1114-4885-b180-6e6aa5a0f091' WHERE AD_Field_ID=59369 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='d3b0ca88-0cc0-4c1f-a05e-86b14fd5d989' WHERE AD_Field_ID=59397 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='dd513240-15f7-47c1-b632-73478defdb01' WHERE AD_Field_ID=59400 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='db7f809d-6e00-4a37-97b7-78b43d351079' WHERE AD_Field_ID=59401 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='78bdfa1f-a3ff-47dd-96ad-371bf3e72673' WHERE AD_Field_ID=59393 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='d3812496-12b6-4d91-8dc0-9f7dd87fcd65' WHERE AD_Field_ID=59138 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='eed36323-6d7d-4b78-9ea8-b5c6e6351cbe' WHERE AD_Field_ID=59499 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='352fb0d8-758f-478c-b70e-41faa7da9a94' WHERE AD_Field_ID=59487 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='de4459bc-1562-4ab6-9a8d-8374a75b50be' WHERE AD_Field_ID=59498 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='cb810e21-c816-4c07-be68-6df7fca2bca4' WHERE AD_Field_ID=59470 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='255ae907-8846-4d37-bf8a-e3f1ea759b97' WHERE AD_Field_ID=200541 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='79f6cbb8-164b-4bdc-8c92-222acce17f05' WHERE AD_Field_ID=59193 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='3d0dc40b-231a-4ff5-8467-371c896fa549' WHERE AD_Field_ID=59179 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='86123b40-b6fc-4116-82d4-2c13f3629a59' WHERE AD_Field_ID=59398 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='d57e830a-4377-49d0-80d4-e5bc3ad3cc8c' WHERE AD_Field_ID=59488 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='534dbb4f-a778-46b0-bbcb-077b153077c6' WHERE AD_Field_ID=59067 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='e92d43f5-5825-4df3-8965-c707bc68719b' WHERE AD_Field_ID=59073 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='ccfb391e-9cc1-444f-ab52-1f007c038563' WHERE AD_Field_ID=59075 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='f0614076-1eb9-446a-9d4b-60a4eaab0365' WHERE AD_Field_ID=59077 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='5c3769d7-74b2-46c7-9e10-4e2dcdc2bb7a' WHERE AD_Field_ID=59358 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='f830c00f-0815-45b1-b185-cbd89624a5bb' WHERE AD_Field_ID=59391 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='056a3192-ee59-4bc2-891a-11674b05e3f3' WHERE AD_Field_ID=59201 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='5f29c6c0-e866-46a2-9d63-d18447549dfc' WHERE AD_Field_ID=59202 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='1d2003a4-3dee-4dcc-bf58-1e1aac3e79f1' WHERE AD_Field_ID=59203 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='9d14ea47-0fa3-4ab9-b209-7fca6de5a0ee' WHERE AD_Field_ID=59204 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='fd3458ae-7fa1-4cb6-96d4-5e2974724cea' WHERE AD_Field_ID=59006 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='f0b00529-7da3-4680-a1d9-2bfd7c0b26c9' WHERE AD_Field_ID=59240 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='061d5de3-8437-445e-8e27-d46149bbf198' WHERE AD_Field_ID=59241 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='66364357-901a-4370-bdef-bca1e5bf8cf4' WHERE AD_Field_ID=59335 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='909cef45-eeec-46e1-b40f-adcb6328de45' WHERE AD_Field_ID=59481 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='98c097c6-7795-4464-8c1b-0e109ee04e51' WHERE AD_Field_ID=59483 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='12e436e9-d9ca-4fd1-b370-f50d486bf829' WHERE AD_Field_ID=59020 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='5b8b719d-089c-4de7-9758-84900f71ebd1' WHERE AD_Field_ID=59022 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='f6da9719-b3fa-4eab-a4f9-e205a284a09a' WHERE AD_Field_ID=59024 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='61cd42f2-7fa1-4cd9-b1f8-cbdc9247cd04' WHERE AD_Field_ID=59026 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='60c1a8e4-9a4b-4822-932b-a77186f13225' WHERE AD_Field_ID=59260 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='1a0da8f7-b786-4b00-bdf0-643b040bc843' WHERE AD_Field_ID=200517 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='5a7bf8b0-2ec5-4536-ace9-cf3502783e90' WHERE AD_Field_ID=59050 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='3da4529f-8e07-47bc-b068-0449d0760cc5' WHERE AD_Field_ID=59059 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='7b737833-7e5d-4f10-8334-0bfbcae591d1' WHERE AD_Field_ID=59060 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='87d0ef8f-bbdd-4f21-9165-c4b56e0dab01' WHERE AD_Field_ID=59061 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='02cf215f-0b2f-4250-8fcf-e191048f7648' WHERE AD_Field_ID=59062 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='c349b183-7b22-4c1f-a427-feaf35ae579b' WHERE AD_Field_ID=59079 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='023befd7-e276-4938-8233-40e6eebc0f87' WHERE AD_Field_ID=59084 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='c43a4378-b328-4da4-8352-ad5f3bc2d789' WHERE AD_Field_ID=59090 +; + +-- Oct 31, 2012 12:37:44 PM COT +UPDATE AD_Field SET AD_Field_UU='d9c4daa6-ba13-4730-8902-86cad08095f2' WHERE AD_Field_ID=59134 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='3402cc47-5c91-4925-828d-7bc862e8d9be' WHERE AD_Field_ID=59136 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='a1e85219-d6e1-4163-b581-fbcccaee7e42' WHERE AD_Field_ID=59137 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='e65d1d31-062c-4dba-b2c1-e2a6eb91dacd' WHERE AD_Field_ID=59139 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='3a47df87-44bf-4f5b-b017-d5e52f4c0744' WHERE AD_Field_ID=59155 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='f738fa2f-8386-4c9e-ba85-232bc9aa9230' WHERE AD_Field_ID=59161 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='2b1fbae4-a90c-4d5f-826e-f89a33e3ff17' WHERE AD_Field_ID=59163 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='7f473968-b09e-43b0-8441-7dab1a0849c0' WHERE AD_Field_ID=59168 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='8f83cac7-372b-4d7a-9ea2-d329b8ed7f46' WHERE AD_Field_ID=59170 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='a29bfaef-bfbf-4c74-b062-d43b7b4626a6' WHERE AD_Field_ID=59182 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='f4034a43-7aea-4b53-8be8-ac6ce1b18b72' WHERE AD_Field_ID=59183 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='7d9feb11-0812-48f6-8de1-1ea393c4bc41' WHERE AD_Field_ID=59184 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='bceb34ac-f45e-40ae-9756-a9f36c777374' WHERE AD_Field_ID=59187 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='44f683b8-dba9-47cf-9ab8-3b45423e35ff' WHERE AD_Field_ID=59225 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='9a5ab3df-bd44-4bf3-95de-3470782db61f' WHERE AD_Field_ID=59228 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='d1f98e2d-7523-41c6-a6c7-695c32c37d44' WHERE AD_Field_ID=59231 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='3905c7d5-b2ef-4aa4-b4ca-f8b84c23135f' WHERE AD_Field_ID=59236 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='542410e4-719a-4739-b86f-a5a56161b4dc' WHERE AD_Field_ID=59237 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='cb41cff5-5be2-4af9-819e-24bfe5d02b0a' WHERE AD_Field_ID=59238 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='fe1c3efb-1678-445d-a881-82ede086f587' WHERE AD_Field_ID=59239 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='bc4469ac-06cf-438a-b387-701b9fbca646' WHERE AD_Field_ID=59243 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='cced5061-8eff-49f2-8e08-093363c550ec' WHERE AD_Field_ID=59249 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='54f212b1-dc21-45b7-8f20-ef29a83ea3c7' WHERE AD_Field_ID=59274 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='9dae21e9-dc85-4980-867d-b21eaf83489b' WHERE AD_Field_ID=59277 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='5b5d7aec-2603-400b-adbd-e59381f78c30' WHERE AD_Field_ID=59281 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='0db58679-78de-42a8-a3d1-ec28b05dc233' WHERE AD_Field_ID=59283 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='02010263-22d7-4536-8ac2-ea89da9c9253' WHERE AD_Field_ID=59288 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='1ee2b497-aa6e-44f1-8a82-a1b07dfbabe1' WHERE AD_Field_ID=59319 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='d7a16d7d-28dc-40c4-a968-97849c03b86a' WHERE AD_Field_ID=59295 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='5caf9ac3-29e8-47e8-86ff-ebf389055b7e' WHERE AD_Field_ID=59297 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='00722135-5e81-467b-a8d1-ae7e8994897d' WHERE AD_Field_ID=59303 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='6e12e1a0-a11e-4765-94ac-6bba90b39dce' WHERE AD_Field_ID=59306 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='55565bb7-0632-4fc2-b1e0-0f54911c3d5c' WHERE AD_Field_ID=59310 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='1530ed2a-f7b1-4234-b720-ecc64147cb0a' WHERE AD_Field_ID=59311 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='181ac990-8fe4-4070-b5c5-6e5fad669f2f' WHERE AD_Field_ID=59312 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='2275776c-242e-4321-951b-fc6ba2a590fa' WHERE AD_Field_ID=59313 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='72f7e577-b4dd-4799-a94f-1a9a74bf2c72' WHERE AD_Field_ID=59314 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='07811174-084d-44d4-b427-26dfd1af0cea' WHERE AD_Field_ID=59316 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='a24fc0c4-3637-4455-b9db-c10ad610bcbb' WHERE AD_Field_ID=59317 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='46fe299d-4cba-43ac-989f-e4c45615e993' WHERE AD_Field_ID=59318 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='6c76cec0-f557-4ae4-b14b-3a0c371e25a6' WHERE AD_Field_ID=59320 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='0af21310-7dd2-435d-8ad9-9f6c566d26c6' WHERE AD_Field_ID=59114 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='a285bdb7-43a3-4a25-9f4a-7f2aaae87a6d' WHERE AD_Field_ID=59127 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='db71f061-b8b6-4bc1-9c5c-5de1f1090bc5' WHERE AD_Field_ID=59338 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='5a233a25-3469-400c-a6d1-ca76c0d41d57' WHERE AD_Field_ID=59366 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='9c57bd2f-58c2-4c55-ba17-a0c4fbabe096' WHERE AD_Field_ID=59368 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='a6c7962d-fcfd-477e-bd56-a35fcc66d7f3' WHERE AD_Field_ID=59370 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='08f78449-4ec0-4094-b8ba-933b6ad69771' WHERE AD_Field_ID=59380 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='479d167a-d2dc-4be0-a4b4-6f6c0c694a77' WHERE AD_Field_ID=59382 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='0027330d-b9e7-449b-a43c-51b319dd658d' WHERE AD_Field_ID=59384 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='7415258d-b2d8-4455-a8cd-a52e8215a4da' WHERE AD_Field_ID=59387 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='a191e0c0-2462-4190-b054-8f630f259c9f' WHERE AD_Field_ID=59389 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='772f3bea-1aa2-4726-a713-71941c2efeb1' WHERE AD_Field_ID=200534 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='6ab36ff9-173a-4e6d-9d52-adf8d1f19cb2' WHERE AD_Field_ID=200543 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='43285f8c-b8f1-4e0e-adb6-d9e29093b743' WHERE AD_Field_ID=200548 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='4261b70d-120b-4da6-b8d4-a18dfed4ede2' WHERE AD_Field_ID=200291 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='a4d4f7a2-c8ac-4869-9c57-038f11090ceb' WHERE AD_Field_ID=59004 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='d22748f5-d007-45af-b6cb-32510f57c2f7' WHERE AD_Field_ID=59019 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='e245ddbd-2069-44dc-a7d8-8f6de62eebc8' WHERE AD_Field_ID=59153 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='c9f34493-f15a-4734-9d87-ecf7f1e6531f' WHERE AD_Field_ID=59156 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='fea86b13-ef28-4b3a-abe4-a3a42ff58cd0' WHERE AD_Field_ID=59158 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='cfc5f30c-259b-477a-a3fa-15dc341a3468' WHERE AD_Field_ID=59160 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='57d15fb2-dd0f-4c69-bcf5-0352a27dc106' WHERE AD_Field_ID=59186 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='543e899c-214f-4103-8325-799c05cc68c6' WHERE AD_Field_ID=200518 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='078345dd-4fdb-4033-be4f-c405b6af921a' WHERE AD_Field_ID=200536 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='91377f74-4424-4ac1-be8e-2bad8a0539cf' WHERE AD_Field_ID=59005 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='586e7f08-be60-426d-b714-9bcefccf21bf' WHERE AD_Field_ID=59195 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='64be8b64-3c67-4861-a70f-a0888af151d8' WHERE AD_Field_ID=59196 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='7859295c-385d-4b0c-8fc2-2ab9c1b005d4' WHERE AD_Field_ID=59492 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='fc5fe7c8-e698-471d-8edd-c856f7e14bf9' WHERE AD_Field_ID=200297 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='3724a262-6f2c-4f77-857d-ef9a17c5e886' WHERE AD_Field_ID=59197 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='ccf0e1b2-9368-4f7a-9a3b-1834d33c54d0' WHERE AD_Field_ID=59048 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='fedae2d2-2fc8-4412-84de-b25dda76519a' WHERE AD_Field_ID=59049 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='66ce9fba-8ef5-49ef-8bec-002c84bb5f03' WHERE AD_Field_ID=59126 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='6b7ab24b-a1eb-42e8-86c3-5a4900417517' WHERE AD_Field_ID=59128 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='255994a9-4ced-45f4-8886-7e62957b0751' WHERE AD_Field_ID=59129 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='47639edd-a4e4-429c-8d11-eceb5c0b306c' WHERE AD_Field_ID=59130 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='6bb2238c-6ff6-4866-85d4-8548a84a4d4a' WHERE AD_Field_ID=59131 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='8bc6a5a2-167d-4e6c-8617-8888b60563dd' WHERE AD_Field_ID=59218 +; + +-- Oct 31, 2012 12:37:45 PM COT +UPDATE AD_Field SET AD_Field_UU='3dda0766-ac96-45eb-8464-fae0e0cbcf4e' WHERE AD_Field_ID=59359 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='6a145a50-696e-46ba-8e65-edaeffa007ab' WHERE AD_Field_ID=59361 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='084c33d1-3309-4bcc-bab8-2d5db7d34d8e' WHERE AD_Field_ID=200294 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='a4858dcc-1187-434e-bafc-177495e9c9a4' WHERE AD_Field_ID=59132 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='ba7a0d77-0ded-4eac-930b-8a48378cc6e9' WHERE AD_Field_ID=200050 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='8ad08d38-7ab2-4f6f-ab57-012e383a4e1c' WHERE AD_Field_ID=59001 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='65ebd17a-170b-4070-b992-4aad4badaaad' WHERE AD_Field_ID=59046 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='6216057c-3867-4a6e-83d3-013da0869ecd' WHERE AD_Field_ID=59047 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='f7228048-9028-4f14-8806-9e81e25f9684' WHERE AD_Field_ID=59298 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='8244801c-73fe-4568-a03f-5c02f5062420' WHERE AD_Field_ID=59325 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='5dd53ed6-6ee3-4e1f-b774-d9d7ebb21d37' WHERE AD_Field_ID=59326 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='38224e38-4397-4ccf-af79-dc10bcfd626d' WHERE AD_Field_ID=59327 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='c8262c92-42b9-451c-b111-42709615598a' WHERE AD_Field_ID=59329 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='860b68d0-6be2-40aa-bd61-a29ed583bc0b' WHERE AD_Field_ID=59333 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='aad6f741-dc36-45e4-b540-91defee8e8b1' WHERE AD_Field_ID=59097 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='d60043f2-45e8-4117-8d4a-b4088ce234a0' WHERE AD_Field_ID=59342 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='a499d918-5f54-4fa2-8890-f1e6f1323823' WHERE AD_Field_ID=59377 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='4172cd04-5068-41a8-bcde-644f0c95e65f' WHERE AD_Field_ID=59379 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='a6a691cf-bf48-4ae5-9212-a8787967bc9c' WHERE AD_Field_ID=59381 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='68c9173d-feee-48d8-834d-473f2620e964' WHERE AD_Field_ID=59383 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='b9efec1f-c65f-473d-bdd6-7bc729eb914e' WHERE AD_Field_ID=59385 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='a5f3ccd8-e1a2-4f17-9a47-1e66bf2036ac' WHERE AD_Field_ID=59406 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='9ab884e9-5986-4f87-bc8c-283afbaffb9f' WHERE AD_Field_ID=59407 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='3404bbeb-221e-4dbf-961b-c94953c6297a' WHERE AD_Field_ID=59408 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='d9fc3cb3-332b-4589-b779-60cc2f72f0ea' WHERE AD_Field_ID=59409 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='8ccf0736-2f0f-4cb0-96e6-e282d2793a5b' WHERE AD_Field_ID=59290 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='d27193fe-988a-477d-8fec-8b6d2bea80e5' WHERE AD_Field_ID=59244 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='5834201d-49cb-4d3a-b50a-f45f34cb3130' WHERE AD_Field_ID=59248 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='ec26ba3e-2b5e-42db-aeb3-06a01f381d48' WHERE AD_Field_ID=59472 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='b6522e0e-244c-4831-aa73-1114e9cc46ea' WHERE AD_Field_ID=59477 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='40bcf2e4-038a-4b6c-a1f9-61bcfdd16aaf' WHERE AD_Field_ID=59223 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='d059ada9-07e3-4da8-9c71-ab006b949a42' WHERE AD_Field_ID=59226 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='c0e3a9c0-570c-43a3-8e45-d294d19518d7' WHERE AD_Field_ID=200526 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='61eccd77-067b-44c9-95b6-9d0dc4ca1a59' WHERE AD_Field_ID=200519 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='e1602081-6875-4c27-94f8-d96155b3a3bc' WHERE AD_Field_ID=200524 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='35653d7e-2244-461b-858f-3cf83b0dde5b' WHERE AD_Field_ID=200525 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='aad442dc-924d-4214-bd89-9d40e5c7cf32' WHERE AD_Field_ID=200527 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='2cab662c-eb60-44eb-b23a-be131d3c91ec' WHERE AD_Field_ID=200531 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='1fd34aeb-3461-4e84-9c59-5217f46735ba' WHERE AD_Field_ID=200533 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='555942f4-3688-4bda-b2cb-10219beef192' WHERE AD_Field_ID=200544 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='1906a8ed-43a5-42e3-86a2-f0b760c78ffb' WHERE AD_Field_ID=200545 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='c92655e5-9932-4f17-bbcc-8a7ef514cc11' WHERE AD_Field_ID=200547 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='396fbb2d-0fa5-462e-b850-fcb6aa5000ca' WHERE AD_Field_ID=200551 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='d8206036-2f94-4dff-8cc1-930f9f803020' WHERE AD_Field_ID=200528 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='7e2ab708-23b4-4f19-a99e-985ab61c1b0b' WHERE AD_Field_ID=59194 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='34d871dc-a9b9-403f-940b-cffdbc84e9a8' WHERE AD_Field_ID=59088 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='ffbc0420-7200-47d4-bb53-30e2e327521d' WHERE AD_Field_ID=59103 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='64b20ff5-d850-4604-b45a-d210679a5bb2' WHERE AD_Field_ID=59104 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='17a709e3-2aaa-41fb-8d24-566403cf215d' WHERE AD_Field_ID=59106 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='490fb370-1b66-4f85-bb67-d04406869e9f' WHERE AD_Field_ID=59107 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='026b8cde-1b56-4835-aa29-a404bae246b1' WHERE AD_Field_ID=59111 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='4a9d03d4-6cf2-4316-b8d3-a359236bc8f2' WHERE AD_Field_ID=59143 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='0580c295-e800-4d1d-8079-aa51f9467d4d' WHERE AD_Field_ID=59166 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='6b8d25b8-dde1-49db-9a9c-5fc8fe2843b7' WHERE AD_Field_ID=59113 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='74f696dd-13fd-4b4a-aaab-631139d6626f' WHERE AD_Field_ID=59115 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='7f0b56bf-20e0-42c8-b340-33db39c8ca05' WHERE AD_Field_ID=59119 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='d2b400cc-a6af-453b-974f-d1f61c197c9d' WHERE AD_Field_ID=59121 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='add71b29-a59c-43a3-ac9e-6329f5c4bd78' WHERE AD_Field_ID=59122 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='8efc6901-ee7e-4250-b6fb-0e63d799cbdc' WHERE AD_Field_ID=59123 +; + +-- Oct 31, 2012 12:37:46 PM COT +UPDATE AD_Field SET AD_Field_UU='2c697c39-30d5-443e-94a3-bd9ec5304d36' WHERE AD_Field_ID=59191 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='6ae8b111-b3e2-43f9-9b14-2b65f12ec9ba' WHERE AD_Field_ID=59192 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='8163450b-d82c-4da2-8ea4-2bb2775512a0' WHERE AD_Field_ID=59212 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='7388f5c4-902d-4c5f-b1e7-8067e320100b' WHERE AD_Field_ID=59214 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='955c574f-1162-40c0-bb43-1833b53b3069' WHERE AD_Field_ID=59216 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='b9ce27ce-fb88-4942-9a11-96927717fe49' WHERE AD_Field_ID=59363 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='3fe7cd92-5ecf-4f86-add9-39f4f3a01b87' WHERE AD_Field_ID=59341 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='622cb2b4-3651-403c-beac-3bf7dee1a4b7' WHERE AD_Field_ID=59343 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='f194c091-6e56-4937-ac0b-0e7afd181dc4' WHERE AD_Field_ID=59360 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='31050300-0f28-4e9b-8b2e-0e2c1d00cf65' WHERE AD_Field_ID=59388 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='ab69847a-1f3b-4abe-b2a4-c406515a5f62' WHERE AD_Field_ID=59390 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='e1ebdb1e-cf66-4a73-9950-decc851e486a' WHERE AD_Field_ID=59159 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='1a2a0423-6025-4963-b27f-fb4bf3c9a12c' WHERE AD_Field_ID=59264 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='4dd4f3ea-2f4e-41e5-b6fa-26b8b9c73eaa' WHERE AD_Field_ID=59185 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='04bc2f91-d50e-44a2-8144-e5ec94ec17f6' WHERE AD_Field_ID=59493 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='43829dd9-215d-4e2c-9ff6-563f08e72211' WHERE AD_Field_ID=59495 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='c8f1c3d1-540a-4358-9be5-2075044e9419' WHERE AD_Field_ID=59471 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='5190ebb5-8c06-4dd5-a835-a9ab867f0704' WHERE AD_Field_ID=59474 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='28e69336-826d-4a91-8cde-695f115a00c9' WHERE AD_Field_ID=59478 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='7540432a-799d-4a97-9cbb-d5ed1cb39265' WHERE AD_Field_ID=59480 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='753a1b7f-4359-42ff-b5ff-c0c0e2e87391' WHERE AD_Field_ID=59489 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='164d1c0f-d1ec-4747-8bba-ca610d827bfe' WHERE AD_Field_ID=59140 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='19364181-2d11-4258-9e76-8131473a274d' WHERE AD_Field_ID=59141 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='5ff9536e-36dd-45a2-ad2a-427e29272b65' WHERE AD_Field_ID=59021 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='e1249300-04e1-4174-b76f-3330048f4b72' WHERE AD_Field_ID=59023 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='df4fcba5-8bed-45a9-bdac-a69841b7816c' WHERE AD_Field_ID=59025 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='747e41b7-8a3f-4eb1-b353-d8b02510e904' WHERE AD_Field_ID=59027 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='125f9efe-b1ae-45dc-9bf8-37617983205f' WHERE AD_Field_ID=59028 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='48883773-241c-434e-b3a0-ee226f03df9f' WHERE AD_Field_ID=59076 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='7f026cc7-2237-481c-a01e-6a348a451c78' WHERE AD_Field_ID=59078 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='bae31ae2-d685-4e56-816a-b441037f3ab8' WHERE AD_Field_ID=59080 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='e255bc41-96e4-4493-8ed4-fcb92dc4e740' WHERE AD_Field_ID=59087 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='82373575-c3c6-4e6a-98ee-ba2161b3e465' WHERE AD_Field_ID=59089 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='16eddf29-9d20-428e-beed-19d3ddbc4af9' WHERE AD_Field_ID=59144 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='80038126-c397-4472-836a-275606daec2c' WHERE AD_Field_ID=59116 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='841632ff-e277-416e-adaa-00a8ec6e7b84' WHERE AD_Field_ID=59135 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='8934f832-8e94-4787-91dc-83dfc33acebf' WHERE AD_Field_ID=59162 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='d449226e-1c0d-471a-bbfa-c4c95750e972' WHERE AD_Field_ID=59167 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='a658ee43-67e2-4374-8c6b-975da82dd907' WHERE AD_Field_ID=59169 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='02b9916b-aedb-4744-aa9e-d3added6e918' WHERE AD_Field_ID=59175 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='34633e95-3276-42a4-936a-d72cfe260a8c' WHERE AD_Field_ID=59180 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='f2815212-916d-40c6-9090-62fa21a13662' WHERE AD_Field_ID=59209 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='2ba472dc-8c29-4ab5-b2e3-2d125a4ce3db' WHERE AD_Field_ID=59213 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='0661c008-dcd5-496e-a8ad-cd94e1e7ca98' WHERE AD_Field_ID=59215 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='4cbcea17-67df-41f4-889d-2d7ee71857df' WHERE AD_Field_ID=59217 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='8ecf54bf-7e6f-4bc3-940f-65b9fb657569' WHERE AD_Field_ID=59219 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='226159f7-bbf3-4521-9404-15e4350c1023' WHERE AD_Field_ID=59272 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='9ff692bb-6624-46a0-ba0d-4cc04f01df10' WHERE AD_Field_ID=59275 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='adf0740f-5f28-4840-84d2-35bcb70175fd' WHERE AD_Field_ID=59282 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='112574df-6423-4a8c-95d4-c893f6d81ecd' WHERE AD_Field_ID=59304 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='8f6abdb6-68aa-490d-92b0-ee7712d25000' WHERE AD_Field_ID=59328 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='4855d028-7875-4c8c-ac0e-ac55f403423a' WHERE AD_Field_ID=59330 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='f35ae2c2-0f5e-4b87-b0f5-3d80e039b78b' WHERE AD_Field_ID=59344 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='727b4c8e-1553-4f12-9ca7-d10518e4ea5c' WHERE AD_Field_ID=59351 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='a83818ae-d477-481e-9a94-597ecc09c499' WHERE AD_Field_ID=59355 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='fb7437e8-0b54-4fc3-a924-e01c4c26bc1c' WHERE AD_Field_ID=59357 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='03b95f2e-cb68-41aa-8995-73c48f8a3b3d' WHERE AD_Field_ID=200540 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='5c6bbd70-5086-4184-b8a3-82f98115fb68' WHERE AD_Field_ID=200523 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='024f3d53-49c1-46fc-83bd-a25156404ba6' WHERE AD_Field_ID=200550 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='2ce672c9-512f-4a5d-be45-8aa308eeb3e9' WHERE AD_Field_ID=59081 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='57ef582b-1582-4f60-92f1-5a23e47d1fcf' WHERE AD_Field_ID=59054 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='c1b75178-85f5-4c28-860a-ca379454390e' WHERE AD_Field_ID=59112 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='430c8bae-1ff8-4eb2-bba5-b103fce21d50' WHERE AD_Field_ID=59133 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='7ddf56c6-4c6e-45ff-8622-dab90049e8a8' WHERE AD_Field_ID=59142 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='1df4e8c3-6a49-459c-8324-47ca5941e5a9' WHERE AD_Field_ID=59151 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='0d05282e-3225-46ba-a5c1-d1155b74f4c9' WHERE AD_Field_ID=59164 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='949076fe-c626-4c7d-9911-de8aca48102f' WHERE AD_Field_ID=59181 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='a332cee6-669e-49d3-b6cb-09d20e9479c6' WHERE AD_Field_ID=59188 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='be5cc822-3bf6-43dc-9a42-0ff3811e63b3' WHERE AD_Field_ID=59189 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='e8c4b6b3-f3c9-4595-ac11-7bed43bba8bf' WHERE AD_Field_ID=59339 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='97a3869c-ed35-4a42-ada0-d8ad5dedf13d' WHERE AD_Field_ID=59340 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='df774b8b-e18a-4788-948c-4940302b2833' WHERE AD_Field_ID=59190 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='5d3115a0-c188-4e29-bd09-04a4eba6ea6a' WHERE AD_Field_ID=59227 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='b922d108-3e0d-4642-ba65-7de41b7d17df' WHERE AD_Field_ID=59235 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='d7d225e3-c0a2-4446-8609-c09dcb24fe3b' WHERE AD_Field_ID=59392 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='15685b4c-20d0-4d9d-934f-c91653f58c67' WHERE AD_Field_ID=59247 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='e6466d91-1056-4b6c-914a-0031af1e65c9' WHERE AD_Field_ID=59250 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='ae2c5531-0db1-4b8f-8833-44803a07d311' WHERE AD_Field_ID=59278 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='0517f35a-7ac1-4fd4-bbe3-7f24e90e6491' WHERE AD_Field_ID=59284 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='b97607b7-fb84-483a-b1de-07a5fbe1364d' WHERE AD_Field_ID=59287 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='0d5b688d-dc2d-452e-87aa-25a7bc098d19' WHERE AD_Field_ID=59362 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='aea0170e-2b3f-4b69-b956-61a41e06afae' WHERE AD_Field_ID=59294 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='a5463438-1ce0-41a2-b3f6-a92394d28c33' WHERE AD_Field_ID=59302 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='79340292-ae1a-4f86-9a11-8e452c34e4c7' WHERE AD_Field_ID=59331 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='66e39ec3-3486-4a37-8d38-1fcf9e6c3394' WHERE AD_Field_ID=59334 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='4ac7d00e-cd74-4bc3-b2e1-8ac7ffa9dd4b' WHERE AD_Field_ID=59096 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='e0a5cecf-a910-4202-ab9b-81cd9c5194e6' WHERE AD_Field_ID=59336 +; + +-- Oct 31, 2012 12:37:47 PM COT +UPDATE AD_Field SET AD_Field_UU='224f2b7f-e993-4bc8-b325-79564574355f' WHERE AD_Field_ID=59337 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='f93768e3-9fb0-4ece-a283-5cd6a9358cb7' WHERE AD_Field_ID=59365 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='6f1531a0-02c8-4c31-b512-6b00396ac51c' WHERE AD_Field_ID=59386 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='dc9ffe5d-1ac7-4898-bb60-6eb5a7cdd5af' WHERE AD_Field_ID=59394 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='1cd3249a-2f58-4cbc-89e1-ca6468232aea' WHERE AD_Field_ID=59285 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='91445888-0466-422e-9aae-c64542460a64' WHERE AD_Field_ID=59500 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='ff8a9a31-08cc-43be-865d-3210c3971e58' WHERE AD_Field_ID=59491 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='6d434671-b354-4c3f-84f0-82085eb5ac9a' WHERE AD_Field_ID=59473 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='94428f57-ec3e-4dd8-976d-21085c4168d6' WHERE AD_Field_ID=200295 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='8f5039db-0330-4bfb-ad9d-146fa7de687c' WHERE AD_Field_ID=59082 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='e665a552-0a13-40b1-b8f4-6ab7d6b75a28' WHERE AD_Field_ID=59002 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='ef0ea194-c3fb-4a94-a224-00975dfd0cfd' WHERE AD_Field_ID=59165 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='69808185-7dca-4ef2-bd13-8675aa2bd336' WHERE AD_Field_ID=59286 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='14d3f616-f675-4ea5-b607-acf9c0e7aa28' WHERE AD_Field_ID=59307 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='380fdee5-841b-4ad5-8154-a3abccf50e6f' WHERE AD_Field_ID=59332 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='ea2e7f68-0a48-48ae-baaf-7896f206b27f' WHERE AD_Field_ID=59293 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='07c176fd-0835-40d8-907f-7eb238f45717' WHERE AD_Field_ID=59309 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='21d9cad2-b4ec-4b52-8d25-aa527967447a' WHERE AD_Field_ID=59280 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='4c2aed51-b526-4e41-81d8-8550f00350d5' WHERE AD_Field_ID=59399 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='d7222c2b-24c2-432d-bbea-07cdc45d136b' WHERE AD_Field_ID=59086 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='299bdea0-8b22-45a7-82a5-bb267fdf0b81' WHERE AD_Field_ID=59308 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Field SET AD_Field_UU='50695433-efb4-4ac0-b77c-049edaa47054' WHERE AD_Field_ID=59791 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_FieldGroup SET AD_FieldGroup_UU='ebf4f40b-28c2-4ab0-bd85-db514674f47a' WHERE AD_FieldGroup_ID=50016 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_FieldGroup SET AD_FieldGroup_UU='56a0dc0a-527e-4aff-824a-8436a3042afe' WHERE AD_FieldGroup_ID=50017 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_FieldGroup SET AD_FieldGroup_UU='2dd35686-1ba3-472c-afa0-2802b8815528' WHERE AD_FieldGroup_ID=50018 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_FieldGroup SET AD_FieldGroup_UU='70bf682c-e641-4ae1-9413-2389e3660651' WHERE AD_FieldGroup_ID=50019 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_FieldGroup SET AD_FieldGroup_UU='45faed4b-7422-430f-9853-40bf9eab1c3e' WHERE AD_FieldGroup_ID=50020 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Form SET AD_Form_UU='a8a8abd8-04f5-4e4f-959d-e47103e78b01' WHERE AD_Form_ID=53017 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='8d102ae1-dd14-4885-a281-b6120431fa9e' WHERE AD_Menu_ID=53280 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='aafea22c-4783-4862-9e53-8c2efd2a46d9' WHERE AD_Menu_ID=53284 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='7b501a12-7dd6-472f-9f38-536e2842d4ea' WHERE AD_Menu_ID=53297 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='4672fef9-7133-4a74-97b8-40e79f88c258' WHERE AD_Menu_ID=53298 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='53e73ccd-132f-4706-9373-c122868bd872' WHERE AD_Menu_ID=53296 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='7a1b7b3b-0f4d-4b35-bb8d-1636303c84f3' WHERE AD_Menu_ID=53350 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='9b581c1b-0681-47c7-8084-4707bd67f01b' WHERE AD_Menu_ID=53351 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='d6a77fa4-4574-4979-8c13-700d1cc64c23' WHERE AD_Menu_ID=200019 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='0f7fff58-5677-49cf-b5fe-e8b796dafabb' WHERE AD_Menu_ID=53277 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='0cc6f014-a176-424c-a4af-64bf209a3d93' WHERE AD_Menu_ID=53278 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='68b7da8a-0d9f-4a89-9acb-deb42a227e27' WHERE AD_Menu_ID=53275 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='00eaf907-755e-4b70-87ce-b3f7eae67d88' WHERE AD_Menu_ID=53299 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='273996cb-d938-4111-bcf2-11b585e866ea' WHERE AD_Menu_ID=53352 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='db9a8755-1212-4657-9a65-265448f4f5ac' WHERE AD_Menu_ID=53353 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='9d5047b7-be8a-4d84-b91a-147e6ef181d3' WHERE AD_Menu_ID=53354 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='4905acb8-435f-477e-93ea-cc9b3828db2a' WHERE AD_Menu_ID=53301 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='45cd5f4b-01e4-4f71-84c3-17f4681cbb7b' WHERE AD_Menu_ID=53302 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='e1daab44-0127-4862-bd0e-4cdf8b14e34b' WHERE AD_Menu_ID=53273 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='678991cf-c5bd-4e07-9078-1d9064b7917c' WHERE AD_Menu_ID=53274 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='9ee1cf7a-cc44-4d87-bef4-245194479184' WHERE AD_Menu_ID=200006 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Menu SET AD_Menu_UU='848b0d57-4408-4aa0-b3dd-e16f3b9940cb' WHERE AD_Menu_ID=53300 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_Message SET AD_Message_UU='7e929055-9808-46d4-a932-7e20d2f0a24b' WHERE AD_Message_ID=53137 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_ModelValidator SET AD_ModelValidator_UU='661c5a08-4d59-4192-a6c8-5e0269e773ec' WHERE AD_ModelValidator_ID=50004 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_PrintFormat SET AD_PrintFormat_UU='bf914950-4e5e-41ef-a547-7977879eb1d4' WHERE AD_PrintFormat_ID=50057 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_PrintFormat SET AD_PrintFormat_UU='d8688c25-d8ef-4a77-96b7-21a269a3435d' WHERE AD_PrintFormat_ID=200000 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_PrintFormat SET AD_PrintFormat_UU='062bcd68-d50d-4a9b-8641-79a565dea7e3' WHERE AD_PrintFormat_ID=200001 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='27a5f048-fe87-4f62-93e9-6c6c4312bfb0' WHERE AD_PrintFormatItem_ID=51709 +; + +-- Oct 31, 2012 12:37:48 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='b2d3414a-0103-435d-be10-30b0231a7edd' WHERE AD_PrintFormatItem_ID=51710 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='0f0b7962-bb77-46b8-a946-09a4a95cb23c' WHERE AD_PrintFormatItem_ID=51711 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='49d7e1ba-f2f6-4bb8-9d10-11dbd7fad643' WHERE AD_PrintFormatItem_ID=51712 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='e935ad92-db5c-4006-9472-fd3c8228ba60' WHERE AD_PrintFormatItem_ID=51713 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='5166c1e2-3786-4494-89de-b61e584aadd0' WHERE AD_PrintFormatItem_ID=51714 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='8196662d-e96e-4b5f-adef-430eba48d212' WHERE AD_PrintFormatItem_ID=51715 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='8a71dc53-d2f1-4bda-953f-7a1bba5972a6' WHERE AD_PrintFormatItem_ID=51716 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='50ac3b81-cc66-4f75-b783-9d67f5b061d6' WHERE AD_PrintFormatItem_ID=51718 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='06a980df-ac11-4165-af95-733a45733819' WHERE AD_PrintFormatItem_ID=51720 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='11524b97-fe07-4c57-90b8-9d87f60fe61e' WHERE AD_PrintFormatItem_ID=51721 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='ba805f41-1ffb-4fbc-b9fd-f1d6190cba2a' WHERE AD_PrintFormatItem_ID=51722 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='09f2f297-fd12-4563-a9f3-1e645f0a1bb1' WHERE AD_PrintFormatItem_ID=51723 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='7db18ed5-0b13-4bbb-be6b-5158bbe384f1' WHERE AD_PrintFormatItem_ID=51717 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='d5b65a82-61a0-4966-b2a5-b92c8d1a9b6c' WHERE AD_PrintFormatItem_ID=51724 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='f6f287c2-5d0d-4529-82e3-8ac81f3e521c' WHERE AD_PrintFormatItem_ID=51725 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='eca8afc4-51da-4111-b110-08747a97e219' WHERE AD_PrintFormatItem_ID=51726 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='bc96a664-66a5-4d39-bcfb-5efd27bef0d1' WHERE AD_PrintFormatItem_ID=51727 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='ae08b040-ead2-47c4-b4f0-693306ac0115' WHERE AD_PrintFormatItem_ID=51728 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='d0f325bf-3029-41cc-82e0-26e0461475c5' WHERE AD_PrintFormatItem_ID=51729 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='992762c0-f247-4cf4-bfb7-3476cc7198ef' WHERE AD_PrintFormatItem_ID=51730 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='619880f4-c673-4592-8c7b-b3777660944f' WHERE AD_PrintFormatItem_ID=200002 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='5baaf657-2034-45a1-8362-5509a05bdb11' WHERE AD_PrintFormatItem_ID=200003 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='1b1cf064-df12-4a5f-af66-0f35cedc13d5' WHERE AD_PrintFormatItem_ID=200005 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='0b9a9015-7ada-47f8-bfb3-cd48d8a8aff6' WHERE AD_PrintFormatItem_ID=200009 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='4f5c6734-d236-483f-82f1-b905a20e85b6' WHERE AD_PrintFormatItem_ID=200007 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='fddd10df-273e-4660-9430-143e93708efe' WHERE AD_PrintFormatItem_ID=200004 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='d6718646-8009-4c8a-a67b-ced6f5aee911' WHERE AD_PrintFormatItem_ID=200006 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='de9f5daf-96ed-473b-9327-cb8e028acbd0' WHERE AD_PrintFormatItem_ID=200023 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='b7a7eb36-7a5b-4510-9c6f-b61b15e31a1f' WHERE AD_PrintFormatItem_ID=200001 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='e822e936-559f-4815-9836-5f074ed38c65' WHERE AD_PrintFormatItem_ID=200000 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='0597ab68-9c96-4e08-b606-7b8f4059cd49' WHERE AD_PrintFormatItem_ID=200008 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='de1edff6-6777-4726-aaf2-b84171ee7069' WHERE AD_PrintFormatItem_ID=200010 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='df91b0ae-bd54-4e87-aa04-36acfa0a7461' WHERE AD_PrintFormatItem_ID=200011 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='f11704eb-7729-415d-919b-f9491dcbb772' WHERE AD_PrintFormatItem_ID=200014 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='0d2493d0-da96-4116-9056-c4dc5e534d4f' WHERE AD_PrintFormatItem_ID=200015 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='6d734aee-1799-4022-a021-617a76925d45' WHERE AD_PrintFormatItem_ID=200025 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='f193f8e1-df02-4169-ae46-b73acd77220f' WHERE AD_PrintFormatItem_ID=200020 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='bc92b97f-5071-4c94-8521-9f03e6537d20' WHERE AD_PrintFormatItem_ID=200018 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='effa540a-f3b9-47d2-ad1d-6fbfbfe8a691' WHERE AD_PrintFormatItem_ID=200032 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='0ede66ba-d99a-4cfc-a58d-f8607dc1a8f3' WHERE AD_PrintFormatItem_ID=200016 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='773e01bb-b336-4826-9f05-960f3e6aeadf' WHERE AD_PrintFormatItem_ID=200030 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='b34d8bc9-6338-404d-be39-0054dc371007' WHERE AD_PrintFormatItem_ID=200027 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='bae6529a-93c0-446d-8f7d-635927b61cc0' WHERE AD_PrintFormatItem_ID=200029 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='d30864ee-7cf6-4f80-b3ad-c10e04db165e' WHERE AD_PrintFormatItem_ID=200019 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='29056c23-dfd6-4075-ac35-b24c28ce6a1b' WHERE AD_PrintFormatItem_ID=200021 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='32013b19-0199-49e9-aa73-dce431086e36' WHERE AD_PrintFormatItem_ID=200022 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='016149f4-6df2-4b1b-8a6b-c80aae2b63db' WHERE AD_PrintFormatItem_ID=200017 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='da3b0244-df9e-4e92-a5f6-b06fd15ab430' WHERE AD_PrintFormatItem_ID=200024 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='19f6763c-23b3-47fb-99c8-d00c93942b61' WHERE AD_PrintFormatItem_ID=200028 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='ee950dbf-8fe0-45d3-aa7f-e3df52ba5286' WHERE AD_PrintFormatItem_ID=200031 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='8c3f047e-6c20-463b-968f-89647c51439a' WHERE AD_PrintFormatItem_ID=200026 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='fdaa384c-a771-41b0-800c-73d95c181c13' WHERE AD_PrintFormatItem_ID=200045 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='7ca70573-930f-43b2-8553-355e50c930dd' WHERE AD_PrintFormatItem_ID=200049 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='39173248-dd4a-4083-8dd8-302f173cb067' WHERE AD_PrintFormatItem_ID=200033 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='4b9373b2-011b-4b84-ae71-db6c01fb730e' WHERE AD_PrintFormatItem_ID=200064 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='eab7d6cf-d23a-4c2d-bb1f-d1e4e70a9142' WHERE AD_PrintFormatItem_ID=200055 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='baf7f2ad-8950-4c1c-9b52-a0548e858b1b' WHERE AD_PrintFormatItem_ID=200054 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='c1c3a5b3-d8ce-4cf0-a984-52d73451d66d' WHERE AD_PrintFormatItem_ID=200038 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='7b53faf9-dccc-44ea-ad51-5a1ff33428ae' WHERE AD_PrintFormatItem_ID=200037 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='1f8d744d-d8de-4f11-afaf-71d6c1ca380d' WHERE AD_PrintFormatItem_ID=200039 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='6b8a2719-d0a1-4f57-848a-8211a70e3eb5' WHERE AD_PrintFormatItem_ID=200040 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='84bbd538-fd73-4ffe-b8d7-91de16806443' WHERE AD_PrintFormatItem_ID=200034 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='ee40e17d-89e6-4ddb-acf7-f10d15f2eacb' WHERE AD_PrintFormatItem_ID=200043 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='93e8ca1c-106a-4266-af4e-2d251351d7a5' WHERE AD_PrintFormatItem_ID=200048 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='2038c387-3115-4c59-8326-a5083c4aa740' WHERE AD_PrintFormatItem_ID=200053 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='cae22754-0c4b-4e04-b38a-96fd9e08b9a4' WHERE AD_PrintFormatItem_ID=200044 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='46f76e49-59b3-4b18-bda2-a0bf65ce47e6' WHERE AD_PrintFormatItem_ID=200051 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='8c6704ab-2195-47e9-bba7-1a1c8faf5ee8' WHERE AD_PrintFormatItem_ID=200036 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='8e948bc3-75d7-4736-8a2d-f283e7b11b82' WHERE AD_PrintFormatItem_ID=200062 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='f11b9bc4-8a55-4aec-80e1-b0adcb619594' WHERE AD_PrintFormatItem_ID=200063 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='3a1c4cb0-22c1-480c-9a36-8721b9ce6933' WHERE AD_PrintFormatItem_ID=200042 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='239c02ad-314d-40b6-9e5f-edab86efb719' WHERE AD_PrintFormatItem_ID=200052 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='9ee204cc-5d4d-44e9-ba37-912e1d92e58d' WHERE AD_PrintFormatItem_ID=200047 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='1629004b-33ef-4162-9b35-3cb7323f0ec4' WHERE AD_PrintFormatItem_ID=200050 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='0184a219-cd08-40d3-aa64-1107ef55930f' WHERE AD_PrintFormatItem_ID=200056 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='9b699129-7fe1-42e0-ae8a-471594409701' WHERE AD_PrintFormatItem_ID=200061 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='c9fa513b-6653-4d6c-814e-29fd8513561d' WHERE AD_PrintFormatItem_ID=200057 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='5785fc70-b879-4f93-bace-4147cbcfa63d' WHERE AD_PrintFormatItem_ID=200035 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='8f79c732-78a1-4bd2-b93a-69f7b2fb72e6' WHERE AD_PrintFormatItem_ID=200041 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='ecbb0987-806a-4620-b7dd-79bf5e057fdf' WHERE AD_PrintFormatItem_ID=200058 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='7f855535-663a-44f8-b3af-8a0c7c5497f5' WHERE AD_PrintFormatItem_ID=200060 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='4f888e22-17bd-492f-8a8b-73bb0692bf33' WHERE AD_PrintFormatItem_ID=200066 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='41eefe9c-d14f-48fa-b6f5-6f673288c1eb' WHERE AD_PrintFormatItem_ID=200059 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='60ce45c2-00ad-4e50-ad7d-e2baa1b3713d' WHERE AD_PrintFormatItem_ID=200078 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='b562f258-9951-4b4b-b48d-b4db81c6d551' WHERE AD_PrintFormatItem_ID=200065 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='6b7939eb-e4de-4131-8421-50794fa5daa3' WHERE AD_PrintFormatItem_ID=200046 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='c29145d8-1009-459c-972b-5926a714fd0e' WHERE AD_PrintFormatItem_ID=200079 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='e9ab7c1e-9600-43d9-9948-ce10713a401b' WHERE AD_PrintFormatItem_ID=200012 +; + +-- Oct 31, 2012 12:37:49 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='4f68bb94-19d4-4a39-ac52-9b88ca80a62d' WHERE AD_PrintFormatItem_ID=200068 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='1c50ac71-5be2-4a09-8927-5f02ae2b0f7a' WHERE AD_PrintFormatItem_ID=200070 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='77e89572-31ad-4574-aedc-96af47e81c3d' WHERE AD_PrintFormatItem_ID=200069 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='0a558791-99df-4698-af3c-49cebf7f7fa4' WHERE AD_PrintFormatItem_ID=200071 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='e9d433ad-2c41-4079-83e3-dc9e24904fe8' WHERE AD_PrintFormatItem_ID=200072 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='a7817071-b186-45de-81ff-211e228568cf' WHERE AD_PrintFormatItem_ID=200073 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='9fd5b010-3337-4c84-9095-aa99baea1a13' WHERE AD_PrintFormatItem_ID=200074 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='dc4237db-8745-4ce2-b730-21460219fe60' WHERE AD_PrintFormatItem_ID=51719 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='1c602e1c-cb4d-4a48-bf20-144c6f6fb9b8' WHERE AD_PrintFormatItem_ID=200084 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='d666e9eb-fafd-4b6c-94e1-cd6e7f5f43c8' WHERE AD_PrintFormatItem_ID=200077 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='e1e39277-128f-4ce9-b2ca-29bc92c11f8a' WHERE AD_PrintFormatItem_ID=200080 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='100715a1-6e05-495c-998b-f70966c630d2' WHERE AD_PrintFormatItem_ID=200082 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='4e5aaecb-c53f-4c2b-bf54-4aea3dbf5485' WHERE AD_PrintFormatItem_ID=200076 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='10b9caa9-fafa-4da9-a399-b99187a30037' WHERE AD_PrintFormatItem_ID=200075 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='c6e3cfd3-7846-416c-99f8-0853830afd2d' WHERE AD_PrintFormatItem_ID=200013 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='14aad2a3-8a8a-4685-b210-52fca315b43e' WHERE AD_PrintFormatItem_ID=200085 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='1749b891-78a0-4f76-9353-2838722f7842' WHERE AD_PrintFormatItem_ID=200081 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='8741733a-b1ce-41f0-b40a-b733014ac2f3' WHERE AD_PrintFormatItem_ID=200067 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_PrintFormatItem SET AD_PrintFormatItem_UU='6f8ac12a-6f9a-4760-a4cf-2957b75a03c1' WHERE AD_PrintFormatItem_ID=200083 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='01dad84b-1d2c-4965-ae32-2ffdb7758e5c' WHERE AD_Process_ID=53229 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='e355de9c-6c81-4cac-ac8e-5d12d34fe75c' WHERE AD_Process_ID=53230 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='08bf9a66-cd12-431c-b8eb-6ffb8f9be39a' WHERE AD_Process_ID=53265 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='d081800b-458d-468c-b99f-fa3f8f5fcd9b' WHERE AD_Process_ID=53227 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='93f9a3f1-91a2-4e64-bed6-96464e30037c' WHERE AD_Process_ID=53226 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='dffb0add-700b-4a61-b69f-f772da1d1378' WHERE AD_Process_ID=53228 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='191be2cc-9bb9-4ca0-b280-36edaf51c610' WHERE AD_Process_ID=53264 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='8498cbf2-63fe-4ebf-b3c7-e2146c7d5b0e' WHERE AD_Process_ID=200010 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='38ad0704-5ba9-4a6a-83e2-a65054b4c080' WHERE AD_Process_ID=53208 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='10d75dce-5b1c-427f-bc1d-d6884dc679ad' WHERE AD_Process_ID=53210 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='bcd08a2b-4699-4f40-aa41-fa95eede237b' WHERE AD_Process_ID=53212 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='fc7ef5a4-dca3-4f2a-a542-ca5473990d3f' WHERE AD_Process_ID=53214 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='8d1334c7-213b-4ec2-b532-cfc1fa9300db' WHERE AD_Process_ID=53213 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='b48a9168-4ed0-4f4b-b291-a0c50fd93ecf' WHERE AD_Process_ID=53215 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='1c33a3db-41e3-427d-b001-10b00a70575b' WHERE AD_Process_ID=53207 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='3719aed9-c68b-46b3-b313-9d57cdb77805' WHERE AD_Process_ID=53211 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='55d410ae-0308-4d6a-8a0c-b91b184f097c' WHERE AD_Process_ID=53266 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='9fa8bfaa-3709-46c9-93be-19a9983c73e2' WHERE AD_Process_ID=53267 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='780bfd00-d0d0-4bff-a34d-69939ab05269' WHERE AD_Process_ID=200007 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='bdd3b2a7-26a0-426b-bd08-632c31635d1f' WHERE AD_Process_ID=200006 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process SET AD_Process_UU='090ab380-b479-4b31-a8f5-ad883aebe1ef' WHERE AD_Process_ID=200000 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='a7ef5332-3edd-4594-af42-13e58c9eb7b8' WHERE AD_Process_Para_ID=53466 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='d8ac1956-92a7-42d6-9d65-b7e131ce5e31' WHERE AD_Process_Para_ID=53459 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='9f15521a-2745-4aef-b204-3b1ed7fbd401' WHERE AD_Process_Para_ID=53461 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='73f4a9c0-4ee6-4523-8357-0ce09e34a634' WHERE AD_Process_Para_ID=53462 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='2039eb9c-7fd5-4f56-90f5-ea1e0b443a85' WHERE AD_Process_Para_ID=53463 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='150caa91-f916-4137-9d0d-a09b9a0d0870' WHERE AD_Process_Para_ID=53464 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='6c8cf1c6-956a-42d1-9af0-f674057fdb04' WHERE AD_Process_Para_ID=53465 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='978a0811-69d9-4f89-8555-44a14b38d1b6' WHERE AD_Process_Para_ID=53460 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='827e086c-5f1b-4aa4-90aa-61fc8d0322de' WHERE AD_Process_Para_ID=53526 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='b3b419dc-d061-497a-8182-2e3f4e207257' WHERE AD_Process_Para_ID=53527 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='63faac5e-4521-4651-96dc-b7f9c06083a5' WHERE AD_Process_Para_ID=53528 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='61a34161-c8bb-4e58-9a82-2a187455b3e5' WHERE AD_Process_Para_ID=53525 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='4a82d150-e2cf-4cc2-aa0b-648551c8243d' WHERE AD_Process_Para_ID=53524 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='6e2b7294-e8d4-467a-9379-389c5ed16118' WHERE AD_Process_Para_ID=53523 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='4da38235-105f-4067-99af-c523fc05cab1' WHERE AD_Process_Para_ID=53517 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='f9338c01-6cd2-499b-8562-3355d4922fcc' WHERE AD_Process_Para_ID=53518 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='cff5e281-7ba4-4c5d-b40c-9da9c2bc879b' WHERE AD_Process_Para_ID=53519 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='78272acd-c8d5-4177-a619-610bc0ccaf3b' WHERE AD_Process_Para_ID=53521 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='47d7a84a-32d2-46a7-b7c1-e63ecfbc1d2e' WHERE AD_Process_Para_ID=200041 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='d1e76a8d-5771-4104-bb4a-008d25722588' WHERE AD_Process_Para_ID=200042 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='55d972ee-2341-48d0-90d9-c383daace692' WHERE AD_Process_Para_ID=53520 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='054faa84-27d8-4fb3-9c64-1e81ead1ab3c' WHERE AD_Process_Para_ID=53522 +; + +-- Oct 31, 2012 12:37:50 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='5b9f4efd-a1a3-4046-a534-a0a7e1b09c19' WHERE AD_Process_Para_ID=200036 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='222c7938-9b8e-4301-9363-611c6d6cc729' WHERE AD_Process_Para_ID=200037 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='b95cc651-a05d-482c-8e10-392cceb3874d' WHERE AD_Process_Para_ID=200038 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='27d315be-1ca0-4393-9ee7-b600a9b7bc15' WHERE AD_Process_Para_ID=200039 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='07033e00-6aa0-4796-aed4-d9a21cac579e' WHERE AD_Process_Para_ID=53516 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='933bf575-bfb5-41ae-9a06-480cc000d058' WHERE AD_Process_Para_ID=200040 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='9758dc2c-bf41-4a61-ac89-0c7721dba370' WHERE AD_Process_Para_ID=53412 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='5cbbd447-7a37-48c6-b06f-60dd8be2ba02' WHERE AD_Process_Para_ID=53413 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='50518da6-1a2a-4fa6-8de6-e4743dbff4a3' WHERE AD_Process_Para_ID=53414 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='ba3a79b3-57a1-4c78-a240-a9f2a2e11ec5' WHERE AD_Process_Para_ID=53415 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='effbc323-d585-47f9-ad23-8cf491ec1a35' WHERE AD_Process_Para_ID=53416 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='6d4f59ed-5f47-4761-9a0a-b956b21aa6da' WHERE AD_Process_Para_ID=53417 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='cfea5f2d-5d51-4c0e-bf6c-5494dffdf65b' WHERE AD_Process_Para_ID=53418 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='b4288d43-069d-4fcd-81cb-3d2d0d582d47' WHERE AD_Process_Para_ID=200000 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='97118695-b8f5-4600-bb60-27812d462fc9' WHERE AD_Process_Para_ID=200001 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Process_Para SET AD_Process_Para_UU='49d4339e-02b3-4e15-964f-e9bba7dd2d51' WHERE AD_Process_Para_ID=200002 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Reference SET AD_Reference_UU='eca497f3-bfd7-4b8b-b861-1e510877f605' WHERE AD_Reference_ID=53412 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Reference SET AD_Reference_UU='fecfd227-3c55-4ca7-bec7-bd66a7406005' WHERE AD_Reference_ID=200008 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Reference SET AD_Reference_UU='7b48dd14-d089-400c-b16d-50031f6727b8' WHERE AD_Reference_ID=53357 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Reference SET AD_Reference_UU='21572c14-4801-499a-a2cd-0c1c9c1230ba' WHERE AD_Reference_ID=53358 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Reference SET AD_Reference_UU='f973985f-3064-40de-b097-baed00bb8d5d' WHERE AD_Reference_ID=53359 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Reference SET AD_Reference_UU='4d85e435-2f2b-4b11-b080-6b71c7fc2acd' WHERE AD_Reference_ID=53360 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Reference SET AD_Reference_UU='4fa96274-d213-4780-85dd-8c5109c7e1bf' WHERE AD_Reference_ID=53361 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Reference SET AD_Reference_UU='b09cf99b-4e59-4062-916a-fdb5a3bbb49e' WHERE AD_Reference_ID=53362 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Reference SET AD_Reference_UU='e4da3901-4a0f-409b-a84a-ec00d064d287' WHERE AD_Reference_ID=53363 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Reference SET AD_Reference_UU='e792608b-74cb-456f-9fcd-4735b1860a59' WHERE AD_Reference_ID=53364 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Reference SET AD_Reference_UU='559c5ec8-a55d-4145-ac12-8058aa9dfd93' WHERE AD_Reference_ID=53365 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Reference SET AD_Reference_UU='a3ea7a5e-3270-48c7-8d62-fcbd8a6a0b74' WHERE AD_Reference_ID=53366 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='b1964785-5ba4-4522-8661-5d34d78452e3' WHERE AD_Ref_List_ID=53708 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='571f15cf-8cb1-49a4-b1ad-997905b5acd8' WHERE AD_Ref_List_ID=53709 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='e0e8a2fc-a8ad-486f-957c-4c8417d5f5e6' WHERE AD_Ref_List_ID=53710 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='20e2b476-b0fd-48ae-85ac-cf6d165a8012' WHERE AD_Ref_List_ID=200027 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='ae07960f-9620-4c40-bff7-3171d1f52a10' WHERE AD_Ref_List_ID=200028 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='f17a68c5-0488-4718-a249-dd1f96c0f77f' WHERE AD_Ref_List_ID=200029 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='d2cdd31e-4373-4f35-8d01-22946c3c6211' WHERE AD_Ref_List_ID=53587 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='dd8c1848-6fb8-4829-8855-7c3b314514fd' WHERE AD_Ref_List_ID=53588 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='583c5228-ad5d-48cd-819b-97673805b1fa' WHERE AD_Ref_List_ID=53589 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='3f742175-42b0-4775-9eb3-ed5fefd0ca7a' WHERE AD_Ref_List_ID=53590 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='785b94f6-fbd7-49a7-b752-45a6d0df3888' WHERE AD_Ref_List_ID=53591 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='9ac1f818-4159-463f-81c4-b55923e94c9e' WHERE AD_Ref_List_ID=53592 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='b2aa86a9-566c-4762-98d5-c4b5c243a2cd' WHERE AD_Ref_List_ID=53593 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='fee6717e-7137-4035-9a83-bb96a6d111f8' WHERE AD_Ref_List_ID=53594 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='538261b3-5e19-445d-b54d-350c9b9fac92' WHERE AD_Ref_List_ID=53595 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='c72b48b9-f248-4e9d-9fd8-4afae918bef8' WHERE AD_Ref_List_ID=53596 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='c81b8475-74d3-41d5-8ff5-6de9e2db2436' WHERE AD_Ref_List_ID=53597 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='084daa2e-0720-47e2-8923-01793426c9a2' WHERE AD_Ref_List_ID=53598 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='3a74baee-45d7-4d09-84eb-37efa01e9ca0' WHERE AD_Ref_List_ID=53599 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='194f5d34-a04e-48c2-8e5a-8a81c326657c' WHERE AD_Ref_List_ID=53600 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='1bddac4c-bcc8-4758-8630-d80555b14a62' WHERE AD_Ref_List_ID=53601 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='2d7b24ae-5735-41a6-88f6-7aa5cc143493' WHERE AD_Ref_List_ID=53602 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='51a1b186-6af4-4373-9788-f9105aa65cfa' WHERE AD_Ref_List_ID=53603 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='3773d29e-2de2-42bb-a4f9-8b5bfbe771ac' WHERE AD_Ref_List_ID=53604 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='b689ef67-35b6-40c2-b0cb-18417d71b3dc' WHERE AD_Ref_List_ID=53605 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='6fafcbd4-e411-4d4e-ae98-6eb7b5f74f1c' WHERE AD_Ref_List_ID=53606 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='542d4bc6-837a-456a-8fb4-70ab76215909' WHERE AD_Ref_List_ID=53607 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='90cce63c-ef32-4917-97cc-e98bf04c7378' WHERE AD_Ref_List_ID=53608 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='31cd23ed-e20c-43e6-a12a-635f675e23d9' WHERE AD_Ref_List_ID=53609 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='6939008f-29e0-49b8-a30b-206b28c0d2b1' WHERE AD_Ref_List_ID=53610 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='934235d6-5b13-477f-a2b9-0b194a048d91' WHERE AD_Ref_List_ID=53611 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='44c8053c-dead-4cd4-97a8-920ef2aa7919' WHERE AD_Ref_List_ID=53612 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='09f9094c-2674-4f58-878b-a32e5a38b4d4' WHERE AD_Ref_List_ID=53613 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='3392ad55-541f-4a2e-ba62-c92a28f6421d' WHERE AD_Ref_List_ID=53614 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='a45dcc33-c973-4744-955e-dd24518ef099' WHERE AD_Ref_List_ID=200039 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='755ad6f9-b471-4e05-830d-45724bea861a' WHERE AD_Ref_List_ID=53711 +; + +-- Oct 31, 2012 12:37:51 PM COT +UPDATE AD_Ref_List SET AD_Ref_List_UU='177e543a-45ef-4cb6-bf4e-b957f711ae41' WHERE AD_Ref_List_ID=53712 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Ref_Table SET AD_Ref_Table_UU='2e639216-f95e-4383-b0e2-cc14cf44217c',Updated=TO_TIMESTAMP('2012-10-31 12:37:52','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Reference_ID=53357 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Ref_Table SET AD_Ref_Table_UU='7b06011c-d8e4-4250-8136-020621be36f0',Updated=TO_TIMESTAMP('2012-10-31 12:37:52','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Reference_ID=53358 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Ref_Table SET AD_Ref_Table_UU='c174d0f0-b41d-44c6-bc3b-b5720be8e040',Updated=TO_TIMESTAMP('2012-10-31 12:37:52','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Reference_ID=53362 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Ref_Table SET AD_Ref_Table_UU='35c39fa8-c329-49be-b7c1-4ad24a2ff53c',Updated=TO_TIMESTAMP('2012-10-31 12:37:52','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Reference_ID=53366 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Ref_Table SET AD_Ref_Table_UU='e6fb8d40-0bc7-4c17-9c4a-117515ca3bdc',Updated=TO_TIMESTAMP('2012-10-31 12:37:52','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Reference_ID=53363 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_ReportView SET AD_ReportView_UU='42709692-254a-42c7-976e-ace3c57ba296' WHERE AD_ReportView_ID=53038 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_ReportView SET AD_ReportView_UU='7274b1e6-2041-4276-bf29-f6e76262b2e8' WHERE AD_ReportView_ID=53039 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Schedule SET AD_Schedule_UU='5a06dc76-704e-40f5-bfcf-724829332c50' WHERE AD_Schedule_ID=200000 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Schedule SET AD_Schedule_UU='4f00c688-f09e-4de1-bf8f-843eb880b0b8' WHERE AD_Schedule_ID=200001 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Schedule SET AD_Schedule_UU='7e846d4a-4493-4672-a764-1f34a9d0166f' WHERE AD_Schedule_ID=200002 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Schedule SET AD_Schedule_UU='611de4e7-beef-4914-a826-30d9b9e1be6d' WHERE AD_Schedule_ID=200003 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Schedule SET AD_Schedule_UU='d113fb57-99fd-4ced-98be-40f59ad6b0d6' WHERE AD_Schedule_ID=200004 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='934d6b0f-5206-405b-8d13-b2960e6e39df' WHERE AD_Sequence_ID=200021 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='4da6d4d5-23da-4563-9e5b-4b64c33c0358' WHERE AD_Sequence_ID=200022 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='f9e4cea4-6bfb-479f-9ec0-edc4a0631053' WHERE AD_Sequence_ID=200023 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='cc18290e-4601-4741-a9d0-cb868f710966' WHERE AD_Sequence_ID=53381 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='39e05cd2-73a3-4db6-a362-098e222aa366' WHERE AD_Sequence_ID=53386 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='5d902ee3-1184-45ba-8447-8c53c2859c30' WHERE AD_Sequence_ID=53382 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='2165541e-5001-46f7-80c3-82076cdc06c4' WHERE AD_Sequence_ID=53387 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='8733e529-cfa8-4390-a859-93a99d51bb2c' WHERE AD_Sequence_ID=53388 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='4d4bae0e-f7f3-413a-b477-7031d0596bc6' WHERE AD_Sequence_ID=53385 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='99c378f6-73c8-478f-a3d8-147230624ee5' WHERE AD_Sequence_ID=53391 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='c4d5f799-c3aa-4c30-9d57-751dd37738f1' WHERE AD_Sequence_ID=53445 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='b6662c9f-d215-4fa8-9d20-44d07a62bade' WHERE AD_Sequence_ID=53444 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='d6bbf8b7-659a-43a1-97c7-ff8fb13d2520' WHERE AD_Sequence_ID=53443 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='380ef91b-d162-49c9-8763-fc4581c7552b' WHERE AD_Sequence_ID=53442 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Sequence SET AD_Sequence_UU='83633895-36cf-4b72-ba78-47bc3df1e62c' WHERE AD_Sequence_ID=53446 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='b02502df-4de3-4249-9b5e-9c98ec4aabb7' WHERE AD_Tab_ID=53424 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='1b80c9c3-9773-4138-870c-96487f25bdc8' WHERE AD_Tab_ID=53421 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='68fee7b9-f80d-48a6-8a9f-679dbbb3ac97' WHERE AD_Tab_ID=53422 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='93387805-3a24-4c13-af43-72a7356e0930' WHERE AD_Tab_ID=53423 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='bae1dc79-bd36-4935-954d-9378114c3bdd' WHERE AD_Tab_ID=53344 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='8cc500ac-bb02-48c1-a5dc-4c3ddc345979' WHERE AD_Tab_ID=53345 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='f30d9e5b-a2f4-4259-a819-680ddcf2aa33' WHERE AD_Tab_ID=53346 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='59b33b9c-85d2-48ee-a22b-a4b2c91d4cbb' WHERE AD_Tab_ID=53347 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='1344f3e1-f59e-43b3-bfd2-98241a142397' WHERE AD_Tab_ID=200020 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='30d7b4da-8e61-4d22-9038-a26a27dab00e' WHERE AD_Tab_ID=200022 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='736a5f16-ec33-406b-8b8d-917a1cd214ce' WHERE AD_Tab_ID=200021 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='9a599cee-85ca-45e5-a3d0-6c51a45bc83e' WHERE AD_Tab_ID=53320 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='d072f6c0-cc39-4960-9de9-3c0c8effc804' WHERE AD_Tab_ID=53321 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='f640b449-8371-40e1-b7ac-9111a1f89f25' WHERE AD_Tab_ID=53322 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='65faeec2-d493-4df0-8b4f-2ac2623cc572' WHERE AD_Tab_ID=53323 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='e20d585b-44e5-4faf-9353-cbe7fdf929ba' WHERE AD_Tab_ID=53324 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='7375c1e1-a713-4769-8087-c9da6c47fd7b' WHERE AD_Tab_ID=53325 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='3da7ff79-21ec-453a-9237-f098767aa255' WHERE AD_Tab_ID=53326 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='2433e0ad-a36d-4d31-a4f2-e8d8cc29d3f9' WHERE AD_Tab_ID=53327 +; + +-- Oct 31, 2012 12:37:52 PM COT +UPDATE AD_Tab SET AD_Tab_UU='527a9f85-2887-4172-a21d-db9e6f573dc2' WHERE AD_Tab_ID=53328 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Tab SET AD_Tab_UU='eac71ce6-ecd4-4e6a-9a54-492c476de399' WHERE AD_Tab_ID=53329 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Tab SET AD_Tab_UU='0871c486-143b-44a7-b0db-eb1eee42317b' WHERE AD_Tab_ID=53330 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Tab SET AD_Tab_UU='3ea88d92-a7fe-4273-8920-83ebc12bb6c9' WHERE AD_Tab_ID=53331 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Tab SET AD_Tab_UU='329793b0-2b48-44bd-9434-4f1da74b0ad8' WHERE AD_Tab_ID=53332 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Tab SET AD_Tab_UU='d4623147-7c29-4e47-aa67-b83ed6a429dc' WHERE AD_Tab_ID=53333 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Tab SET AD_Tab_UU='11f10490-012f-41cf-8cdf-181714e4bbfa' WHERE AD_Tab_ID=53334 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='d021a6e4-17ae-4795-bc44-ed34a19a6510' WHERE AD_Table_ID=53331 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='2371504c-e412-4f54-bd37-cc9404bb1549' WHERE AD_Table_ID=53332 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='6cf11163-e551-401a-bf94-38a8d702bf26' WHERE AD_Table_ID=53333 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='3c62e8d7-88d3-4b43-a390-e3b0c045596d' WHERE AD_Table_ID=200021 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='8592177a-29a3-47bc-bc53-ccf1e5ad3066' WHERE AD_Table_ID=200022 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='98d91406-da1c-4f84-bb28-19fb7fb50954' WHERE AD_Table_ID=200023 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='e9d44e81-683a-45d4-9c7a-1de113749c2e' WHERE AD_Table_ID=53269 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='1cfd77a4-f1ae-401b-8419-6e6b159cae30' WHERE AD_Table_ID=53270 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='dbed41a4-356a-42b0-bfbb-35b02a02c0a6' WHERE AD_Table_ID=53273 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='84fd14f9-63f1-4032-bf56-81985711a622' WHERE AD_Table_ID=53274 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='2e0ef211-84d9-4f6f-9cd9-dd6f8d9e4fb6' WHERE AD_Table_ID=53276 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='80a3b143-dc22-4c02-a316-1200d2d2223c' WHERE AD_Table_ID=53277 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='4e27b936-4655-4645-8ff5-910aae71458a' WHERE AD_Table_ID=53275 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='09464288-b31a-4d96-a035-9830676fb7a8' WHERE AD_Table_ID=53334 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Table SET AD_Table_UU='2e394589-4dd9-4618-882b-c72763b6ada8' WHERE AD_Table_ID=53335 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='9972e3b4-8204-41b5-9626-f92953ea4e7e',Updated=TO_TIMESTAMP('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53350 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='bdc95980-5b49-4aee-a3eb-860670c48004',Updated=TO_TIMESTAMP('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53351 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='fb1c0edd-05fb-4111-81d0-892d324f8411',Updated=TO_TIMESTAMP('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53298 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='a5d5f564-aabd-442b-a468-f263945f5df2',Updated=TO_TIMESTAMP('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53299 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='b13155e9-05a6-4995-9d3b-43322786fe75',Updated=TO_TIMESTAMP('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53300 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='5239b566-b165-416f-9261-2fc9ab184e1b',Updated=TO_TIMESTAMP('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53301 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='a8bf7e8e-7651-44fb-86d8-866087c96fc1',Updated=TO_TIMESTAMP('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53352 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='72b6262a-3b70-4623-b30b-f6330d64c890',Updated=TO_TIMESTAMP('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53302 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='dd1d7547-2207-4112-a310-232ac3fd5eac',Updated=TO_TIMESTAMP('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53353 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='76ab48f1-b874-419a-857a-534056460eab',Updated=TO_TIMESTAMP('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53354 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='e0b7f711-d653-4530-8a16-b96f87e813aa',Updated=TO_TIMESTAMP('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53297 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='d4be133b-8ef1-44aa-a9d4-72132d806e1e',Updated=TO_TIMESTAMP('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53296 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='17d9565c-1b03-4003-909a-bb72ef060870',Updated=TO_TIMESTAMP('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=200019 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='bb059ad7-e620-4e7f-8308-700c4cda7145',Updated=TO_TIMESTAMP('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53284 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='15b4a04c-7d43-400f-a928-05b4cd1c6fc8',Updated=TO_TIMESTAMP('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53275 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='4df6d60d-3822-40ee-8403-b1a895388c87',Updated=TO_TIMESTAMP('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=200022 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='acc028a2-c5e4-4c23-aeec-5b8c9b3adabe',Updated=TO_TIMESTAMP('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53278 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='f8ea14b2-18fa-4e44-9588-2bbe70804aeb',Updated=TO_TIMESTAMP('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53280 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='19b67207-87f5-4ad4-98e6-a36713327a23',Updated=TO_TIMESTAMP('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53273 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='7664ff03-aaf3-461c-9650-eafa934d2dba',Updated=TO_TIMESTAMP('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53274 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='22bd605e-0292-4c65-b4ea-04b1cd9d94de',Updated=TO_TIMESTAMP('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=53277 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_TreeNodeMM SET AD_TreeNodeMM_UU='efda1cf3-37d5-422d-8d10-1cb0f48989cf',Updated=TO_TIMESTAMP('2012-10-31 12:37:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tree_ID=10 AND Node_ID=200006 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Val_Rule SET AD_Val_Rule_UU='e91138fe-02be-4550-a416-a7789271e1f3' WHERE AD_Val_Rule_ID=52107 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Val_Rule SET AD_Val_Rule_UU='20ab7244-5ef5-4e36-89b0-dffbb6aea710' WHERE AD_Val_Rule_ID=52103 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Val_Rule SET AD_Val_Rule_UU='1d20954f-a861-4cf2-9faf-41e02cdbe492' WHERE AD_Val_Rule_ID=52085 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Val_Rule SET AD_Val_Rule_UU='39d7e0b5-fd71-40f6-896e-0b4890042e26' WHERE AD_Val_Rule_ID=52086 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Val_Rule SET AD_Val_Rule_UU='d9faac16-89ab-436c-825a-93c6ef67b856' WHERE AD_Val_Rule_ID=52087 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_Val_Rule SET AD_Val_Rule_UU='210605aa-cb67-4f67-9b2c-6afef55c5db8' WHERE AD_Val_Rule_ID=52088 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='7bc9a1ea-b3bd-47a3-b3d7-779122d35e19' WHERE AD_WF_Node_ID=50119 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='03e0a743-98f5-4c1c-b063-d21a6a32a223' WHERE AD_WF_Node_ID=50118 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='0d0a12ea-17b9-435a-b899-4f43c3b1feae' WHERE AD_WF_Node_ID=50117 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='b96fb19e-f4aa-41b2-a606-80610993d312' WHERE AD_WF_Node_ID=50116 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='f46db649-e7ed-4418-9db2-f801b3ed1de1' WHERE AD_WF_Node_ID=50115 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='d26db474-ddd1-4e0e-a8fa-80c7d2ed3c7c' WHERE AD_WF_Node_ID=50114 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='9a48251f-6df2-4c12-bf98-a5eb389092e5' WHERE AD_WF_Node_ID=50113 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='0ca15c22-dea4-49d3-9a45-6453598cba0c' WHERE AD_WF_Node_ID=50112 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='21db49c7-d167-4541-9dd6-9c3dfb14bce0' WHERE AD_WF_Node_ID=50111 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='d9b46b02-1a4a-4a6e-b93f-e3e633e4a48f' WHERE AD_WF_Node_ID=50110 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='a69e80d5-3410-47ed-81d6-429d4665d5f4' WHERE AD_WF_Node_ID=50109 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='706799c2-ad46-449a-b1b9-eb935c924fda' WHERE AD_WF_Node_ID=50108 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='92eed90a-24b4-49f7-a2d4-f7eb02110886' WHERE AD_WF_Node_ID=50107 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='ae4fba70-bc1b-4a5d-b3ed-7051f7e9e242' WHERE AD_WF_Node_ID=50106 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='e9d115ef-345a-4776-9760-ea1879bdbab3' WHERE AD_WF_Node_ID=50105 +; + +-- Oct 31, 2012 12:37:53 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='f8c995c5-2fcd-4dc0-9b64-c8038a738977' WHERE AD_WF_Node_ID=50104 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='e30aad8c-7285-4cbf-a1ac-8e77123538dc' WHERE AD_WF_Node_ID=50103 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='f19c7bfb-fa3f-4a80-a5df-7d1c07eac822' WHERE AD_WF_Node_ID=50102 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='91862fab-23dc-49fa-b8a3-fe52a1683958' WHERE AD_WF_Node_ID=50101 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='65454e3e-e8e1-474a-9f87-4f090f1111a5' WHERE AD_WF_Node_ID=50100 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_Node SET AD_WF_Node_UU='7ed25afb-93ff-43b1-b3ec-833cacdc2277' WHERE AD_WF_Node_ID=50099 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='0e78b468-b218-4ee4-99c3-897718208577' WHERE AD_WF_NodeNext_ID=50076 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='e5f362e7-01d3-41f2-ac64-13dfaec28b98' WHERE AD_WF_NodeNext_ID=50077 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='c25a08ea-f5d4-4f5c-81ac-fb2dafaeba3c' WHERE AD_WF_NodeNext_ID=50078 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='f4d807bb-34b7-4555-a590-540f21e4f40c' WHERE AD_WF_NodeNext_ID=50079 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='fd0d064d-2a73-4463-bbf5-150b895be7ed' WHERE AD_WF_NodeNext_ID=50080 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='3306692d-0be7-4069-99ec-70deaf01b828' WHERE AD_WF_NodeNext_ID=50081 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='d37e285d-4567-4df8-b72c-7c8fbf11a297' WHERE AD_WF_NodeNext_ID=50082 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='aea5ff87-23fb-4730-84ba-6006878ecf6b' WHERE AD_WF_NodeNext_ID=50083 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='c203bdbb-f27e-49c2-afc5-ea475abdf560' WHERE AD_WF_NodeNext_ID=50084 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='f2f4f328-6dc9-4758-a450-da23ab6b6143' WHERE AD_WF_NodeNext_ID=50085 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='28029f3d-7cd4-4f91-b118-88fc22e68d11' WHERE AD_WF_NodeNext_ID=50086 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='d2be1873-599d-457f-8cb4-7190238dbeef' WHERE AD_WF_NodeNext_ID=50087 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='ae51336b-69d5-4dea-975c-c3d0fcd0fa87' WHERE AD_WF_NodeNext_ID=50088 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='089b9d8f-597d-49cb-b04d-9c77bff08f46' WHERE AD_WF_NodeNext_ID=50089 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_WF_NodeNext SET AD_WF_NodeNext_UU='eaa48812-9c88-48c7-ad5e-fbbf8d4ea20a' WHERE AD_WF_NodeNext_ID=50090 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Window SET AD_Window_UU='2b7e7326-03e2-4cda-b08f-9bdb1ffdfc76' WHERE AD_Window_ID=53127 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Window SET AD_Window_UU='10c8b478-026c-4271-9718-5af0e7508809' WHERE AD_Window_ID=53149 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Window SET AD_Window_UU='f57c0ae5-ffd8-4204-a06d-81dd92afe970' WHERE AD_Window_ID=53150 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Window SET AD_Window_UU='54caabc1-2c76-428d-aa3a-67bc0f2b0f01' WHERE AD_Window_ID=53128 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Window SET AD_Window_UU='c71f6172-b7a1-4b31-b3ad-64b159e36f6d' WHERE AD_Window_ID=200013 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Window SET AD_Window_UU='ab45042b-d29e-480a-87f2-0e37ed6009b4' WHERE AD_Window_ID=53113 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Window SET AD_Window_UU='cd319295-edb3-45c9-937d-994bf4eef911' WHERE AD_Window_ID=53114 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Window SET AD_Window_UU='5201561c-7f0c-4616-9af6-b2677131f369' WHERE AD_Window_ID=53115 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Window SET AD_Window_UU='a3b6f7bb-d7c7-4e6a-9fe9-d9cd36b330c3' WHERE AD_Window_ID=53116 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Window SET AD_Window_UU='d53bfb77-65a5-46d0-b5da-e2fae2780813' WHERE AD_Window_ID=53117 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Window SET AD_Window_UU='5ef56311-286f-486c-9e76-9bd4d35b45c6' WHERE AD_Window_ID=53118 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Window SET AD_Window_UU='152fb55d-1202-44af-b9fe-e58ca79afee6' WHERE AD_Window_ID=53119 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Window SET AD_Window_UU='09015076-dbe5-414a-aa75-9349e7b293a1' WHERE AD_Window_ID=53120 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Workflow SET AD_Workflow_UU='08d3aa3b-93af-4315-b48d-2d3b67d2dbf4' WHERE AD_Workflow_ID=50020 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Workflow SET AD_Workflow_UU='2ca718db-2a56-4129-bca6-d8d2f4771d6a' WHERE AD_Workflow_ID=50021 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Workflow SET AD_Workflow_UU='660d41be-1e1e-4aef-b8d8-d4561739795a' WHERE AD_Workflow_ID=50022 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Workflow SET AD_Workflow_UU='d644a5d9-eb86-4364-b139-052d6f13eeb1' WHERE AD_Workflow_ID=50023 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE AD_Workflow SET AD_Workflow_UU='c5b88966-f5fb-4172-bf28-8430df246ef3' WHERE AD_Workflow_ID=50024 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE C_BankAccount_Processor SET C_BankAccount_Processor_UU='f4a64026-bf68-4c8c-b238-8cdf006aae04',Updated=TO_TIMESTAMP('2012-10-31 12:37:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_BankAccount_ID=100 AND C_PaymentProcessor_ID=100 +; + +-- Oct 31, 2012 12:37:54 PM COT +UPDATE C_BankAccount_Processor SET C_BankAccount_Processor_UU='f8f892f0-36ab-4b4d-9dd3-c3bbe12cf455',Updated=TO_TIMESTAMP('2012-10-31 12:37:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_BankAccount_ID=101 AND C_PaymentProcessor_ID=101 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='93d7ed15-c0f0-485b-b1f9-92b2b4632e05' WHERE M_Product_BOM_ID=200004 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='aeaa80f1-cc81-4ef0-8d59-7a29da1b95bb' WHERE M_Product_BOM_ID=200005 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='47d7e300-ba02-466c-ab7c-486efe32c638' WHERE M_Product_BOM_ID=200006 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='d3f8f3de-d1c6-4e5c-ac1e-bf1a187a5817' WHERE M_Product_BOM_ID=200007 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='b601ee07-07ca-495c-906b-732c901326a0' WHERE M_Product_BOM_ID=200008 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='04fb5679-f8d0-4f4d-a6e2-e57dc7a8fdaa' WHERE M_Product_BOM_ID=200009 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='839618d6-10ba-4b94-8d10-7f333a39bad9' WHERE M_Product_BOM_ID=200010 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='f63ae4e9-fff4-4c28-8db2-c7dbcf3766ef' WHERE M_Product_BOM_ID=200011 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='cd9153bc-4c6a-4a09-9e56-7646ddcb2a4f' WHERE M_Product_BOM_ID=200012 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='67587202-c34b-4c3d-9dc2-57329c2b76d2' WHERE M_Product_BOM_ID=200013 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='64901e8f-0013-4b6a-a518-3294c26e1eec' WHERE M_Product_BOM_ID=200014 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='f8fea7e3-d0c4-49cb-a606-31d4d688720b' WHERE M_Product_BOM_ID=200015 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='a382444d-7295-474b-be8a-5b8d8e9c5532' WHERE M_Product_BOM_ID=200016 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='e5f40e8e-7f33-4f6a-a1ba-1217bc6ac360' WHERE M_Product_BOM_ID=200017 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='8c886e3e-e14c-4088-a49d-79e0e95149d0' WHERE M_Product_BOM_ID=200018 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='00ed7504-44e9-495c-864d-42e6551d6d6a' WHERE M_Product_BOM_ID=200019 +; + +-- Oct 31, 2012 12:37:55 PM COT +UPDATE M_Product_BOM SET M_Product_BOM_UU='0977d78b-df7f-43c2-acbd-b02b7d4a1f9d' WHERE M_Product_BOM_ID=200020 +; + +SELECT register_migration_script('954_UUID_Sync.sql') FROM dual +; + diff --git a/migration/360lts-release/postgresql/955_FixWrongEntityTypes.sql b/migration/360lts-release/postgresql/955_FixWrongEntityTypes.sql new file mode 100644 index 0000000000..4ae6326895 --- /dev/null +++ b/migration/360lts-release/postgresql/955_FixWrongEntityTypes.sql @@ -0,0 +1,29 @@ +UPDATE AD_Process SET EntityType = 'D' WHERE EntityType = 'U' AND AD_Process_ID<1000000; + +UPDATE AD_Process_Para SET EntityType = 'D' WHERE EntityType = 'U' AND AD_Process_Para_ID<1000000; + +UPDATE AD_ReportView SET EntityType = 'D' WHERE EntityType = 'U' AND AD_ReportView_ID<1000000; + +UPDATE AD_Field SET EntityType = 'D' WHERE EntityType = 'U' AND AD_Field_ID<1000000; + +UPDATE AD_Element SET EntityType = 'D' WHERE EntityType = 'U' AND AD_Element_ID<1000000; + +UPDATE AD_Val_Rule SET EntityType = 'D' WHERE EntityType = 'U' AND AD_Val_Rule_ID<1000000; + +UPDATE AD_Reference SET EntityType = 'D' WHERE EntityType = 'U' AND AD_Reference_ID<1000000; + +UPDATE AD_Menu SET EntityType = 'D' WHERE EntityType = 'U' AND AD_Menu_ID<1000000; + +UPDATE AD_Ref_List SET EntityType = 'D' WHERE EntityType = 'U' AND AD_Ref_List_ID<1000000; + +UPDATE AD_Column SET EntityType = 'D' WHERE EntityType = 'U' AND AD_Column_ID<1000000; + +UPDATE AD_Table SET EntityType = 'D' WHERE EntityType = 'U' AND AD_Table_ID<1000000; + +UPDATE AD_Message SET EntityType = 'D' WHERE EntityType = 'U' AND AD_Message_ID<1000000; + +UPDATE AD_Window SET EntityType = 'D' WHERE EntityType = 'U' AND AD_Window_ID<1000000; + +SELECT register_migration_script('955_FixWrongEntityTypes.sql') FROM dual +; + diff --git a/migration/360lts-release/postgresql/956_ForeignKeys.sql b/migration/360lts-release/postgresql/956_ForeignKeys.sql new file mode 100644 index 0000000000..da253f9c40 --- /dev/null +++ b/migration/360lts-release/postgresql/956_ForeignKeys.sql @@ -0,0 +1,381 @@ +ALTER TABLE A_Asset ADD CONSTRAINT AAssetClass_AAsset FOREIGN KEY (A_Asset_Class_ID) REFERENCES A_Asset_Class DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset ADD CONSTRAINT AAssetType_AAsset FOREIGN KEY (A_Asset_Type_ID) REFERENCES A_Asset_Type DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset ADD CONSTRAINT CActivity_AAsset FOREIGN KEY (C_Activity_ID) REFERENCES C_Activity DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Acct ADD CONSTRAINT ADepreciationF_AAssetAcct FOREIGN KEY (A_Depreciation_F_ID) REFERENCES A_Depreciation DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Acct ADD CONSTRAINT ADepreciationConvF_AAssetAcct FOREIGN KEY (A_Depreciation_Conv_F_ID) REFERENCES A_Depreciation_Convention DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Acct ADD CONSTRAINT ADepreciationMethodF_AAssetAcc FOREIGN KEY (A_Depreciation_Method_F_ID) REFERENCES A_Depreciation_Method DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Addition ADD CONSTRAINT CCharge_AAssetAddition FOREIGN KEY (C_Charge_ID) REFERENCES C_Charge DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Addition ADD CONSTRAINT CConversionType_AAssetAddition FOREIGN KEY (C_ConversionType_ID) REFERENCES C_ConversionType DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Addition ADD CONSTRAINT CCurrency_AAssetAddition FOREIGN KEY (C_Currency_ID) REFERENCES C_Currency DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Addition ADD CONSTRAINT CProject_AAssetAddition FOREIGN KEY (C_Project_ID) REFERENCES C_Project DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Addition ADD CONSTRAINT IFixedAsset_AAssetAddition FOREIGN KEY (I_FixedAsset_ID) REFERENCES I_FixedAsset DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Addition ADD CONSTRAINT MInOutLine_AAssetAddition FOREIGN KEY (M_InOutLine_ID) REFERENCES M_InOutLine DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Addition ADD CONSTRAINT MMatchInv_AAssetAddition FOREIGN KEY (M_MatchInv_ID) REFERENCES M_MatchInv DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Addition ADD CONSTRAINT MProduct_AAssetAddition FOREIGN KEY (M_Product_ID) REFERENCES M_Product DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Change ADD CONSTRAINT CBPartner_AAssetChange FOREIGN KEY (C_BPartner_ID) REFERENCES C_BPartner DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Disposed ADD CONSTRAINT AAsset_AAssetDisposed FOREIGN KEY (A_Asset_ID) REFERENCES A_Asset DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Disposed ADD CONSTRAINT CInvoice_AAssetDisposed FOREIGN KEY (C_Invoice_ID) REFERENCES C_Invoice DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Disposed ADD CONSTRAINT CInvoiceLine_AAssetDisposed FOREIGN KEY (C_InvoiceLine_ID) REFERENCES C_InvoiceLine DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Group ADD CONSTRAINT AAssetClass_AAssetGroup FOREIGN KEY (A_Asset_Class_ID) REFERENCES A_Asset_Class DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Group ADD CONSTRAINT AAssetType_AAssetGroup FOREIGN KEY (A_Asset_Type_ID) REFERENCES A_Asset_Type DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Group_Acct ADD CONSTRAINT ADepreciationF_AAssetGroupAcct FOREIGN KEY (A_Depreciation_F_ID) REFERENCES A_Depreciation DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Group_Acct ADD CONSTRAINT ADepreciationConvF_AAssetGroup FOREIGN KEY (A_Depreciation_Conv_F_ID) REFERENCES A_Depreciation_Convention DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Group_Acct ADD CONSTRAINT ADepreciationConv_AAssetGroupA FOREIGN KEY (A_Depreciation_Conv_ID) REFERENCES A_Depreciation_Convention DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Group_Acct ADD CONSTRAINT ADepreciationMethodF_AAssetGro FOREIGN KEY (A_Depreciation_Method_F_ID) REFERENCES A_Depreciation_Method DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Group_Acct ADD CONSTRAINT ADepreciationMethod_AAssetGrou FOREIGN KEY (A_Depreciation_Method_ID) REFERENCES A_Depreciation_Method DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Info_Fin ADD CONSTRAINT AAsset_AAssetInfoFin FOREIGN KEY (A_Asset_ID) REFERENCES A_Asset DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Info_Fin ADD CONSTRAINT CBPartner_AAssetInfoFin FOREIGN KEY (C_BPartner_ID) REFERENCES C_BPartner DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Info_Lic ADD CONSTRAINT AAsset_AAssetInfoLic FOREIGN KEY (A_Asset_ID) REFERENCES A_Asset DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Product ADD CONSTRAINT AAsset_AAssetProduct FOREIGN KEY (A_Asset_ID) REFERENCES A_Asset DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Product ADD CONSTRAINT MProduct_AAssetProduct FOREIGN KEY (M_Product_ID) REFERENCES M_Product DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Reval ADD CONSTRAINT AAsset_AAssetReval FOREIGN KEY (A_Asset_ID) REFERENCES A_Asset DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Transfer ADD CONSTRAINT AAsset_AAssetTransfer FOREIGN KEY (A_Asset_ID) REFERENCES A_Asset DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE AD_AlertProcessor ADD CONSTRAINT ADSchedule_ADAlertProcessor FOREIGN KEY (AD_Schedule_ID) REFERENCES AD_Schedule DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE AD_Client ADD CONSTRAINT ADPasswordRule_ADClient FOREIGN KEY (AD_PasswordRule_ID) REFERENCES AD_PasswordRule DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Depreciation_Exp ADD CONSTRAINT AAsset_ADepreciationExp FOREIGN KEY (A_Asset_ID) REFERENCES A_Asset DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Depreciation_Exp ADD CONSTRAINT AAssetAddition_ADepreciationEx FOREIGN KEY (A_Asset_Addition_ID) REFERENCES A_Asset_Addition DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Depreciation_Exp ADD CONSTRAINT AAssetDisposed_ADepreciationEx FOREIGN KEY (A_Asset_Disposed_ID) REFERENCES A_Asset_Disposed DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Depreciation_Exp ADD CONSTRAINT ADepreciationEntry_ADepreciati FOREIGN KEY (A_Depreciation_Entry_ID) REFERENCES A_Depreciation_Entry DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Depreciation_Workfile ADD CONSTRAINT AAsset_ADepreciationWorkfile FOREIGN KEY (A_Asset_ID) REFERENCES A_Asset DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Depreciation_Workfile ADD CONSTRAINT AFundingMode_ADepreciationWork FOREIGN KEY (A_FundingMode_ID) REFERENCES A_FundingMode DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE AD_Package_Exp_Detail ADD CONSTRAINT ADPackageExp_ADPackageExpDetai FOREIGN KEY (AD_Package_Exp_ID) REFERENCES AD_Package_Exp DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE AD_PInstance_Log ADD CONSTRAINT ADTable_ADPInstanceLog FOREIGN KEY (AD_Table_ID) REFERENCES AD_Table DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE AD_RecentItem ADD CONSTRAINT ADRole_ADRecentItem FOREIGN KEY (AD_Role_ID) REFERENCES AD_Role DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE AD_RecentItem ADD CONSTRAINT ADTab_ADRecentItem FOREIGN KEY (AD_Tab_ID) REFERENCES AD_Tab DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE AD_RecentItem ADD CONSTRAINT ADTable_ADRecentItem FOREIGN KEY (AD_Table_ID) REFERENCES AD_Table DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE AD_RecentItem ADD CONSTRAINT ADUser_ADRecentItem FOREIGN KEY (AD_User_ID) REFERENCES AD_User DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE AD_RecentItem ADD CONSTRAINT ADWindow_ADRecentItem FOREIGN KEY (AD_Window_ID) REFERENCES AD_Window DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE AD_Scheduler ADD CONSTRAINT ADSchedule_ADScheduler FOREIGN KEY (AD_Schedule_ID) REFERENCES AD_Schedule DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE AD_Scheduler ADD CONSTRAINT ADTable_ADScheduler FOREIGN KEY (AD_Table_ID) REFERENCES AD_Table DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE AD_Tab_Customization ADD CONSTRAINT ADTab_ADTabCustomization FOREIGN KEY (AD_Tab_ID) REFERENCES AD_Tab DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE AD_Tab_Customization ADD CONSTRAINT ADUser_ADTabCustomization FOREIGN KEY (AD_User_ID) REFERENCES AD_User DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE AD_ToolBarButton ADD CONSTRAINT ADProcess_ADToolBarButton FOREIGN KEY (AD_Process_ID) REFERENCES AD_Process DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE AD_ToolBarButton ADD CONSTRAINT ADTab_ADToolBarButton FOREIGN KEY (AD_Tab_ID) REFERENCES AD_Tab DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE AD_ToolBarButtonRestrict ADD CONSTRAINT ADProcess_ADToolBarButtonRestr FOREIGN KEY (AD_Process_ID) REFERENCES AD_Process DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE AD_ToolBarButtonRestrict ADD CONSTRAINT ADRole_ADToolBarButtonRestrict FOREIGN KEY (AD_Role_ID) REFERENCES AD_Role DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE AD_ToolBarButtonRestrict ADD CONSTRAINT ADTab_ADToolBarButtonRestrict FOREIGN KEY (AD_Tab_ID) REFERENCES AD_Tab DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE AD_ToolBarButtonRestrict ADD CONSTRAINT ADToolBarButton_ADToolBarButto FOREIGN KEY (AD_ToolBarButton_ID) REFERENCES AD_ToolBarButton DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE AD_ToolBarButtonRestrict ADD CONSTRAINT ADWindow_ADToolBarButtonRestri FOREIGN KEY (AD_Window_ID) REFERENCES AD_Window DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE AD_WizardProcess ADD CONSTRAINT ADWFNode_ADWizardProcess FOREIGN KEY (AD_WF_Node_ID) REFERENCES AD_WF_Node DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE AD_WorkflowProcessor ADD CONSTRAINT ADSchedule_ADWorkflowProcessor FOREIGN KEY (AD_Schedule_ID) REFERENCES AD_Schedule DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_FundingMode_Acct ADD CONSTRAINT AFundingMode_AFundingModeAcct FOREIGN KEY (A_FundingMode_ID) REFERENCES A_FundingMode DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_FundingMode_Acct ADD CONSTRAINT CAcctSchema_AFundingModeAcct FOREIGN KEY (C_AcctSchema_ID) REFERENCES C_AcctSchema DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE ASP_Ref_List ADD CONSTRAINT ADReference_ASPRefList FOREIGN KEY (AD_Reference_ID) REFERENCES AD_Reference DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE ASP_Ref_List ADD CONSTRAINT ADRefList_ASPRefList FOREIGN KEY (AD_Ref_List_ID) REFERENCES AD_Ref_List DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE ASP_Ref_List ADD CONSTRAINT ASPLevel_ASPRefList FOREIGN KEY (ASP_Level_ID) REFERENCES ASP_Level DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE C_AcctProcessor ADD CONSTRAINT ADSchedule_CAcctProcessor FOREIGN KEY (AD_Schedule_ID) REFERENCES AD_Schedule DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE C_AllocationLine ADD CONSTRAINT CCharge_CAllocationLine FOREIGN KEY (C_Charge_ID) REFERENCES C_Charge DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE C_BankAccount_Processor ADD CONSTRAINT CBankAccount_CBankAccountProce FOREIGN KEY (C_BankAccount_ID) REFERENCES C_BankAccount DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE C_BankAccount_Processor ADD CONSTRAINT CPaymentProcessor_CBankAccount FOREIGN KEY (C_PaymentProcessor_ID) REFERENCES C_PaymentProcessor DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE C_Payment ADD CONSTRAINT CPaymentProcessor_CPayment FOREIGN KEY (C_PaymentProcessor_ID) REFERENCES C_PaymentProcessor DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE C_Payment ADD CONSTRAINT CPOSTenderType_CPayment FOREIGN KEY (C_POSTenderType_ID) REFERENCES C_POSTenderType DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE C_POSPayment ADD CONSTRAINT COrder_CPOSPayment FOREIGN KEY (C_Order_ID) REFERENCES C_Order DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE C_POSPayment ADD CONSTRAINT CPayment_CPOSPayment FOREIGN KEY (C_Payment_ID) REFERENCES C_Payment DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE C_POSPayment ADD CONSTRAINT CPOSTenderType_CPOSPayment FOREIGN KEY (C_POSTenderType_ID) REFERENCES C_POSTenderType DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE DD_OrderLine ADD CONSTRAINT MShipper_DDOrderLine FOREIGN KEY (M_Shipper_ID) REFERENCES M_Shipper DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE Fact_Acct_Summary ADD CONSTRAINT ADOrgTrx_FactAcctSummary FOREIGN KEY (AD_OrgTrx_ID) REFERENCES AD_Org DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE Fact_Acct_Summary ADD CONSTRAINT CLocFrom_FactAcctSummary FOREIGN KEY (C_LocFrom_ID) REFERENCES C_Location DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE Fact_Acct_Summary ADD CONSTRAINT CLocTo_FactAcctSummary FOREIGN KEY (C_LocTo_ID) REFERENCES C_Location DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE Fact_Reconciliation ADD CONSTRAINT FactAcct_FactReconciliation FOREIGN KEY (Fact_Acct_ID) REFERENCES Fact_Acct DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE GL_JournalGeneratorSource ADD CONSTRAINT GLCategory_GLJournalGeneratorS FOREIGN KEY (GL_Category_ID) REFERENCES GL_Category DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE GL_JournalLine ADD CONSTRAINT ADOrgTrx_GLJournalLine FOREIGN KEY (AD_OrgTrx_ID) REFERENCES AD_Org DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE GL_JournalLine ADD CONSTRAINT CActivity_GLJournalLine FOREIGN KEY (C_Activity_ID) REFERENCES C_Activity DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE GL_JournalLine ADD CONSTRAINT CBPartner_GLJournalLine FOREIGN KEY (C_BPartner_ID) REFERENCES C_BPartner DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE GL_JournalLine ADD CONSTRAINT CCampaign_GLJournalLine FOREIGN KEY (C_Campaign_ID) REFERENCES C_Campaign DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE GL_JournalLine ADD CONSTRAINT Account_GLJournalLine FOREIGN KEY (Account_ID) REFERENCES C_ElementValue DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE GL_JournalLine ADD CONSTRAINT User1_GLJournalLine FOREIGN KEY (User1_ID) REFERENCES C_ElementValue DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE GL_JournalLine ADD CONSTRAINT User2_GLJournalLine FOREIGN KEY (User2_ID) REFERENCES C_ElementValue DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE GL_JournalLine ADD CONSTRAINT CLocFrom_GLJournalLine FOREIGN KEY (C_LocFrom_ID) REFERENCES C_Location DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE GL_JournalLine ADD CONSTRAINT CLocTo_GLJournalLine FOREIGN KEY (C_LocTo_ID) REFERENCES C_Location DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE GL_JournalLine ADD CONSTRAINT CProject_GLJournalLine FOREIGN KEY (C_Project_ID) REFERENCES C_Project DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE GL_JournalLine ADD CONSTRAINT CSalesRegion_GLJournalLine FOREIGN KEY (C_SalesRegion_ID) REFERENCES C_SalesRegion DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE GL_JournalLine ADD CONSTRAINT CSubAcct_GLJournalLine FOREIGN KEY (C_SubAcct_ID) REFERENCES C_SubAcct DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE GL_JournalLine ADD CONSTRAINT AliasValidCombination_GLJourna FOREIGN KEY (Alias_ValidCombination_ID) REFERENCES C_ValidCombination DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE GL_JournalLine ADD CONSTRAINT MProduct_GLJournalLine FOREIGN KEY (M_Product_ID) REFERENCES M_Product DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE HR_Movement ADD CONSTRAINT CBPBankAccount_HRMovement FOREIGN KEY (C_BP_BankAccount_ID) REFERENCES C_BP_BankAccount DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE HR_Movement ADD CONSTRAINT CBPGroup_HRMovement FOREIGN KEY (C_BP_Group_ID) REFERENCES C_BP_Group DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_FixedAsset ADD CONSTRAINT AAsset_IFixedAsset FOREIGN KEY (A_Asset_ID) REFERENCES A_Asset DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_FixedAsset ADD CONSTRAINT AAssetClass_IFixedAsset FOREIGN KEY (A_Asset_Class_ID) REFERENCES A_Asset_Class DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_FixedAsset ADD CONSTRAINT AAssetGroup_IFixedAsset FOREIGN KEY (A_Asset_Group_ID) REFERENCES A_Asset_Group DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_FixedAsset ADD CONSTRAINT AAssetType_IFixedAsset FOREIGN KEY (A_Asset_Type_ID) REFERENCES A_Asset_Type DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_FixedAsset ADD CONSTRAINT CBPartnerSR_IFixedAsset FOREIGN KEY (C_BPartnerSR_ID) REFERENCES C_BPartner DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_FixedAsset ADD CONSTRAINT CCity_IFixedAsset FOREIGN KEY (C_City_ID) REFERENCES C_City DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_FixedAsset ADD CONSTRAINT CUOM_IFixedAsset FOREIGN KEY (C_UOM_ID) REFERENCES C_UOM DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_FixedAsset ADD CONSTRAINT MLocator_IFixedAsset FOREIGN KEY (M_Locator_ID) REFERENCES M_Locator DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_FixedAsset ADD CONSTRAINT MProduct_IFixedAsset FOREIGN KEY (M_Product_ID) REFERENCES M_Product DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_HR_Movement ADD CONSTRAINT CBPartner_IHRMovement FOREIGN KEY (C_BPartner_ID) REFERENCES C_BPartner DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_HR_Movement ADD CONSTRAINT HRConcept_IHRMovement FOREIGN KEY (HR_Concept_ID) REFERENCES HR_Concept DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_HR_Movement ADD CONSTRAINT HRMovement_IHRMovement FOREIGN KEY (HR_Movement_ID) REFERENCES HR_Movement DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_HR_Movement ADD CONSTRAINT HRProcess_IHRMovement FOREIGN KEY (HR_Process_ID) REFERENCES HR_Process DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_Inventory ADD CONSTRAINT CCharge_IInventory FOREIGN KEY (C_Charge_ID) REFERENCES C_Charge DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_Inventory ADD CONSTRAINT CDocType_IInventory FOREIGN KEY (C_DocType_ID) REFERENCES C_DocType DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_Movement ADD CONSTRAINT ADOrgTrx_IMovement FOREIGN KEY (AD_OrgTrx_ID) REFERENCES AD_Org DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_Movement ADD CONSTRAINT ADUser_IMovement FOREIGN KEY (AD_User_ID) REFERENCES AD_User DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_Movement ADD CONSTRAINT CBPartner_IMovement FOREIGN KEY (C_BPartner_ID) REFERENCES C_BPartner DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_Movement ADD CONSTRAINT CCampaign_IMovement FOREIGN KEY (C_Campaign_ID) REFERENCES C_Campaign DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_Movement ADD CONSTRAINT CDocType_IMovement FOREIGN KEY (C_DocType_ID) REFERENCES C_DocType DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_Movement ADD CONSTRAINT CProject_IMovement FOREIGN KEY (C_Project_ID) REFERENCES C_Project DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_Movement ADD CONSTRAINT MMovement_IMovement FOREIGN KEY (M_Movement_ID) REFERENCES M_Movement DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_Movement ADD CONSTRAINT MMovementLine_IMovement FOREIGN KEY (M_MovementLine_ID) REFERENCES M_MovementLine DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_Movement ADD CONSTRAINT MProduct_IMovement FOREIGN KEY (M_Product_ID) REFERENCES M_Product DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_Movement ADD CONSTRAINT MShipper_IMovement FOREIGN KEY (M_Shipper_ID) REFERENCES M_Shipper DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE M_CostHistory ADD CONSTRAINT MCostDetail_MCostHistory FOREIGN KEY (M_CostDetail_ID) REFERENCES M_CostDetail DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE M_CostHistory ADD CONSTRAINT MCostElement_MCostHistory FOREIGN KEY (M_CostElement_ID) REFERENCES M_CostElement DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE M_CostHistory ADD CONSTRAINT MCostType_MCostHistory FOREIGN KEY (M_CostType_ID) REFERENCES M_CostType DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE M_Product ADD CONSTRAINT MPartType_MProduct FOREIGN KEY (M_PartType_ID) REFERENCES M_PartType DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE M_Production ADD CONSTRAINT COrderLine_MProduction FOREIGN KEY (C_OrderLine_ID) REFERENCES C_OrderLine DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE M_Production ADD CONSTRAINT MProduct_MProduction FOREIGN KEY (M_Product_ID) REFERENCES M_Product DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE M_ProductionLine ADD CONSTRAINT MProduction_MProductionLine FOREIGN KEY (M_Production_ID) REFERENCES M_Production DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE M_Product_QualityTest ADD CONSTRAINT MProduct_MProductQualityTest FOREIGN KEY (M_Product_ID) REFERENCES M_Product DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE M_Product_QualityTest ADD CONSTRAINT MQualityTest_MProductQualityTe FOREIGN KEY (M_QualityTest_ID) REFERENCES M_QualityTest DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE M_QualityTestResult ADD CONSTRAINT MQualityTest_MQualityTestResul FOREIGN KEY (M_QualityTest_ID) REFERENCES M_QualityTest DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE PA_DashboardContent ADD CONSTRAINT ADProcess_PADashboardContent FOREIGN KEY (AD_Process_ID) REFERENCES AD_Process DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE PA_DashboardContent ADD CONSTRAINT ADRole_PADashboardContent FOREIGN KEY (AD_Role_ID) REFERENCES AD_Role DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE PA_DashboardContent ADD CONSTRAINT ADUser_PADashboardContent FOREIGN KEY (AD_User_ID) REFERENCES AD_User DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE PA_DashboardPreference ADD CONSTRAINT ADRole_PADashboardPreference FOREIGN KEY (AD_Role_ID) REFERENCES AD_Role DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE PA_DashboardPreference ADD CONSTRAINT ADUser_PADashboardPreference FOREIGN KEY (AD_User_ID) REFERENCES AD_User DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE PA_DashboardPreference ADD CONSTRAINT PADashboardContent_PADashPref FOREIGN KEY (PA_DashboardContent_ID) REFERENCES PA_DashboardContent DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE R_RequestProcessor ADD CONSTRAINT ADSchedule_RRequestProcessor FOREIGN KEY (AD_Schedule_ID) REFERENCES AD_Schedule DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Acct ADD CONSTRAINT AAccumdepreciation_AAssetAcct FOREIGN KEY(A_Accumdepreciation_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Acct ADD CONSTRAINT ADisposalGain_AAssetAcct FOREIGN KEY(A_Disposal_Gain_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Acct ADD CONSTRAINT ADisposalLoss_AAssetAcct FOREIGN KEY(A_Disposal_Loss_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Acct ADD CONSTRAINT ADisposalRevenue_AAssetAcct FOREIGN KEY(A_Disposal_Revenue_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Acct ADD CONSTRAINT ARevalAdepOffsetCur_AAssetAcct FOREIGN KEY(A_Reval_Adep_Offset_Cur_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Acct ADD CONSTRAINT ARevalAdepOffsetPrior_AAssetAc FOREIGN KEY(A_Reval_Adep_Offset_Prior_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Acct ADD CONSTRAINT ARevalCostOffset_AAssetAcct FOREIGN KEY(A_Reval_Cost_Offset_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Acct ADD CONSTRAINT ARevalCostOffsetPrior_AAssetAc FOREIGN KEY(A_Reval_Cost_Offset_Prior_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Acct ADD CONSTRAINT ARevalDepexpOffset_AAssetAcct FOREIGN KEY(A_Reval_Depexp_Offset_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Addition ADD CONSTRAINT MAttributeSetInstance_AAssetAd FOREIGN KEY(M_AttributeSetInstance_ID) REFERENCES M_AttributeSetInstance(M_AttributeSetInstance_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Addition ADD CONSTRAINT MLocator_AAssetAddition FOREIGN KEY(M_Locator_ID) REFERENCES M_Locator(M_Locator_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Change ADD CONSTRAINT AAccumdepreciation_AAssetChang FOREIGN KEY(A_Accumdepreciation_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Change ADD CONSTRAINT ADepreciation_AAssetChange FOREIGN KEY(A_Depreciation_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Change ADD CONSTRAINT ADisposalLoss_AAssetChange FOREIGN KEY(A_Disposal_Loss_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Change ADD CONSTRAINT ADisposalRevenue_AAssetChange FOREIGN KEY(A_Disposal_Revenue_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Change ADD CONSTRAINT CValidCombinati_AAssetChange FOREIGN KEY(C_ValidCombination_ID) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Group_Acct ADD CONSTRAINT AAccumdepreciation_AAssetGroup FOREIGN KEY(A_Accumdepreciation_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Group_Acct ADD CONSTRAINT AAsset_AAssetGroupAcct FOREIGN KEY(A_Asset_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Group_Acct ADD CONSTRAINT ADisposalGain_AAssetGroupAcct FOREIGN KEY(A_Disposal_Gain_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Group_Acct ADD CONSTRAINT ADisposalLoss_AAssetGroupAcct FOREIGN KEY(A_Disposal_Loss_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Group_Acct ADD CONSTRAINT ADisposalRevenue_AAssetGroupAc FOREIGN KEY(A_Disposal_Revenue_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Group_Acct ADD CONSTRAINT ARevalAdepOffsetCur_AAssetGrou FOREIGN KEY(A_Reval_Adep_Offset_Cur_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Group_Acct ADD CONSTRAINT ARevalAdepOffsetPrior_AAssetGr FOREIGN KEY(A_Reval_Adep_Offset_Prior_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Group_Acct ADD CONSTRAINT ARevalCostOffset_AAssetGroupAc FOREIGN KEY(A_Reval_Cost_Offset_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Group_Acct ADD CONSTRAINT ARevalCostOffsetPrior_AAssetGr FOREIGN KEY(A_Reval_Cost_Offset_Prior_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Group_Acct ADD CONSTRAINT ARevalDepexpOffset_AAssetGroup FOREIGN KEY(A_Reval_Depexp_Offset_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Product ADD CONSTRAINT MAttributeSetInstance_AAssetPr FOREIGN KEY(M_AttributeSetInstance_ID) REFERENCES M_AttributeSetInstance(M_AttributeSetInstance_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Product ADD CONSTRAINT MLocator_AAssetProduct FOREIGN KEY(M_Locator_ID) REFERENCES M_Locator(M_Locator_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Transfer ADD CONSTRAINT AAccumdepreciation_AAssetTrans FOREIGN KEY(A_Accumdepreciation_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Transfer ADD CONSTRAINT AAccumdepreciationNew_AAssetTr FOREIGN KEY(A_Accumdepreciation_New_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Transfer ADD CONSTRAINT AAssetNew_AAssetTransfer FOREIGN KEY(A_Asset_New_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Transfer ADD CONSTRAINT ADepreciation_AAssetTransfer FOREIGN KEY(A_Depreciation_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Transfer ADD CONSTRAINT ADepreciationNew_AAssetTransfe FOREIGN KEY(A_Depreciation_New_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Transfer ADD CONSTRAINT ADisposalLoss_AAssetTransfer FOREIGN KEY(A_Disposal_Loss_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Transfer ADD CONSTRAINT ADisposalLossNew_AAssetTransfe FOREIGN KEY(A_Disposal_Loss_New_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Transfer ADD CONSTRAINT ADisposalRevenue_AAssetTransfe FOREIGN KEY(A_Disposal_Revenue_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Asset_Transfer ADD CONSTRAINT ADisposalRevenueNew_AAssetTran FOREIGN KEY(A_Disposal_Revenue_New_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Depreciation_Exp ADD CONSTRAINT AAccountNumber_ADepreciationEx FOREIGN KEY(A_Account_Number_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Depreciation_Exp ADD CONSTRAINT CRAccou_ADepreciationExp FOREIGN KEY(CR_Account_ID) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE A_Depreciation_Exp ADD CONSTRAINT DRAccou_ADepreciationExp FOREIGN KEY(DR_Account_ID) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE C_AcctSchema_Default ADD CONSTRAINT ChRevenue_CAcctSchemaDefault FOREIGN KEY(Ch_Revenue_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE C_Charge_Acct ADD CONSTRAINT ChRevenue_CChargeAcct FOREIGN KEY(Ch_Revenue_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_Asset ADD CONSTRAINT AAccumdepreciation_IAsset FOREIGN KEY(A_Accumdepreciation_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_Asset ADD CONSTRAINT AAsset_IAsset FOREIGN KEY(A_Asset_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_Asset ADD CONSTRAINT ADepreciation_IAsset FOREIGN KEY(A_Depreciation_Acct) REFERENCES C_ValidCombination(C_ValidCombination_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_Asset ADD CONSTRAINT MAttributeSetInstance_IAsset FOREIGN KEY(M_AttributeSetInstance_ID) REFERENCES M_AttributeSetInstance(M_AttributeSetInstance_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_Movement ADD CONSTRAINT MLocator_IMovement FOREIGN KEY(M_Locator_ID) REFERENCES M_Locator(M_Locator_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE I_Movement ADD CONSTRAINT MLocatorTo_IMovement FOREIGN KEY(M_LocatorTo_ID) REFERENCES M_Locator(M_Locator_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE M_CostHistory ADD CONSTRAINT MAttributeSetInstance_MCostHis FOREIGN KEY(M_AttributeSetInstance_ID) REFERENCES M_AttributeSetInstance(M_AttributeSetInstance_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE M_Production ADD CONSTRAINT MLocator_MProduction FOREIGN KEY(M_Locator_ID) REFERENCES M_Locator(M_Locator_ID) DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE M_QualityTestResult ADD CONSTRAINT MAttributeSetInstance_MQuality FOREIGN KEY(M_AttributeSetInstance_ID) REFERENCES M_AttributeSetInstance(M_AttributeSetInstance_ID) DEFERRABLE INITIALLY DEFERRED; + +SELECT register_migration_script('956_ForeignKeys.sql') FROM dual +; + diff --git a/migration/360lts-release/postgresql/957_SetSysConfig.sql b/migration/360lts-release/postgresql/957_SetSysConfig.sql new file mode 100644 index 0000000000..58b783c7b3 --- /dev/null +++ b/migration/360lts-release/postgresql/957_SetSysConfig.sql @@ -0,0 +1,36 @@ +update ad_sysconfig set value='N' where ad_sysconfig_id=50041 /* 'ALogin_ShowOneRole' */ +; + +update ad_sysconfig set value='N' where ad_sysconfig_id=200019 /* 'LOGIN_SHOW_RESETPASSWORD' */ +; + +update ad_sysconfig set value='HTML' where ad_sysconfig_id=200003 /* ZK_REPORT_TABLE_OUTPUT_TYPE */ +; + +UPDATE R_RequestProcessor SET IsActive='N' WHERE R_RequestProcessor_ID=100 +; + +update ad_field set isdisplayedgrid='N' where ad_column_id in (select ad_column_id from ad_column where ad_element_id=102) /* ad_client_id */ +and ad_column_id not in (315, 904, 12629) /* except client window */ +and ad_field_id < 1000000 +; + +update ad_field set isdisplayed='N', isdisplayedgrid='N' +where ad_field_id in ( +200508, +200510, +200280, +200504, +200505, +200605, +200638) +; + +update ad_field set isdisplayedgrid='N' +where isdisplayedgrid='Y' and isdisplayed='N' +and ad_field_id < 1000000 +; + +SELECT register_migration_script('957_SetSysConfig.sql') FROM dual +; + From 2fc2d6a9c16da5f2c0340e15ffe1cb7824f28cb8 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Wed, 31 Oct 2012 15:22:28 -0500 Subject: [PATCH 15/22] IDEMPIERE-24 Export 2pack zip on BP window fails / make export safer with parenthesis on OR --- .../src/org/adempiere/pipo2/GridTab2PackExporter.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/org.adempiere.pipo/src/org/adempiere/pipo2/GridTab2PackExporter.java b/org.adempiere.pipo/src/org/adempiere/pipo2/GridTab2PackExporter.java index 9b84b19bff..e0800d898c 100644 --- a/org.adempiere.pipo/src/org/adempiere/pipo2/GridTab2PackExporter.java +++ b/org.adempiere.pipo/src/org/adempiere/pipo2/GridTab2PackExporter.java @@ -59,12 +59,13 @@ public class GridTab2PackExporter implements IGridTabExporter { } else { for(int i = 0; i < gridTab.getRowCount(); i++) { if (i == 0) - sql.append(" WHERE "); + sql.append(" WHERE (("); else - sql.append(" OR "); + sql.append(") OR ("); gridTab.navigate(i); sql.append(gridTab.getTableModel().getWhereClause(gridTab.getCurrentRow())); } + sql.append("))"); } for(GridTab child : childs) { if (child.getTabLevel() > gridTab.getTabLevel()+1) { From d89bc0d4d02422823d8f288ade5de79ea084fd41 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Wed, 31 Oct 2012 15:56:29 -0500 Subject: [PATCH 16/22] Preparing release --- .../360lts-release/oracle/958_Version.sql | 9 +++++++++ .../360lts-release/postgresql/958_Version.sql | 9 +++++++++ .../adempiere/util/ModelClassGenerator.java | 2 +- .../util/ModelInterfaceGenerator.java | 6 +++--- .../src/org/compiere/Adempiere.java | 20 +++++++++---------- org.adempiere.server/adempiere.html | 2 +- 6 files changed, 33 insertions(+), 15 deletions(-) create mode 100644 migration/360lts-release/oracle/958_Version.sql create mode 100644 migration/360lts-release/postgresql/958_Version.sql diff --git a/migration/360lts-release/oracle/958_Version.sql b/migration/360lts-release/oracle/958_Version.sql new file mode 100644 index 0000000000..208e7e4089 --- /dev/null +++ b/migration/360lts-release/oracle/958_Version.sql @@ -0,0 +1,9 @@ +UPDATE AD_SYSTEM + SET releaseno = '1.0a', + VERSION = '2012-10-31' + WHERE ad_system_id = 0 AND ad_client_id = 0 +; + +SELECT register_migration_script('958_Version.sql') FROM dual +; + diff --git a/migration/360lts-release/postgresql/958_Version.sql b/migration/360lts-release/postgresql/958_Version.sql new file mode 100644 index 0000000000..208e7e4089 --- /dev/null +++ b/migration/360lts-release/postgresql/958_Version.sql @@ -0,0 +1,9 @@ +UPDATE AD_SYSTEM + SET releaseno = '1.0a', + VERSION = '2012-10-31' + WHERE ad_system_id = 0 AND ad_client_id = 0 +; + +SELECT register_migration_script('958_Version.sql') FROM dual +; + diff --git a/org.adempiere.base/src/org/adempiere/util/ModelClassGenerator.java b/org.adempiere.base/src/org/adempiere/util/ModelClassGenerator.java index 60ce8359fa..90dbf78b14 100644 --- a/org.adempiere.base/src/org/adempiere/util/ModelClassGenerator.java +++ b/org.adempiere.base/src/org/adempiere/util/ModelClassGenerator.java @@ -163,7 +163,7 @@ public class ModelClassGenerator createImports(start); // Class start.append("/** Generated Model for ").append(tableName).append(NL) - .append(" * @author Adempiere (generated) ").append(NL) + .append(" * @author iDempiere (generated) ").append(NL) .append(" * @version ").append(Adempiere.MAIN_VERSION).append(" - $Id$ */").append(NL) .append("public class ").append(className) .append(" extends PO") diff --git a/org.adempiere.base/src/org/adempiere/util/ModelInterfaceGenerator.java b/org.adempiere.base/src/org/adempiere/util/ModelInterfaceGenerator.java index ad079ddcb1..7d1a46f9db 100644 --- a/org.adempiere.base/src/org/adempiere/util/ModelInterfaceGenerator.java +++ b/org.adempiere.base/src/org/adempiere/util/ModelInterfaceGenerator.java @@ -87,8 +87,8 @@ public class ModelInterfaceGenerator /** File Header */ public static final String COPY = "/******************************************************************************\n" - +" * Product: Adempiere ERP & CRM Smart Business Solution *\n" - +" * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. *\n" + +" * Product: iDempiere ERP & CRM Smart Business Solution *\n" + +" * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. *\n" +" * This program is free software, you can redistribute it and/or modify it *\n" +" * under the terms version 2 of the GNU General Public License as published *\n" +" * by the Free Software Foundation. This program is distributed in the hope *\n" @@ -187,7 +187,7 @@ public class ModelInterfaceGenerator createImports(start); // Interface start.append("/** Generated Interface for ").append(tableName).append("\n") - .append(" * @author Adempiere (generated) \n") + .append(" * @author iDempiere (generated) \n") .append(" * @version ").append(Adempiere.MAIN_VERSION).append(NL) //.append(" - ").append(s_run).append("\n") .append(" */\n") .append("public interface ").append(className).append(" {").append("\n") diff --git a/org.adempiere.base/src/org/compiere/Adempiere.java b/org.adempiere.base/src/org/compiere/Adempiere.java index 4dbcce7467..c436ffdbc9 100644 --- a/org.adempiere.base/src/org/compiere/Adempiere.java +++ b/org.adempiere.base/src/org/compiere/Adempiere.java @@ -66,16 +66,16 @@ public final class Adempiere /** Main Version String */ // Conventions for naming second number is even for stable, and odd for unstable // the releases will have a suffix (a) for alpha - (b) for beta - (t) for trunk - (s) for stable - and (LTS) for long term support - static public String MAIN_VERSION = "Release 3.6.0LTS"; + static public String MAIN_VERSION = "Release 1.0a"; /** Detail Version as date Used for Client/Server */ - static public String DATE_VERSION = "2010-06-14"; + static public String DATE_VERSION = "2012-10-31"; /** Database Version as date Compared with AD_System */ - static public String DB_VERSION = "2010-06-14"; + static public String DB_VERSION = "2012-10-31"; /** Product Name */ - static public final String NAME = "ADempiere\u00AE"; + static public final String NAME = "iDempiere\u00AE"; /** URL of Product */ - static public final String URL = "www.adempiere.org"; + static public final String URL = "www.idempiere.org"; /** 16*16 Product Image. **/ static private final String s_File16x16 = "images/AD16.gif"; /** 32*32 Product Image. */ @@ -89,9 +89,9 @@ public final class Adempiere static private String s_supportEmail = ""; /** Subtitle */ - static public final String SUB_TITLE = "Smart Suite ERP,CRM and SCM"; - static public final String ADEMPIERE_R = "ADempiere\u00AE"; - static public final String COPYRIGHT = "\u00A9 1999-2010 ADempiere\u00AE"; + static public final String SUB_TITLE = "Smart Suite ERP, CRM and SCM"; + static public final String ADEMPIERE_R = "iDempiere\u00AE"; + static public final String COPYRIGHT = "\u00A9 1999-2012 iDempiere\u00AE"; static private String s_ImplementationVersion = null; static private String s_ImplementationVendor = null; @@ -102,7 +102,7 @@ public final class Adempiere static private ImageIcon s_imageIcon32; static private ImageIcon s_imageIconLogo; - static private final String ONLINE_HELP_URL = "http://www.adempiere.com/wiki/index.php/Manual"; + static private final String ONLINE_HELP_URL = "http://wiki.idempiere.org"; /** Logging */ private static CLogger log = null; @@ -176,7 +176,7 @@ public final class Adempiere /** * Summary (Windows). - * Adempiere(tm) Version 2.5.1a_2004-03-15 - Smart ERP & CRM - Copyright (c) 1999-2005 Jorg Janke; Implementation: 2.5.1a 20040417-0243 - (C) 1999-2005 Jorg Janke, Adempiere Inc. USA + * iDempiere(tm) Release 1.0a_2012-10-31 -Smart Suite ERP, CRM and SCM- Copyright (c) 1999-2012 iDempiere; Implementation: 2.5.1a 20040417-0243 - (C) 1999-2005 Jorg Janke, iDempiere Inc. USA * @return Summary in Windows character set */ public static String getSummary() diff --git a/org.adempiere.server/adempiere.html b/org.adempiere.server/adempiere.html index 5445959895..c1fd2d86ad 100644 --- a/org.adempiere.server/adempiere.html +++ b/org.adempiere.server/adempiere.html @@ -96,7 +96,7 @@ End If - Welcome to the OSGi + ADempiere = iDempiere 1.0 Preview Home Page!
+ Welcome to the iDempiere (OSGi+ADempiere) 1.0a Page!
From ef82abb2c66e6d72e202511305b293d791bdb2cf Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Wed, 31 Oct 2012 15:56:52 -0500 Subject: [PATCH 17/22] Generate all model classes --- .../org/compiere/model/I_AD_AccessLog.java | 23 +- .../src/org/compiere/model/I_AD_Alert.java | 21 +- .../compiere/model/I_AD_AlertProcessor.java | 12 +- .../model/I_AD_AlertProcessorLog.java | 21 +- .../compiere/model/I_AD_AlertRecipient.java | 25 +- .../org/compiere/model/I_AD_AlertRule.java | 23 +- .../src/org/compiere/model/I_AD_Archive.java | 25 +- .../org/compiere/model/I_AD_Attachment.java | 21 +- .../compiere/model/I_AD_AttachmentNote.java | 23 +- .../org/compiere/model/I_AD_Attribute.java | 27 +- .../compiere/model/I_AD_Attribute_Value.java | 19 +- .../org/compiere/model/I_AD_ChangeLog.java | 25 +- .../src/org/compiere/model/I_AD_Client.java | 8 +- .../org/compiere/model/I_AD_ClientInfo.java | 51 +- .../org/compiere/model/I_AD_ClientShare.java | 21 +- .../src/org/compiere/model/I_AD_Color.java | 21 +- .../src/org/compiere/model/I_AD_Column.java | 8 +- .../compiere/model/I_AD_Column_Access.java | 25 +- .../src/org/compiere/model/I_AD_Desktop.java | 19 +- .../compiere/model/I_AD_DesktopWorkbench.java | 23 +- .../model/I_AD_Document_Action_Access.java | 25 +- .../src/org/compiere/model/I_AD_Element.java | 19 +- .../org/compiere/model/I_AD_EntityType.java | 19 +- .../src/org/compiere/model/I_AD_Error.java | 19 +- .../src/org/compiere/model/I_AD_Field.java | 34 +- .../org/compiere/model/I_AD_FieldGroup.java | 19 +- .../src/org/compiere/model/I_AD_Find.java | 21 +- .../src/org/compiere/model/I_AD_Form.java | 19 +- .../org/compiere/model/I_AD_Form_Access.java | 23 +- .../org/compiere/model/I_AD_HouseKeeping.java | 21 +- .../src/org/compiere/model/I_AD_Image.java | 19 +- .../org/compiere/model/I_AD_ImpFormat.java | 21 +- .../compiere/model/I_AD_ImpFormat_Row.java | 23 +- .../org/compiere/model/I_AD_InfoColumn.java | 25 +- .../org/compiere/model/I_AD_InfoWindow.java | 21 +- .../src/org/compiere/model/I_AD_Issue.java | 37 +- .../org/compiere/model/I_AD_LabelPrinter.java | 19 +- .../model/I_AD_LabelPrinterFunction.java | 21 +- .../src/org/compiere/model/I_AD_Language.java | 8 +- .../org/compiere/model/I_AD_LdapAccess.java | 25 +- .../compiere/model/I_AD_LdapProcessor.java | 21 +- .../compiere/model/I_AD_LdapProcessorLog.java | 21 +- .../src/org/compiere/model/I_AD_Menu.java | 31 +- .../src/org/compiere/model/I_AD_Message.java | 19 +- .../compiere/model/I_AD_MigrationScript.java | 23 +- .../compiere/model/I_AD_ModelValidator.java | 19 +- .../org/compiere/model/I_AD_Modification.java | 19 +- .../src/org/compiere/model/I_AD_Note.java | 27 +- .../src/org/compiere/model/I_AD_Org.java | 21 +- .../src/org/compiere/model/I_AD_OrgInfo.java | 33 +- .../src/org/compiere/model/I_AD_OrgType.java | 21 +- .../org/compiere/model/I_AD_PInstance.java | 23 +- .../compiere/model/I_AD_PInstance_Log.java | 49 +- .../compiere/model/I_AD_PInstance_Para.java | 21 +- .../org/compiere/model/I_AD_Package_Exp.java | 16 +- .../model/I_AD_Package_Exp_Detail.java | 8 +- .../org/compiere/model/I_AD_Package_Imp.java | 8 +- .../model/I_AD_Package_Imp_Backup.java | 8 +- .../model/I_AD_Package_Imp_Detail.java | 8 +- .../compiere/model/I_AD_Package_Imp_Inst.java | 8 +- .../compiere/model/I_AD_Package_Imp_Proc.java | 8 +- .../org/compiere/model/I_AD_PasswordRule.java | 16 +- .../org/compiere/model/I_AD_Preference.java | 23 +- .../org/compiere/model/I_AD_PrintColor.java | 19 +- .../org/compiere/model/I_AD_PrintFont.java | 19 +- .../org/compiere/model/I_AD_PrintForm.java | 47 +- .../org/compiere/model/I_AD_PrintFormat.java | 33 +- .../compiere/model/I_AD_PrintFormatItem.java | 44 +- .../org/compiere/model/I_AD_PrintGraph.java | 33 +- .../org/compiere/model/I_AD_PrintLabel.java | 21 +- .../compiere/model/I_AD_PrintLabelLine.java | 25 +- .../org/compiere/model/I_AD_PrintPaper.java | 19 +- .../compiere/model/I_AD_PrintTableFormat.java | 37 +- .../compiere/model/I_AD_Private_Access.java | 23 +- .../src/org/compiere/model/I_AD_Process.java | 27 +- .../compiere/model/I_AD_Process_Access.java | 23 +- .../org/compiere/model/I_AD_Process_Para.java | 8 +- .../org/compiere/model/I_AD_RecentItem.java | 21 +- .../compiere/model/I_AD_Record_Access.java | 23 +- .../src/org/compiere/model/I_AD_Ref_List.java | 21 +- .../org/compiere/model/I_AD_Ref_Table.java | 29 +- .../org/compiere/model/I_AD_Reference.java | 19 +- .../org/compiere/model/I_AD_Registration.java | 23 +- .../org/compiere/model/I_AD_RelationType.java | 23 +- .../org/compiere/model/I_AD_Replication.java | 21 +- .../model/I_AD_ReplicationDocument.java | 23 +- .../model/I_AD_ReplicationStrategy.java | 19 +- .../compiere/model/I_AD_ReplicationTable.java | 23 +- .../compiere/model/I_AD_Replication_Log.java | 23 +- .../compiere/model/I_AD_Replication_Run.java | 21 +- .../org/compiere/model/I_AD_ReportView.java | 21 +- .../compiere/model/I_AD_ReportView_Col.java | 23 +- .../src/org/compiere/model/I_AD_Role.java | 10 +- .../compiere/model/I_AD_Role_Included.java | 23 +- .../compiere/model/I_AD_Role_OrgAccess.java | 21 +- .../src/org/compiere/model/I_AD_Rule.java | 19 +- .../src/org/compiere/model/I_AD_Schedule.java | 18 +- .../org/compiere/model/I_AD_Scheduler.java | 12 +- .../org/compiere/model/I_AD_SchedulerLog.java | 21 +- .../model/I_AD_SchedulerRecipient.java | 25 +- .../compiere/model/I_AD_Scheduler_Para.java | 23 +- .../compiere/model/I_AD_SearchDefinition.java | 27 +- .../src/org/compiere/model/I_AD_Sequence.java | 8 +- .../compiere/model/I_AD_Sequence_Audit.java | 23 +- .../org/compiere/model/I_AD_Sequence_No.java | 8 +- .../src/org/compiere/model/I_AD_Session.java | 25 +- .../org/compiere/model/I_AD_SysConfig.java | 19 +- .../src/org/compiere/model/I_AD_System.java | 32 +- .../src/org/compiere/model/I_AD_Tab.java | 37 +- .../model/I_AD_Tab_Customization.java | 17 +- .../src/org/compiere/model/I_AD_Table.java | 25 +- .../org/compiere/model/I_AD_Table_Access.java | 23 +- .../model/I_AD_Table_ScriptValidator.java | 23 +- .../src/org/compiere/model/I_AD_Task.java | 19 +- .../org/compiere/model/I_AD_TaskInstance.java | 19 +- .../org/compiere/model/I_AD_Task_Access.java | 23 +- .../compiere/model/I_AD_ToolBarButton.java | 16 +- .../model/I_AD_ToolBarButtonRestrict.java | 8 +- .../src/org/compiere/model/I_AD_Tree.java | 19 +- .../src/org/compiere/model/I_AD_TreeBar.java | 23 +- .../src/org/compiere/model/I_AD_TreeNode.java | 21 +- .../org/compiere/model/I_AD_TreeNodeBP.java | 21 +- .../org/compiere/model/I_AD_TreeNodeCMC.java | 21 +- .../org/compiere/model/I_AD_TreeNodeCMM.java | 21 +- .../org/compiere/model/I_AD_TreeNodeCMS.java | 21 +- .../org/compiere/model/I_AD_TreeNodeCMT.java | 21 +- .../org/compiere/model/I_AD_TreeNodeMM.java | 21 +- .../org/compiere/model/I_AD_TreeNodePR.java | 21 +- .../org/compiere/model/I_AD_TreeNodeU1.java | 21 +- .../org/compiere/model/I_AD_TreeNodeU2.java | 21 +- .../org/compiere/model/I_AD_TreeNodeU3.java | 21 +- .../org/compiere/model/I_AD_TreeNodeU4.java | 21 +- .../src/org/compiere/model/I_AD_User.java | 8 +- .../org/compiere/model/I_AD_UserBPAccess.java | 23 +- .../compiere/model/I_AD_UserDef_Field.java | 8 +- .../org/compiere/model/I_AD_UserDef_Tab.java | 8 +- .../org/compiere/model/I_AD_UserDef_Win.java | 8 +- .../src/org/compiere/model/I_AD_UserMail.java | 25 +- .../org/compiere/model/I_AD_UserQuery.java | 25 +- .../compiere/model/I_AD_User_OrgAccess.java | 21 +- .../org/compiere/model/I_AD_User_Roles.java | 23 +- .../compiere/model/I_AD_User_Substitute.java | 23 +- .../src/org/compiere/model/I_AD_Val_Rule.java | 19 +- .../org/compiere/model/I_AD_WF_Activity.java | 33 +- .../model/I_AD_WF_ActivityResult.java | 21 +- .../src/org/compiere/model/I_AD_WF_Block.java | 21 +- .../compiere/model/I_AD_WF_EventAudit.java | 29 +- .../compiere/model/I_AD_WF_NextCondition.java | 23 +- .../src/org/compiere/model/I_AD_WF_Node.java | 8 +- .../org/compiere/model/I_AD_WF_NodeNext.java | 23 +- .../org/compiere/model/I_AD_WF_Node_Para.java | 23 +- .../org/compiere/model/I_AD_WF_Process.java | 29 +- .../compiere/model/I_AD_WF_ProcessData.java | 21 +- .../compiere/model/I_AD_WF_Responsible.java | 23 +- .../src/org/compiere/model/I_AD_Window.java | 23 +- .../compiere/model/I_AD_Window_Access.java | 23 +- .../compiere/model/I_AD_WizardProcess.java | 8 +- .../org/compiere/model/I_AD_Workbench.java | 21 +- .../compiere/model/I_AD_WorkbenchWindow.java | 29 +- .../src/org/compiere/model/I_AD_Workflow.java | 8 +- .../model/I_AD_WorkflowProcessor.java | 12 +- .../model/I_AD_WorkflowProcessorLog.java | 25 +- .../compiere/model/I_AD_Workflow_Access.java | 23 +- .../compiere/model/I_ASP_ClientException.java | 37 +- .../org/compiere/model/I_ASP_ClientLevel.java | 23 +- .../src/org/compiere/model/I_ASP_Field.java | 23 +- .../src/org/compiere/model/I_ASP_Form.java | 23 +- .../src/org/compiere/model/I_ASP_Level.java | 21 +- .../src/org/compiere/model/I_ASP_Module.java | 19 +- .../src/org/compiere/model/I_ASP_Process.java | 23 +- .../compiere/model/I_ASP_Process_Para.java | 23 +- .../org/compiere/model/I_ASP_Ref_List.java | 177 ++++ .../src/org/compiere/model/I_ASP_Tab.java | 23 +- .../src/org/compiere/model/I_ASP_Task.java | 23 +- .../src/org/compiere/model/I_ASP_Window.java | 23 +- .../org/compiere/model/I_ASP_Workflow.java | 23 +- .../src/org/compiere/model/I_A_Asset.java | 8 +- .../org/compiere/model/I_A_Asset_Acct.java | 8 +- .../compiere/model/I_A_Asset_Addition.java | 8 +- .../org/compiere/model/I_A_Asset_Change.java | 8 +- .../org/compiere/model/I_A_Asset_Class.java | 17 +- .../compiere/model/I_A_Asset_Delivery.java | 8 +- .../compiere/model/I_A_Asset_Disposed.java | 8 +- .../org/compiere/model/I_A_Asset_Group.java | 8 +- .../compiere/model/I_A_Asset_Group_Acct.java | 8 +- .../compiere/model/I_A_Asset_Info_Fin.java | 8 +- .../compiere/model/I_A_Asset_Info_Ins.java | 8 +- .../compiere/model/I_A_Asset_Info_Lic.java | 8 +- .../compiere/model/I_A_Asset_Info_Oth.java | 8 +- .../compiere/model/I_A_Asset_Info_Tax.java | 8 +- .../org/compiere/model/I_A_Asset_Product.java | 17 +- .../compiere/model/I_A_Asset_Retirement.java | 8 +- .../org/compiere/model/I_A_Asset_Reval.java | 17 +- .../compiere/model/I_A_Asset_Reval_Entry.java | 8 +- .../compiere/model/I_A_Asset_Reval_Index.java | 8 +- .../org/compiere/model/I_A_Asset_Split.java | 8 +- .../org/compiere/model/I_A_Asset_Spread.java | 8 +- .../compiere/model/I_A_Asset_Transfer.java | 8 +- .../org/compiere/model/I_A_Asset_Type.java | 17 +- .../src/org/compiere/model/I_A_Asset_Use.java | 8 +- .../org/compiere/model/I_A_Depreciation.java | 8 +- .../model/I_A_Depreciation_Build.java | 8 +- .../model/I_A_Depreciation_Convention.java | 8 +- .../model/I_A_Depreciation_Entry.java | 8 +- .../compiere/model/I_A_Depreciation_Exp.java | 8 +- .../model/I_A_Depreciation_Forecast.java | 8 +- .../model/I_A_Depreciation_Method.java | 8 +- .../model/I_A_Depreciation_Table_Detail.java | 8 +- .../model/I_A_Depreciation_Table_Header.java | 8 +- .../model/I_A_Depreciation_Workfile.java | 8 +- .../org/compiere/model/I_A_FundingMode.java | 17 +- .../compiere/model/I_A_FundingMode_Acct.java | 155 +++ .../org/compiere/model/I_A_Registration.java | 27 +- .../model/I_A_RegistrationAttribute.java | 23 +- .../model/I_A_RegistrationProduct.java | 23 +- .../compiere/model/I_A_RegistrationValue.java | 23 +- .../src/org/compiere/model/I_B_Bid.java | 25 +- .../org/compiere/model/I_B_BidComment.java | 23 +- .../src/org/compiere/model/I_B_Buyer.java | 21 +- .../org/compiere/model/I_B_BuyerFunds.java | 25 +- .../src/org/compiere/model/I_B_Offer.java | 25 +- .../src/org/compiere/model/I_B_Seller.java | 21 +- .../org/compiere/model/I_B_SellerFunds.java | 25 +- .../src/org/compiere/model/I_B_Topic.java | 23 +- .../org/compiere/model/I_B_TopicCategory.java | 21 +- .../src/org/compiere/model/I_B_TopicType.java | 25 +- .../compiere/model/I_CM_AccessContainer.java | 23 +- .../model/I_CM_AccessListBPGroup.java | 23 +- .../compiere/model/I_CM_AccessListRole.java | 23 +- .../org/compiere/model/I_CM_AccessMedia.java | 23 +- .../model/I_CM_AccessNewsChannel.java | 23 +- .../compiere/model/I_CM_AccessProfile.java | 19 +- .../org/compiere/model/I_CM_AccessStage.java | 23 +- .../src/org/compiere/model/I_CM_Ad.java | 23 +- .../src/org/compiere/model/I_CM_Ad_Cat.java | 21 +- .../compiere/model/I_CM_BroadcastServer.java | 21 +- .../src/org/compiere/model/I_CM_CStage.java | 25 +- .../org/compiere/model/I_CM_CStageTTable.java | 23 +- .../compiere/model/I_CM_CStage_Element.java | 21 +- .../src/org/compiere/model/I_CM_Chat.java | 23 +- .../org/compiere/model/I_CM_ChatEntry.java | 27 +- .../src/org/compiere/model/I_CM_ChatType.java | 21 +- .../compiere/model/I_CM_ChatTypeUpdate.java | 23 +- .../org/compiere/model/I_CM_ChatUpdate.java | 23 +- .../org/compiere/model/I_CM_Container.java | 25 +- .../compiere/model/I_CM_ContainerTTable.java | 23 +- .../model/I_CM_Container_Element.java | 21 +- .../compiere/model/I_CM_Container_URL.java | 21 +- .../src/org/compiere/model/I_CM_Media.java | 21 +- .../org/compiere/model/I_CM_MediaDeploy.java | 23 +- .../org/compiere/model/I_CM_Media_Server.java | 25 +- .../org/compiere/model/I_CM_NewsChannel.java | 21 +- .../src/org/compiere/model/I_CM_NewsItem.java | 21 +- .../src/org/compiere/model/I_CM_Template.java | 21 +- .../compiere/model/I_CM_TemplateTable.java | 23 +- .../compiere/model/I_CM_Template_Ad_Cat.java | 23 +- .../org/compiere/model/I_CM_WebAccessLog.java | 27 +- .../org/compiere/model/I_CM_WebProject.java | 27 +- .../model/I_CM_WebProject_Domain.java | 23 +- .../org/compiere/model/I_CM_WikiToken.java | 21 +- .../org/compiere/model/I_C_AcctProcessor.java | 12 +- .../compiere/model/I_C_AcctProcessorLog.java | 21 +- .../org/compiere/model/I_C_AcctSchema.java | 25 +- .../model/I_C_AcctSchema_Default.java | 10 +- .../model/I_C_AcctSchema_Element.java | 39 +- .../org/compiere/model/I_C_AcctSchema_GL.java | 10 +- .../src/org/compiere/model/I_C_Activity.java | 19 +- .../org/compiere/model/I_C_AllocationHdr.java | 21 +- .../compiere/model/I_C_AllocationLine.java | 46 +- .../compiere/model/I_C_BP_BankAccount.java | 136 +-- .../compiere/model/I_C_BP_Customer_Acct.java | 23 +- .../src/org/compiere/model/I_C_BP_EDI.java | 25 +- .../compiere/model/I_C_BP_Employee_Acct.java | 10 +- .../src/org/compiere/model/I_C_BP_Group.java | 31 +- .../org/compiere/model/I_C_BP_Group_Acct.java | 10 +- .../org/compiere/model/I_C_BP_Relation.java | 27 +- .../compiere/model/I_C_BP_Vendor_Acct.java | 23 +- .../compiere/model/I_C_BP_Withholding.java | 23 +- .../src/org/compiere/model/I_C_BPartner.java | 116 +-- .../compiere/model/I_C_BPartner_Location.java | 38 +- .../compiere/model/I_C_BPartner_Product.java | 23 +- .../src/org/compiere/model/I_C_Bank.java | 17 +- .../org/compiere/model/I_C_BankAccount.java | 38 +- .../compiere/model/I_C_BankAccountDoc.java | 8 +- .../compiere/model/I_C_BankAccount_Acct.java | 10 +- .../model/I_C_BankAccount_Processor.java | 8 +- .../org/compiere/model/I_C_BankStatement.java | 21 +- .../compiere/model/I_C_BankStatementLine.java | 31 +- .../model/I_C_BankStatementLoader.java | 21 +- .../model/I_C_BankStatementMatcher.java | 19 +- .../src/org/compiere/model/I_C_Calendar.java | 19 +- .../src/org/compiere/model/I_C_Campaign.java | 21 +- .../src/org/compiere/model/I_C_Cash.java | 31 +- .../src/org/compiere/model/I_C_CashBook.java | 21 +- .../org/compiere/model/I_C_CashBook_Acct.java | 23 +- .../src/org/compiere/model/I_C_CashLine.java | 31 +- .../src/org/compiere/model/I_C_CashPlan.java | 17 +- .../org/compiere/model/I_C_CashPlanLine.java | 17 +- .../src/org/compiere/model/I_C_Channel.java | 21 +- .../src/org/compiere/model/I_C_Charge.java | 25 +- .../org/compiere/model/I_C_ChargeType.java | 19 +- .../model/I_C_ChargeType_DocType.java | 23 +- .../org/compiere/model/I_C_Charge_Acct.java | 8 +- .../src/org/compiere/model/I_C_City.java | 23 +- .../org/compiere/model/I_C_Commission.java | 25 +- .../org/compiere/model/I_C_CommissionAmt.java | 23 +- .../compiere/model/I_C_CommissionDetail.java | 27 +- .../compiere/model/I_C_CommissionLine.java | 8 +- .../org/compiere/model/I_C_CommissionRun.java | 21 +- .../compiere/model/I_C_ConversionType.java | 19 +- .../compiere/model/I_C_Conversion_Rate.java | 25 +- .../src/org/compiere/model/I_C_Country.java | 21 +- .../src/org/compiere/model/I_C_Currency.java | 19 +- .../org/compiere/model/I_C_Currency_Acct.java | 10 +- .../src/org/compiere/model/I_C_Cycle.java | 21 +- .../org/compiere/model/I_C_CyclePhase.java | 23 +- .../src/org/compiere/model/I_C_CycleStep.java | 21 +- .../src/org/compiere/model/I_C_DocType.java | 8 +- .../compiere/model/I_C_DocTypeCounter.java | 23 +- .../src/org/compiere/model/I_C_Dunning.java | 19 +- .../org/compiere/model/I_C_DunningLevel.java | 25 +- .../org/compiere/model/I_C_DunningRun.java | 23 +- .../compiere/model/I_C_DunningRunEntry.java | 33 +- .../compiere/model/I_C_DunningRunLine.java | 27 +- .../src/org/compiere/model/I_C_Element.java | 21 +- .../org/compiere/model/I_C_ElementValue.java | 25 +- .../src/org/compiere/model/I_C_Greeting.java | 19 +- .../org/compiere/model/I_C_InterOrg_Acct.java | 21 +- .../src/org/compiere/model/I_C_Invoice.java | 17 +- .../org/compiere/model/I_C_InvoiceBatch.java | 25 +- .../compiere/model/I_C_InvoiceBatchLine.java | 45 +- .../org/compiere/model/I_C_InvoiceLine.java | 70 +- .../model/I_C_InvoicePaySchedule.java | 23 +- .../compiere/model/I_C_InvoiceSchedule.java | 19 +- .../org/compiere/model/I_C_InvoiceTax.java | 23 +- .../src/org/compiere/model/I_C_Job.java | 21 +- .../org/compiere/model/I_C_JobAssignment.java | 23 +- .../org/compiere/model/I_C_JobCategory.java | 19 +- .../compiere/model/I_C_JobRemuneration.java | 23 +- .../org/compiere/model/I_C_LandedCost.java | 29 +- .../model/I_C_LandedCostAllocation.java | 25 +- .../src/org/compiere/model/I_C_Location.java | 25 +- .../compiere/model/I_C_NonBusinessDay.java | 21 +- .../src/org/compiere/model/I_C_Order.java | 8 +- .../src/org/compiere/model/I_C_OrderLine.java | 77 +- .../compiere/model/I_C_OrderPaySchedule.java | 17 +- .../org/compiere/model/I_C_OrderSource.java | 19 +- .../src/org/compiere/model/I_C_OrderTax.java | 23 +- .../org/compiere/model/I_C_OrgAssignment.java | 21 +- .../src/org/compiere/model/I_C_POS.java | 8 +- .../src/org/compiere/model/I_C_POSKey.java | 12 +- .../org/compiere/model/I_C_POSKeyLayout.java | 8 +- .../org/compiere/model/I_C_POSPayment.java | 8 +- .../org/compiere/model/I_C_POSTenderType.java | 8 +- .../org/compiere/model/I_C_PaySchedule.java | 21 +- .../org/compiere/model/I_C_PaySelection.java | 21 +- .../compiere/model/I_C_PaySelectionCheck.java | 8 +- .../compiere/model/I_C_PaySelectionLine.java | 8 +- .../src/org/compiere/model/I_C_Payment.java | 306 +++--- .../compiere/model/I_C_PaymentAllocate.java | 25 +- .../org/compiere/model/I_C_PaymentBatch.java | 21 +- .../compiere/model/I_C_PaymentProcessor.java | 52 +- .../org/compiere/model/I_C_PaymentTerm.java | 17 +- .../src/org/compiere/model/I_C_Period.java | 21 +- .../org/compiere/model/I_C_PeriodControl.java | 21 +- .../src/org/compiere/model/I_C_Phase.java | 23 +- .../src/org/compiere/model/I_C_Project.java | 41 +- .../org/compiere/model/I_C_ProjectIssue.java | 27 +- .../compiere/model/I_C_ProjectIssueMA.java | 21 +- .../org/compiere/model/I_C_ProjectLine.java | 35 +- .../org/compiere/model/I_C_ProjectPhase.java | 27 +- .../org/compiere/model/I_C_ProjectTask.java | 25 +- .../org/compiere/model/I_C_ProjectType.java | 19 +- .../org/compiere/model/I_C_Project_Acct.java | 23 +- .../src/org/compiere/model/I_C_Recurring.java | 29 +- .../org/compiere/model/I_C_Recurring_Run.java | 31 +- .../src/org/compiere/model/I_C_Region.java | 21 +- .../org/compiere/model/I_C_Remuneration.java | 19 +- .../model/I_C_RevenueRecognition.java | 19 +- .../model/I_C_RevenueRecognition_Plan.java | 27 +- .../model/I_C_RevenueRecognition_Run.java | 23 +- .../src/org/compiere/model/I_C_RfQ.java | 33 +- .../src/org/compiere/model/I_C_RfQLine.java | 23 +- .../org/compiere/model/I_C_RfQLineQty.java | 23 +- .../org/compiere/model/I_C_RfQResponse.java | 31 +- .../compiere/model/I_C_RfQResponseLine.java | 23 +- .../model/I_C_RfQResponseLineQty.java | 23 +- .../src/org/compiere/model/I_C_RfQ_Topic.java | 21 +- .../model/I_C_RfQ_TopicSubscriber.java | 27 +- .../model/I_C_RfQ_TopicSubscriberOnly.java | 25 +- .../org/compiere/model/I_C_SalesRegion.java | 21 +- .../org/compiere/model/I_C_ServiceLevel.java | 23 +- .../compiere/model/I_C_ServiceLevelLine.java | 21 +- .../src/org/compiere/model/I_C_SubAcct.java | 21 +- .../org/compiere/model/I_C_Subscription.java | 25 +- .../compiere/model/I_C_SubscriptionType.java | 19 +- .../model/I_C_Subscription_Delivery.java | 21 +- .../src/org/compiere/model/I_C_Task.java | 23 +- .../src/org/compiere/model/I_C_Tax.java | 29 +- .../org/compiere/model/I_C_TaxCategory.java | 19 +- .../compiere/model/I_C_TaxDeclaration.java | 19 +- .../model/I_C_TaxDeclarationAcct.java | 33 +- .../model/I_C_TaxDeclarationLine.java | 33 +- .../src/org/compiere/model/I_C_TaxPostal.java | 21 +- .../src/org/compiere/model/I_C_Tax_Acct.java | 10 +- .../src/org/compiere/model/I_C_UOM.java | 19 +- .../compiere/model/I_C_UOM_Conversion.java | 25 +- .../compiere/model/I_C_UserRemuneration.java | 23 +- .../compiere/model/I_C_ValidCombination.java | 45 +- .../org/compiere/model/I_C_Withholding.java | 23 +- .../compiere/model/I_C_Withholding_Acct.java | 23 +- .../src/org/compiere/model/I_C_Year.java | 21 +- .../src/org/compiere/model/I_EXP_Format.java | 21 +- .../org/compiere/model/I_EXP_FormatLine.java | 23 +- .../org/compiere/model/I_EXP_Processor.java | 19 +- .../model/I_EXP_ProcessorParameter.java | 19 +- .../compiere/model/I_EXP_Processor_Type.java | 19 +- .../src/org/compiere/model/I_Fact_Acct.java | 63 +- .../compiere/model/I_Fact_Acct_Summary.java | 57 +- .../compiere/model/I_Fact_Reconciliation.java | 25 +- .../src/org/compiere/model/I_GL_Budget.java | 19 +- .../compiere/model/I_GL_BudgetControl.java | 23 +- .../src/org/compiere/model/I_GL_Category.java | 19 +- .../org/compiere/model/I_GL_Distribution.java | 45 +- .../compiere/model/I_GL_DistributionLine.java | 41 +- .../src/org/compiere/model/I_GL_Fund.java | 21 +- .../compiere/model/I_GL_FundRestriction.java | 23 +- .../src/org/compiere/model/I_GL_Journal.java | 50 +- .../org/compiere/model/I_GL_JournalBatch.java | 29 +- .../compiere/model/I_GL_JournalGenerator.java | 10 +- .../model/I_GL_JournalGeneratorLine.java | 10 +- .../model/I_GL_JournalGeneratorSource.java | 10 +- .../org/compiere/model/I_GL_JournalLine.java | 12 +- .../org/compiere/model/I_IMP_Processor.java | 19 +- .../compiere/model/I_IMP_ProcessorLog.java | 19 +- .../model/I_IMP_ProcessorParameter.java | 19 +- .../compiere/model/I_IMP_Processor_Type.java | 19 +- .../src/org/compiere/model/I_I_Asset.java | 8 +- .../src/org/compiere/model/I_I_BPartner.java | 35 +- .../org/compiere/model/I_I_BankStatement.java | 35 +- .../compiere/model/I_I_Conversion_Rate.java | 27 +- .../org/compiere/model/I_I_ElementValue.java | 27 +- .../src/org/compiere/model/I_I_FAJournal.java | 8 +- .../org/compiere/model/I_I_FixedAsset.java | 17 +- .../src/org/compiere/model/I_I_GLJournal.java | 65 +- .../compiere/model/I_I_InOutLineConfirm.java | 21 +- .../src/org/compiere/model/I_I_Inventory.java | 8 +- .../src/org/compiere/model/I_I_Invoice.java | 57 +- .../src/org/compiere/model/I_I_Order.java | 67 +- .../src/org/compiere/model/I_I_Payment.java | 33 +- .../src/org/compiere/model/I_I_PriceList.java | 31 +- .../src/org/compiere/model/I_I_Product.java | 29 +- .../org/compiere/model/I_I_ReportLine.java | 27 +- .../src/org/compiere/model/I_K_Category.java | 19 +- .../org/compiere/model/I_K_CategoryValue.java | 21 +- .../src/org/compiere/model/I_K_Comment.java | 23 +- .../src/org/compiere/model/I_K_Entry.java | 25 +- .../org/compiere/model/I_K_EntryCategory.java | 25 +- .../org/compiere/model/I_K_EntryRelated.java | 21 +- .../src/org/compiere/model/I_K_Index.java | 27 +- .../src/org/compiere/model/I_K_IndexLog.java | 19 +- .../src/org/compiere/model/I_K_IndexStop.java | 25 +- .../src/org/compiere/model/I_K_Source.java | 19 +- .../src/org/compiere/model/I_K_Synonym.java | 19 +- .../src/org/compiere/model/I_K_Topic.java | 21 +- .../src/org/compiere/model/I_K_Type.java | 19 +- .../src/org/compiere/model/I_M_Attribute.java | 21 +- .../compiere/model/I_M_AttributeInstance.java | 23 +- .../compiere/model/I_M_AttributeSearch.java | 19 +- .../org/compiere/model/I_M_AttributeSet.java | 23 +- .../model/I_M_AttributeSetExclude.java | 23 +- .../model/I_M_AttributeSetInstance.java | 23 +- .../org/compiere/model/I_M_AttributeUse.java | 23 +- .../compiere/model/I_M_AttributeValue.java | 21 +- .../src/org/compiere/model/I_M_BOM.java | 23 +- .../compiere/model/I_M_BOMAlternative.java | 21 +- .../org/compiere/model/I_M_BOMProduct.java | 29 +- .../org/compiere/model/I_M_ChangeNotice.java | 19 +- .../org/compiere/model/I_M_ChangeRequest.java | 23 +- .../src/org/compiere/model/I_M_Cost.java | 27 +- .../org/compiere/model/I_M_CostDetail.java | 39 +- .../org/compiere/model/I_M_CostElement.java | 19 +- .../org/compiere/model/I_M_CostHistory.java | 8 +- .../src/org/compiere/model/I_M_CostQueue.java | 27 +- .../src/org/compiere/model/I_M_CostType.java | 19 +- .../src/org/compiere/model/I_M_Demand.java | 23 +- .../org/compiere/model/I_M_DemandDetail.java | 27 +- .../org/compiere/model/I_M_DemandLine.java | 25 +- .../compiere/model/I_M_DiscountSchema.java | 19 +- .../model/I_M_DiscountSchemaBreak.java | 25 +- .../model/I_M_DiscountSchemaLine.java | 29 +- .../compiere/model/I_M_DistributionList.java | 19 +- .../model/I_M_DistributionListLine.java | 25 +- .../compiere/model/I_M_DistributionRun.java | 23 +- .../model/I_M_DistributionRunLine.java | 25 +- .../src/org/compiere/model/I_M_Forecast.java | 25 +- .../org/compiere/model/I_M_ForecastLine.java | 27 +- .../src/org/compiere/model/I_M_Freight.java | 31 +- .../compiere/model/I_M_FreightCategory.java | 19 +- .../src/org/compiere/model/I_M_InOut.java | 59 +- .../org/compiere/model/I_M_InOutConfirm.java | 25 +- .../src/org/compiere/model/I_M_InOutLine.java | 47 +- .../compiere/model/I_M_InOutLineConfirm.java | 27 +- .../org/compiere/model/I_M_InOutLineMA.java | 21 +- .../src/org/compiere/model/I_M_Inventory.java | 37 +- .../org/compiere/model/I_M_InventoryLine.java | 27 +- .../compiere/model/I_M_InventoryLineMA.java | 21 +- .../src/org/compiere/model/I_M_Locator.java | 21 +- .../src/org/compiere/model/I_M_Lot.java | 23 +- .../src/org/compiere/model/I_M_LotCtl.java | 19 +- .../org/compiere/model/I_M_LotCtlExclude.java | 23 +- .../src/org/compiere/model/I_M_MatchInv.java | 25 +- .../src/org/compiere/model/I_M_MatchPO.java | 27 +- .../src/org/compiere/model/I_M_Movement.java | 43 +- .../compiere/model/I_M_MovementConfirm.java | 23 +- .../org/compiere/model/I_M_MovementLine.java | 25 +- .../model/I_M_MovementLineConfirm.java | 25 +- .../compiere/model/I_M_MovementLineMA.java | 21 +- .../compiere/model/I_M_OperationResource.java | 25 +- .../src/org/compiere/model/I_M_Package.java | 23 +- .../org/compiere/model/I_M_PackageLine.java | 23 +- .../src/org/compiere/model/I_M_PartType.java | 17 +- .../org/compiere/model/I_M_PerpetualInv.java | 23 +- .../src/org/compiere/model/I_M_PriceList.java | 23 +- .../compiere/model/I_M_PriceList_Version.java | 25 +- .../src/org/compiere/model/I_M_Product.java | 10 +- .../compiere/model/I_M_ProductDownload.java | 21 +- .../compiere/model/I_M_ProductOperation.java | 21 +- .../org/compiere/model/I_M_ProductPrice.java | 23 +- .../model/I_M_ProductPriceVendorBreak.java | 29 +- .../org/compiere/model/I_M_Product_Acct.java | 10 +- .../org/compiere/model/I_M_Product_BOM.java | 86 +- .../compiere/model/I_M_Product_Category.java | 25 +- .../model/I_M_Product_Category_Acct.java | 10 +- .../org/compiere/model/I_M_Product_PO.java | 27 +- .../model/I_M_Product_QualityTest.java | 162 ++++ .../org/compiere/model/I_M_Production.java | 8 +- .../compiere/model/I_M_ProductionLine.java | 8 +- .../compiere/model/I_M_ProductionLineMA.java | 8 +- .../compiere/model/I_M_ProductionPlan.java | 8 +- .../src/org/compiere/model/I_M_Promotion.java | 21 +- .../model/I_M_PromotionDistribution.java | 23 +- .../compiere/model/I_M_PromotionGroup.java | 19 +- .../model/I_M_PromotionGroupLine.java | 23 +- .../org/compiere/model/I_M_PromotionLine.java | 23 +- .../model/I_M_PromotionPreCondition.java | 31 +- .../compiere/model/I_M_PromotionReward.java | 27 +- .../org/compiere/model/I_M_QualityTest.java | 323 +++---- .../compiere/model/I_M_QualityTestResult.java | 411 ++++---- .../src/org/compiere/model/I_M_RMA.java | 35 +- .../src/org/compiere/model/I_M_RMALine.java | 27 +- .../src/org/compiere/model/I_M_RMAType.java | 19 +- .../compiere/model/I_M_RelatedProduct.java | 23 +- .../src/org/compiere/model/I_M_Replenish.java | 8 +- .../org/compiere/model/I_M_Requisition.java | 27 +- .../compiere/model/I_M_RequisitionLine.java | 31 +- .../src/org/compiere/model/I_M_SerNoCtl.java | 19 +- .../compiere/model/I_M_SerNoCtlExclude.java | 23 +- .../src/org/compiere/model/I_M_Shipper.java | 21 +- .../src/org/compiere/model/I_M_Storage.java | 21 +- .../org/compiere/model/I_M_Substitute.java | 23 +- .../org/compiere/model/I_M_Transaction.java | 31 +- .../model/I_M_TransactionAllocation.java | 37 +- .../src/org/compiere/model/I_M_Warehouse.java | 17 +- .../compiere/model/I_M_Warehouse_Acct.java | 10 +- .../org/compiere/model/I_PA_Achievement.java | 21 +- .../org/compiere/model/I_PA_Benchmark.java | 19 +- .../compiere/model/I_PA_BenchmarkData.java | 21 +- .../org/compiere/model/I_PA_ColorSchema.java | 27 +- .../compiere/model/I_PA_DashboardContent.java | 10 +- .../model/I_PA_DashboardPreference.java | 17 +- .../src/org/compiere/model/I_PA_Goal.java | 29 +- .../compiere/model/I_PA_GoalRestriction.java | 29 +- .../org/compiere/model/I_PA_Hierarchy.java | 35 +- .../src/org/compiere/model/I_PA_Measure.java | 31 +- .../org/compiere/model/I_PA_MeasureCalc.java | 21 +- .../src/org/compiere/model/I_PA_Ratio.java | 21 +- .../org/compiere/model/I_PA_RatioElement.java | 27 +- .../src/org/compiere/model/I_PA_Report.java | 33 +- .../org/compiere/model/I_PA_ReportColumn.java | 43 +- .../compiere/model/I_PA_ReportColumnSet.java | 19 +- .../org/compiere/model/I_PA_ReportCube.java | 21 +- .../org/compiere/model/I_PA_ReportLine.java | 27 +- .../compiere/model/I_PA_ReportLineSet.java | 19 +- .../org/compiere/model/I_PA_ReportSource.java | 35 +- .../org/compiere/model/I_PA_SLA_Criteria.java | 19 +- .../src/org/compiere/model/I_PA_SLA_Goal.java | 23 +- .../org/compiere/model/I_PA_SLA_Measure.java | 23 +- .../src/org/compiere/model/I_RV_BPartner.java | 12 +- .../compiere/model/I_RV_WarehousePrice.java | 18 +- .../src/org/compiere/model/I_R_Category.java | 21 +- .../compiere/model/I_R_CategoryUpdates.java | 23 +- .../compiere/model/I_R_ContactInterest.java | 23 +- .../src/org/compiere/model/I_R_Group.java | 21 +- .../org/compiere/model/I_R_GroupUpdates.java | 23 +- .../org/compiere/model/I_R_InterestArea.java | 19 +- .../org/compiere/model/I_R_IssueKnown.java | 25 +- .../org/compiere/model/I_R_IssueProject.java | 23 +- .../model/I_R_IssueRecommendation.java | 19 +- .../org/compiere/model/I_R_IssueStatus.java | 19 +- .../org/compiere/model/I_R_IssueSystem.java | 21 +- .../src/org/compiere/model/I_R_IssueUser.java | 21 +- .../src/org/compiere/model/I_R_MailText.java | 19 +- .../src/org/compiere/model/I_R_Request.java | 73 +- .../org/compiere/model/I_R_RequestAction.java | 59 +- .../compiere/model/I_R_RequestProcessor.java | 12 +- .../model/I_R_RequestProcessorLog.java | 19 +- .../model/I_R_RequestProcessor_Route.java | 19 +- .../org/compiere/model/I_R_RequestType.java | 10 +- .../model/I_R_RequestTypeUpdates.java | 23 +- .../org/compiere/model/I_R_RequestUpdate.java | 23 +- .../compiere/model/I_R_RequestUpdates.java | 23 +- .../org/compiere/model/I_R_Resolution.java | 19 +- .../compiere/model/I_R_StandardResponse.java | 19 +- .../src/org/compiere/model/I_R_Status.java | 25 +- .../compiere/model/I_R_StatusCategory.java | 19 +- .../org/compiere/model/I_S_ExpenseType.java | 25 +- .../src/org/compiere/model/I_S_Resource.java | 25 +- .../model/I_S_ResourceAssignment.java | 21 +- .../org/compiere/model/I_S_ResourceType.java | 25 +- .../model/I_S_ResourceUnAvailable.java | 21 +- .../org/compiere/model/I_S_TimeExpense.java | 25 +- .../compiere/model/I_S_TimeExpenseLine.java | 45 +- .../src/org/compiere/model/I_S_TimeType.java | 19 +- .../src/org/compiere/model/I_S_Training.java | 25 +- .../compiere/model/I_S_Training_Class.java | 23 +- .../src/org/compiere/model/I_T_Aging.java | 37 +- .../org/compiere/model/I_T_BOM_Indented.java | 645 ++++++------- .../src/org/compiere/model/I_T_CashFlow.java | 17 +- .../model/I_T_DistributionRunDetail.java | 33 +- .../compiere/model/I_T_InventoryValue.java | 31 +- .../src/org/compiere/model/I_T_InvoiceGL.java | 27 +- .../compiere/model/I_T_Reconciliation.java | 155 +++ .../src/org/compiere/model/I_T_Replenish.java | 31 +- .../src/org/compiere/model/I_T_Report.java | 23 +- .../compiere/model/I_T_ReportStatement.java | 23 +- .../org/compiere/model/I_T_Transaction.java | 51 +- .../src/org/compiere/model/I_Test.java | 29 +- .../compiere/model/I_U_BlackListCheque.java | 19 +- .../org/compiere/model/I_U_POSTerminal.java | 49 +- .../src/org/compiere/model/I_U_RoleMenu.java | 23 +- .../src/org/compiere/model/I_U_WebMenu.java | 21 +- .../compiere/model/I_U_Web_Properties.java | 19 +- .../org/compiere/model/I_W_Advertisement.java | 27 +- .../src/org/compiere/model/I_W_Basket.java | 25 +- .../org/compiere/model/I_W_BasketLine.java | 23 +- .../src/org/compiere/model/I_W_Click.java | 21 +- .../org/compiere/model/I_W_ClickCount.java | 21 +- .../src/org/compiere/model/I_W_Counter.java | 21 +- .../org/compiere/model/I_W_CounterCount.java | 21 +- .../src/org/compiere/model/I_W_MailMsg.java | 21 +- .../src/org/compiere/model/I_W_Store.java | 31 +- .../org/compiere/model/X_AD_AccessLog.java | 32 +- .../src/org/compiere/model/X_AD_Alert.java | 28 +- .../compiere/model/X_AD_AlertProcessor.java | 19 +- .../model/X_AD_AlertProcessorLog.java | 24 +- .../compiere/model/X_AD_AlertRecipient.java | 36 +- .../org/compiere/model/X_AD_AlertRule.java | 32 +- .../src/org/compiere/model/X_AD_Archive.java | 36 +- .../org/compiere/model/X_AD_Attachment.java | 28 +- .../compiere/model/X_AD_AttachmentNote.java | 32 +- .../org/compiere/model/X_AD_Attribute.java | 40 +- .../compiere/model/X_AD_Attribute_Value.java | 24 +- .../org/compiere/model/X_AD_ChangeLog.java | 36 +- .../src/org/compiere/model/X_AD_Client.java | 10 +- .../org/compiere/model/X_AD_ClientInfo.java | 88 +- .../org/compiere/model/X_AD_ClientShare.java | 28 +- .../src/org/compiere/model/X_AD_Color.java | 28 +- .../src/org/compiere/model/X_AD_Column.java | 10 +- .../compiere/model/X_AD_Column_Access.java | 36 +- .../src/org/compiere/model/X_AD_Desktop.java | 24 +- .../compiere/model/X_AD_DesktopWorkbench.java | 32 +- .../model/X_AD_Document_Action_Access.java | 36 +- .../src/org/compiere/model/X_AD_Element.java | 24 +- .../org/compiere/model/X_AD_EntityType.java | 24 +- .../src/org/compiere/model/X_AD_Error.java | 24 +- .../src/org/compiere/model/X_AD_Field.java | 50 +- .../org/compiere/model/X_AD_FieldGroup.java | 24 +- .../src/org/compiere/model/X_AD_Find.java | 28 +- .../src/org/compiere/model/X_AD_Form.java | 24 +- .../org/compiere/model/X_AD_Form_Access.java | 32 +- .../org/compiere/model/X_AD_HouseKeeping.java | 28 +- .../src/org/compiere/model/X_AD_Image.java | 24 +- .../org/compiere/model/X_AD_ImpFormat.java | 28 +- .../compiere/model/X_AD_ImpFormat_Row.java | 32 +- .../org/compiere/model/X_AD_InfoColumn.java | 36 +- .../org/compiere/model/X_AD_InfoWindow.java | 28 +- .../src/org/compiere/model/X_AD_Issue.java | 60 +- .../org/compiere/model/X_AD_LabelPrinter.java | 24 +- .../model/X_AD_LabelPrinterFunction.java | 28 +- .../src/org/compiere/model/X_AD_Language.java | 10 +- .../org/compiere/model/X_AD_LdapAccess.java | 36 +- .../compiere/model/X_AD_LdapProcessor.java | 28 +- .../compiere/model/X_AD_LdapProcessorLog.java | 28 +- .../src/org/compiere/model/X_AD_Menu.java | 48 +- .../src/org/compiere/model/X_AD_Message.java | 24 +- .../compiere/model/X_AD_MigrationScript.java | 28 +- .../compiere/model/X_AD_ModelValidator.java | 24 +- .../org/compiere/model/X_AD_Modification.java | 24 +- .../src/org/compiere/model/X_AD_Note.java | 40 +- .../src/org/compiere/model/X_AD_Org.java | 28 +- .../src/org/compiere/model/X_AD_OrgInfo.java | 52 +- .../src/org/compiere/model/X_AD_OrgType.java | 28 +- .../org/compiere/model/X_AD_PInstance.java | 32 +- .../compiere/model/X_AD_PInstance_Log.java | 79 +- .../compiere/model/X_AD_PInstance_Para.java | 28 +- .../org/compiere/model/X_AD_Package_Exp.java | 26 +- .../model/X_AD_Package_Exp_Detail.java | 10 +- .../org/compiere/model/X_AD_Package_Imp.java | 10 +- .../model/X_AD_Package_Imp_Backup.java | 10 +- .../model/X_AD_Package_Imp_Detail.java | 10 +- .../compiere/model/X_AD_Package_Imp_Inst.java | 10 +- .../compiere/model/X_AD_Package_Imp_Proc.java | 10 +- .../org/compiere/model/X_AD_PasswordRule.java | 17 +- .../org/compiere/model/X_AD_Preference.java | 32 +- .../org/compiere/model/X_AD_PrintColor.java | 24 +- .../org/compiere/model/X_AD_PrintFont.java | 24 +- .../org/compiere/model/X_AD_PrintForm.java | 80 +- .../org/compiere/model/X_AD_PrintFormat.java | 52 +- .../compiere/model/X_AD_PrintFormatItem.java | 74 +- .../org/compiere/model/X_AD_PrintGraph.java | 52 +- .../org/compiere/model/X_AD_PrintLabel.java | 28 +- .../compiere/model/X_AD_PrintLabelLine.java | 36 +- .../org/compiere/model/X_AD_PrintPaper.java | 24 +- .../compiere/model/X_AD_PrintTableFormat.java | 60 +- .../compiere/model/X_AD_Private_Access.java | 32 +- .../src/org/compiere/model/X_AD_Process.java | 40 +- .../compiere/model/X_AD_Process_Access.java | 32 +- .../org/compiere/model/X_AD_Process_Para.java | 10 +- .../org/compiere/model/X_AD_RecentItem.java | 28 +- .../compiere/model/X_AD_Record_Access.java | 32 +- .../src/org/compiere/model/X_AD_Ref_List.java | 28 +- .../org/compiere/model/X_AD_Ref_Table.java | 44 +- .../org/compiere/model/X_AD_Reference.java | 24 +- .../org/compiere/model/X_AD_Registration.java | 32 +- .../org/compiere/model/X_AD_RelationType.java | 32 +- .../org/compiere/model/X_AD_Replication.java | 28 +- .../model/X_AD_ReplicationDocument.java | 32 +- .../model/X_AD_ReplicationStrategy.java | 24 +- .../compiere/model/X_AD_ReplicationTable.java | 32 +- .../compiere/model/X_AD_Replication_Log.java | 32 +- .../compiere/model/X_AD_Replication_Run.java | 28 +- .../org/compiere/model/X_AD_ReportView.java | 28 +- .../compiere/model/X_AD_ReportView_Col.java | 32 +- .../src/org/compiere/model/X_AD_Role.java | 11 +- .../compiere/model/X_AD_Role_Included.java | 32 +- .../compiere/model/X_AD_Role_OrgAccess.java | 28 +- .../src/org/compiere/model/X_AD_Rule.java | 26 +- .../src/org/compiere/model/X_AD_Schedule.java | 45 +- .../org/compiere/model/X_AD_Scheduler.java | 19 +- .../org/compiere/model/X_AD_SchedulerLog.java | 28 +- .../model/X_AD_SchedulerRecipient.java | 36 +- .../compiere/model/X_AD_Scheduler_Para.java | 32 +- .../compiere/model/X_AD_SearchDefinition.java | 40 +- .../src/org/compiere/model/X_AD_Sequence.java | 10 +- .../compiere/model/X_AD_Sequence_Audit.java | 32 +- .../org/compiere/model/X_AD_Sequence_No.java | 10 +- .../src/org/compiere/model/X_AD_Session.java | 36 +- .../org/compiere/model/X_AD_SysConfig.java | 24 +- .../src/org/compiere/model/X_AD_System.java | 41 +- .../src/org/compiere/model/X_AD_Tab.java | 60 +- .../model/X_AD_Tab_Customization.java | 24 +- .../src/org/compiere/model/X_AD_Table.java | 36 +- .../org/compiere/model/X_AD_Table_Access.java | 32 +- .../model/X_AD_Table_ScriptValidator.java | 32 +- .../src/org/compiere/model/X_AD_Task.java | 24 +- .../org/compiere/model/X_AD_TaskInstance.java | 24 +- .../org/compiere/model/X_AD_Task_Access.java | 32 +- .../compiere/model/X_AD_ToolBarButton.java | 18 +- .../model/X_AD_ToolBarButtonRestrict.java | 10 +- .../src/org/compiere/model/X_AD_Tree.java | 24 +- .../src/org/compiere/model/X_AD_TreeBar.java | 36 +- .../src/org/compiere/model/X_AD_TreeNode.java | 28 +- .../org/compiere/model/X_AD_TreeNodeBP.java | 28 +- .../org/compiere/model/X_AD_TreeNodeCMC.java | 28 +- .../org/compiere/model/X_AD_TreeNodeCMM.java | 28 +- .../org/compiere/model/X_AD_TreeNodeCMS.java | 28 +- .../org/compiere/model/X_AD_TreeNodeCMT.java | 28 +- .../org/compiere/model/X_AD_TreeNodeMM.java | 28 +- .../org/compiere/model/X_AD_TreeNodePR.java | 28 +- .../org/compiere/model/X_AD_TreeNodeU1.java | 28 +- .../org/compiere/model/X_AD_TreeNodeU2.java | 28 +- .../org/compiere/model/X_AD_TreeNodeU3.java | 28 +- .../org/compiere/model/X_AD_TreeNodeU4.java | 28 +- .../src/org/compiere/model/X_AD_User.java | 10 +- .../org/compiere/model/X_AD_UserBPAccess.java | 32 +- .../compiere/model/X_AD_UserDef_Field.java | 10 +- .../org/compiere/model/X_AD_UserDef_Tab.java | 10 +- .../org/compiere/model/X_AD_UserDef_Win.java | 10 +- .../src/org/compiere/model/X_AD_UserMail.java | 36 +- .../org/compiere/model/X_AD_UserQuery.java | 36 +- .../compiere/model/X_AD_User_OrgAccess.java | 28 +- .../org/compiere/model/X_AD_User_Roles.java | 32 +- .../compiere/model/X_AD_User_Substitute.java | 32 +- .../src/org/compiere/model/X_AD_Val_Rule.java | 24 +- .../org/compiere/model/X_AD_WF_Activity.java | 52 +- .../model/X_AD_WF_ActivityResult.java | 28 +- .../src/org/compiere/model/X_AD_WF_Block.java | 28 +- .../compiere/model/X_AD_WF_EventAudit.java | 44 +- .../compiere/model/X_AD_WF_NextCondition.java | 32 +- .../src/org/compiere/model/X_AD_WF_Node.java | 10 +- .../org/compiere/model/X_AD_WF_NodeNext.java | 32 +- .../org/compiere/model/X_AD_WF_Node_Para.java | 32 +- .../org/compiere/model/X_AD_WF_Process.java | 44 +- .../compiere/model/X_AD_WF_ProcessData.java | 28 +- .../compiere/model/X_AD_WF_Responsible.java | 32 +- .../src/org/compiere/model/X_AD_Window.java | 32 +- .../compiere/model/X_AD_Window_Access.java | 32 +- .../compiere/model/X_AD_WizardProcess.java | 10 +- .../org/compiere/model/X_AD_Workbench.java | 28 +- .../compiere/model/X_AD_WorkbenchWindow.java | 44 +- .../src/org/compiere/model/X_AD_Workflow.java | 10 +- .../model/X_AD_WorkflowProcessor.java | 19 +- .../model/X_AD_WorkflowProcessorLog.java | 30 +- .../compiere/model/X_AD_Workflow_Access.java | 32 +- .../compiere/model/X_ASP_ClientException.java | 60 +- .../org/compiere/model/X_ASP_ClientLevel.java | 32 +- .../src/org/compiere/model/X_ASP_Field.java | 32 +- .../src/org/compiere/model/X_ASP_Form.java | 32 +- .../src/org/compiere/model/X_ASP_Level.java | 28 +- .../src/org/compiere/model/X_ASP_Module.java | 24 +- .../src/org/compiere/model/X_ASP_Process.java | 32 +- .../compiere/model/X_ASP_Process_Para.java | 32 +- .../org/compiere/model/X_ASP_Ref_List.java | 212 +++++ .../src/org/compiere/model/X_ASP_Tab.java | 32 +- .../src/org/compiere/model/X_ASP_Task.java | 32 +- .../src/org/compiere/model/X_ASP_Window.java | 32 +- .../org/compiere/model/X_ASP_Workflow.java | 32 +- .../src/org/compiere/model/X_A_Asset.java | 10 +- .../org/compiere/model/X_A_Asset_Acct.java | 10 +- .../compiere/model/X_A_Asset_Addition.java | 10 +- .../org/compiere/model/X_A_Asset_Change.java | 10 +- .../org/compiere/model/X_A_Asset_Class.java | 24 +- .../compiere/model/X_A_Asset_Delivery.java | 10 +- .../compiere/model/X_A_Asset_Disposed.java | 10 +- .../org/compiere/model/X_A_Asset_Group.java | 10 +- .../compiere/model/X_A_Asset_Group_Acct.java | 10 +- .../compiere/model/X_A_Asset_Info_Fin.java | 10 +- .../compiere/model/X_A_Asset_Info_Ins.java | 10 +- .../compiere/model/X_A_Asset_Info_Lic.java | 10 +- .../compiere/model/X_A_Asset_Info_Oth.java | 10 +- .../compiere/model/X_A_Asset_Info_Tax.java | 10 +- .../org/compiere/model/X_A_Asset_Product.java | 24 +- .../compiere/model/X_A_Asset_Retirement.java | 10 +- .../org/compiere/model/X_A_Asset_Reval.java | 24 +- .../compiere/model/X_A_Asset_Reval_Entry.java | 10 +- .../compiere/model/X_A_Asset_Reval_Index.java | 10 +- .../org/compiere/model/X_A_Asset_Split.java | 10 +- .../org/compiere/model/X_A_Asset_Spread.java | 10 +- .../compiere/model/X_A_Asset_Transfer.java | 10 +- .../org/compiere/model/X_A_Asset_Type.java | 24 +- .../src/org/compiere/model/X_A_Asset_Use.java | 10 +- .../org/compiere/model/X_A_Depreciation.java | 10 +- .../model/X_A_Depreciation_Build.java | 10 +- .../model/X_A_Depreciation_Convention.java | 10 +- .../model/X_A_Depreciation_Entry.java | 10 +- .../compiere/model/X_A_Depreciation_Exp.java | 10 +- .../model/X_A_Depreciation_Forecast.java | 10 +- .../model/X_A_Depreciation_Method.java | 10 +- .../model/X_A_Depreciation_Table_Detail.java | 10 +- .../model/X_A_Depreciation_Table_Header.java | 10 +- .../model/X_A_Depreciation_Workfile.java | 10 +- .../org/compiere/model/X_A_FundingMode.java | 24 +- .../compiere/model/X_A_FundingMode_Acct.java | 162 ++++ .../org/compiere/model/X_A_Registration.java | 40 +- .../model/X_A_RegistrationAttribute.java | 32 +- .../model/X_A_RegistrationProduct.java | 32 +- .../compiere/model/X_A_RegistrationValue.java | 32 +- .../src/org/compiere/model/X_B_Bid.java | 36 +- .../org/compiere/model/X_B_BidComment.java | 32 +- .../src/org/compiere/model/X_B_Buyer.java | 28 +- .../org/compiere/model/X_B_BuyerFunds.java | 36 +- .../src/org/compiere/model/X_B_Offer.java | 36 +- .../src/org/compiere/model/X_B_Seller.java | 28 +- .../org/compiere/model/X_B_SellerFunds.java | 36 +- .../src/org/compiere/model/X_B_Topic.java | 32 +- .../org/compiere/model/X_B_TopicCategory.java | 28 +- .../src/org/compiere/model/X_B_TopicType.java | 36 +- .../compiere/model/X_CM_AccessContainer.java | 32 +- .../model/X_CM_AccessListBPGroup.java | 32 +- .../compiere/model/X_CM_AccessListRole.java | 32 +- .../org/compiere/model/X_CM_AccessMedia.java | 32 +- .../model/X_CM_AccessNewsChannel.java | 32 +- .../compiere/model/X_CM_AccessProfile.java | 24 +- .../org/compiere/model/X_CM_AccessStage.java | 32 +- .../src/org/compiere/model/X_CM_Ad.java | 32 +- .../src/org/compiere/model/X_CM_Ad_Cat.java | 28 +- .../compiere/model/X_CM_BroadcastServer.java | 28 +- .../src/org/compiere/model/X_CM_CStage.java | 36 +- .../org/compiere/model/X_CM_CStageTTable.java | 32 +- .../compiere/model/X_CM_CStage_Element.java | 28 +- .../src/org/compiere/model/X_CM_Chat.java | 32 +- .../org/compiere/model/X_CM_ChatEntry.java | 40 +- .../src/org/compiere/model/X_CM_ChatType.java | 28 +- .../compiere/model/X_CM_ChatTypeUpdate.java | 32 +- .../org/compiere/model/X_CM_ChatUpdate.java | 32 +- .../org/compiere/model/X_CM_Container.java | 36 +- .../compiere/model/X_CM_ContainerTTable.java | 32 +- .../model/X_CM_Container_Element.java | 28 +- .../compiere/model/X_CM_Container_URL.java | 28 +- .../src/org/compiere/model/X_CM_Media.java | 28 +- .../org/compiere/model/X_CM_MediaDeploy.java | 32 +- .../org/compiere/model/X_CM_Media_Server.java | 32 +- .../org/compiere/model/X_CM_NewsChannel.java | 28 +- .../src/org/compiere/model/X_CM_NewsItem.java | 28 +- .../src/org/compiere/model/X_CM_Template.java | 28 +- .../compiere/model/X_CM_TemplateTable.java | 32 +- .../compiere/model/X_CM_Template_Ad_Cat.java | 32 +- .../org/compiere/model/X_CM_WebAccessLog.java | 40 +- .../org/compiere/model/X_CM_WebProject.java | 40 +- .../model/X_CM_WebProject_Domain.java | 32 +- .../org/compiere/model/X_CM_WikiToken.java | 28 +- .../org/compiere/model/X_C_AcctProcessor.java | 19 +- .../compiere/model/X_C_AcctProcessorLog.java | 24 +- .../org/compiere/model/X_C_AcctSchema.java | 36 +- .../model/X_C_AcctSchema_Default.java | 10 +- .../model/X_C_AcctSchema_Element.java | 64 +- .../org/compiere/model/X_C_AcctSchema_GL.java | 10 +- .../src/org/compiere/model/X_C_Activity.java | 24 +- .../org/compiere/model/X_C_AllocationHdr.java | 28 +- .../compiere/model/X_C_AllocationLine.java | 76 +- .../compiere/model/X_C_BP_BankAccount.java | 158 ++-- .../compiere/model/X_C_BP_Customer_Acct.java | 32 +- .../src/org/compiere/model/X_C_BP_EDI.java | 36 +- .../compiere/model/X_C_BP_Employee_Acct.java | 10 +- .../src/org/compiere/model/X_C_BP_Group.java | 48 +- .../org/compiere/model/X_C_BP_Group_Acct.java | 10 +- .../org/compiere/model/X_C_BP_Relation.java | 40 +- .../compiere/model/X_C_BP_Vendor_Acct.java | 32 +- .../compiere/model/X_C_BP_Withholding.java | 32 +- .../src/org/compiere/model/X_C_BPartner.java | 132 +-- .../compiere/model/X_C_BPartner_Location.java | 10 +- .../compiere/model/X_C_BPartner_Product.java | 33 +- .../src/org/compiere/model/X_C_Bank.java | 24 +- .../org/compiere/model/X_C_BankAccount.java | 68 +- .../compiere/model/X_C_BankAccountDoc.java | 10 +- .../compiere/model/X_C_BankAccount_Acct.java | 10 +- .../model/X_C_BankAccount_Processor.java | 10 +- .../org/compiere/model/X_C_BankStatement.java | 28 +- .../compiere/model/X_C_BankStatementLine.java | 48 +- .../model/X_C_BankStatementLoader.java | 28 +- .../model/X_C_BankStatementMatcher.java | 24 +- .../src/org/compiere/model/X_C_Calendar.java | 24 +- .../src/org/compiere/model/X_C_Campaign.java | 28 +- .../src/org/compiere/model/X_C_Cash.java | 48 +- .../src/org/compiere/model/X_C_CashBook.java | 28 +- .../org/compiere/model/X_C_CashBook_Acct.java | 32 +- .../src/org/compiere/model/X_C_CashLine.java | 48 +- .../src/org/compiere/model/X_C_CashPlan.java | 24 +- .../org/compiere/model/X_C_CashPlanLine.java | 24 +- .../src/org/compiere/model/X_C_Channel.java | 28 +- .../src/org/compiere/model/X_C_Charge.java | 36 +- .../org/compiere/model/X_C_ChargeType.java | 24 +- .../model/X_C_ChargeType_DocType.java | 32 +- .../org/compiere/model/X_C_Charge_Acct.java | 10 +- .../src/org/compiere/model/X_C_City.java | 32 +- .../org/compiere/model/X_C_Commission.java | 36 +- .../org/compiere/model/X_C_CommissionAmt.java | 32 +- .../compiere/model/X_C_CommissionDetail.java | 40 +- .../compiere/model/X_C_CommissionLine.java | 10 +- .../org/compiere/model/X_C_CommissionRun.java | 28 +- .../compiere/model/X_C_ConversionType.java | 24 +- .../compiere/model/X_C_Conversion_Rate.java | 36 +- .../src/org/compiere/model/X_C_Country.java | 28 +- .../src/org/compiere/model/X_C_Currency.java | 24 +- .../org/compiere/model/X_C_Currency_Acct.java | 10 +- .../src/org/compiere/model/X_C_Cycle.java | 28 +- .../org/compiere/model/X_C_CyclePhase.java | 32 +- .../src/org/compiere/model/X_C_CycleStep.java | 28 +- .../src/org/compiere/model/X_C_DocType.java | 10 +- .../compiere/model/X_C_DocTypeCounter.java | 32 +- .../src/org/compiere/model/X_C_Dunning.java | 24 +- .../org/compiere/model/X_C_DunningLevel.java | 36 +- .../org/compiere/model/X_C_DunningRun.java | 32 +- .../compiere/model/X_C_DunningRunEntry.java | 52 +- .../compiere/model/X_C_DunningRunLine.java | 40 +- .../src/org/compiere/model/X_C_Element.java | 28 +- .../org/compiere/model/X_C_ElementValue.java | 36 +- .../src/org/compiere/model/X_C_Greeting.java | 24 +- .../org/compiere/model/X_C_InterOrg_Acct.java | 28 +- .../src/org/compiere/model/X_C_Invoice.java | 31 +- .../org/compiere/model/X_C_InvoiceBatch.java | 36 +- .../compiere/model/X_C_InvoiceBatchLine.java | 76 +- .../org/compiere/model/X_C_InvoiceLine.java | 129 ++- .../model/X_C_InvoicePaySchedule.java | 32 +- .../compiere/model/X_C_InvoiceSchedule.java | 24 +- .../org/compiere/model/X_C_InvoiceTax.java | 32 +- .../src/org/compiere/model/X_C_Job.java | 28 +- .../org/compiere/model/X_C_JobAssignment.java | 32 +- .../org/compiere/model/X_C_JobCategory.java | 24 +- .../compiere/model/X_C_JobRemuneration.java | 32 +- .../org/compiere/model/X_C_LandedCost.java | 44 +- .../model/X_C_LandedCostAllocation.java | 36 +- .../src/org/compiere/model/X_C_Location.java | 36 +- .../compiere/model/X_C_NonBusinessDay.java | 28 +- .../src/org/compiere/model/X_C_Order.java | 10 +- .../src/org/compiere/model/X_C_OrderLine.java | 132 ++- .../compiere/model/X_C_OrderPaySchedule.java | 24 +- .../org/compiere/model/X_C_OrderSource.java | 24 +- .../src/org/compiere/model/X_C_OrderTax.java | 32 +- .../org/compiere/model/X_C_OrgAssignment.java | 28 +- .../src/org/compiere/model/X_C_POS.java | 10 +- .../src/org/compiere/model/X_C_POSKey.java | 18 +- .../org/compiere/model/X_C_POSKeyLayout.java | 10 +- .../org/compiere/model/X_C_POSPayment.java | 10 +- .../org/compiere/model/X_C_POSTenderType.java | 10 +- .../org/compiere/model/X_C_PaySchedule.java | 28 +- .../org/compiere/model/X_C_PaySelection.java | 28 +- .../compiere/model/X_C_PaySelectionCheck.java | 10 +- .../compiere/model/X_C_PaySelectionLine.java | 10 +- .../src/org/compiere/model/X_C_Payment.java | 434 ++++----- .../compiere/model/X_C_PaymentAllocate.java | 36 +- .../org/compiere/model/X_C_PaymentBatch.java | 28 +- .../compiere/model/X_C_PaymentProcessor.java | 86 +- .../org/compiere/model/X_C_PaymentTerm.java | 24 +- .../src/org/compiere/model/X_C_Period.java | 28 +- .../org/compiere/model/X_C_PeriodControl.java | 28 +- .../src/org/compiere/model/X_C_Phase.java | 32 +- .../src/org/compiere/model/X_C_Project.java | 68 +- .../org/compiere/model/X_C_ProjectIssue.java | 40 +- .../compiere/model/X_C_ProjectIssueMA.java | 28 +- .../org/compiere/model/X_C_ProjectLine.java | 56 +- .../org/compiere/model/X_C_ProjectPhase.java | 40 +- .../org/compiere/model/X_C_ProjectTask.java | 36 +- .../org/compiere/model/X_C_ProjectType.java | 24 +- .../org/compiere/model/X_C_Project_Acct.java | 32 +- .../src/org/compiere/model/X_C_Recurring.java | 44 +- .../org/compiere/model/X_C_Recurring_Run.java | 48 +- .../src/org/compiere/model/X_C_Region.java | 28 +- .../org/compiere/model/X_C_Remuneration.java | 24 +- .../model/X_C_RevenueRecognition.java | 24 +- .../model/X_C_RevenueRecognition_Plan.java | 40 +- .../model/X_C_RevenueRecognition_Run.java | 32 +- .../src/org/compiere/model/X_C_RfQ.java | 52 +- .../src/org/compiere/model/X_C_RfQLine.java | 32 +- .../org/compiere/model/X_C_RfQLineQty.java | 32 +- .../org/compiere/model/X_C_RfQResponse.java | 48 +- .../compiere/model/X_C_RfQResponseLine.java | 32 +- .../model/X_C_RfQResponseLineQty.java | 32 +- .../src/org/compiere/model/X_C_RfQ_Topic.java | 28 +- .../model/X_C_RfQ_TopicSubscriber.java | 40 +- .../model/X_C_RfQ_TopicSubscriberOnly.java | 36 +- .../org/compiere/model/X_C_SalesRegion.java | 28 +- .../org/compiere/model/X_C_ServiceLevel.java | 32 +- .../compiere/model/X_C_ServiceLevelLine.java | 28 +- .../src/org/compiere/model/X_C_SubAcct.java | 28 +- .../org/compiere/model/X_C_Subscription.java | 36 +- .../compiere/model/X_C_SubscriptionType.java | 24 +- .../model/X_C_Subscription_Delivery.java | 28 +- .../src/org/compiere/model/X_C_Task.java | 32 +- .../src/org/compiere/model/X_C_Tax.java | 44 +- .../org/compiere/model/X_C_TaxCategory.java | 24 +- .../compiere/model/X_C_TaxDeclaration.java | 24 +- .../model/X_C_TaxDeclarationAcct.java | 52 +- .../model/X_C_TaxDeclarationLine.java | 52 +- .../src/org/compiere/model/X_C_TaxPostal.java | 28 +- .../src/org/compiere/model/X_C_Tax_Acct.java | 10 +- .../src/org/compiere/model/X_C_UOM.java | 24 +- .../compiere/model/X_C_UOM_Conversion.java | 36 +- .../compiere/model/X_C_UserRemuneration.java | 32 +- .../compiere/model/X_C_ValidCombination.java | 76 +- .../org/compiere/model/X_C_Withholding.java | 32 +- .../compiere/model/X_C_Withholding_Acct.java | 32 +- .../src/org/compiere/model/X_C_Year.java | 28 +- .../src/org/compiere/model/X_EXP_Format.java | 28 +- .../org/compiere/model/X_EXP_FormatLine.java | 32 +- .../org/compiere/model/X_EXP_Processor.java | 24 +- .../model/X_EXP_ProcessorParameter.java | 24 +- .../compiere/model/X_EXP_Processor_Type.java | 24 +- .../src/org/compiere/model/X_Fact_Acct.java | 112 ++- .../compiere/model/X_Fact_Acct_Summary.java | 100 +- .../compiere/model/X_Fact_Reconciliation.java | 36 +- .../src/org/compiere/model/X_GL_Budget.java | 24 +- .../compiere/model/X_GL_BudgetControl.java | 32 +- .../src/org/compiere/model/X_GL_Category.java | 24 +- .../org/compiere/model/X_GL_Distribution.java | 76 +- .../compiere/model/X_GL_DistributionLine.java | 68 +- .../src/org/compiere/model/X_GL_Fund.java | 28 +- .../compiere/model/X_GL_FundRestriction.java | 32 +- .../src/org/compiere/model/X_GL_Journal.java | 77 +- .../org/compiere/model/X_GL_JournalBatch.java | 44 +- .../compiere/model/X_GL_JournalGenerator.java | 10 +- .../model/X_GL_JournalGeneratorLine.java | 10 +- .../model/X_GL_JournalGeneratorSource.java | 10 +- .../org/compiere/model/X_GL_JournalLine.java | 18 +- .../org/compiere/model/X_IMP_Processor.java | 24 +- .../compiere/model/X_IMP_ProcessorLog.java | 24 +- .../model/X_IMP_ProcessorParameter.java | 24 +- .../compiere/model/X_IMP_Processor_Type.java | 24 +- .../src/org/compiere/model/X_I_Asset.java | 10 +- .../src/org/compiere/model/X_I_BPartner.java | 56 +- .../org/compiere/model/X_I_BankStatement.java | 56 +- .../compiere/model/X_I_Conversion_Rate.java | 40 +- .../org/compiere/model/X_I_ElementValue.java | 40 +- .../src/org/compiere/model/X_I_FAJournal.java | 10 +- .../org/compiere/model/X_I_FixedAsset.java | 24 +- .../src/org/compiere/model/X_I_GLJournal.java | 116 ++- .../compiere/model/X_I_InOutLineConfirm.java | 28 +- .../src/org/compiere/model/X_I_Inventory.java | 10 +- .../src/org/compiere/model/X_I_Invoice.java | 100 +- .../src/org/compiere/model/X_I_Order.java | 120 +-- .../src/org/compiere/model/X_I_Payment.java | 52 +- .../src/org/compiere/model/X_I_PriceList.java | 48 +- .../src/org/compiere/model/X_I_Product.java | 46 +- .../org/compiere/model/X_I_ReportLine.java | 40 +- .../src/org/compiere/model/X_K_Category.java | 24 +- .../org/compiere/model/X_K_CategoryValue.java | 28 +- .../src/org/compiere/model/X_K_Comment.java | 32 +- .../src/org/compiere/model/X_K_Entry.java | 36 +- .../org/compiere/model/X_K_EntryCategory.java | 36 +- .../org/compiere/model/X_K_EntryRelated.java | 28 +- .../src/org/compiere/model/X_K_Index.java | 40 +- .../src/org/compiere/model/X_K_IndexLog.java | 24 +- .../src/org/compiere/model/X_K_IndexStop.java | 36 +- .../src/org/compiere/model/X_K_Source.java | 24 +- .../src/org/compiere/model/X_K_Synonym.java | 24 +- .../src/org/compiere/model/X_K_Topic.java | 28 +- .../src/org/compiere/model/X_K_Type.java | 24 +- .../src/org/compiere/model/X_M_Attribute.java | 28 +- .../compiere/model/X_M_AttributeInstance.java | 32 +- .../compiere/model/X_M_AttributeSearch.java | 24 +- .../org/compiere/model/X_M_AttributeSet.java | 24 +- .../model/X_M_AttributeSetExclude.java | 32 +- .../model/X_M_AttributeSetInstance.java | 32 +- .../org/compiere/model/X_M_AttributeUse.java | 32 +- .../compiere/model/X_M_AttributeValue.java | 28 +- .../src/org/compiere/model/X_M_BOM.java | 32 +- .../compiere/model/X_M_BOMAlternative.java | 28 +- .../org/compiere/model/X_M_BOMProduct.java | 44 +- .../org/compiere/model/X_M_ChangeNotice.java | 24 +- .../org/compiere/model/X_M_ChangeRequest.java | 32 +- .../src/org/compiere/model/X_M_Cost.java | 40 +- .../org/compiere/model/X_M_CostDetail.java | 64 +- .../org/compiere/model/X_M_CostElement.java | 24 +- .../org/compiere/model/X_M_CostHistory.java | 10 +- .../src/org/compiere/model/X_M_CostQueue.java | 40 +- .../src/org/compiere/model/X_M_CostType.java | 24 +- .../src/org/compiere/model/X_M_Demand.java | 32 +- .../org/compiere/model/X_M_DemandDetail.java | 40 +- .../org/compiere/model/X_M_DemandLine.java | 36 +- .../compiere/model/X_M_DiscountSchema.java | 24 +- .../model/X_M_DiscountSchemaBreak.java | 36 +- .../model/X_M_DiscountSchemaLine.java | 44 +- .../compiere/model/X_M_DistributionList.java | 24 +- .../model/X_M_DistributionListLine.java | 36 +- .../compiere/model/X_M_DistributionRun.java | 32 +- .../model/X_M_DistributionRunLine.java | 36 +- .../src/org/compiere/model/X_M_Forecast.java | 36 +- .../org/compiere/model/X_M_ForecastLine.java | 40 +- .../src/org/compiere/model/X_M_Freight.java | 48 +- .../compiere/model/X_M_FreightCategory.java | 24 +- .../src/org/compiere/model/X_M_InOut.java | 104 ++- .../org/compiere/model/X_M_InOutConfirm.java | 36 +- .../src/org/compiere/model/X_M_InOutLine.java | 80 +- .../compiere/model/X_M_InOutLineConfirm.java | 40 +- .../org/compiere/model/X_M_InOutLineMA.java | 28 +- .../src/org/compiere/model/X_M_Inventory.java | 60 +- .../org/compiere/model/X_M_InventoryLine.java | 40 +- .../compiere/model/X_M_InventoryLineMA.java | 28 +- .../src/org/compiere/model/X_M_Locator.java | 28 +- .../src/org/compiere/model/X_M_Lot.java | 32 +- .../src/org/compiere/model/X_M_LotCtl.java | 24 +- .../org/compiere/model/X_M_LotCtlExclude.java | 32 +- .../src/org/compiere/model/X_M_MatchInv.java | 36 +- .../src/org/compiere/model/X_M_MatchPO.java | 40 +- .../src/org/compiere/model/X_M_Movement.java | 72 +- .../compiere/model/X_M_MovementConfirm.java | 32 +- .../org/compiere/model/X_M_MovementLine.java | 36 +- .../model/X_M_MovementLineConfirm.java | 36 +- .../compiere/model/X_M_MovementLineMA.java | 28 +- .../compiere/model/X_M_OperationResource.java | 36 +- .../src/org/compiere/model/X_M_Package.java | 32 +- .../org/compiere/model/X_M_PackageLine.java | 32 +- .../src/org/compiere/model/X_M_PartType.java | 24 +- .../org/compiere/model/X_M_PerpetualInv.java | 32 +- .../src/org/compiere/model/X_M_PriceList.java | 32 +- .../compiere/model/X_M_PriceList_Version.java | 36 +- .../src/org/compiere/model/X_M_Product.java | 14 +- .../compiere/model/X_M_ProductDownload.java | 28 +- .../compiere/model/X_M_ProductOperation.java | 28 +- .../org/compiere/model/X_M_ProductPrice.java | 32 +- .../model/X_M_ProductPriceVendorBreak.java | 44 +- .../org/compiere/model/X_M_Product_Acct.java | 10 +- .../org/compiere/model/X_M_Product_BOM.java | 130 ++- .../compiere/model/X_M_Product_Category.java | 36 +- .../model/X_M_Product_Category_Acct.java | 10 +- .../org/compiere/model/X_M_Product_PO.java | 40 +- .../model/X_M_Product_QualityTest.java | 184 ++++ .../org/compiere/model/X_M_Production.java | 10 +- .../compiere/model/X_M_ProductionLine.java | 10 +- .../compiere/model/X_M_ProductionLineMA.java | 10 +- .../compiere/model/X_M_ProductionPlan.java | 10 +- .../src/org/compiere/model/X_M_Promotion.java | 28 +- .../model/X_M_PromotionDistribution.java | 32 +- .../compiere/model/X_M_PromotionGroup.java | 24 +- .../model/X_M_PromotionGroupLine.java | 32 +- .../org/compiere/model/X_M_PromotionLine.java | 32 +- .../model/X_M_PromotionPreCondition.java | 48 +- .../compiere/model/X_M_PromotionReward.java | 40 +- .../org/compiere/model/X_M_QualityTest.java | 316 ++++--- .../compiere/model/X_M_QualityTestResult.java | 492 +++++----- .../src/org/compiere/model/X_M_RMA.java | 56 +- .../src/org/compiere/model/X_M_RMALine.java | 40 +- .../src/org/compiere/model/X_M_RMAType.java | 24 +- .../compiere/model/X_M_RelatedProduct.java | 32 +- .../src/org/compiere/model/X_M_Replenish.java | 10 +- .../org/compiere/model/X_M_Requisition.java | 40 +- .../compiere/model/X_M_RequisitionLine.java | 48 +- .../src/org/compiere/model/X_M_SerNoCtl.java | 24 +- .../compiere/model/X_M_SerNoCtlExclude.java | 32 +- .../src/org/compiere/model/X_M_Shipper.java | 28 +- .../src/org/compiere/model/X_M_Storage.java | 28 +- .../org/compiere/model/X_M_Substitute.java | 32 +- .../org/compiere/model/X_M_Transaction.java | 48 +- .../model/X_M_TransactionAllocation.java | 60 +- .../src/org/compiere/model/X_M_Warehouse.java | 24 +- .../compiere/model/X_M_Warehouse_Acct.java | 10 +- .../org/compiere/model/X_PA_Achievement.java | 28 +- .../org/compiere/model/X_PA_Benchmark.java | 24 +- .../compiere/model/X_PA_BenchmarkData.java | 28 +- .../org/compiere/model/X_PA_ColorSchema.java | 40 +- .../compiere/model/X_PA_DashboardContent.java | 10 +- .../model/X_PA_DashboardPreference.java | 24 +- .../src/org/compiere/model/X_PA_Goal.java | 44 +- .../compiere/model/X_PA_GoalRestriction.java | 44 +- .../org/compiere/model/X_PA_Hierarchy.java | 56 +- .../src/org/compiere/model/X_PA_Measure.java | 48 +- .../org/compiere/model/X_PA_MeasureCalc.java | 28 +- .../src/org/compiere/model/X_PA_Ratio.java | 28 +- .../org/compiere/model/X_PA_RatioElement.java | 40 +- .../src/org/compiere/model/X_PA_Report.java | 52 +- .../org/compiere/model/X_PA_ReportColumn.java | 72 +- .../compiere/model/X_PA_ReportColumnSet.java | 24 +- .../org/compiere/model/X_PA_ReportCube.java | 28 +- .../org/compiere/model/X_PA_ReportLine.java | 40 +- .../compiere/model/X_PA_ReportLineSet.java | 24 +- .../org/compiere/model/X_PA_ReportSource.java | 56 +- .../org/compiere/model/X_PA_SLA_Criteria.java | 24 +- .../src/org/compiere/model/X_PA_SLA_Goal.java | 32 +- .../org/compiere/model/X_PA_SLA_Measure.java | 32 +- .../src/org/compiere/model/X_RV_BPartner.java | 14 +- .../compiere/model/X_RV_WarehousePrice.java | 26 +- .../src/org/compiere/model/X_R_Category.java | 28 +- .../compiere/model/X_R_CategoryUpdates.java | 32 +- .../compiere/model/X_R_ContactInterest.java | 32 +- .../src/org/compiere/model/X_R_Group.java | 28 +- .../org/compiere/model/X_R_GroupUpdates.java | 32 +- .../org/compiere/model/X_R_InterestArea.java | 24 +- .../org/compiere/model/X_R_IssueKnown.java | 36 +- .../org/compiere/model/X_R_IssueProject.java | 32 +- .../model/X_R_IssueRecommendation.java | 24 +- .../org/compiere/model/X_R_IssueStatus.java | 24 +- .../org/compiere/model/X_R_IssueSystem.java | 28 +- .../src/org/compiere/model/X_R_IssueUser.java | 28 +- .../src/org/compiere/model/X_R_MailText.java | 24 +- .../src/org/compiere/model/X_R_Request.java | 132 +-- .../org/compiere/model/X_R_RequestAction.java | 104 ++- .../compiere/model/X_R_RequestProcessor.java | 19 +- .../model/X_R_RequestProcessorLog.java | 24 +- .../model/X_R_RequestProcessor_Route.java | 24 +- .../org/compiere/model/X_R_RequestType.java | 10 +- .../model/X_R_RequestTypeUpdates.java | 32 +- .../org/compiere/model/X_R_RequestUpdate.java | 32 +- .../compiere/model/X_R_RequestUpdates.java | 32 +- .../org/compiere/model/X_R_Resolution.java | 24 +- .../compiere/model/X_R_StandardResponse.java | 24 +- .../src/org/compiere/model/X_R_Status.java | 36 +- .../compiere/model/X_R_StatusCategory.java | 24 +- .../org/compiere/model/X_S_ExpenseType.java | 36 +- .../src/org/compiere/model/X_S_Resource.java | 36 +- .../model/X_S_ResourceAssignment.java | 28 +- .../org/compiere/model/X_S_ResourceType.java | 36 +- .../model/X_S_ResourceUnAvailable.java | 28 +- .../org/compiere/model/X_S_TimeExpense.java | 36 +- .../compiere/model/X_S_TimeExpenseLine.java | 76 +- .../src/org/compiere/model/X_S_TimeType.java | 24 +- .../src/org/compiere/model/X_S_Training.java | 36 +- .../compiere/model/X_S_Training_Class.java | 32 +- .../src/org/compiere/model/X_T_Aging.java | 60 +- .../org/compiere/model/X_T_BOM_Indented.java | 882 +++++++++--------- .../src/org/compiere/model/X_T_CashFlow.java | 24 +- .../model/X_T_DistributionRunDetail.java | 52 +- .../compiere/model/X_T_InventoryValue.java | 48 +- .../src/org/compiere/model/X_T_InvoiceGL.java | 40 +- .../compiere/model/X_T_Reconciliation.java | 151 +++ .../src/org/compiere/model/X_T_Replenish.java | 48 +- .../src/org/compiere/model/X_T_Report.java | 32 +- .../compiere/model/X_T_ReportStatement.java | 32 +- .../org/compiere/model/X_T_Transaction.java | 88 +- .../src/org/compiere/model/X_Test.java | 44 +- .../compiere/model/X_U_BlackListCheque.java | 24 +- .../org/compiere/model/X_U_POSTerminal.java | 84 +- .../src/org/compiere/model/X_U_RoleMenu.java | 32 +- .../src/org/compiere/model/X_U_WebMenu.java | 28 +- .../compiere/model/X_U_Web_Properties.java | 24 +- .../org/compiere/model/X_W_Advertisement.java | 40 +- .../src/org/compiere/model/X_W_Basket.java | 36 +- .../org/compiere/model/X_W_BasketLine.java | 32 +- .../src/org/compiere/model/X_W_Click.java | 28 +- .../org/compiere/model/X_W_ClickCount.java | 28 +- .../src/org/compiere/model/X_W_Counter.java | 28 +- .../org/compiere/model/X_W_CounterCount.java | 28 +- .../src/org/compiere/model/X_W_MailMsg.java | 28 +- .../src/org/compiere/model/X_W_Store.java | 44 +- .../src/org/eevolution/model/I_C_TaxBase.java | 19 +- .../eevolution/model/I_C_TaxDefinition.java | 33 +- .../org/eevolution/model/I_C_TaxGroup.java | 19 +- .../src/org/eevolution/model/I_C_TaxType.java | 19 +- .../model/I_DD_NetworkDistribution.java | 21 +- .../model/I_DD_NetworkDistributionLine.java | 25 +- .../src/org/eevolution/model/I_DD_Order.java | 49 +- .../org/eevolution/model/I_DD_OrderLine.java | 41 +- .../org/eevolution/model/I_HR_Attribute.java | 23 +- .../org/eevolution/model/I_HR_Concept.java | 21 +- .../eevolution/model/I_HR_Concept_Acct.java | 25 +- .../model/I_HR_Concept_Category.java | 19 +- .../org/eevolution/model/I_HR_Contract.java | 25 +- .../org/eevolution/model/I_HR_Department.java | 21 +- .../org/eevolution/model/I_HR_Employee.java | 23 +- .../src/org/eevolution/model/I_HR_Job.java | 21 +- .../src/org/eevolution/model/I_HR_List.java | 19 +- .../org/eevolution/model/I_HR_ListLine.java | 19 +- .../org/eevolution/model/I_HR_ListType.java | 19 +- .../eevolution/model/I_HR_ListVersion.java | 19 +- .../org/eevolution/model/I_HR_Movement.java | 41 +- .../org/eevolution/model/I_HR_Payroll.java | 23 +- .../eevolution/model/I_HR_PayrollConcept.java | 21 +- .../src/org/eevolution/model/I_HR_Period.java | 23 +- .../org/eevolution/model/I_HR_Process.java | 33 +- .../src/org/eevolution/model/I_HR_Year.java | 21 +- .../org/eevolution/model/I_I_HR_Movement.java | 19 +- .../org/eevolution/model/I_I_Movement.java | 179 ++-- .../eevolution/model/I_I_ProductPlanning.java | 33 +- .../eevolution/model/I_PP_Cost_Collector.java | 43 +- .../model/I_PP_Cost_CollectorMA.java | 19 +- .../src/org/eevolution/model/I_PP_MRP.java | 41 +- .../src/org/eevolution/model/I_PP_Order.java | 47 +- .../org/eevolution/model/I_PP_Order_BOM.java | 25 +- .../eevolution/model/I_PP_Order_BOMLine.java | 29 +- .../org/eevolution/model/I_PP_Order_Cost.java | 29 +- .../org/eevolution/model/I_PP_Order_Node.java | 45 +- .../eevolution/model/I_PP_Order_NodeNext.java | 23 +- .../model/I_PP_Order_Node_Asset.java | 21 +- .../model/I_PP_Order_Node_Product.java | 21 +- .../eevolution/model/I_PP_Order_Workflow.java | 31 +- .../eevolution/model/I_PP_Product_BOM.java | 25 +- .../model/I_PP_Product_BOMLine.java | 25 +- .../model/I_PP_Product_Planning.java | 75 +- .../eevolution/model/I_PP_WF_Node_Asset.java | 23 +- .../model/I_PP_WF_Node_Product.java | 23 +- .../eevolution/model/I_QM_Specification.java | 25 +- .../model/I_QM_SpecificationLine.java | 21 +- .../src/org/eevolution/model/I_T_BOMLine.java | 29 +- .../src/org/eevolution/model/I_T_MRP_CRP.java | 21 +- .../src/org/eevolution/model/X_C_TaxBase.java | 24 +- .../eevolution/model/X_C_TaxDefinition.java | 52 +- .../org/eevolution/model/X_C_TaxGroup.java | 24 +- .../src/org/eevolution/model/X_C_TaxType.java | 24 +- .../model/X_DD_NetworkDistribution.java | 28 +- .../model/X_DD_NetworkDistributionLine.java | 36 +- .../src/org/eevolution/model/X_DD_Order.java | 84 +- .../org/eevolution/model/X_DD_OrderLine.java | 68 +- .../org/eevolution/model/X_HR_Attribute.java | 32 +- .../org/eevolution/model/X_HR_Concept.java | 32 +- .../eevolution/model/X_HR_Concept_Acct.java | 36 +- .../model/X_HR_Concept_Category.java | 24 +- .../org/eevolution/model/X_HR_Contract.java | 36 +- .../org/eevolution/model/X_HR_Department.java | 28 +- .../org/eevolution/model/X_HR_Employee.java | 32 +- .../src/org/eevolution/model/X_HR_Job.java | 28 +- .../src/org/eevolution/model/X_HR_List.java | 24 +- .../org/eevolution/model/X_HR_ListLine.java | 24 +- .../org/eevolution/model/X_HR_ListType.java | 24 +- .../eevolution/model/X_HR_ListVersion.java | 24 +- .../org/eevolution/model/X_HR_Movement.java | 68 +- .../org/eevolution/model/X_HR_Payroll.java | 32 +- .../eevolution/model/X_HR_PayrollConcept.java | 28 +- .../src/org/eevolution/model/X_HR_Period.java | 32 +- .../org/eevolution/model/X_HR_Process.java | 52 +- .../src/org/eevolution/model/X_HR_Year.java | 28 +- .../org/eevolution/model/X_I_HR_Movement.java | 24 +- .../org/eevolution/model/X_I_Movement.java | 254 ++--- .../eevolution/model/X_I_ProductPlanning.java | 52 +- .../eevolution/model/X_PP_Cost_Collector.java | 72 +- .../model/X_PP_Cost_CollectorMA.java | 24 +- .../src/org/eevolution/model/X_PP_MRP.java | 68 +- .../src/org/eevolution/model/X_PP_Order.java | 80 +- .../org/eevolution/model/X_PP_Order_BOM.java | 36 +- .../eevolution/model/X_PP_Order_BOMLine.java | 44 +- .../org/eevolution/model/X_PP_Order_Cost.java | 44 +- .../org/eevolution/model/X_PP_Order_Node.java | 76 +- .../eevolution/model/X_PP_Order_NodeNext.java | 32 +- .../model/X_PP_Order_Node_Asset.java | 28 +- .../model/X_PP_Order_Node_Product.java | 28 +- .../eevolution/model/X_PP_Order_Workflow.java | 48 +- .../eevolution/model/X_PP_Product_BOM.java | 36 +- .../model/X_PP_Product_BOMLine.java | 36 +- .../model/X_PP_Product_Planning.java | 44 +- .../eevolution/model/X_PP_WF_Node_Asset.java | 32 +- .../model/X_PP_WF_Node_Product.java | 32 +- .../eevolution/model/X_QM_Specification.java | 36 +- .../model/X_QM_SpecificationLine.java | 28 +- .../src/org/eevolution/model/X_T_BOMLine.java | 44 +- .../src/org/eevolution/model/X_T_MRP_CRP.java | 28 +- 1404 files changed, 29876 insertions(+), 14462 deletions(-) create mode 100644 org.adempiere.base/src/org/compiere/model/I_ASP_Ref_List.java create mode 100644 org.adempiere.base/src/org/compiere/model/I_A_FundingMode_Acct.java create mode 100644 org.adempiere.base/src/org/compiere/model/I_M_Product_QualityTest.java create mode 100644 org.adempiere.base/src/org/compiere/model/I_T_Reconciliation.java create mode 100644 org.adempiere.base/src/org/compiere/model/X_ASP_Ref_List.java create mode 100644 org.adempiere.base/src/org/compiere/model/X_A_FundingMode_Acct.java create mode 100644 org.adempiere.base/src/org/compiere/model/X_M_Product_QualityTest.java create mode 100644 org.adempiere.base/src/org/compiere/model/X_T_Reconciliation.java diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_AccessLog.java b/org.adempiere.base/src/org/compiere/model/I_AD_AccessLog.java index 7347e36219..018c34b7d5 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_AccessLog.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_AccessLog.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_AccessLog - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_AccessLog { @@ -31,7 +31,7 @@ public interface I_AD_AccessLog public static final String Table_Name = "AD_AccessLog"; /** AD_Table_ID=717 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 717; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -54,6 +54,15 @@ public interface I_AD_AccessLog */ public int getAD_AccessLog_ID(); + /** Column name AD_AccessLog_UU */ + public static final String COLUMNNAME_AD_AccessLog_UU = "AD_AccessLog_UU"; + + /** Set AD_AccessLog_UU */ + public void setAD_AccessLog_UU (String AD_AccessLog_UU); + + /** Get AD_AccessLog_UU */ + public String getAD_AccessLog_UU(); + /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; @@ -75,7 +84,7 @@ public interface I_AD_AccessLog */ public int getAD_Column_ID(); - public I_AD_Column getAD_Column() throws RuntimeException; + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -103,7 +112,7 @@ public interface I_AD_AccessLog */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Alert.java b/org.adempiere.base/src/org/compiere/model/I_AD_Alert.java index bd26d7f751..59d45fe1ad 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Alert.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Alert.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Alert - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Alert { @@ -31,7 +31,7 @@ public interface I_AD_Alert public static final String Table_Name = "AD_Alert"; /** AD_Table_ID=594 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 594; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -67,7 +67,16 @@ public interface I_AD_Alert */ public int getAD_AlertProcessor_ID(); - public I_AD_AlertProcessor getAD_AlertProcessor() throws RuntimeException; + public org.compiere.model.I_AD_AlertProcessor getAD_AlertProcessor() throws RuntimeException; + + /** Column name AD_Alert_UU */ + public static final String COLUMNNAME_AD_Alert_UU = "AD_Alert_UU"; + + /** Set AD_Alert_UU */ + public void setAD_Alert_UU (String AD_Alert_UU); + + /** Get AD_Alert_UU */ + public String getAD_Alert_UU(); /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_AlertProcessor.java b/org.adempiere.base/src/org/compiere/model/I_AD_AlertProcessor.java index 976133619a..e28f227955 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_AlertProcessor.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_AlertProcessor.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_AlertProcessor - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_AlertProcessor { @@ -87,10 +87,10 @@ public interface I_AD_AlertProcessor /** Column name AD_Schedule_ID */ public static final String COLUMNNAME_AD_Schedule_ID = "AD_Schedule_ID"; - /** Set AD_Schedule_ID */ + /** Set Schedule */ public void setAD_Schedule_ID (int AD_Schedule_ID); - /** Get AD_Schedule_ID */ + /** Get Schedule */ public int getAD_Schedule_ID(); public org.compiere.model.I_AD_Schedule getAD_Schedule() throws RuntimeException; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_AlertProcessorLog.java b/org.adempiere.base/src/org/compiere/model/I_AD_AlertProcessorLog.java index 0c7a14047b..7471a888b3 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_AlertProcessorLog.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_AlertProcessorLog.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_AlertProcessorLog - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_AlertProcessorLog { @@ -31,7 +31,7 @@ public interface I_AD_AlertProcessorLog public static final String Table_Name = "AD_AlertProcessorLog"; /** AD_Table_ID=699 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 699; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -54,7 +54,7 @@ public interface I_AD_AlertProcessorLog */ public int getAD_AlertProcessor_ID(); - public I_AD_AlertProcessor getAD_AlertProcessor() throws RuntimeException; + public org.compiere.model.I_AD_AlertProcessor getAD_AlertProcessor() throws RuntimeException; /** Column name AD_AlertProcessorLog_ID */ public static final String COLUMNNAME_AD_AlertProcessorLog_ID = "AD_AlertProcessorLog_ID"; @@ -69,6 +69,15 @@ public interface I_AD_AlertProcessorLog */ public int getAD_AlertProcessorLog_ID(); + /** Column name AD_AlertProcessorLog_UU */ + public static final String COLUMNNAME_AD_AlertProcessorLog_UU = "AD_AlertProcessorLog_UU"; + + /** Set AD_AlertProcessorLog_UU */ + public void setAD_AlertProcessorLog_UU (String AD_AlertProcessorLog_UU); + + /** Get AD_AlertProcessorLog_UU */ + public String getAD_AlertProcessorLog_UU(); + /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_AlertRecipient.java b/org.adempiere.base/src/org/compiere/model/I_AD_AlertRecipient.java index 65904b921f..e4f3516aaf 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_AlertRecipient.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_AlertRecipient.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_AlertRecipient - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_AlertRecipient { @@ -31,7 +31,7 @@ public interface I_AD_AlertRecipient public static final String Table_Name = "AD_AlertRecipient"; /** AD_Table_ID=592 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 592; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -54,7 +54,7 @@ public interface I_AD_AlertRecipient */ public int getAD_Alert_ID(); - public I_AD_Alert getAD_Alert() throws RuntimeException; + public org.compiere.model.I_AD_Alert getAD_Alert() throws RuntimeException; /** Column name AD_AlertRecipient_ID */ public static final String COLUMNNAME_AD_AlertRecipient_ID = "AD_AlertRecipient_ID"; @@ -69,6 +69,15 @@ public interface I_AD_AlertRecipient */ public int getAD_AlertRecipient_ID(); + /** Column name AD_AlertRecipient_UU */ + public static final String COLUMNNAME_AD_AlertRecipient_UU = "AD_AlertRecipient_UU"; + + /** Set AD_AlertRecipient_UU */ + public void setAD_AlertRecipient_UU (String AD_AlertRecipient_UU); + + /** Get AD_AlertRecipient_UU */ + public String getAD_AlertRecipient_UU(); + /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; @@ -103,7 +112,7 @@ public interface I_AD_AlertRecipient */ public int getAD_Role_ID(); - public I_AD_Role getAD_Role() throws RuntimeException; + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException; /** Column name AD_User_ID */ public static final String COLUMNNAME_AD_User_ID = "AD_User_ID"; @@ -118,7 +127,7 @@ public interface I_AD_AlertRecipient */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_AlertRule.java b/org.adempiere.base/src/org/compiere/model/I_AD_AlertRule.java index e04cc2897d..751b7c43ad 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_AlertRule.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_AlertRule.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_AlertRule - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_AlertRule { @@ -31,7 +31,7 @@ public interface I_AD_AlertRule public static final String Table_Name = "AD_AlertRule"; /** AD_Table_ID=593 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 593; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -54,7 +54,7 @@ public interface I_AD_AlertRule */ public int getAD_Alert_ID(); - public I_AD_Alert getAD_Alert() throws RuntimeException; + public org.compiere.model.I_AD_Alert getAD_Alert() throws RuntimeException; /** Column name AD_AlertRule_ID */ public static final String COLUMNNAME_AD_AlertRule_ID = "AD_AlertRule_ID"; @@ -69,6 +69,15 @@ public interface I_AD_AlertRule */ public int getAD_AlertRule_ID(); + /** Column name AD_AlertRule_UU */ + public static final String COLUMNNAME_AD_AlertRule_UU = "AD_AlertRule_UU"; + + /** Set AD_AlertRule_UU */ + public void setAD_AlertRule_UU (String AD_AlertRule_UU); + + /** Get AD_AlertRule_UU */ + public String getAD_AlertRule_UU(); + /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; @@ -103,7 +112,7 @@ public interface I_AD_AlertRule */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Archive.java b/org.adempiere.base/src/org/compiere/model/I_AD_Archive.java index a9f312788f..733126afcb 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Archive.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Archive.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Archive - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Archive { @@ -31,7 +31,7 @@ public interface I_AD_Archive public static final String Table_Name = "AD_Archive"; /** AD_Table_ID=754 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 754; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -54,6 +54,15 @@ public interface I_AD_Archive */ public int getAD_Archive_ID(); + /** Column name AD_Archive_UU */ + public static final String COLUMNNAME_AD_Archive_UU = "AD_Archive_UU"; + + /** Set AD_Archive_UU */ + public void setAD_Archive_UU (String AD_Archive_UU); + + /** Get AD_Archive_UU */ + public String getAD_Archive_UU(); + /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; @@ -88,7 +97,7 @@ public interface I_AD_Archive */ public int getAD_Process_ID(); - public I_AD_Process getAD_Process() throws RuntimeException; + public org.compiere.model.I_AD_Process getAD_Process() throws RuntimeException; /** Column name AD_Table_ID */ public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID"; @@ -103,7 +112,7 @@ public interface I_AD_Archive */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name BinaryData */ public static final String COLUMNNAME_BinaryData = "BinaryData"; @@ -131,7 +140,7 @@ public interface I_AD_Archive */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Attachment.java b/org.adempiere.base/src/org/compiere/model/I_AD_Attachment.java index 8ed34c6865..ebb131a635 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Attachment.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Attachment.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Attachment - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Attachment { @@ -31,7 +31,7 @@ public interface I_AD_Attachment public static final String Table_Name = "AD_Attachment"; /** AD_Table_ID=254 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 254; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -54,6 +54,15 @@ public interface I_AD_Attachment */ public int getAD_Attachment_ID(); + /** Column name AD_Attachment_UU */ + public static final String COLUMNNAME_AD_Attachment_UU = "AD_Attachment_UU"; + + /** Set AD_Attachment_UU */ + public void setAD_Attachment_UU (String AD_Attachment_UU); + + /** Get AD_Attachment_UU */ + public String getAD_Attachment_UU(); + /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; @@ -88,7 +97,7 @@ public interface I_AD_Attachment */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name BinaryData */ public static final String COLUMNNAME_BinaryData = "BinaryData"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_AttachmentNote.java b/org.adempiere.base/src/org/compiere/model/I_AD_AttachmentNote.java index 52f86ab564..1e8fe13b13 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_AttachmentNote.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_AttachmentNote.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_AttachmentNote - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_AttachmentNote { @@ -31,7 +31,7 @@ public interface I_AD_AttachmentNote public static final String Table_Name = "AD_AttachmentNote"; /** AD_Table_ID=705 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 705; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -54,7 +54,7 @@ public interface I_AD_AttachmentNote */ public int getAD_Attachment_ID(); - public I_AD_Attachment getAD_Attachment() throws RuntimeException; + public org.compiere.model.I_AD_Attachment getAD_Attachment() throws RuntimeException; /** Column name AD_AttachmentNote_ID */ public static final String COLUMNNAME_AD_AttachmentNote_ID = "AD_AttachmentNote_ID"; @@ -69,6 +69,15 @@ public interface I_AD_AttachmentNote */ public int getAD_AttachmentNote_ID(); + /** Column name AD_AttachmentNote_UU */ + public static final String COLUMNNAME_AD_AttachmentNote_UU = "AD_AttachmentNote_UU"; + + /** Set AD_AttachmentNote_UU */ + public void setAD_AttachmentNote_UU (String AD_AttachmentNote_UU); + + /** Get AD_AttachmentNote_UU */ + public String getAD_AttachmentNote_UU(); + /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; @@ -103,7 +112,7 @@ public interface I_AD_AttachmentNote */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Attribute.java b/org.adempiere.base/src/org/compiere/model/I_AD_Attribute.java index 887d3d6d32..637471eb2a 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Attribute.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Attribute.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Attribute - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Attribute { @@ -31,7 +31,7 @@ public interface I_AD_Attribute public static final String Table_Name = "AD_Attribute"; /** AD_Table_ID=405 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 405; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -50,6 +50,15 @@ public interface I_AD_Attribute /** Get System Attribute */ public int getAD_Attribute_ID(); + /** Column name AD_Attribute_UU */ + public static final String COLUMNNAME_AD_Attribute_UU = "AD_Attribute_UU"; + + /** Set AD_Attribute_UU */ + public void setAD_Attribute_UU (String AD_Attribute_UU); + + /** Get AD_Attribute_UU */ + public String getAD_Attribute_UU(); + /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; @@ -84,7 +93,7 @@ public interface I_AD_Attribute */ public int getAD_Reference_ID(); - public I_AD_Reference getAD_Reference() throws RuntimeException; + public org.compiere.model.I_AD_Reference getAD_Reference() throws RuntimeException; /** Column name AD_Reference_Value_ID */ public static final String COLUMNNAME_AD_Reference_Value_ID = "AD_Reference_Value_ID"; @@ -99,7 +108,7 @@ public interface I_AD_Attribute */ public int getAD_Reference_Value_ID(); - public I_AD_Reference getAD_Reference_Value() throws RuntimeException; + public org.compiere.model.I_AD_Reference getAD_Reference_Value() throws RuntimeException; /** Column name AD_Table_ID */ public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID"; @@ -114,7 +123,7 @@ public interface I_AD_Attribute */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name AD_Val_Rule_ID */ public static final String COLUMNNAME_AD_Val_Rule_ID = "AD_Val_Rule_ID"; @@ -129,7 +138,7 @@ public interface I_AD_Attribute */ public int getAD_Val_Rule_ID(); - public I_AD_Val_Rule getAD_Val_Rule() throws RuntimeException; + public org.compiere.model.I_AD_Val_Rule getAD_Val_Rule() throws RuntimeException; /** Column name Callout */ public static final String COLUMNNAME_Callout = "Callout"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Attribute_Value.java b/org.adempiere.base/src/org/compiere/model/I_AD_Attribute_Value.java index 78a0748484..0256101f11 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Attribute_Value.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Attribute_Value.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Attribute_Value - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Attribute_Value { @@ -31,7 +31,7 @@ public interface I_AD_Attribute_Value public static final String Table_Name = "AD_Attribute_Value"; /** AD_Table_ID=406 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 406; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -50,6 +50,15 @@ public interface I_AD_Attribute_Value /** Get System Attribute */ public int getAD_Attribute_ID(); + /** Column name AD_Attribute_Value_UU */ + public static final String COLUMNNAME_AD_Attribute_Value_UU = "AD_Attribute_Value_UU"; + + /** Set AD_Attribute_Value_UU */ + public void setAD_Attribute_Value_UU (String AD_Attribute_Value_UU); + + /** Get AD_Attribute_Value_UU */ + public String getAD_Attribute_Value_UU(); + /** Column name Record_ID */ public static final String COLUMNNAME_Record_ID = "Record_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_ChangeLog.java b/org.adempiere.base/src/org/compiere/model/I_AD_ChangeLog.java index fffa8c3ae2..4c341409f9 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_ChangeLog.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_ChangeLog.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_ChangeLog - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_ChangeLog { @@ -31,7 +31,7 @@ public interface I_AD_ChangeLog public static final String Table_Name = "AD_ChangeLog"; /** AD_Table_ID=580 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 580; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -54,6 +54,15 @@ public interface I_AD_ChangeLog */ public int getAD_ChangeLog_ID(); + /** Column name AD_ChangeLog_UU */ + public static final String COLUMNNAME_AD_ChangeLog_UU = "AD_ChangeLog_UU"; + + /** Set AD_ChangeLog_UU */ + public void setAD_ChangeLog_UU (String AD_ChangeLog_UU); + + /** Get AD_ChangeLog_UU */ + public String getAD_ChangeLog_UU(); + /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; @@ -75,7 +84,7 @@ public interface I_AD_ChangeLog */ public int getAD_Column_ID(); - public I_AD_Column getAD_Column() throws RuntimeException; + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -103,7 +112,7 @@ public interface I_AD_ChangeLog */ public int getAD_Session_ID(); - public I_AD_Session getAD_Session() throws RuntimeException; + public org.compiere.model.I_AD_Session getAD_Session() throws RuntimeException; /** Column name AD_Table_ID */ public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID"; @@ -118,7 +127,7 @@ public interface I_AD_ChangeLog */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Client.java b/org.adempiere.base/src/org/compiere/model/I_AD_Client.java index 37e4467921..db4c1988a3 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Client.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Client.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Client - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Client { diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_ClientInfo.java b/org.adempiere.base/src/org/compiere/model/I_AD_ClientInfo.java index 219b018831..c9aac30363 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_ClientInfo.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_ClientInfo.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_ClientInfo - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_ClientInfo { @@ -31,7 +31,7 @@ public interface I_AD_ClientInfo public static final String Table_Name = "AD_ClientInfo"; /** AD_Table_ID=227 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 227; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -49,6 +49,15 @@ public interface I_AD_ClientInfo */ public int getAD_Client_ID(); + /** Column name AD_ClientInfo_UU */ + public static final String COLUMNNAME_AD_ClientInfo_UU = "AD_ClientInfo_UU"; + + /** Set AD_ClientInfo_UU */ + public void setAD_ClientInfo_UU (String AD_ClientInfo_UU); + + /** Get AD_ClientInfo_UU */ + public String getAD_ClientInfo_UU(); + /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -75,7 +84,7 @@ public interface I_AD_ClientInfo */ public int getAD_Tree_Activity_ID(); - public I_AD_Tree getAD_Tree_Activity() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree_Activity() throws RuntimeException; /** Column name AD_Tree_BPartner_ID */ public static final String COLUMNNAME_AD_Tree_BPartner_ID = "AD_Tree_BPartner_ID"; @@ -90,7 +99,7 @@ public interface I_AD_ClientInfo */ public int getAD_Tree_BPartner_ID(); - public I_AD_Tree getAD_Tree_BPartner() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree_BPartner() throws RuntimeException; /** Column name AD_Tree_Campaign_ID */ public static final String COLUMNNAME_AD_Tree_Campaign_ID = "AD_Tree_Campaign_ID"; @@ -105,7 +114,7 @@ public interface I_AD_ClientInfo */ public int getAD_Tree_Campaign_ID(); - public I_AD_Tree getAD_Tree_Campaign() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree_Campaign() throws RuntimeException; /** Column name AD_Tree_Menu_ID */ public static final String COLUMNNAME_AD_Tree_Menu_ID = "AD_Tree_Menu_ID"; @@ -120,7 +129,7 @@ public interface I_AD_ClientInfo */ public int getAD_Tree_Menu_ID(); - public I_AD_Tree getAD_Tree_Menu() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree_Menu() throws RuntimeException; /** Column name AD_Tree_Org_ID */ public static final String COLUMNNAME_AD_Tree_Org_ID = "AD_Tree_Org_ID"; @@ -135,7 +144,7 @@ public interface I_AD_ClientInfo */ public int getAD_Tree_Org_ID(); - public I_AD_Tree getAD_Tree_Org() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree_Org() throws RuntimeException; /** Column name AD_Tree_Product_ID */ public static final String COLUMNNAME_AD_Tree_Product_ID = "AD_Tree_Product_ID"; @@ -150,7 +159,7 @@ public interface I_AD_ClientInfo */ public int getAD_Tree_Product_ID(); - public I_AD_Tree getAD_Tree_Product() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree_Product() throws RuntimeException; /** Column name AD_Tree_Project_ID */ public static final String COLUMNNAME_AD_Tree_Project_ID = "AD_Tree_Project_ID"; @@ -165,7 +174,7 @@ public interface I_AD_ClientInfo */ public int getAD_Tree_Project_ID(); - public I_AD_Tree getAD_Tree_Project() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree_Project() throws RuntimeException; /** Column name AD_Tree_SalesRegion_ID */ public static final String COLUMNNAME_AD_Tree_SalesRegion_ID = "AD_Tree_SalesRegion_ID"; @@ -180,7 +189,7 @@ public interface I_AD_ClientInfo */ public int getAD_Tree_SalesRegion_ID(); - public I_AD_Tree getAD_Tree_SalesRegion() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree_SalesRegion() throws RuntimeException; /** Column name C_AcctSchema1_ID */ public static final String COLUMNNAME_C_AcctSchema1_ID = "C_AcctSchema1_ID"; @@ -195,7 +204,7 @@ public interface I_AD_ClientInfo */ public int getC_AcctSchema1_ID(); - public I_C_AcctSchema getC_AcctSchema1() throws RuntimeException; + public org.compiere.model.I_C_AcctSchema getC_AcctSchema1() throws RuntimeException; /** Column name C_BPartnerCashTrx_ID */ public static final String COLUMNNAME_C_BPartnerCashTrx_ID = "C_BPartnerCashTrx_ID"; @@ -210,7 +219,7 @@ public interface I_AD_ClientInfo */ public int getC_BPartnerCashTrx_ID(); - public I_C_BPartner getC_BPartnerCashTrx() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartnerCashTrx() throws RuntimeException; /** Column name C_Calendar_ID */ public static final String COLUMNNAME_C_Calendar_ID = "C_Calendar_ID"; @@ -225,7 +234,7 @@ public interface I_AD_ClientInfo */ public int getC_Calendar_ID(); - public I_C_Calendar getC_Calendar() throws RuntimeException; + public org.compiere.model.I_C_Calendar getC_Calendar() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -256,7 +265,7 @@ public interface I_AD_ClientInfo */ public int getC_UOM_Length_ID(); - public I_C_UOM getC_UOM_Length() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM_Length() throws RuntimeException; /** Column name C_UOM_Time_ID */ public static final String COLUMNNAME_C_UOM_Time_ID = "C_UOM_Time_ID"; @@ -271,7 +280,7 @@ public interface I_AD_ClientInfo */ public int getC_UOM_Time_ID(); - public I_C_UOM getC_UOM_Time() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM_Time() throws RuntimeException; /** Column name C_UOM_Volume_ID */ public static final String COLUMNNAME_C_UOM_Volume_ID = "C_UOM_Volume_ID"; @@ -286,7 +295,7 @@ public interface I_AD_ClientInfo */ public int getC_UOM_Volume_ID(); - public I_C_UOM getC_UOM_Volume() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM_Volume() throws RuntimeException; /** Column name C_UOM_Weight_ID */ public static final String COLUMNNAME_C_UOM_Weight_ID = "C_UOM_Weight_ID"; @@ -301,7 +310,7 @@ public interface I_AD_ClientInfo */ public int getC_UOM_Weight_ID(); - public I_C_UOM getC_UOM_Weight() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM_Weight() throws RuntimeException; /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; @@ -378,7 +387,7 @@ public interface I_AD_ClientInfo /** Get Product for Freight */ public int getM_ProductFreight_ID(); - public I_M_Product getM_ProductFreight() throws RuntimeException; + public org.compiere.model.I_M_Product getM_ProductFreight() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_ClientShare.java b/org.adempiere.base/src/org/compiere/model/I_AD_ClientShare.java index a5c06db696..7305d377fe 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_ClientShare.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_ClientShare.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_ClientShare - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_ClientShare { @@ -31,7 +31,7 @@ public interface I_AD_ClientShare public static final String Table_Name = "AD_ClientShare"; /** AD_Table_ID=827 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 827; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,6 +62,15 @@ public interface I_AD_ClientShare */ public int getAD_ClientShare_ID(); + /** Column name AD_ClientShare_UU */ + public static final String COLUMNNAME_AD_ClientShare_UU = "AD_ClientShare_UU"; + + /** Set AD_ClientShare_UU */ + public void setAD_ClientShare_UU (String AD_ClientShare_UU); + + /** Get AD_ClientShare_UU */ + public String getAD_ClientShare_UU(); + /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -88,7 +97,7 @@ public interface I_AD_ClientShare */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Color.java b/org.adempiere.base/src/org/compiere/model/I_AD_Color.java index 351748d886..33890a8c85 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Color.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Color.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Color - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Color { @@ -31,7 +31,7 @@ public interface I_AD_Color public static final String Table_Name = "AD_Color"; /** AD_Table_ID=457 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 457; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,6 +62,15 @@ public interface I_AD_Color */ public int getAD_Color_ID(); + /** Column name AD_Color_UU */ + public static final String COLUMNNAME_AD_Color_UU = "AD_Color_UU"; + + /** Set AD_Color_UU */ + public void setAD_Color_UU (String AD_Color_UU); + + /** Get AD_Color_UU */ + public String getAD_Color_UU(); + /** Column name AD_Image_ID */ public static final String COLUMNNAME_AD_Image_ID = "AD_Image_ID"; @@ -75,7 +84,7 @@ public interface I_AD_Color */ public int getAD_Image_ID(); - public I_AD_Image getAD_Image() throws RuntimeException; + public org.compiere.model.I_AD_Image getAD_Image() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Column.java b/org.adempiere.base/src/org/compiere/model/I_AD_Column.java index 86b58bd9c0..122e1e5c0f 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Column.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Column.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Column - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Column { diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Column_Access.java b/org.adempiere.base/src/org/compiere/model/I_AD_Column_Access.java index f715d522a6..75521c13ef 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Column_Access.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Column_Access.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Column_Access - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Column_Access { @@ -31,7 +31,7 @@ public interface I_AD_Column_Access public static final String Table_Name = "AD_Column_Access"; /** AD_Table_ID=571 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 571; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -49,6 +49,15 @@ public interface I_AD_Column_Access */ public int getAD_Client_ID(); + /** Column name AD_Column_Access_UU */ + public static final String COLUMNNAME_AD_Column_Access_UU = "AD_Column_Access_UU"; + + /** Set AD_Column_Access_UU */ + public void setAD_Column_Access_UU (String AD_Column_Access_UU); + + /** Get AD_Column_Access_UU */ + public String getAD_Column_Access_UU(); + /** Column name AD_Column_ID */ public static final String COLUMNNAME_AD_Column_ID = "AD_Column_ID"; @@ -62,7 +71,7 @@ public interface I_AD_Column_Access */ public int getAD_Column_ID(); - public I_AD_Column getAD_Column() throws RuntimeException; + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -90,7 +99,7 @@ public interface I_AD_Column_Access */ public int getAD_Role_ID(); - public I_AD_Role getAD_Role() throws RuntimeException; + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException; /** Column name AD_Table_ID */ public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID"; @@ -105,7 +114,7 @@ public interface I_AD_Column_Access */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Desktop.java b/org.adempiere.base/src/org/compiere/model/I_AD_Desktop.java index e668d99c61..f523fe38f8 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Desktop.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Desktop.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Desktop - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Desktop { @@ -31,7 +31,7 @@ public interface I_AD_Desktop public static final String Table_Name = "AD_Desktop"; /** AD_Table_ID=458 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 458; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_AD_Desktop */ public int getAD_Desktop_ID(); + /** Column name AD_Desktop_UU */ + public static final String COLUMNNAME_AD_Desktop_UU = "AD_Desktop_UU"; + + /** Set AD_Desktop_UU */ + public void setAD_Desktop_UU (String AD_Desktop_UU); + + /** Get AD_Desktop_UU */ + public String getAD_Desktop_UU(); + /** Column name AD_Image_ID */ public static final String COLUMNNAME_AD_Image_ID = "AD_Image_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_DesktopWorkbench.java b/org.adempiere.base/src/org/compiere/model/I_AD_DesktopWorkbench.java index d75205186a..1f715e1b81 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_DesktopWorkbench.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_DesktopWorkbench.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_DesktopWorkbench - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_DesktopWorkbench { @@ -31,7 +31,7 @@ public interface I_AD_DesktopWorkbench public static final String Table_Name = "AD_DesktopWorkbench"; /** AD_Table_ID=459 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 459; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,7 +62,7 @@ public interface I_AD_DesktopWorkbench */ public int getAD_Desktop_ID(); - public I_AD_Desktop getAD_Desktop() throws RuntimeException; + public org.compiere.model.I_AD_Desktop getAD_Desktop() throws RuntimeException; /** Column name AD_DesktopWorkbench_ID */ public static final String COLUMNNAME_AD_DesktopWorkbench_ID = "AD_DesktopWorkbench_ID"; @@ -73,6 +73,15 @@ public interface I_AD_DesktopWorkbench /** Get Desktop Workbench */ public int getAD_DesktopWorkbench_ID(); + /** Column name AD_DesktopWorkbench_UU */ + public static final String COLUMNNAME_AD_DesktopWorkbench_UU = "AD_DesktopWorkbench_UU"; + + /** Set AD_DesktopWorkbench_UU */ + public void setAD_DesktopWorkbench_UU (String AD_DesktopWorkbench_UU); + + /** Get AD_DesktopWorkbench_UU */ + public String getAD_DesktopWorkbench_UU(); + /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -99,7 +108,7 @@ public interface I_AD_DesktopWorkbench */ public int getAD_Workbench_ID(); - public I_AD_Workbench getAD_Workbench() throws RuntimeException; + public org.compiere.model.I_AD_Workbench getAD_Workbench() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Document_Action_Access.java b/org.adempiere.base/src/org/compiere/model/I_AD_Document_Action_Access.java index 7fe0011382..222f935cba 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Document_Action_Access.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Document_Action_Access.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Document_Action_Access - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Document_Action_Access { @@ -31,7 +31,7 @@ public interface I_AD_Document_Action_Access public static final String Table_Name = "AD_Document_Action_Access"; /** AD_Table_ID=53012 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53012; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -49,6 +49,15 @@ public interface I_AD_Document_Action_Access */ public int getAD_Client_ID(); + /** Column name AD_Document_Action_Access_UU */ + public static final String COLUMNNAME_AD_Document_Action_Access_UU = "AD_Document_Action_Access_UU"; + + /** Set AD_Document_Action_Access_UU */ + public void setAD_Document_Action_Access_UU (String AD_Document_Action_Access_UU); + + /** Get AD_Document_Action_Access_UU */ + public String getAD_Document_Action_Access_UU(); + /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -75,7 +84,7 @@ public interface I_AD_Document_Action_Access */ public int getAD_Ref_List_ID(); - public I_AD_Ref_List getAD_Ref_List() throws RuntimeException; + public org.compiere.model.I_AD_Ref_List getAD_Ref_List() throws RuntimeException; /** Column name AD_Role_ID */ public static final String COLUMNNAME_AD_Role_ID = "AD_Role_ID"; @@ -90,7 +99,7 @@ public interface I_AD_Document_Action_Access */ public int getAD_Role_ID(); - public I_AD_Role getAD_Role() throws RuntimeException; + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException; /** Column name C_DocType_ID */ public static final String COLUMNNAME_C_DocType_ID = "C_DocType_ID"; @@ -105,7 +114,7 @@ public interface I_AD_Document_Action_Access */ public int getC_DocType_ID(); - public I_C_DocType getC_DocType() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Element.java b/org.adempiere.base/src/org/compiere/model/I_AD_Element.java index f408caaf6b..142c323940 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Element.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Element.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Element - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Element { @@ -31,7 +31,7 @@ public interface I_AD_Element public static final String Table_Name = "AD_Element"; /** AD_Table_ID=276 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 276; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,6 +62,15 @@ public interface I_AD_Element */ public int getAD_Element_ID(); + /** Column name AD_Element_UU */ + public static final String COLUMNNAME_AD_Element_UU = "AD_Element_UU"; + + /** Set AD_Element_UU */ + public void setAD_Element_UU (String AD_Element_UU); + + /** Get AD_Element_UU */ + public String getAD_Element_UU(); + /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_EntityType.java b/org.adempiere.base/src/org/compiere/model/I_AD_EntityType.java index 7ad352c7df..b7699c9d45 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_EntityType.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_EntityType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_EntityType - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_EntityType { @@ -31,7 +31,7 @@ public interface I_AD_EntityType public static final String Table_Name = "AD_EntityType"; /** AD_Table_ID=882 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 882; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,6 +62,15 @@ public interface I_AD_EntityType */ public int getAD_EntityType_ID(); + /** Column name AD_EntityType_UU */ + public static final String COLUMNNAME_AD_EntityType_UU = "AD_EntityType_UU"; + + /** Set AD_EntityType_UU */ + public void setAD_EntityType_UU (String AD_EntityType_UU); + + /** Get AD_EntityType_UU */ + public String getAD_EntityType_UU(); + /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Error.java b/org.adempiere.base/src/org/compiere/model/I_AD_Error.java index d64d29e555..e4f4e7dcbc 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Error.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Error.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Error - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Error { @@ -31,7 +31,7 @@ public interface I_AD_Error public static final String Table_Name = "AD_Error"; /** AD_Table_ID=380 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 380; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -58,6 +58,15 @@ public interface I_AD_Error /** Get Error */ public int getAD_Error_ID(); + /** Column name AD_Error_UU */ + public static final String COLUMNNAME_AD_Error_UU = "AD_Error_UU"; + + /** Set AD_Error_UU */ + public void setAD_Error_UU (String AD_Error_UU); + + /** Get AD_Error_UU */ + public String getAD_Error_UU(); + /** Column name AD_Language */ public static final String COLUMNNAME_AD_Language = "AD_Language"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Field.java b/org.adempiere.base/src/org/compiere/model/I_AD_Field.java index 8caa7c58e2..dd82beaa9e 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Field.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Field.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Field - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Field { @@ -465,6 +465,19 @@ public interface I_AD_Field */ public String getName(); + /** Column name NumLines */ + public static final String COLUMNNAME_NumLines = "NumLines"; + + /** Set Number of Lines. + * Number of lines for a field + */ + public void setNumLines (int NumLines); + + /** Get Number of Lines. + * Number of lines for a field + */ + public int getNumLines(); + /** Column name ObscureType */ public static final String COLUMNNAME_ObscureType = "ObscureType"; @@ -478,19 +491,6 @@ public interface I_AD_Field */ public String getObscureType(); - /** Column name NumLines */ - public static final String COLUMNNAME_NumLines = "NumLines"; - - /** Set Row Span. - * Number of rows for a field - */ - public void setNumLines (int NumLines); - - /** Get Row Span. - * Number of rows for a field - */ - public int getNumLines(); - /** Column name SeqNo */ public static final String COLUMNNAME_SeqNo = "SeqNo"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_FieldGroup.java b/org.adempiere.base/src/org/compiere/model/I_AD_FieldGroup.java index 81f4103ee8..984f52b78b 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_FieldGroup.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_FieldGroup.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_FieldGroup - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_FieldGroup { @@ -31,7 +31,7 @@ public interface I_AD_FieldGroup public static final String Table_Name = "AD_FieldGroup"; /** AD_Table_ID=414 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 414; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,6 +62,15 @@ public interface I_AD_FieldGroup */ public int getAD_FieldGroup_ID(); + /** Column name AD_FieldGroup_UU */ + public static final String COLUMNNAME_AD_FieldGroup_UU = "AD_FieldGroup_UU"; + + /** Set AD_FieldGroup_UU */ + public void setAD_FieldGroup_UU (String AD_FieldGroup_UU); + + /** Get AD_FieldGroup_UU */ + public String getAD_FieldGroup_UU(); + /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Find.java b/org.adempiere.base/src/org/compiere/model/I_AD_Find.java index 824329db0c..4a0130b730 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Find.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Find.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Find - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Find { @@ -31,7 +31,7 @@ public interface I_AD_Find public static final String Table_Name = "AD_Find"; /** AD_Table_ID=404 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 404; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,7 +62,7 @@ public interface I_AD_Find */ public int getAD_Column_ID(); - public I_AD_Column getAD_Column() throws RuntimeException; + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException; /** Column name AD_Find_ID */ public static final String COLUMNNAME_AD_Find_ID = "AD_Find_ID"; @@ -73,6 +73,15 @@ public interface I_AD_Find /** Get Find */ public int getAD_Find_ID(); + /** Column name AD_Find_UU */ + public static final String COLUMNNAME_AD_Find_UU = "AD_Find_UU"; + + /** Set AD_Find_UU */ + public void setAD_Find_UU (String AD_Find_UU); + + /** Get AD_Find_UU */ + public String getAD_Find_UU(); + /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Form.java b/org.adempiere.base/src/org/compiere/model/I_AD_Form.java index df53ebad74..4baf9735df 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Form.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Form.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Form - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Form { @@ -31,7 +31,7 @@ public interface I_AD_Form public static final String Table_Name = "AD_Form"; /** AD_Table_ID=376 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 376; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_AD_Form */ public int getAD_Form_ID(); + /** Column name AD_Form_UU */ + public static final String COLUMNNAME_AD_Form_UU = "AD_Form_UU"; + + /** Set AD_Form_UU */ + public void setAD_Form_UU (String AD_Form_UU); + + /** Get AD_Form_UU */ + public String getAD_Form_UU(); + /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Form_Access.java b/org.adempiere.base/src/org/compiere/model/I_AD_Form_Access.java index beb5e4a23b..1d330d17ff 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Form_Access.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Form_Access.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Form_Access - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Form_Access { @@ -31,7 +31,7 @@ public interface I_AD_Form_Access public static final String Table_Name = "AD_Form_Access"; /** AD_Table_ID=378 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 378; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -49,6 +49,15 @@ public interface I_AD_Form_Access */ public int getAD_Client_ID(); + /** Column name AD_Form_Access_UU */ + public static final String COLUMNNAME_AD_Form_Access_UU = "AD_Form_Access_UU"; + + /** Set AD_Form_Access_UU */ + public void setAD_Form_Access_UU (String AD_Form_Access_UU); + + /** Get AD_Form_Access_UU */ + public String getAD_Form_Access_UU(); + /** Column name AD_Form_ID */ public static final String COLUMNNAME_AD_Form_ID = "AD_Form_ID"; @@ -62,7 +71,7 @@ public interface I_AD_Form_Access */ public int getAD_Form_ID(); - public I_AD_Form getAD_Form() throws RuntimeException; + public org.compiere.model.I_AD_Form getAD_Form() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -90,7 +99,7 @@ public interface I_AD_Form_Access */ public int getAD_Role_ID(); - public I_AD_Role getAD_Role() throws RuntimeException; + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_HouseKeeping.java b/org.adempiere.base/src/org/compiere/model/I_AD_HouseKeeping.java index e1c6b27afa..cede678089 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_HouseKeeping.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_HouseKeeping.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_HouseKeeping - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_HouseKeeping { @@ -31,7 +31,7 @@ public interface I_AD_HouseKeeping public static final String Table_Name = "AD_HouseKeeping"; /** AD_Table_ID=53147 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53147; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -58,6 +58,15 @@ public interface I_AD_HouseKeeping /** Get House Keeping Configuration */ public int getAD_HouseKeeping_ID(); + /** Column name AD_HouseKeeping_UU */ + public static final String COLUMNNAME_AD_HouseKeeping_UU = "AD_HouseKeeping_UU"; + + /** Set AD_HouseKeeping_UU */ + public void setAD_HouseKeeping_UU (String AD_HouseKeeping_UU); + + /** Get AD_HouseKeeping_UU */ + public String getAD_HouseKeeping_UU(); + /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -84,7 +93,7 @@ public interface I_AD_HouseKeeping */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name BackupFolder */ public static final String COLUMNNAME_BackupFolder = "BackupFolder"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Image.java b/org.adempiere.base/src/org/compiere/model/I_AD_Image.java index 6eb271834e..e19c3d2755 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Image.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Image.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Image - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Image { @@ -31,7 +31,7 @@ public interface I_AD_Image public static final String Table_Name = "AD_Image"; /** AD_Table_ID=461 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 461; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,6 +62,15 @@ public interface I_AD_Image */ public int getAD_Image_ID(); + /** Column name AD_Image_UU */ + public static final String COLUMNNAME_AD_Image_UU = "AD_Image_UU"; + + /** Set AD_Image_UU */ + public void setAD_Image_UU (String AD_Image_UU); + + /** Get AD_Image_UU */ + public String getAD_Image_UU(); + /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_ImpFormat.java b/org.adempiere.base/src/org/compiere/model/I_AD_ImpFormat.java index 1c0521cd33..b30476eb04 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_ImpFormat.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_ImpFormat.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_ImpFormat - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_ImpFormat { @@ -31,7 +31,7 @@ public interface I_AD_ImpFormat public static final String Table_Name = "AD_ImpFormat"; /** AD_Table_ID=381 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 381; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -58,6 +58,15 @@ public interface I_AD_ImpFormat /** Get Import Format */ public int getAD_ImpFormat_ID(); + /** Column name AD_ImpFormat_UU */ + public static final String COLUMNNAME_AD_ImpFormat_UU = "AD_ImpFormat_UU"; + + /** Set AD_ImpFormat_UU */ + public void setAD_ImpFormat_UU (String AD_ImpFormat_UU); + + /** Get AD_ImpFormat_UU */ + public String getAD_ImpFormat_UU(); + /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -84,7 +93,7 @@ public interface I_AD_ImpFormat */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_ImpFormat_Row.java b/org.adempiere.base/src/org/compiere/model/I_AD_ImpFormat_Row.java index a35bdd7884..70bc4475b1 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_ImpFormat_Row.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_ImpFormat_Row.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_ImpFormat_Row - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_ImpFormat_Row { @@ -31,7 +31,7 @@ public interface I_AD_ImpFormat_Row public static final String Table_Name = "AD_ImpFormat_Row"; /** AD_Table_ID=382 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 382; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,7 +62,7 @@ public interface I_AD_ImpFormat_Row */ public int getAD_Column_ID(); - public I_AD_Column getAD_Column() throws RuntimeException; + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException; /** Column name AD_ImpFormat_ID */ public static final String COLUMNNAME_AD_ImpFormat_ID = "AD_ImpFormat_ID"; @@ -73,7 +73,7 @@ public interface I_AD_ImpFormat_Row /** Get Import Format */ public int getAD_ImpFormat_ID(); - public I_AD_ImpFormat getAD_ImpFormat() throws RuntimeException; + public org.compiere.model.I_AD_ImpFormat getAD_ImpFormat() throws RuntimeException; /** Column name AD_ImpFormat_Row_ID */ public static final String COLUMNNAME_AD_ImpFormat_Row_ID = "AD_ImpFormat_Row_ID"; @@ -84,6 +84,15 @@ public interface I_AD_ImpFormat_Row /** Get Format Field */ public int getAD_ImpFormat_Row_ID(); + /** Column name AD_ImpFormat_Row_UU */ + public static final String COLUMNNAME_AD_ImpFormat_Row_UU = "AD_ImpFormat_Row_UU"; + + /** Set AD_ImpFormat_Row_UU */ + public void setAD_ImpFormat_Row_UU (String AD_ImpFormat_Row_UU); + + /** Get AD_ImpFormat_Row_UU */ + public String getAD_ImpFormat_Row_UU(); + /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_InfoColumn.java b/org.adempiere.base/src/org/compiere/model/I_AD_InfoColumn.java index 982029fcf3..68347694e4 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_InfoColumn.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_InfoColumn.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_InfoColumn - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_InfoColumn { @@ -31,7 +31,7 @@ public interface I_AD_InfoColumn public static final String Table_Name = "AD_InfoColumn"; /** AD_Table_ID=897 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 897; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,7 +62,7 @@ public interface I_AD_InfoColumn */ public int getAD_Element_ID(); - public I_AD_Element getAD_Element() throws RuntimeException; + public org.compiere.model.I_AD_Element getAD_Element() throws RuntimeException; /** Column name AD_InfoColumn_ID */ public static final String COLUMNNAME_AD_InfoColumn_ID = "AD_InfoColumn_ID"; @@ -77,6 +77,15 @@ public interface I_AD_InfoColumn */ public int getAD_InfoColumn_ID(); + /** Column name AD_InfoColumn_UU */ + public static final String COLUMNNAME_AD_InfoColumn_UU = "AD_InfoColumn_UU"; + + /** Set AD_InfoColumn_UU */ + public void setAD_InfoColumn_UU (String AD_InfoColumn_UU); + + /** Get AD_InfoColumn_UU */ + public String getAD_InfoColumn_UU(); + /** Column name AD_InfoWindow_ID */ public static final String COLUMNNAME_AD_InfoWindow_ID = "AD_InfoWindow_ID"; @@ -90,7 +99,7 @@ public interface I_AD_InfoColumn */ public int getAD_InfoWindow_ID(); - public I_AD_InfoWindow getAD_InfoWindow() throws RuntimeException; + public org.compiere.model.I_AD_InfoWindow getAD_InfoWindow() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -118,7 +127,7 @@ public interface I_AD_InfoColumn */ public int getAD_Reference_ID(); - public I_AD_Reference getAD_Reference() throws RuntimeException; + public org.compiere.model.I_AD_Reference getAD_Reference() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_InfoWindow.java b/org.adempiere.base/src/org/compiere/model/I_AD_InfoWindow.java index 3dae3407c8..198f95fc9c 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_InfoWindow.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_InfoWindow.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_InfoWindow - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_InfoWindow { @@ -31,7 +31,7 @@ public interface I_AD_InfoWindow public static final String Table_Name = "AD_InfoWindow"; /** AD_Table_ID=895 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 895; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,6 +62,15 @@ public interface I_AD_InfoWindow */ public int getAD_InfoWindow_ID(); + /** Column name AD_InfoWindow_UU */ + public static final String COLUMNNAME_AD_InfoWindow_UU = "AD_InfoWindow_UU"; + + /** Set AD_InfoWindow_UU */ + public void setAD_InfoWindow_UU (String AD_InfoWindow_UU); + + /** Get AD_InfoWindow_UU */ + public String getAD_InfoWindow_UU(); + /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -88,7 +97,7 @@ public interface I_AD_InfoWindow */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Issue.java b/org.adempiere.base/src/org/compiere/model/I_AD_Issue.java index 8bf997f2dd..a10f4fc397 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Issue.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Issue.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Issue - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Issue { @@ -31,7 +31,7 @@ public interface I_AD_Issue public static final String Table_Name = "AD_Issue"; /** AD_Table_ID=828 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 828; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -54,7 +54,7 @@ public interface I_AD_Issue */ public int getA_Asset_ID(); - public I_A_Asset getA_Asset() throws RuntimeException; + public org.compiere.model.I_A_Asset getA_Asset() throws RuntimeException; /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; @@ -77,7 +77,7 @@ public interface I_AD_Issue */ public int getAD_Form_ID(); - public I_AD_Form getAD_Form() throws RuntimeException; + public org.compiere.model.I_AD_Form getAD_Form() throws RuntimeException; /** Column name AD_Issue_ID */ public static final String COLUMNNAME_AD_Issue_ID = "AD_Issue_ID"; @@ -92,6 +92,15 @@ public interface I_AD_Issue */ public int getAD_Issue_ID(); + /** Column name AD_Issue_UU */ + public static final String COLUMNNAME_AD_Issue_UU = "AD_Issue_UU"; + + /** Set AD_Issue_UU */ + public void setAD_Issue_UU (String AD_Issue_UU); + + /** Get AD_Issue_UU */ + public String getAD_Issue_UU(); + /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -118,7 +127,7 @@ public interface I_AD_Issue */ public int getAD_Process_ID(); - public I_AD_Process getAD_Process() throws RuntimeException; + public org.compiere.model.I_AD_Process getAD_Process() throws RuntimeException; /** Column name AD_Window_ID */ public static final String COLUMNNAME_AD_Window_ID = "AD_Window_ID"; @@ -133,7 +142,7 @@ public interface I_AD_Issue */ public int getAD_Window_ID(); - public I_AD_Window getAD_Window() throws RuntimeException; + public org.compiere.model.I_AD_Window getAD_Window() throws RuntimeException; /** Column name Comments */ public static final String COLUMNNAME_Comments = "Comments"; @@ -485,7 +494,7 @@ public interface I_AD_Issue */ public int getR_IssueKnown_ID(); - public I_R_IssueKnown getR_IssueKnown() throws RuntimeException; + public org.compiere.model.I_R_IssueKnown getR_IssueKnown() throws RuntimeException; /** Column name R_IssueProject_ID */ public static final String COLUMNNAME_R_IssueProject_ID = "R_IssueProject_ID"; @@ -500,7 +509,7 @@ public interface I_AD_Issue */ public int getR_IssueProject_ID(); - public I_R_IssueProject getR_IssueProject() throws RuntimeException; + public org.compiere.model.I_R_IssueProject getR_IssueProject() throws RuntimeException; /** Column name R_IssueSystem_ID */ public static final String COLUMNNAME_R_IssueSystem_ID = "R_IssueSystem_ID"; @@ -515,7 +524,7 @@ public interface I_AD_Issue */ public int getR_IssueSystem_ID(); - public I_R_IssueSystem getR_IssueSystem() throws RuntimeException; + public org.compiere.model.I_R_IssueSystem getR_IssueSystem() throws RuntimeException; /** Column name R_IssueUser_ID */ public static final String COLUMNNAME_R_IssueUser_ID = "R_IssueUser_ID"; @@ -530,7 +539,7 @@ public interface I_AD_Issue */ public int getR_IssueUser_ID(); - public I_R_IssueUser getR_IssueUser() throws RuntimeException; + public org.compiere.model.I_R_IssueUser getR_IssueUser() throws RuntimeException; /** Column name R_Request_ID */ public static final String COLUMNNAME_R_Request_ID = "R_Request_ID"; @@ -545,7 +554,7 @@ public interface I_AD_Issue */ public int getR_Request_ID(); - public I_R_Request getR_Request() throws RuntimeException; + public org.compiere.model.I_R_Request getR_Request() throws RuntimeException; /** Column name SourceClassName */ public static final String COLUMNNAME_SourceClassName = "SourceClassName"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_LabelPrinter.java b/org.adempiere.base/src/org/compiere/model/I_AD_LabelPrinter.java index 3aa5cbc8e2..d2c37d5198 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_LabelPrinter.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_LabelPrinter.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_LabelPrinter - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_LabelPrinter { @@ -31,7 +31,7 @@ public interface I_AD_LabelPrinter public static final String Table_Name = "AD_LabelPrinter"; /** AD_Table_ID=626 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 626; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,6 +62,15 @@ public interface I_AD_LabelPrinter */ public int getAD_LabelPrinter_ID(); + /** Column name AD_LabelPrinter_UU */ + public static final String COLUMNNAME_AD_LabelPrinter_UU = "AD_LabelPrinter_UU"; + + /** Set AD_LabelPrinter_UU */ + public void setAD_LabelPrinter_UU (String AD_LabelPrinter_UU); + + /** Get AD_LabelPrinter_UU */ + public String getAD_LabelPrinter_UU(); + /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_LabelPrinterFunction.java b/org.adempiere.base/src/org/compiere/model/I_AD_LabelPrinterFunction.java index 1d871c5d80..e53f167bdc 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_LabelPrinterFunction.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_LabelPrinterFunction.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_LabelPrinterFunction - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_LabelPrinterFunction { @@ -31,7 +31,7 @@ public interface I_AD_LabelPrinterFunction public static final String Table_Name = "AD_LabelPrinterFunction"; /** AD_Table_ID=624 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 624; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,6 +62,15 @@ public interface I_AD_LabelPrinterFunction */ public int getAD_LabelPrinterFunction_ID(); + /** Column name AD_LabelPrinterFunction_UU */ + public static final String COLUMNNAME_AD_LabelPrinterFunction_UU = "AD_LabelPrinterFunction_UU"; + + /** Set AD_LabelPrinterFunction_UU */ + public void setAD_LabelPrinterFunction_UU (String AD_LabelPrinterFunction_UU); + + /** Get AD_LabelPrinterFunction_UU */ + public String getAD_LabelPrinterFunction_UU(); + /** Column name AD_LabelPrinter_ID */ public static final String COLUMNNAME_AD_LabelPrinter_ID = "AD_LabelPrinter_ID"; @@ -75,7 +84,7 @@ public interface I_AD_LabelPrinterFunction */ public int getAD_LabelPrinter_ID(); - public I_AD_LabelPrinter getAD_LabelPrinter() throws RuntimeException; + public org.compiere.model.I_AD_LabelPrinter getAD_LabelPrinter() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Language.java b/org.adempiere.base/src/org/compiere/model/I_AD_Language.java index 52c70131b8..e8a81c57af 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Language.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Language.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Language - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Language { diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_LdapAccess.java b/org.adempiere.base/src/org/compiere/model/I_AD_LdapAccess.java index c7c10ab481..4fe86bfddf 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_LdapAccess.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_LdapAccess.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_LdapAccess - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_LdapAccess { @@ -31,7 +31,7 @@ public interface I_AD_LdapAccess public static final String Table_Name = "AD_LdapAccess"; /** AD_Table_ID=904 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 904; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,6 +62,15 @@ public interface I_AD_LdapAccess */ public int getAD_LdapAccess_ID(); + /** Column name AD_LdapAccess_UU */ + public static final String COLUMNNAME_AD_LdapAccess_UU = "AD_LdapAccess_UU"; + + /** Set AD_LdapAccess_UU */ + public void setAD_LdapAccess_UU (String AD_LdapAccess_UU); + + /** Get AD_LdapAccess_UU */ + public String getAD_LdapAccess_UU(); + /** Column name AD_LdapProcessor_ID */ public static final String COLUMNNAME_AD_LdapProcessor_ID = "AD_LdapProcessor_ID"; @@ -75,7 +84,7 @@ public interface I_AD_LdapAccess */ public int getAD_LdapProcessor_ID(); - public I_AD_LdapProcessor getAD_LdapProcessor() throws RuntimeException; + public org.compiere.model.I_AD_LdapProcessor getAD_LdapProcessor() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -103,7 +112,7 @@ public interface I_AD_LdapAccess */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -173,7 +182,7 @@ public interface I_AD_LdapAccess */ public int getR_InterestArea_ID(); - public I_R_InterestArea getR_InterestArea() throws RuntimeException; + public org.compiere.model.I_R_InterestArea getR_InterestArea() throws RuntimeException; /** Column name Summary */ public static final String COLUMNNAME_Summary = "Summary"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_LdapProcessor.java b/org.adempiere.base/src/org/compiere/model/I_AD_LdapProcessor.java index f18c5330a5..e21f1e3ac8 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_LdapProcessor.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_LdapProcessor.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_LdapProcessor - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_LdapProcessor { @@ -31,7 +31,7 @@ public interface I_AD_LdapProcessor public static final String Table_Name = "AD_LdapProcessor"; /** AD_Table_ID=902 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 902; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,6 +62,15 @@ public interface I_AD_LdapProcessor */ public int getAD_LdapProcessor_ID(); + /** Column name AD_LdapProcessor_UU */ + public static final String COLUMNNAME_AD_LdapProcessor_UU = "AD_LdapProcessor_UU"; + + /** Set AD_LdapProcessor_UU */ + public void setAD_LdapProcessor_UU (String AD_LdapProcessor_UU); + + /** Get AD_LdapProcessor_UU */ + public String getAD_LdapProcessor_UU(); + /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -204,7 +213,7 @@ public interface I_AD_LdapProcessor */ public int getSupervisor_ID(); - public I_AD_User getSupervisor() throws RuntimeException; + public org.compiere.model.I_AD_User getSupervisor() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_LdapProcessorLog.java b/org.adempiere.base/src/org/compiere/model/I_AD_LdapProcessorLog.java index 4a723042c0..5ef1a87225 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_LdapProcessorLog.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_LdapProcessorLog.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_LdapProcessorLog - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_LdapProcessorLog { @@ -31,7 +31,7 @@ public interface I_AD_LdapProcessorLog public static final String Table_Name = "AD_LdapProcessorLog"; /** AD_Table_ID=903 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 903; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,7 +62,7 @@ public interface I_AD_LdapProcessorLog */ public int getAD_LdapProcessor_ID(); - public I_AD_LdapProcessor getAD_LdapProcessor() throws RuntimeException; + public org.compiere.model.I_AD_LdapProcessor getAD_LdapProcessor() throws RuntimeException; /** Column name AD_LdapProcessorLog_ID */ public static final String COLUMNNAME_AD_LdapProcessorLog_ID = "AD_LdapProcessorLog_ID"; @@ -77,6 +77,15 @@ public interface I_AD_LdapProcessorLog */ public int getAD_LdapProcessorLog_ID(); + /** Column name AD_LdapProcessorLog_UU */ + public static final String COLUMNNAME_AD_LdapProcessorLog_UU = "AD_LdapProcessorLog_UU"; + + /** Set AD_LdapProcessorLog_UU */ + public void setAD_LdapProcessorLog_UU (String AD_LdapProcessorLog_UU); + + /** Get AD_LdapProcessorLog_UU */ + public String getAD_LdapProcessorLog_UU(); + /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Menu.java b/org.adempiere.base/src/org/compiere/model/I_AD_Menu.java index be4e2c9663..8d7b878515 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Menu.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Menu.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Menu - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Menu { @@ -31,7 +31,7 @@ public interface I_AD_Menu public static final String Table_Name = "AD_Menu"; /** AD_Table_ID=116 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 116; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_AD_Menu */ public int getAD_Form_ID(); - public I_AD_Form getAD_Form() throws RuntimeException; + public org.compiere.model.I_AD_Form getAD_Form() throws RuntimeException; /** Column name AD_Menu_ID */ public static final String COLUMNNAME_AD_Menu_ID = "AD_Menu_ID"; @@ -90,6 +90,15 @@ public interface I_AD_Menu */ public int getAD_Menu_ID(); + /** Column name AD_Menu_UU */ + public static final String COLUMNNAME_AD_Menu_UU = "AD_Menu_UU"; + + /** Set AD_Menu_UU */ + public void setAD_Menu_UU (String AD_Menu_UU); + + /** Get AD_Menu_UU */ + public String getAD_Menu_UU(); + /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -116,7 +125,7 @@ public interface I_AD_Menu */ public int getAD_Process_ID(); - public I_AD_Process getAD_Process() throws RuntimeException; + public org.compiere.model.I_AD_Process getAD_Process() throws RuntimeException; /** Column name AD_Task_ID */ public static final String COLUMNNAME_AD_Task_ID = "AD_Task_ID"; @@ -131,7 +140,7 @@ public interface I_AD_Menu */ public int getAD_Task_ID(); - public I_AD_Task getAD_Task() throws RuntimeException; + public org.compiere.model.I_AD_Task getAD_Task() throws RuntimeException; /** Column name AD_Window_ID */ public static final String COLUMNNAME_AD_Window_ID = "AD_Window_ID"; @@ -146,7 +155,7 @@ public interface I_AD_Menu */ public int getAD_Window_ID(); - public I_AD_Window getAD_Window() throws RuntimeException; + public org.compiere.model.I_AD_Window getAD_Window() throws RuntimeException; /** Column name AD_Workbench_ID */ public static final String COLUMNNAME_AD_Workbench_ID = "AD_Workbench_ID"; @@ -161,7 +170,7 @@ public interface I_AD_Menu */ public int getAD_Workbench_ID(); - public I_AD_Workbench getAD_Workbench() throws RuntimeException; + public org.compiere.model.I_AD_Workbench getAD_Workbench() throws RuntimeException; /** Column name AD_Workflow_ID */ public static final String COLUMNNAME_AD_Workflow_ID = "AD_Workflow_ID"; @@ -176,7 +185,7 @@ public interface I_AD_Menu */ public int getAD_Workflow_ID(); - public I_AD_Workflow getAD_Workflow() throws RuntimeException; + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Message.java b/org.adempiere.base/src/org/compiere/model/I_AD_Message.java index 991a5aff33..320234c224 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Message.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Message.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Message - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Message { @@ -31,7 +31,7 @@ public interface I_AD_Message public static final String Table_Name = "AD_Message"; /** AD_Table_ID=109 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 109; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,6 +62,15 @@ public interface I_AD_Message */ public int getAD_Message_ID(); + /** Column name AD_Message_UU */ + public static final String COLUMNNAME_AD_Message_UU = "AD_Message_UU"; + + /** Set AD_Message_UU */ + public void setAD_Message_UU (String AD_Message_UU); + + /** Get AD_Message_UU */ + public String getAD_Message_UU(); + /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_MigrationScript.java b/org.adempiere.base/src/org/compiere/model/I_AD_MigrationScript.java index 249c59d4e0..ea16a8058f 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_MigrationScript.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_MigrationScript.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_MigrationScript - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_MigrationScript { @@ -31,7 +31,7 @@ public interface I_AD_MigrationScript public static final String Table_Name = "AD_MigrationScript"; /** AD_Table_ID=53064 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53064; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,6 +62,15 @@ public interface I_AD_MigrationScript */ public int getAD_MigrationScript_ID(); + /** Column name AD_MigrationScript_UU */ + public static final String COLUMNNAME_AD_MigrationScript_UU = "AD_MigrationScript_UU"; + + /** Set AD_MigrationScript_UU */ + public void setAD_MigrationScript_UU (String AD_MigrationScript_UU); + + /** Get AD_MigrationScript_UU */ + public String getAD_MigrationScript_UU(); + /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -255,12 +264,12 @@ public interface I_AD_MigrationScript public static final String COLUMNNAME_URL = "URL"; /** Set URL. - * Full URL address - e.g. http://www.adempiere.org + * Full URL address - e.g. http://www.idempiere.org */ public void setURL (String URL); /** Get URL. - * Full URL address - e.g. http://www.adempiere.org + * Full URL address - e.g. http://www.idempiere.org */ public String getURL(); } diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_ModelValidator.java b/org.adempiere.base/src/org/compiere/model/I_AD_ModelValidator.java index efc7e9d2eb..c8a183cded 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_ModelValidator.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_ModelValidator.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_ModelValidator - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_ModelValidator { @@ -31,7 +31,7 @@ public interface I_AD_ModelValidator public static final String Table_Name = "AD_ModelValidator"; /** AD_Table_ID=53014 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53014; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -58,6 +58,15 @@ public interface I_AD_ModelValidator /** Get Model Validator */ public int getAD_ModelValidator_ID(); + /** Column name AD_ModelValidator_UU */ + public static final String COLUMNNAME_AD_ModelValidator_UU = "AD_ModelValidator_UU"; + + /** Set AD_ModelValidator_UU */ + public void setAD_ModelValidator_UU (String AD_ModelValidator_UU); + + /** Get AD_ModelValidator_UU */ + public String getAD_ModelValidator_UU(); + /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Modification.java b/org.adempiere.base/src/org/compiere/model/I_AD_Modification.java index 950bd4fc32..c2b517b59c 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Modification.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Modification.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Modification - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Modification { @@ -31,7 +31,7 @@ public interface I_AD_Modification public static final String Table_Name = "AD_Modification"; /** AD_Table_ID=883 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 883; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,6 +62,15 @@ public interface I_AD_Modification */ public int getAD_Modification_ID(); + /** Column name AD_Modification_UU */ + public static final String COLUMNNAME_AD_Modification_UU = "AD_Modification_UU"; + + /** Set AD_Modification_UU */ + public void setAD_Modification_UU (String AD_Modification_UU); + + /** Get AD_Modification_UU */ + public String getAD_Modification_UU(); + /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Note.java b/org.adempiere.base/src/org/compiere/model/I_AD_Note.java index df9976b050..7ef579e1c1 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Note.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Note.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Note - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Note { @@ -31,7 +31,7 @@ public interface I_AD_Note public static final String Table_Name = "AD_Note"; /** AD_Table_ID=389 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 389; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,7 +62,7 @@ public interface I_AD_Note */ public int getAD_Message_ID(); - public I_AD_Message getAD_Message() throws RuntimeException; + public org.compiere.model.I_AD_Message getAD_Message() throws RuntimeException; /** Column name AD_Note_ID */ public static final String COLUMNNAME_AD_Note_ID = "AD_Note_ID"; @@ -77,6 +77,15 @@ public interface I_AD_Note */ public int getAD_Note_ID(); + /** Column name AD_Note_UU */ + public static final String COLUMNNAME_AD_Note_UU = "AD_Note_UU"; + + /** Set AD_Note_UU */ + public void setAD_Note_UU (String AD_Note_UU); + + /** Get AD_Note_UU */ + public String getAD_Note_UU(); + /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -103,7 +112,7 @@ public interface I_AD_Note */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name AD_User_ID */ public static final String COLUMNNAME_AD_User_ID = "AD_User_ID"; @@ -118,7 +127,7 @@ public interface I_AD_Note */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name AD_WF_Activity_ID */ public static final String COLUMNNAME_AD_WF_Activity_ID = "AD_WF_Activity_ID"; @@ -133,7 +142,7 @@ public interface I_AD_Note */ public int getAD_WF_Activity_ID(); - public I_AD_WF_Activity getAD_WF_Activity() throws RuntimeException; + public org.compiere.model.I_AD_WF_Activity getAD_WF_Activity() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Org.java b/org.adempiere.base/src/org/compiere/model/I_AD_Org.java index 002940f30c..6adf47a5e5 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Org.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Org.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Org - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Org { @@ -31,7 +31,7 @@ public interface I_AD_Org public static final String Table_Name = "AD_Org"; /** AD_Table_ID=155 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 155; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,6 +62,15 @@ public interface I_AD_Org */ public int getAD_Org_ID(); + /** Column name AD_Org_UU */ + public static final String COLUMNNAME_AD_Org_UU = "AD_Org_UU"; + + /** Set AD_Org_UU */ + public void setAD_Org_UU (String AD_Org_UU); + + /** Get AD_Org_UU */ + public String getAD_Org_UU(); + /** Column name AD_ReplicationStrategy_ID */ public static final String COLUMNNAME_AD_ReplicationStrategy_ID = "AD_ReplicationStrategy_ID"; @@ -75,7 +84,7 @@ public interface I_AD_Org */ public int getAD_ReplicationStrategy_ID(); - public I_AD_ReplicationStrategy getAD_ReplicationStrategy() throws RuntimeException; + public org.compiere.model.I_AD_ReplicationStrategy getAD_ReplicationStrategy() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_OrgInfo.java b/org.adempiere.base/src/org/compiere/model/I_AD_OrgInfo.java index 2160b3249d..e88d3f28cf 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_OrgInfo.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_OrgInfo.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_OrgInfo - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_OrgInfo { @@ -31,7 +31,7 @@ public interface I_AD_OrgInfo public static final String Table_Name = "AD_OrgInfo"; /** AD_Table_ID=228 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 228; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,6 +62,15 @@ public interface I_AD_OrgInfo */ public int getAD_Org_ID(); + /** Column name AD_OrgInfo_UU */ + public static final String COLUMNNAME_AD_OrgInfo_UU = "AD_OrgInfo_UU"; + + /** Set AD_OrgInfo_UU */ + public void setAD_OrgInfo_UU (String AD_OrgInfo_UU); + + /** Get AD_OrgInfo_UU */ + public String getAD_OrgInfo_UU(); + /** Column name AD_OrgType_ID */ public static final String COLUMNNAME_AD_OrgType_ID = "AD_OrgType_ID"; @@ -75,7 +84,7 @@ public interface I_AD_OrgInfo */ public int getAD_OrgType_ID(); - public I_AD_OrgType getAD_OrgType() throws RuntimeException; + public org.compiere.model.I_AD_OrgType getAD_OrgType() throws RuntimeException; /** Column name C_Calendar_ID */ public static final String COLUMNNAME_C_Calendar_ID = "C_Calendar_ID"; @@ -90,7 +99,7 @@ public interface I_AD_OrgInfo */ public int getC_Calendar_ID(); - public I_C_Calendar getC_Calendar() throws RuntimeException; + public org.compiere.model.I_C_Calendar getC_Calendar() throws RuntimeException; /** Column name C_Location_ID */ public static final String COLUMNNAME_C_Location_ID = "C_Location_ID"; @@ -136,7 +145,7 @@ public interface I_AD_OrgInfo */ public int getDropShip_Warehouse_ID(); - public I_M_Warehouse getDropShip_Warehouse() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getDropShip_Warehouse() throws RuntimeException; /** Column name DUNS */ public static final String COLUMNNAME_DUNS = "DUNS"; @@ -212,7 +221,7 @@ public interface I_AD_OrgInfo */ public int getM_Warehouse_ID(); - public I_M_Warehouse getM_Warehouse() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException; /** Column name Parent_Org_ID */ public static final String COLUMNNAME_Parent_Org_ID = "Parent_Org_ID"; @@ -279,7 +288,7 @@ public interface I_AD_OrgInfo */ public int getSupervisor_ID(); - public I_AD_User getSupervisor() throws RuntimeException; + public org.compiere.model.I_AD_User getSupervisor() throws RuntimeException; /** Column name TaxID */ public static final String COLUMNNAME_TaxID = "TaxID"; @@ -307,7 +316,7 @@ public interface I_AD_OrgInfo */ public int getTransferBank_ID(); - public I_C_Bank getTransferBank() throws RuntimeException; + public org.compiere.model.I_C_Bank getTransferBank() throws RuntimeException; /** Column name TransferCashBook_ID */ public static final String COLUMNNAME_TransferCashBook_ID = "TransferCashBook_ID"; @@ -318,7 +327,7 @@ public interface I_AD_OrgInfo /** Get CashBook for transfers */ public int getTransferCashBook_ID(); - public I_C_CashBook getTransferCashBook() throws RuntimeException; + public org.compiere.model.I_C_CashBook getTransferCashBook() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_OrgType.java b/org.adempiere.base/src/org/compiere/model/I_AD_OrgType.java index 948bb42025..45c35d589d 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_OrgType.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_OrgType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_OrgType - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_OrgType { @@ -31,7 +31,7 @@ public interface I_AD_OrgType public static final String Table_Name = "AD_OrgType"; /** AD_Table_ID=689 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 689; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_AD_OrgType */ public int getAD_OrgType_ID(); + /** Column name AD_OrgType_UU */ + public static final String COLUMNNAME_AD_OrgType_UU = "AD_OrgType_UU"; + + /** Set AD_OrgType_UU */ + public void setAD_OrgType_UU (String AD_OrgType_UU); + + /** Get AD_OrgType_UU */ + public String getAD_OrgType_UU(); + /** Column name AD_PrintColor_ID */ public static final String COLUMNNAME_AD_PrintColor_ID = "AD_PrintColor_ID"; @@ -88,7 +97,7 @@ public interface I_AD_OrgType */ public int getAD_PrintColor_ID(); - public I_AD_PrintColor getAD_PrintColor() throws RuntimeException; + public org.compiere.model.I_AD_PrintColor getAD_PrintColor() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_PInstance.java b/org.adempiere.base/src/org/compiere/model/I_AD_PInstance.java index ace2d6d9ad..dfec744ed4 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_PInstance.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_PInstance.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_PInstance - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_PInstance { @@ -31,7 +31,7 @@ public interface I_AD_PInstance public static final String Table_Name = "AD_PInstance"; /** AD_Table_ID=282 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 282; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_AD_PInstance */ public int getAD_PInstance_ID(); + /** Column name AD_PInstance_UU */ + public static final String COLUMNNAME_AD_PInstance_UU = "AD_PInstance_UU"; + + /** Set AD_PInstance_UU */ + public void setAD_PInstance_UU (String AD_PInstance_UU); + + /** Get AD_PInstance_UU */ + public String getAD_PInstance_UU(); + /** Column name AD_Process_ID */ public static final String COLUMNNAME_AD_Process_ID = "AD_Process_ID"; @@ -88,7 +97,7 @@ public interface I_AD_PInstance */ public int getAD_Process_ID(); - public I_AD_Process getAD_Process() throws RuntimeException; + public org.compiere.model.I_AD_Process getAD_Process() throws RuntimeException; /** Column name AD_User_ID */ public static final String COLUMNNAME_AD_User_ID = "AD_User_ID"; @@ -103,7 +112,7 @@ public interface I_AD_PInstance */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_PInstance_Log.java b/org.adempiere.base/src/org/compiere/model/I_AD_PInstance_Log.java index a6e4f4e39d..4ab276a856 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_PInstance_Log.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_PInstance_Log.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_PInstance_Log - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_PInstance_Log { @@ -31,7 +31,7 @@ public interface I_AD_PInstance_Log public static final String Table_Name = "AD_PInstance_Log"; /** AD_Table_ID=578 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 578; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -54,7 +54,31 @@ public interface I_AD_PInstance_Log */ public int getAD_PInstance_ID(); - public I_AD_PInstance getAD_PInstance() throws RuntimeException; + public org.compiere.model.I_AD_PInstance getAD_PInstance() throws RuntimeException; + + /** Column name AD_PInstance_Log_UU */ + public static final String COLUMNNAME_AD_PInstance_Log_UU = "AD_PInstance_Log_UU"; + + /** Set AD_PInstance_Log_UU */ + public void setAD_PInstance_Log_UU (String AD_PInstance_Log_UU); + + /** Get AD_PInstance_Log_UU */ + public String getAD_PInstance_Log_UU(); + + /** Column name AD_Table_ID */ + public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID"; + + /** Set Table. + * Database Table information + */ + public void setAD_Table_ID (int AD_Table_ID); + + /** Get Table. + * Database Table information + */ + public int getAD_Table_ID(); + + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name Log_ID */ public static final String COLUMNNAME_Log_ID = "Log_ID"; @@ -108,4 +132,17 @@ public interface I_AD_PInstance_Log * Process Parameter */ public BigDecimal getP_Number(); + + /** Column name Record_ID */ + public static final String COLUMNNAME_Record_ID = "Record_ID"; + + /** Set Record ID. + * Direct internal record ID + */ + public void setRecord_ID (int Record_ID); + + /** Get Record ID. + * Direct internal record ID + */ + public int getRecord_ID(); } diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_PInstance_Para.java b/org.adempiere.base/src/org/compiere/model/I_AD_PInstance_Para.java index 0d3fa4d184..685360c9a9 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_PInstance_Para.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_PInstance_Para.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_PInstance_Para - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_PInstance_Para { @@ -31,7 +31,7 @@ public interface I_AD_PInstance_Para public static final String Table_Name = "AD_PInstance_Para"; /** AD_Table_ID=283 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 283; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_AD_PInstance_Para */ public int getAD_PInstance_ID(); - public I_AD_PInstance getAD_PInstance() throws RuntimeException; + public org.compiere.model.I_AD_PInstance getAD_PInstance() throws RuntimeException; + + /** Column name AD_PInstance_Para_UU */ + public static final String COLUMNNAME_AD_PInstance_Para_UU = "AD_PInstance_Para_UU"; + + /** Set AD_PInstance_Para_UU */ + public void setAD_PInstance_Para_UU (String AD_PInstance_Para_UU); + + /** Get AD_PInstance_Para_UU */ + public String getAD_PInstance_Para_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Package_Exp.java b/org.adempiere.base/src/org/compiere/model/I_AD_Package_Exp.java index f7a08a7855..e2074c8fa7 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Package_Exp.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Package_Exp.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Package_Exp - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Package_Exp { @@ -65,19 +65,19 @@ public interface I_AD_Package_Exp /** Column name AD_Package_Exp_ID */ public static final String COLUMNNAME_AD_Package_Exp_ID = "AD_Package_Exp_ID"; - /** Set Pack Out */ + /** Set Package Exp. */ public void setAD_Package_Exp_ID (int AD_Package_Exp_ID); - /** Get Pack Out */ + /** Get Package Exp. */ public int getAD_Package_Exp_ID(); /** Column name AD_Package_Exp_UU */ public static final String COLUMNNAME_AD_Package_Exp_UU = "AD_Package_Exp_UU"; - /** Set Pack Out UUID */ + /** Set AD_Package_Exp_UU */ public void setAD_Package_Exp_UU (String AD_Package_Exp_UU); - /** Get Pack Out UUID */ + /** Get AD_Package_Exp_UU */ public String getAD_Package_Exp_UU(); /** Column name AD_Package_Type */ diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Package_Exp_Detail.java b/org.adempiere.base/src/org/compiere/model/I_AD_Package_Exp_Detail.java index 2722710b97..3a321d2472 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Package_Exp_Detail.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Package_Exp_Detail.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Package_Exp_Detail - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Package_Exp_Detail { diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Package_Imp.java b/org.adempiere.base/src/org/compiere/model/I_AD_Package_Imp.java index 57937e48f2..b367fe118b 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Package_Imp.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Package_Imp.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Package_Imp - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Package_Imp { diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Package_Imp_Backup.java b/org.adempiere.base/src/org/compiere/model/I_AD_Package_Imp_Backup.java index eaea89db02..1299e29ca3 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Package_Imp_Backup.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Package_Imp_Backup.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Package_Imp_Backup - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Package_Imp_Backup { diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Package_Imp_Detail.java b/org.adempiere.base/src/org/compiere/model/I_AD_Package_Imp_Detail.java index b4f7a7e75a..dbcf1e8a69 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Package_Imp_Detail.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Package_Imp_Detail.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Package_Imp_Detail - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Package_Imp_Detail { diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Package_Imp_Inst.java b/org.adempiere.base/src/org/compiere/model/I_AD_Package_Imp_Inst.java index 0250126ca3..13006ad3d4 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Package_Imp_Inst.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Package_Imp_Inst.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Package_Imp_Inst - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Package_Imp_Inst { diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Package_Imp_Proc.java b/org.adempiere.base/src/org/compiere/model/I_AD_Package_Imp_Proc.java index 77dd525774..72d4807104 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Package_Imp_Proc.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Package_Imp_Proc.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Package_Imp_Proc - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Package_Imp_Proc { diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_PasswordRule.java b/org.adempiere.base/src/org/compiere/model/I_AD_PasswordRule.java index f3a6f13009..081bec7185 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_PasswordRule.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_PasswordRule.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_PasswordRule - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_PasswordRule { @@ -195,10 +195,14 @@ public interface I_AD_PasswordRule /** Column name IsWhitespace */ public static final String COLUMNNAME_IsWhitespace = "IsWhitespace"; - /** Set Whitespace */ + /** Set Whitespace. + * Whitespace validation + */ public void setIsWhitespace (boolean IsWhitespace); - /** Get Whitespace */ + /** Get Whitespace. + * Whitespace validation + */ public boolean isWhitespace(); /** Column name LowercaseCharacter */ diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Preference.java b/org.adempiere.base/src/org/compiere/model/I_AD_Preference.java index 1b76f63dad..d38b553f07 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Preference.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Preference.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Preference - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Preference { @@ -31,7 +31,7 @@ public interface I_AD_Preference public static final String Table_Name = "AD_Preference"; /** AD_Table_ID=195 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 195; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_AD_Preference */ public int getAD_Preference_ID(); + /** Column name AD_Preference_UU */ + public static final String COLUMNNAME_AD_Preference_UU = "AD_Preference_UU"; + + /** Set AD_Preference_UU */ + public void setAD_Preference_UU (String AD_Preference_UU); + + /** Get AD_Preference_UU */ + public String getAD_Preference_UU(); + /** Column name AD_User_ID */ public static final String COLUMNNAME_AD_User_ID = "AD_User_ID"; @@ -88,7 +97,7 @@ public interface I_AD_Preference */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name AD_Window_ID */ public static final String COLUMNNAME_AD_Window_ID = "AD_Window_ID"; @@ -103,7 +112,7 @@ public interface I_AD_Preference */ public int getAD_Window_ID(); - public I_AD_Window getAD_Window() throws RuntimeException; + public org.compiere.model.I_AD_Window getAD_Window() throws RuntimeException; /** Column name Attribute */ public static final String COLUMNNAME_Attribute = "Attribute"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_PrintColor.java b/org.adempiere.base/src/org/compiere/model/I_AD_PrintColor.java index 992a129e92..4cf5d91f37 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_PrintColor.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_PrintColor.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_PrintColor - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_PrintColor { @@ -31,7 +31,7 @@ public interface I_AD_PrintColor public static final String Table_Name = "AD_PrintColor"; /** AD_Table_ID=490 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 490; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_AD_PrintColor */ public int getAD_PrintColor_ID(); + /** Column name AD_PrintColor_UU */ + public static final String COLUMNNAME_AD_PrintColor_UU = "AD_PrintColor_UU"; + + /** Set AD_PrintColor_UU */ + public void setAD_PrintColor_UU (String AD_PrintColor_UU); + + /** Get AD_PrintColor_UU */ + public String getAD_PrintColor_UU(); + /** Column name Code */ public static final String COLUMNNAME_Code = "Code"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_PrintFont.java b/org.adempiere.base/src/org/compiere/model/I_AD_PrintFont.java index ea8df72cd2..9d7bb48982 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_PrintFont.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_PrintFont.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_PrintFont - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_PrintFont { @@ -31,7 +31,7 @@ public interface I_AD_PrintFont public static final String Table_Name = "AD_PrintFont"; /** AD_Table_ID=491 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 491; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_AD_PrintFont */ public int getAD_PrintFont_ID(); + /** Column name AD_PrintFont_UU */ + public static final String COLUMNNAME_AD_PrintFont_UU = "AD_PrintFont_UU"; + + /** Set AD_PrintFont_UU */ + public void setAD_PrintFont_UU (String AD_PrintFont_UU); + + /** Get AD_PrintFont_UU */ + public String getAD_PrintFont_UU(); + /** Column name Code */ public static final String COLUMNNAME_Code = "Code"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_PrintForm.java b/org.adempiere.base/src/org/compiere/model/I_AD_PrintForm.java index 67dcd64645..f1a30e0893 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_PrintForm.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_PrintForm.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_PrintForm - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_PrintForm { @@ -31,7 +31,7 @@ public interface I_AD_PrintForm public static final String Table_Name = "AD_PrintForm"; /** AD_Table_ID=454 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 454; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_AD_PrintForm */ public int getAD_PrintForm_ID(); + /** Column name AD_PrintForm_UU */ + public static final String COLUMNNAME_AD_PrintForm_UU = "AD_PrintForm_UU"; + + /** Set AD_PrintForm_UU */ + public void setAD_PrintForm_UU (String AD_PrintForm_UU); + + /** Get AD_PrintForm_UU */ + public String getAD_PrintForm_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -117,7 +126,7 @@ public interface I_AD_PrintForm */ public int getDistrib_Order_MailText_ID(); - public I_R_MailText getDistrib_Order_MailText() throws RuntimeException; + public org.compiere.model.I_R_MailText getDistrib_Order_MailText() throws RuntimeException; /** Column name Distrib_Order_PrintFormat_ID */ public static final String COLUMNNAME_Distrib_Order_PrintFormat_ID = "Distrib_Order_PrintFormat_ID"; @@ -132,7 +141,7 @@ public interface I_AD_PrintForm */ public int getDistrib_Order_PrintFormat_ID(); - public I_AD_PrintFormat getDistrib_Order_PrintFormat() throws RuntimeException; + public org.compiere.model.I_AD_PrintFormat getDistrib_Order_PrintFormat() throws RuntimeException; /** Column name Invoice_MailText_ID */ public static final String COLUMNNAME_Invoice_MailText_ID = "Invoice_MailText_ID"; @@ -147,7 +156,7 @@ public interface I_AD_PrintForm */ public int getInvoice_MailText_ID(); - public I_R_MailText getInvoice_MailText() throws RuntimeException; + public org.compiere.model.I_R_MailText getInvoice_MailText() throws RuntimeException; /** Column name Invoice_PrintFormat_ID */ public static final String COLUMNNAME_Invoice_PrintFormat_ID = "Invoice_PrintFormat_ID"; @@ -162,7 +171,7 @@ public interface I_AD_PrintForm */ public int getInvoice_PrintFormat_ID(); - public I_AD_PrintFormat getInvoice_PrintFormat() throws RuntimeException; + public org.compiere.model.I_AD_PrintFormat getInvoice_PrintFormat() throws RuntimeException; /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; @@ -190,7 +199,7 @@ public interface I_AD_PrintForm */ public int getManuf_Order_MailText_ID(); - public I_R_MailText getManuf_Order_MailText() throws RuntimeException; + public org.compiere.model.I_R_MailText getManuf_Order_MailText() throws RuntimeException; /** Column name Manuf_Order_PrintFormat_ID */ public static final String COLUMNNAME_Manuf_Order_PrintFormat_ID = "Manuf_Order_PrintFormat_ID"; @@ -205,7 +214,7 @@ public interface I_AD_PrintForm */ public int getManuf_Order_PrintFormat_ID(); - public I_AD_PrintFormat getManuf_Order_PrintFormat() throws RuntimeException; + public org.compiere.model.I_AD_PrintFormat getManuf_Order_PrintFormat() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; @@ -233,7 +242,7 @@ public interface I_AD_PrintForm */ public int getOrder_MailText_ID(); - public I_R_MailText getOrder_MailText() throws RuntimeException; + public org.compiere.model.I_R_MailText getOrder_MailText() throws RuntimeException; /** Column name Order_PrintFormat_ID */ public static final String COLUMNNAME_Order_PrintFormat_ID = "Order_PrintFormat_ID"; @@ -248,7 +257,7 @@ public interface I_AD_PrintForm */ public int getOrder_PrintFormat_ID(); - public I_AD_PrintFormat getOrder_PrintFormat() throws RuntimeException; + public org.compiere.model.I_AD_PrintFormat getOrder_PrintFormat() throws RuntimeException; /** Column name Project_MailText_ID */ public static final String COLUMNNAME_Project_MailText_ID = "Project_MailText_ID"; @@ -263,7 +272,7 @@ public interface I_AD_PrintForm */ public int getProject_MailText_ID(); - public I_R_MailText getProject_MailText() throws RuntimeException; + public org.compiere.model.I_R_MailText getProject_MailText() throws RuntimeException; /** Column name Project_PrintFormat_ID */ public static final String COLUMNNAME_Project_PrintFormat_ID = "Project_PrintFormat_ID"; @@ -278,7 +287,7 @@ public interface I_AD_PrintForm */ public int getProject_PrintFormat_ID(); - public I_AD_PrintFormat getProject_PrintFormat() throws RuntimeException; + public org.compiere.model.I_AD_PrintFormat getProject_PrintFormat() throws RuntimeException; /** Column name Remittance_MailText_ID */ public static final String COLUMNNAME_Remittance_MailText_ID = "Remittance_MailText_ID"; @@ -293,7 +302,7 @@ public interface I_AD_PrintForm */ public int getRemittance_MailText_ID(); - public I_R_MailText getRemittance_MailText() throws RuntimeException; + public org.compiere.model.I_R_MailText getRemittance_MailText() throws RuntimeException; /** Column name Remittance_PrintFormat_ID */ public static final String COLUMNNAME_Remittance_PrintFormat_ID = "Remittance_PrintFormat_ID"; @@ -308,7 +317,7 @@ public interface I_AD_PrintForm */ public int getRemittance_PrintFormat_ID(); - public I_AD_PrintFormat getRemittance_PrintFormat() throws RuntimeException; + public org.compiere.model.I_AD_PrintFormat getRemittance_PrintFormat() throws RuntimeException; /** Column name Shipment_MailText_ID */ public static final String COLUMNNAME_Shipment_MailText_ID = "Shipment_MailText_ID"; @@ -323,7 +332,7 @@ public interface I_AD_PrintForm */ public int getShipment_MailText_ID(); - public I_R_MailText getShipment_MailText() throws RuntimeException; + public org.compiere.model.I_R_MailText getShipment_MailText() throws RuntimeException; /** Column name Shipment_PrintFormat_ID */ public static final String COLUMNNAME_Shipment_PrintFormat_ID = "Shipment_PrintFormat_ID"; @@ -338,7 +347,7 @@ public interface I_AD_PrintForm */ public int getShipment_PrintFormat_ID(); - public I_AD_PrintFormat getShipment_PrintFormat() throws RuntimeException; + public org.compiere.model.I_AD_PrintFormat getShipment_PrintFormat() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_PrintFormat.java b/org.adempiere.base/src/org/compiere/model/I_AD_PrintFormat.java index e67d4b8e3e..6424884008 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_PrintFormat.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_PrintFormat.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_PrintFormat - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_PrintFormat { @@ -31,7 +31,7 @@ public interface I_AD_PrintFormat public static final String Table_Name = "AD_PrintFormat"; /** AD_Table_ID=493 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 493; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_AD_PrintFormat */ public int getAD_PrintColor_ID(); - public I_AD_PrintColor getAD_PrintColor() throws RuntimeException; + public org.compiere.model.I_AD_PrintColor getAD_PrintColor() throws RuntimeException; /** Column name AD_PrintFont_ID */ public static final String COLUMNNAME_AD_PrintFont_ID = "AD_PrintFont_ID"; @@ -90,7 +90,7 @@ public interface I_AD_PrintFormat */ public int getAD_PrintFont_ID(); - public I_AD_PrintFont getAD_PrintFont() throws RuntimeException; + public org.compiere.model.I_AD_PrintFont getAD_PrintFont() throws RuntimeException; /** Column name AD_PrintFormat_ID */ public static final String COLUMNNAME_AD_PrintFormat_ID = "AD_PrintFormat_ID"; @@ -105,6 +105,15 @@ public interface I_AD_PrintFormat */ public int getAD_PrintFormat_ID(); + /** Column name AD_PrintFormat_UU */ + public static final String COLUMNNAME_AD_PrintFormat_UU = "AD_PrintFormat_UU"; + + /** Set AD_PrintFormat_UU */ + public void setAD_PrintFormat_UU (String AD_PrintFormat_UU); + + /** Get AD_PrintFormat_UU */ + public String getAD_PrintFormat_UU(); + /** Column name AD_PrintPaper_ID */ public static final String COLUMNNAME_AD_PrintPaper_ID = "AD_PrintPaper_ID"; @@ -118,7 +127,7 @@ public interface I_AD_PrintFormat */ public int getAD_PrintPaper_ID(); - public I_AD_PrintPaper getAD_PrintPaper() throws RuntimeException; + public org.compiere.model.I_AD_PrintPaper getAD_PrintPaper() throws RuntimeException; /** Column name AD_PrintTableFormat_ID */ public static final String COLUMNNAME_AD_PrintTableFormat_ID = "AD_PrintTableFormat_ID"; @@ -133,7 +142,7 @@ public interface I_AD_PrintFormat */ public int getAD_PrintTableFormat_ID(); - public I_AD_PrintTableFormat getAD_PrintTableFormat() throws RuntimeException; + public org.compiere.model.I_AD_PrintTableFormat getAD_PrintTableFormat() throws RuntimeException; /** Column name AD_ReportView_ID */ public static final String COLUMNNAME_AD_ReportView_ID = "AD_ReportView_ID"; @@ -148,7 +157,7 @@ public interface I_AD_PrintFormat */ public int getAD_ReportView_ID(); - public I_AD_ReportView getAD_ReportView() throws RuntimeException; + public org.compiere.model.I_AD_ReportView getAD_ReportView() throws RuntimeException; /** Column name AD_Table_ID */ public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID"; @@ -163,7 +172,7 @@ public interface I_AD_PrintFormat */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name Args */ public static final String COLUMNNAME_Args = "Args"; @@ -329,7 +338,7 @@ public interface I_AD_PrintFormat */ public int getJasperProcess_ID(); - public I_AD_Process getJasperProcess() throws RuntimeException; + public org.compiere.model.I_AD_Process getJasperProcess() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_PrintFormatItem.java b/org.adempiere.base/src/org/compiere/model/I_AD_PrintFormatItem.java index d89c0fe692..c1e8c4d828 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_PrintFormatItem.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_PrintFormatItem.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_PrintFormatItem - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_PrintFormatItem { @@ -31,7 +31,7 @@ public interface I_AD_PrintFormatItem public static final String Table_Name = "AD_PrintFormatItem"; /** AD_Table_ID=489 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 489; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,7 +62,7 @@ public interface I_AD_PrintFormatItem */ public int getAD_Column_ID(); - public I_AD_Column getAD_Column() throws RuntimeException; + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -90,7 +90,7 @@ public interface I_AD_PrintFormatItem */ public int getAD_PrintColor_ID(); - public I_AD_PrintColor getAD_PrintColor() throws RuntimeException; + public org.compiere.model.I_AD_PrintColor getAD_PrintColor() throws RuntimeException; /** Column name AD_PrintFont_ID */ public static final String COLUMNNAME_AD_PrintFont_ID = "AD_PrintFont_ID"; @@ -105,7 +105,7 @@ public interface I_AD_PrintFormatItem */ public int getAD_PrintFont_ID(); - public I_AD_PrintFont getAD_PrintFont() throws RuntimeException; + public org.compiere.model.I_AD_PrintFont getAD_PrintFont() throws RuntimeException; /** Column name AD_PrintFormatChild_ID */ public static final String COLUMNNAME_AD_PrintFormatChild_ID = "AD_PrintFormatChild_ID"; @@ -120,7 +120,7 @@ public interface I_AD_PrintFormatItem */ public int getAD_PrintFormatChild_ID(); - public I_AD_PrintFormat getAD_PrintFormatChild() throws RuntimeException; + public org.compiere.model.I_AD_PrintFormat getAD_PrintFormatChild() throws RuntimeException; /** Column name AD_PrintFormat_ID */ public static final String COLUMNNAME_AD_PrintFormat_ID = "AD_PrintFormat_ID"; @@ -135,7 +135,7 @@ public interface I_AD_PrintFormatItem */ public int getAD_PrintFormat_ID(); - public I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException; + public org.compiere.model.I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException; /** Column name AD_PrintFormatItem_ID */ public static final String COLUMNNAME_AD_PrintFormatItem_ID = "AD_PrintFormatItem_ID"; @@ -150,6 +150,15 @@ public interface I_AD_PrintFormatItem */ public int getAD_PrintFormatItem_ID(); + /** Column name AD_PrintFormatItem_UU */ + public static final String COLUMNNAME_AD_PrintFormatItem_UU = "AD_PrintFormatItem_UU"; + + /** Set AD_PrintFormatItem_UU */ + public void setAD_PrintFormatItem_UU (String AD_PrintFormatItem_UU); + + /** Get AD_PrintFormatItem_UU */ + public String getAD_PrintFormatItem_UU(); + /** Column name AD_PrintGraph_ID */ public static final String COLUMNNAME_AD_PrintGraph_ID = "AD_PrintGraph_ID"; @@ -163,7 +172,7 @@ public interface I_AD_PrintFormatItem */ public int getAD_PrintGraph_ID(); - public I_AD_PrintGraph getAD_PrintGraph() throws RuntimeException; + public org.compiere.model.I_AD_PrintGraph getAD_PrintGraph() throws RuntimeException; /** Column name ArcDiameter */ public static final String COLUMNNAME_ArcDiameter = "ArcDiameter"; @@ -324,6 +333,19 @@ public interface I_AD_PrintFormatItem */ public boolean isCounted(); + /** Column name IsDesc */ + public static final String COLUMNNAME_IsDesc = "IsDesc"; + + /** Set Descending. + * Sort your data using a SQL Desc Order By statement + */ + public void setIsDesc (boolean IsDesc); + + /** Get Descending. + * Sort your data using a SQL Desc Order By statement + */ + public boolean isDesc(); + /** Column name IsDeviationCalc */ public static final String COLUMNNAME_IsDeviationCalc = "IsDeviationCalc"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_PrintGraph.java b/org.adempiere.base/src/org/compiere/model/I_AD_PrintGraph.java index ec68e1f780..f2e4741e1e 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_PrintGraph.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_PrintGraph.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_PrintGraph - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_PrintGraph { @@ -31,7 +31,7 @@ public interface I_AD_PrintGraph public static final String Table_Name = "AD_PrintGraph"; /** AD_Table_ID=521 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 521; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_AD_PrintGraph */ public int getAD_PrintFormat_ID(); - public I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException; + public org.compiere.model.I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException; /** Column name AD_PrintGraph_ID */ public static final String COLUMNNAME_AD_PrintGraph_ID = "AD_PrintGraph_ID"; @@ -90,6 +90,15 @@ public interface I_AD_PrintGraph */ public int getAD_PrintGraph_ID(); + /** Column name AD_PrintGraph_UU */ + public static final String COLUMNNAME_AD_PrintGraph_UU = "AD_PrintGraph_UU"; + + /** Set AD_PrintGraph_UU */ + public void setAD_PrintGraph_UU (String AD_PrintGraph_UU); + + /** Get AD_PrintGraph_UU */ + public String getAD_PrintGraph_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -119,7 +128,7 @@ public interface I_AD_PrintGraph */ public int getData1_PrintFormatItem_ID(); - public I_AD_PrintFormatItem getData1_PrintFormatItem() throws RuntimeException; + public org.compiere.model.I_AD_PrintFormatItem getData1_PrintFormatItem() throws RuntimeException; /** Column name Data2_PrintFormatItem_ID */ public static final String COLUMNNAME_Data2_PrintFormatItem_ID = "Data2_PrintFormatItem_ID"; @@ -134,7 +143,7 @@ public interface I_AD_PrintGraph */ public int getData2_PrintFormatItem_ID(); - public I_AD_PrintFormatItem getData2_PrintFormatItem() throws RuntimeException; + public org.compiere.model.I_AD_PrintFormatItem getData2_PrintFormatItem() throws RuntimeException; /** Column name Data3_PrintFormatItem_ID */ public static final String COLUMNNAME_Data3_PrintFormatItem_ID = "Data3_PrintFormatItem_ID"; @@ -149,7 +158,7 @@ public interface I_AD_PrintGraph */ public int getData3_PrintFormatItem_ID(); - public I_AD_PrintFormatItem getData3_PrintFormatItem() throws RuntimeException; + public org.compiere.model.I_AD_PrintFormatItem getData3_PrintFormatItem() throws RuntimeException; /** Column name Data4_PrintFormatItem_ID */ public static final String COLUMNNAME_Data4_PrintFormatItem_ID = "Data4_PrintFormatItem_ID"; @@ -164,7 +173,7 @@ public interface I_AD_PrintGraph */ public int getData4_PrintFormatItem_ID(); - public I_AD_PrintFormatItem getData4_PrintFormatItem() throws RuntimeException; + public org.compiere.model.I_AD_PrintFormatItem getData4_PrintFormatItem() throws RuntimeException; /** Column name Data_PrintFormatItem_ID */ public static final String COLUMNNAME_Data_PrintFormatItem_ID = "Data_PrintFormatItem_ID"; @@ -179,7 +188,7 @@ public interface I_AD_PrintGraph */ public int getData_PrintFormatItem_ID(); - public I_AD_PrintFormatItem getData_PrintFormatItem() throws RuntimeException; + public org.compiere.model.I_AD_PrintFormatItem getData_PrintFormatItem() throws RuntimeException; /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; @@ -207,7 +216,7 @@ public interface I_AD_PrintGraph */ public int getDescription_PrintFormatItem_ID(); - public I_AD_PrintFormatItem getDescription_PrintFormatItem() throws RuntimeException; + public org.compiere.model.I_AD_PrintFormatItem getDescription_PrintFormatItem() throws RuntimeException; /** Column name GraphType */ public static final String COLUMNNAME_GraphType = "GraphType"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_PrintLabel.java b/org.adempiere.base/src/org/compiere/model/I_AD_PrintLabel.java index d045551ae1..65cb261063 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_PrintLabel.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_PrintLabel.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_PrintLabel - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_PrintLabel { @@ -31,7 +31,7 @@ public interface I_AD_PrintLabel public static final String Table_Name = "AD_PrintLabel"; /** AD_Table_ID=570 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 570; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,6 +88,15 @@ public interface I_AD_PrintLabel */ public int getAD_PrintLabel_ID(); + /** Column name AD_PrintLabel_UU */ + public static final String COLUMNNAME_AD_PrintLabel_UU = "AD_PrintLabel_UU"; + + /** Set AD_PrintLabel_UU */ + public void setAD_PrintLabel_UU (String AD_PrintLabel_UU); + + /** Get AD_PrintLabel_UU */ + public String getAD_PrintLabel_UU(); + /** Column name AD_Table_ID */ public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID"; @@ -101,7 +110,7 @@ public interface I_AD_PrintLabel */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_PrintLabelLine.java b/org.adempiere.base/src/org/compiere/model/I_AD_PrintLabelLine.java index 1852f3fc5d..76c137e62d 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_PrintLabelLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_PrintLabelLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_PrintLabelLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_PrintLabelLine { @@ -31,7 +31,7 @@ public interface I_AD_PrintLabelLine public static final String Table_Name = "AD_PrintLabelLine"; /** AD_Table_ID=569 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 569; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,7 +62,7 @@ public interface I_AD_PrintLabelLine */ public int getAD_Column_ID(); - public I_AD_Column getAD_Column() throws RuntimeException; + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException; /** Column name AD_LabelPrinterFunction_ID */ public static final String COLUMNNAME_AD_LabelPrinterFunction_ID = "AD_LabelPrinterFunction_ID"; @@ -77,7 +77,7 @@ public interface I_AD_PrintLabelLine */ public int getAD_LabelPrinterFunction_ID(); - public I_AD_LabelPrinterFunction getAD_LabelPrinterFunction() throws RuntimeException; + public org.compiere.model.I_AD_LabelPrinterFunction getAD_LabelPrinterFunction() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -105,7 +105,7 @@ public interface I_AD_PrintLabelLine */ public int getAD_PrintLabel_ID(); - public I_AD_PrintLabel getAD_PrintLabel() throws RuntimeException; + public org.compiere.model.I_AD_PrintLabel getAD_PrintLabel() throws RuntimeException; /** Column name AD_PrintLabelLine_ID */ public static final String COLUMNNAME_AD_PrintLabelLine_ID = "AD_PrintLabelLine_ID"; @@ -120,6 +120,15 @@ public interface I_AD_PrintLabelLine */ public int getAD_PrintLabelLine_ID(); + /** Column name AD_PrintLabelLine_UU */ + public static final String COLUMNNAME_AD_PrintLabelLine_UU = "AD_PrintLabelLine_UU"; + + /** Set AD_PrintLabelLine_UU */ + public void setAD_PrintLabelLine_UU (String AD_PrintLabelLine_UU); + + /** Get AD_PrintLabelLine_UU */ + public String getAD_PrintLabelLine_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_PrintPaper.java b/org.adempiere.base/src/org/compiere/model/I_AD_PrintPaper.java index f35ae90563..0199abd61c 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_PrintPaper.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_PrintPaper.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_PrintPaper - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_PrintPaper { @@ -31,7 +31,7 @@ public interface I_AD_PrintPaper public static final String Table_Name = "AD_PrintPaper"; /** AD_Table_ID=492 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 492; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_AD_PrintPaper */ public int getAD_PrintPaper_ID(); + /** Column name AD_PrintPaper_UU */ + public static final String COLUMNNAME_AD_PrintPaper_UU = "AD_PrintPaper_UU"; + + /** Set AD_PrintPaper_UU */ + public void setAD_PrintPaper_UU (String AD_PrintPaper_UU); + + /** Get AD_PrintPaper_UU */ + public String getAD_PrintPaper_UU(); + /** Column name Code */ public static final String COLUMNNAME_Code = "Code"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_PrintTableFormat.java b/org.adempiere.base/src/org/compiere/model/I_AD_PrintTableFormat.java index 737c5b5124..0d6729283a 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_PrintTableFormat.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_PrintTableFormat.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_PrintTableFormat - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_PrintTableFormat { @@ -31,7 +31,7 @@ public interface I_AD_PrintTableFormat public static final String Table_Name = "AD_PrintTableFormat"; /** AD_Table_ID=523 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 523; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,7 +62,7 @@ public interface I_AD_PrintTableFormat */ public int getAD_Image_ID(); - public I_AD_Image getAD_Image() throws RuntimeException; + public org.compiere.model.I_AD_Image getAD_Image() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -90,6 +90,15 @@ public interface I_AD_PrintTableFormat */ public int getAD_PrintTableFormat_ID(); + /** Column name AD_PrintTableFormat_UU */ + public static final String COLUMNNAME_AD_PrintTableFormat_UU = "AD_PrintTableFormat_UU"; + + /** Set AD_PrintTableFormat_UU */ + public void setAD_PrintTableFormat_UU (String AD_PrintTableFormat_UU); + + /** Get AD_PrintTableFormat_UU */ + public String getAD_PrintTableFormat_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -171,7 +180,7 @@ public interface I_AD_PrintTableFormat */ public int getFunctBG_PrintColor_ID(); - public I_AD_PrintColor getFunctBG_PrintColor() throws RuntimeException; + public org.compiere.model.I_AD_PrintColor getFunctBG_PrintColor() throws RuntimeException; /** Column name FunctFG_PrintColor_ID */ public static final String COLUMNNAME_FunctFG_PrintColor_ID = "FunctFG_PrintColor_ID"; @@ -186,7 +195,7 @@ public interface I_AD_PrintTableFormat */ public int getFunctFG_PrintColor_ID(); - public I_AD_PrintColor getFunctFG_PrintColor() throws RuntimeException; + public org.compiere.model.I_AD_PrintColor getFunctFG_PrintColor() throws RuntimeException; /** Column name Funct_PrintFont_ID */ public static final String COLUMNNAME_Funct_PrintFont_ID = "Funct_PrintFont_ID"; @@ -201,7 +210,7 @@ public interface I_AD_PrintTableFormat */ public int getFunct_PrintFont_ID(); - public I_AD_PrintFont getFunct_PrintFont() throws RuntimeException; + public org.compiere.model.I_AD_PrintFont getFunct_PrintFont() throws RuntimeException; /** Column name HdrLine_PrintColor_ID */ public static final String COLUMNNAME_HdrLine_PrintColor_ID = "HdrLine_PrintColor_ID"; @@ -216,7 +225,7 @@ public interface I_AD_PrintTableFormat */ public int getHdrLine_PrintColor_ID(); - public I_AD_PrintColor getHdrLine_PrintColor() throws RuntimeException; + public org.compiere.model.I_AD_PrintColor getHdrLine_PrintColor() throws RuntimeException; /** Column name Hdr_PrintFont_ID */ public static final String COLUMNNAME_Hdr_PrintFont_ID = "Hdr_PrintFont_ID"; @@ -231,7 +240,7 @@ public interface I_AD_PrintTableFormat */ public int getHdr_PrintFont_ID(); - public I_AD_PrintFont getHdr_PrintFont() throws RuntimeException; + public org.compiere.model.I_AD_PrintFont getHdr_PrintFont() throws RuntimeException; /** Column name HdrStroke */ public static final String COLUMNNAME_HdrStroke = "HdrStroke"; @@ -272,7 +281,7 @@ public interface I_AD_PrintTableFormat */ public int getHdrTextBG_PrintColor_ID(); - public I_AD_PrintColor getHdrTextBG_PrintColor() throws RuntimeException; + public org.compiere.model.I_AD_PrintColor getHdrTextBG_PrintColor() throws RuntimeException; /** Column name HdrTextFG_PrintColor_ID */ public static final String COLUMNNAME_HdrTextFG_PrintColor_ID = "HdrTextFG_PrintColor_ID"; @@ -287,7 +296,7 @@ public interface I_AD_PrintTableFormat */ public int getHdrTextFG_PrintColor_ID(); - public I_AD_PrintColor getHdrTextFG_PrintColor() throws RuntimeException; + public org.compiere.model.I_AD_PrintColor getHdrTextFG_PrintColor() throws RuntimeException; /** Column name HeaderCenter */ public static final String COLUMNNAME_HeaderCenter = "HeaderCenter"; @@ -471,7 +480,7 @@ public interface I_AD_PrintTableFormat */ public int getLine_PrintColor_ID(); - public I_AD_PrintColor getLine_PrintColor() throws RuntimeException; + public org.compiere.model.I_AD_PrintColor getLine_PrintColor() throws RuntimeException; /** Column name LineStroke */ public static final String COLUMNNAME_LineStroke = "LineStroke"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Private_Access.java b/org.adempiere.base/src/org/compiere/model/I_AD_Private_Access.java index 2e957ed51d..0e4ef22d3d 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Private_Access.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Private_Access.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Private_Access - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Private_Access { @@ -31,7 +31,7 @@ public interface I_AD_Private_Access public static final String Table_Name = "AD_Private_Access"; /** AD_Table_ID=627 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 627; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,6 +62,15 @@ public interface I_AD_Private_Access */ public int getAD_Org_ID(); + /** Column name AD_Private_Access_UU */ + public static final String COLUMNNAME_AD_Private_Access_UU = "AD_Private_Access_UU"; + + /** Set AD_Private_Access_UU */ + public void setAD_Private_Access_UU (String AD_Private_Access_UU); + + /** Get AD_Private_Access_UU */ + public String getAD_Private_Access_UU(); + /** Column name AD_Table_ID */ public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID"; @@ -75,7 +84,7 @@ public interface I_AD_Private_Access */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name AD_User_ID */ public static final String COLUMNNAME_AD_User_ID = "AD_User_ID"; @@ -90,7 +99,7 @@ public interface I_AD_Private_Access */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Process.java b/org.adempiere.base/src/org/compiere/model/I_AD_Process.java index a2d2c2ec75..64f421f62b 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Process.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Process.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Process - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Process { @@ -31,7 +31,7 @@ public interface I_AD_Process public static final String Table_Name = "AD_Process"; /** AD_Table_ID=284 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 284; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_AD_Process */ public int getAD_Form_ID(); - public I_AD_Form getAD_Form() throws RuntimeException; + public org.compiere.model.I_AD_Form getAD_Form() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -103,7 +103,7 @@ public interface I_AD_Process */ public int getAD_PrintFormat_ID(); - public I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException; + public org.compiere.model.I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException; /** Column name AD_Process_ID */ public static final String COLUMNNAME_AD_Process_ID = "AD_Process_ID"; @@ -118,6 +118,15 @@ public interface I_AD_Process */ public int getAD_Process_ID(); + /** Column name AD_Process_UU */ + public static final String COLUMNNAME_AD_Process_UU = "AD_Process_UU"; + + /** Set AD_Process_UU */ + public void setAD_Process_UU (String AD_Process_UU); + + /** Get AD_Process_UU */ + public String getAD_Process_UU(); + /** Column name AD_ReportView_ID */ public static final String COLUMNNAME_AD_ReportView_ID = "AD_ReportView_ID"; @@ -131,7 +140,7 @@ public interface I_AD_Process */ public int getAD_ReportView_ID(); - public I_AD_ReportView getAD_ReportView() throws RuntimeException; + public org.compiere.model.I_AD_ReportView getAD_ReportView() throws RuntimeException; /** Column name AD_Workflow_ID */ public static final String COLUMNNAME_AD_Workflow_ID = "AD_Workflow_ID"; @@ -146,7 +155,7 @@ public interface I_AD_Process */ public int getAD_Workflow_ID(); - public I_AD_Workflow getAD_Workflow() throws RuntimeException; + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException; /** Column name Classname */ public static final String COLUMNNAME_Classname = "Classname"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Process_Access.java b/org.adempiere.base/src/org/compiere/model/I_AD_Process_Access.java index d5d78ece0e..efe059d242 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Process_Access.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Process_Access.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Process_Access - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Process_Access { @@ -31,7 +31,7 @@ public interface I_AD_Process_Access public static final String Table_Name = "AD_Process_Access"; /** AD_Table_ID=197 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 197; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,6 +62,15 @@ public interface I_AD_Process_Access */ public int getAD_Org_ID(); + /** Column name AD_Process_Access_UU */ + public static final String COLUMNNAME_AD_Process_Access_UU = "AD_Process_Access_UU"; + + /** Set AD_Process_Access_UU */ + public void setAD_Process_Access_UU (String AD_Process_Access_UU); + + /** Get AD_Process_Access_UU */ + public String getAD_Process_Access_UU(); + /** Column name AD_Process_ID */ public static final String COLUMNNAME_AD_Process_ID = "AD_Process_ID"; @@ -75,7 +84,7 @@ public interface I_AD_Process_Access */ public int getAD_Process_ID(); - public I_AD_Process getAD_Process() throws RuntimeException; + public org.compiere.model.I_AD_Process getAD_Process() throws RuntimeException; /** Column name AD_Role_ID */ public static final String COLUMNNAME_AD_Role_ID = "AD_Role_ID"; @@ -90,7 +99,7 @@ public interface I_AD_Process_Access */ public int getAD_Role_ID(); - public I_AD_Role getAD_Role() throws RuntimeException; + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Process_Para.java b/org.adempiere.base/src/org/compiere/model/I_AD_Process_Para.java index 239aa4a97c..117d29d399 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Process_Para.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Process_Para.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Process_Para - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Process_Para { diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_RecentItem.java b/org.adempiere.base/src/org/compiere/model/I_AD_RecentItem.java index 1eecfd476c..7c25ebac22 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_RecentItem.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_RecentItem.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_RecentItem - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_RecentItem { @@ -71,6 +71,15 @@ public interface I_AD_RecentItem /** Get Recent Item */ public int getAD_RecentItem_ID(); + /** Column name AD_RecentItem_UU */ + public static final String COLUMNNAME_AD_RecentItem_UU = "AD_RecentItem_UU"; + + /** Set AD_RecentItem_UU */ + public void setAD_RecentItem_UU (String AD_RecentItem_UU); + + /** Get AD_RecentItem_UU */ + public String getAD_RecentItem_UU(); + /** Column name AD_Role_ID */ public static final String COLUMNNAME_AD_Role_ID = "AD_Role_ID"; @@ -119,12 +128,12 @@ public interface I_AD_RecentItem /** Column name AD_User_ID */ public static final String COLUMNNAME_AD_User_ID = "AD_User_ID"; - /** Set Usuario. + /** Set User/Contact. * User within the system - Internal or Business Partner Contact */ public void setAD_User_ID (int AD_User_ID); - /** Get Usuario. + /** Get User/Contact. * User within the system - Internal or Business Partner Contact */ public int getAD_User_ID(); diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Record_Access.java b/org.adempiere.base/src/org/compiere/model/I_AD_Record_Access.java index 0ba5e7a275..aa2af593c1 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Record_Access.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Record_Access.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Record_Access - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Record_Access { @@ -31,7 +31,7 @@ public interface I_AD_Record_Access public static final String Table_Name = "AD_Record_Access"; /** AD_Table_ID=567 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 567; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,6 +62,15 @@ public interface I_AD_Record_Access */ public int getAD_Org_ID(); + /** Column name AD_Record_Access_UU */ + public static final String COLUMNNAME_AD_Record_Access_UU = "AD_Record_Access_UU"; + + /** Set AD_Record_Access_UU */ + public void setAD_Record_Access_UU (String AD_Record_Access_UU); + + /** Get AD_Record_Access_UU */ + public String getAD_Record_Access_UU(); + /** Column name AD_Role_ID */ public static final String COLUMNNAME_AD_Role_ID = "AD_Role_ID"; @@ -75,7 +84,7 @@ public interface I_AD_Record_Access */ public int getAD_Role_ID(); - public I_AD_Role getAD_Role() throws RuntimeException; + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException; /** Column name AD_Table_ID */ public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID"; @@ -90,7 +99,7 @@ public interface I_AD_Record_Access */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Ref_List.java b/org.adempiere.base/src/org/compiere/model/I_AD_Ref_List.java index 5dafe14493..52a0a087d9 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Ref_List.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Ref_List.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Ref_List - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Ref_List { @@ -31,7 +31,7 @@ public interface I_AD_Ref_List public static final String Table_Name = "AD_Ref_List"; /** AD_Table_ID=104 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 104; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_AD_Ref_List */ public int getAD_Reference_ID(); - public I_AD_Reference getAD_Reference() throws RuntimeException; + public org.compiere.model.I_AD_Reference getAD_Reference() throws RuntimeException; /** Column name AD_Ref_List_ID */ public static final String COLUMNNAME_AD_Ref_List_ID = "AD_Ref_List_ID"; @@ -90,6 +90,15 @@ public interface I_AD_Ref_List */ public int getAD_Ref_List_ID(); + /** Column name AD_Ref_List_UU */ + public static final String COLUMNNAME_AD_Ref_List_UU = "AD_Ref_List_UU"; + + /** Set AD_Ref_List_UU */ + public void setAD_Ref_List_UU (String AD_Ref_List_UU); + + /** Get AD_Ref_List_UU */ + public String getAD_Ref_List_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Ref_Table.java b/org.adempiere.base/src/org/compiere/model/I_AD_Ref_Table.java index 8008d02424..eca9da3f59 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Ref_Table.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Ref_Table.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Ref_Table - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Ref_Table { @@ -31,7 +31,7 @@ public interface I_AD_Ref_Table public static final String Table_Name = "AD_Ref_Table"; /** AD_Table_ID=103 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 103; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,7 +62,7 @@ public interface I_AD_Ref_Table */ public int getAD_Display(); - public I_AD_Column getAD_Disp() throws RuntimeException; + public org.compiere.model.I_AD_Column getAD_Disp() throws RuntimeException; /** Column name AD_Key */ public static final String COLUMNNAME_AD_Key = "AD_Key"; @@ -77,7 +77,7 @@ public interface I_AD_Ref_Table */ public int getAD_Key(); - public I_AD_Column getAD_() throws RuntimeException; + public org.compiere.model.I_AD_Column getAD_() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -105,7 +105,16 @@ public interface I_AD_Ref_Table */ public int getAD_Reference_ID(); - public I_AD_Reference getAD_Reference() throws RuntimeException; + public org.compiere.model.I_AD_Reference getAD_Reference() throws RuntimeException; + + /** Column name AD_Ref_Table_UU */ + public static final String COLUMNNAME_AD_Ref_Table_UU = "AD_Ref_Table_UU"; + + /** Set AD_Ref_Table_UU */ + public void setAD_Ref_Table_UU (String AD_Ref_Table_UU); + + /** Get AD_Ref_Table_UU */ + public String getAD_Ref_Table_UU(); /** Column name AD_Table_ID */ public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID"; @@ -120,7 +129,7 @@ public interface I_AD_Ref_Table */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name AD_Window_ID */ public static final String COLUMNNAME_AD_Window_ID = "AD_Window_ID"; @@ -135,7 +144,7 @@ public interface I_AD_Ref_Table */ public int getAD_Window_ID(); - public I_AD_Window getAD_Window() throws RuntimeException; + public org.compiere.model.I_AD_Window getAD_Window() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Reference.java b/org.adempiere.base/src/org/compiere/model/I_AD_Reference.java index 2940eeaeb0..58ab1757fe 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Reference.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Reference.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Reference - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Reference { @@ -31,7 +31,7 @@ public interface I_AD_Reference public static final String Table_Name = "AD_Reference"; /** AD_Table_ID=102 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 102; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_AD_Reference */ public int getAD_Reference_ID(); + /** Column name AD_Reference_UU */ + public static final String COLUMNNAME_AD_Reference_UU = "AD_Reference_UU"; + + /** Set AD_Reference_UU */ + public void setAD_Reference_UU (String AD_Reference_UU); + + /** Get AD_Reference_UU */ + public String getAD_Reference_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Registration.java b/org.adempiere.base/src/org/compiere/model/I_AD_Registration.java index 70ca5faa12..cbb2fd40f5 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Registration.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Registration.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Registration - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Registration { @@ -31,7 +31,7 @@ public interface I_AD_Registration public static final String Table_Name = "AD_Registration"; /** AD_Table_ID=625 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 625; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_AD_Registration */ public int getAD_Registration_ID(); + /** Column name AD_Registration_UU */ + public static final String COLUMNNAME_AD_Registration_UU = "AD_Registration_UU"; + + /** Set AD_Registration_UU */ + public void setAD_Registration_UU (String AD_Registration_UU); + + /** Get AD_Registration_UU */ + public String getAD_Registration_UU(); + /** Column name AD_System_ID */ public static final String COLUMNNAME_AD_System_ID = "AD_System_ID"; @@ -88,7 +97,7 @@ public interface I_AD_Registration */ public int getAD_System_ID(); - public I_AD_System getAD_System() throws RuntimeException; + public org.compiere.model.I_AD_System getAD_System() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -103,7 +112,7 @@ public interface I_AD_Registration */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name C_Location_ID */ public static final String COLUMNNAME_C_Location_ID = "C_Location_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_RelationType.java b/org.adempiere.base/src/org/compiere/model/I_AD_RelationType.java index 5d76a83f2b..2bd1278fa2 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_RelationType.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_RelationType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_RelationType - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_RelationType { @@ -31,7 +31,7 @@ public interface I_AD_RelationType public static final String Table_Name = "AD_RelationType"; /** AD_Table_ID=53246 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53246; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -71,7 +71,7 @@ public interface I_AD_RelationType /** Get Source Reference */ public int getAD_Reference_Source_ID(); - public I_AD_Reference getAD_Reference_Source() throws RuntimeException; + public org.compiere.model.I_AD_Reference getAD_Reference_Source() throws RuntimeException; /** Column name AD_Reference_Target_ID */ public static final String COLUMNNAME_AD_Reference_Target_ID = "AD_Reference_Target_ID"; @@ -82,7 +82,7 @@ public interface I_AD_RelationType /** Get Target Reference */ public int getAD_Reference_Target_ID(); - public I_AD_Reference getAD_Reference_Target() throws RuntimeException; + public org.compiere.model.I_AD_Reference getAD_Reference_Target() throws RuntimeException; /** Column name AD_RelationType_ID */ public static final String COLUMNNAME_AD_RelationType_ID = "AD_RelationType_ID"; @@ -93,6 +93,15 @@ public interface I_AD_RelationType /** Get Relation Type */ public int getAD_RelationType_ID(); + /** Column name AD_RelationType_UU */ + public static final String COLUMNNAME_AD_RelationType_UU = "AD_RelationType_UU"; + + /** Set AD_RelationType_UU */ + public void setAD_RelationType_UU (String AD_RelationType_UU); + + /** Get AD_RelationType_UU */ + public String getAD_RelationType_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Replication.java b/org.adempiere.base/src/org/compiere/model/I_AD_Replication.java index a0600a294b..1a2251cead 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Replication.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Replication.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Replication - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Replication { @@ -31,7 +31,7 @@ public interface I_AD_Replication public static final String Table_Name = "AD_Replication"; /** AD_Table_ID=605 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 605; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,16 @@ public interface I_AD_Replication */ public int getAD_ReplicationStrategy_ID(); - public I_AD_ReplicationStrategy getAD_ReplicationStrategy() throws RuntimeException; + public org.compiere.model.I_AD_ReplicationStrategy getAD_ReplicationStrategy() throws RuntimeException; + + /** Column name AD_Replication_UU */ + public static final String COLUMNNAME_AD_Replication_UU = "AD_Replication_UU"; + + /** Set AD_Replication_UU */ + public void setAD_Replication_UU (String AD_Replication_UU); + + /** Get AD_Replication_UU */ + public String getAD_Replication_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_ReplicationDocument.java b/org.adempiere.base/src/org/compiere/model/I_AD_ReplicationDocument.java index 17a069326f..c5fa72a750 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_ReplicationDocument.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_ReplicationDocument.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_ReplicationDocument - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_ReplicationDocument { @@ -31,7 +31,7 @@ public interface I_AD_ReplicationDocument public static final String Table_Name = "AD_ReplicationDocument"; /** AD_Table_ID=53071 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53071; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -71,6 +71,15 @@ public interface I_AD_ReplicationDocument /** Get Replication Document */ public int getAD_ReplicationDocument_ID(); + /** Column name AD_ReplicationDocument_UU */ + public static final String COLUMNNAME_AD_ReplicationDocument_UU = "AD_ReplicationDocument_UU"; + + /** Set AD_ReplicationDocument_UU */ + public void setAD_ReplicationDocument_UU (String AD_ReplicationDocument_UU); + + /** Get AD_ReplicationDocument_UU */ + public String getAD_ReplicationDocument_UU(); + /** Column name AD_ReplicationStrategy_ID */ public static final String COLUMNNAME_AD_ReplicationStrategy_ID = "AD_ReplicationStrategy_ID"; @@ -97,7 +106,7 @@ public interface I_AD_ReplicationDocument */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name C_DocType_ID */ public static final String COLUMNNAME_C_DocType_ID = "C_DocType_ID"; @@ -112,7 +121,7 @@ public interface I_AD_ReplicationDocument */ public int getC_DocType_ID(); - public I_C_DocType getC_DocType() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_ReplicationStrategy.java b/org.adempiere.base/src/org/compiere/model/I_AD_ReplicationStrategy.java index e90e9e82fc..54388abda5 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_ReplicationStrategy.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_ReplicationStrategy.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_ReplicationStrategy - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_ReplicationStrategy { @@ -31,7 +31,7 @@ public interface I_AD_ReplicationStrategy public static final String Table_Name = "AD_ReplicationStrategy"; /** AD_Table_ID=602 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 602; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_AD_ReplicationStrategy */ public int getAD_ReplicationStrategy_ID(); + /** Column name AD_ReplicationStrategy_UU */ + public static final String COLUMNNAME_AD_ReplicationStrategy_UU = "AD_ReplicationStrategy_UU"; + + /** Set AD_ReplicationStrategy_UU */ + public void setAD_ReplicationStrategy_UU (String AD_ReplicationStrategy_UU); + + /** Get AD_ReplicationStrategy_UU */ + public String getAD_ReplicationStrategy_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_ReplicationTable.java b/org.adempiere.base/src/org/compiere/model/I_AD_ReplicationTable.java index 1612a7083a..5ae8e4235b 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_ReplicationTable.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_ReplicationTable.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_ReplicationTable - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_ReplicationTable { @@ -31,7 +31,7 @@ public interface I_AD_ReplicationTable public static final String Table_Name = "AD_ReplicationTable"; /** AD_Table_ID=601 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 601; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_AD_ReplicationTable */ public int getAD_ReplicationStrategy_ID(); - public I_AD_ReplicationStrategy getAD_ReplicationStrategy() throws RuntimeException; + public org.compiere.model.I_AD_ReplicationStrategy getAD_ReplicationStrategy() throws RuntimeException; /** Column name AD_ReplicationTable_ID */ public static final String COLUMNNAME_AD_ReplicationTable_ID = "AD_ReplicationTable_ID"; @@ -90,6 +90,15 @@ public interface I_AD_ReplicationTable */ public int getAD_ReplicationTable_ID(); + /** Column name AD_ReplicationTable_UU */ + public static final String COLUMNNAME_AD_ReplicationTable_UU = "AD_ReplicationTable_UU"; + + /** Set AD_ReplicationTable_UU */ + public void setAD_ReplicationTable_UU (String AD_ReplicationTable_UU); + + /** Get AD_ReplicationTable_UU */ + public String getAD_ReplicationTable_UU(); + /** Column name AD_Table_ID */ public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID"; @@ -103,7 +112,7 @@ public interface I_AD_ReplicationTable */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Replication_Log.java b/org.adempiere.base/src/org/compiere/model/I_AD_Replication_Log.java index 5ae0e1432d..0932b99252 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Replication_Log.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Replication_Log.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Replication_Log - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Replication_Log { @@ -31,7 +31,7 @@ public interface I_AD_Replication_Log public static final String Table_Name = "AD_Replication_Log"; /** AD_Table_ID=604 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 604; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_AD_Replication_Log */ public int getAD_Replication_Log_ID(); + /** Column name AD_Replication_Log_UU */ + public static final String COLUMNNAME_AD_Replication_Log_UU = "AD_Replication_Log_UU"; + + /** Set AD_Replication_Log_UU */ + public void setAD_Replication_Log_UU (String AD_Replication_Log_UU); + + /** Get AD_Replication_Log_UU */ + public String getAD_Replication_Log_UU(); + /** Column name AD_Replication_Run_ID */ public static final String COLUMNNAME_AD_Replication_Run_ID = "AD_Replication_Run_ID"; @@ -88,7 +97,7 @@ public interface I_AD_Replication_Log */ public int getAD_Replication_Run_ID(); - public I_AD_Replication_Run getAD_Replication_Run() throws RuntimeException; + public org.compiere.model.I_AD_Replication_Run getAD_Replication_Run() throws RuntimeException; /** Column name AD_ReplicationTable_ID */ public static final String COLUMNNAME_AD_ReplicationTable_ID = "AD_ReplicationTable_ID"; @@ -103,7 +112,7 @@ public interface I_AD_Replication_Log */ public int getAD_ReplicationTable_ID(); - public I_AD_ReplicationTable getAD_ReplicationTable() throws RuntimeException; + public org.compiere.model.I_AD_ReplicationTable getAD_ReplicationTable() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Replication_Run.java b/org.adempiere.base/src/org/compiere/model/I_AD_Replication_Run.java index ad8e2d8118..da60d8af3f 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Replication_Run.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Replication_Run.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Replication_Run - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Replication_Run { @@ -31,7 +31,7 @@ public interface I_AD_Replication_Run public static final String Table_Name = "AD_Replication_Run"; /** AD_Table_ID=603 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 603; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_AD_Replication_Run */ public int getAD_Replication_ID(); - public I_AD_Replication getAD_Replication() throws RuntimeException; + public org.compiere.model.I_AD_Replication getAD_Replication() throws RuntimeException; /** Column name AD_Replication_Run_ID */ public static final String COLUMNNAME_AD_Replication_Run_ID = "AD_Replication_Run_ID"; @@ -90,6 +90,15 @@ public interface I_AD_Replication_Run */ public int getAD_Replication_Run_ID(); + /** Column name AD_Replication_Run_UU */ + public static final String COLUMNNAME_AD_Replication_Run_UU = "AD_Replication_Run_UU"; + + /** Set AD_Replication_Run_UU */ + public void setAD_Replication_Run_UU (String AD_Replication_Run_UU); + + /** Get AD_Replication_Run_UU */ + public String getAD_Replication_Run_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_ReportView.java b/org.adempiere.base/src/org/compiere/model/I_AD_ReportView.java index f09ec0ca77..1c05d329be 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_ReportView.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_ReportView.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_ReportView - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_ReportView { @@ -31,7 +31,7 @@ public interface I_AD_ReportView public static final String Table_Name = "AD_ReportView"; /** AD_Table_ID=361 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 361; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_AD_ReportView */ public int getAD_ReportView_ID(); + /** Column name AD_ReportView_UU */ + public static final String COLUMNNAME_AD_ReportView_UU = "AD_ReportView_UU"; + + /** Set AD_ReportView_UU */ + public void setAD_ReportView_UU (String AD_ReportView_UU); + + /** Get AD_ReportView_UU */ + public String getAD_ReportView_UU(); + /** Column name AD_Table_ID */ public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID"; @@ -88,7 +97,7 @@ public interface I_AD_ReportView */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_ReportView_Col.java b/org.adempiere.base/src/org/compiere/model/I_AD_ReportView_Col.java index 12eb6fb284..4a9c91e14d 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_ReportView_Col.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_ReportView_Col.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_ReportView_Col - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_ReportView_Col { @@ -31,7 +31,7 @@ public interface I_AD_ReportView_Col public static final String Table_Name = "AD_ReportView_Col"; /** AD_Table_ID=428 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 428; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,7 +62,7 @@ public interface I_AD_ReportView_Col */ public int getAD_Column_ID(); - public I_AD_Column getAD_Column() throws RuntimeException; + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -86,6 +86,15 @@ public interface I_AD_ReportView_Col /** Get Report view Column */ public int getAD_ReportView_Col_ID(); + /** Column name AD_ReportView_Col_UU */ + public static final String COLUMNNAME_AD_ReportView_Col_UU = "AD_ReportView_Col_UU"; + + /** Set AD_ReportView_Col_UU */ + public void setAD_ReportView_Col_UU (String AD_ReportView_Col_UU); + + /** Get AD_ReportView_Col_UU */ + public String getAD_ReportView_Col_UU(); + /** Column name AD_ReportView_ID */ public static final String COLUMNNAME_AD_ReportView_ID = "AD_ReportView_ID"; @@ -99,7 +108,7 @@ public interface I_AD_ReportView_Col */ public int getAD_ReportView_ID(); - public I_AD_ReportView getAD_ReportView() throws RuntimeException; + public org.compiere.model.I_AD_ReportView getAD_ReportView() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Role.java b/org.adempiere.base/src/org/compiere/model/I_AD_Role.java index 36fbd07052..699776a047 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Role.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Role.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Role - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Role { @@ -35,7 +35,7 @@ public interface I_AD_Role KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); - /** AccessLevel = - System - Client + /** AccessLevel = 6 - System - Client */ BigDecimal accessLevel = BigDecimal.valueOf(6); diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Role_Included.java b/org.adempiere.base/src/org/compiere/model/I_AD_Role_Included.java index 0f723a1f8d..33e6799f6b 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Role_Included.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Role_Included.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Role_Included - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Role_Included { @@ -31,7 +31,7 @@ public interface I_AD_Role_Included public static final String Table_Name = "AD_Role_Included"; /** AD_Table_ID=53222 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53222; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_AD_Role_Included */ public int getAD_Role_ID(); - public I_AD_Role getAD_Role() throws RuntimeException; + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException; + + /** Column name AD_Role_Included_UU */ + public static final String COLUMNNAME_AD_Role_Included_UU = "AD_Role_Included_UU"; + + /** Set AD_Role_Included_UU */ + public void setAD_Role_Included_UU (String AD_Role_Included_UU); + + /** Get AD_Role_Included_UU */ + public String getAD_Role_Included_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -102,7 +111,7 @@ public interface I_AD_Role_Included /** Get Included Role */ public int getIncluded_Role_ID(); - public I_AD_Role getIncluded_Role() throws RuntimeException; + public org.compiere.model.I_AD_Role getIncluded_Role() throws RuntimeException; /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Role_OrgAccess.java b/org.adempiere.base/src/org/compiere/model/I_AD_Role_OrgAccess.java index e42006a461..3681b093ef 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Role_OrgAccess.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Role_OrgAccess.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Role_OrgAccess - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Role_OrgAccess { @@ -31,7 +31,7 @@ public interface I_AD_Role_OrgAccess public static final String Table_Name = "AD_Role_OrgAccess"; /** AD_Table_ID=422 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 422; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_AD_Role_OrgAccess */ public int getAD_Role_ID(); - public I_AD_Role getAD_Role() throws RuntimeException; + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException; + + /** Column name AD_Role_OrgAccess_UU */ + public static final String COLUMNNAME_AD_Role_OrgAccess_UU = "AD_Role_OrgAccess_UU"; + + /** Set AD_Role_OrgAccess_UU */ + public void setAD_Role_OrgAccess_UU (String AD_Role_OrgAccess_UU); + + /** Get AD_Role_OrgAccess_UU */ + public String getAD_Role_OrgAccess_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Rule.java b/org.adempiere.base/src/org/compiere/model/I_AD_Rule.java index b6f9e9b359..aa88e72956 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Rule.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Rule.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Rule - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Rule { @@ -31,7 +31,7 @@ public interface I_AD_Rule public static final String Table_Name = "AD_Rule"; /** AD_Table_ID=53058 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53058; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -84,6 +84,15 @@ public interface I_AD_Rule /** Get Rule */ public int getAD_Rule_ID(); + /** Column name AD_Rule_UU */ + public static final String COLUMNNAME_AD_Rule_UU = "AD_Rule_UU"; + + /** Set AD_Rule_UU */ + public void setAD_Rule_UU (String AD_Rule_UU); + + /** Get AD_Rule_UU */ + public String getAD_Rule_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Schedule.java b/org.adempiere.base/src/org/compiere/model/I_AD_Schedule.java index a182a4afe1..2014bcdb7d 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Schedule.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Schedule.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Schedule - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Schedule { @@ -35,7 +35,7 @@ public interface I_AD_Schedule KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); - /** AccessLevel = - System + /** AccessLevel = 4 - System */ BigDecimal accessLevel = BigDecimal.valueOf(4); @@ -65,10 +65,10 @@ public interface I_AD_Schedule /** Column name AD_Schedule_ID */ public static final String COLUMNNAME_AD_Schedule_ID = "AD_Schedule_ID"; - /** Set AD_Schedule_ID */ + /** Set Schedule */ public void setAD_Schedule_ID (int AD_Schedule_ID); - /** Get AD_Schedule_ID */ + /** Get Schedule */ public int getAD_Schedule_ID(); /** Column name AD_Schedule_UU */ @@ -177,12 +177,12 @@ public interface I_AD_Schedule /** Column name IsSystemSchedule */ public static final String COLUMNNAME_IsSystemSchedule = "IsSystemSchedule"; - /** Set IsSystemSchedule. + /** Set System Schedule. * Schedule Just For System */ public void setIsSystemSchedule (boolean IsSystemSchedule); - /** Get IsSystemSchedule. + /** Get System Schedule. * Schedule Just For System */ public boolean isSystemSchedule(); diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Scheduler.java b/org.adempiere.base/src/org/compiere/model/I_AD_Scheduler.java index d8205fa442..74394cc99b 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Scheduler.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Scheduler.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Scheduler - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Scheduler { @@ -80,10 +80,10 @@ public interface I_AD_Scheduler /** Column name AD_Schedule_ID */ public static final String COLUMNNAME_AD_Schedule_ID = "AD_Schedule_ID"; - /** Set AD_Schedule_ID */ + /** Set Schedule */ public void setAD_Schedule_ID (int AD_Schedule_ID); - /** Get AD_Schedule_ID */ + /** Get Schedule */ public int getAD_Schedule_ID(); public org.compiere.model.I_AD_Schedule getAD_Schedule() throws RuntimeException; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_SchedulerLog.java b/org.adempiere.base/src/org/compiere/model/I_AD_SchedulerLog.java index 55ca8a2b18..e4131a9dc7 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_SchedulerLog.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_SchedulerLog.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_SchedulerLog - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_SchedulerLog { @@ -31,7 +31,7 @@ public interface I_AD_SchedulerLog public static final String Table_Name = "AD_SchedulerLog"; /** AD_Table_ID=687 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 687; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_AD_SchedulerLog */ public int getAD_Scheduler_ID(); - public I_AD_Scheduler getAD_Scheduler() throws RuntimeException; + public org.compiere.model.I_AD_Scheduler getAD_Scheduler() throws RuntimeException; /** Column name AD_SchedulerLog_ID */ public static final String COLUMNNAME_AD_SchedulerLog_ID = "AD_SchedulerLog_ID"; @@ -90,6 +90,15 @@ public interface I_AD_SchedulerLog */ public int getAD_SchedulerLog_ID(); + /** Column name AD_SchedulerLog_UU */ + public static final String COLUMNNAME_AD_SchedulerLog_UU = "AD_SchedulerLog_UU"; + + /** Set AD_SchedulerLog_UU */ + public void setAD_SchedulerLog_UU (String AD_SchedulerLog_UU); + + /** Get AD_SchedulerLog_UU */ + public String getAD_SchedulerLog_UU(); + /** Column name BinaryData */ public static final String COLUMNNAME_BinaryData = "BinaryData"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_SchedulerRecipient.java b/org.adempiere.base/src/org/compiere/model/I_AD_SchedulerRecipient.java index d380578862..778662139d 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_SchedulerRecipient.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_SchedulerRecipient.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_SchedulerRecipient - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_SchedulerRecipient { @@ -31,7 +31,7 @@ public interface I_AD_SchedulerRecipient public static final String Table_Name = "AD_SchedulerRecipient"; /** AD_Table_ID=704 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 704; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_AD_SchedulerRecipient */ public int getAD_Role_ID(); - public I_AD_Role getAD_Role() throws RuntimeException; + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException; /** Column name AD_Scheduler_ID */ public static final String COLUMNNAME_AD_Scheduler_ID = "AD_Scheduler_ID"; @@ -90,7 +90,7 @@ public interface I_AD_SchedulerRecipient */ public int getAD_Scheduler_ID(); - public I_AD_Scheduler getAD_Scheduler() throws RuntimeException; + public org.compiere.model.I_AD_Scheduler getAD_Scheduler() throws RuntimeException; /** Column name AD_SchedulerRecipient_ID */ public static final String COLUMNNAME_AD_SchedulerRecipient_ID = "AD_SchedulerRecipient_ID"; @@ -105,6 +105,15 @@ public interface I_AD_SchedulerRecipient */ public int getAD_SchedulerRecipient_ID(); + /** Column name AD_SchedulerRecipient_UU */ + public static final String COLUMNNAME_AD_SchedulerRecipient_UU = "AD_SchedulerRecipient_UU"; + + /** Set AD_SchedulerRecipient_UU */ + public void setAD_SchedulerRecipient_UU (String AD_SchedulerRecipient_UU); + + /** Get AD_SchedulerRecipient_UU */ + public String getAD_SchedulerRecipient_UU(); + /** Column name AD_User_ID */ public static final String COLUMNNAME_AD_User_ID = "AD_User_ID"; @@ -118,7 +127,7 @@ public interface I_AD_SchedulerRecipient */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Scheduler_Para.java b/org.adempiere.base/src/org/compiere/model/I_AD_Scheduler_Para.java index cfa0fe7ce4..cdc8167757 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Scheduler_Para.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Scheduler_Para.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Scheduler_Para - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Scheduler_Para { @@ -31,7 +31,7 @@ public interface I_AD_Scheduler_Para public static final String Table_Name = "AD_Scheduler_Para"; /** AD_Table_ID=698 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 698; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -71,7 +71,7 @@ public interface I_AD_Scheduler_Para /** Get Process Parameter */ public int getAD_Process_Para_ID(); - public I_AD_Process_Para getAD_Process_Para() throws RuntimeException; + public org.compiere.model.I_AD_Process_Para getAD_Process_Para() throws RuntimeException; /** Column name AD_Scheduler_ID */ public static final String COLUMNNAME_AD_Scheduler_ID = "AD_Scheduler_ID"; @@ -86,7 +86,16 @@ public interface I_AD_Scheduler_Para */ public int getAD_Scheduler_ID(); - public I_AD_Scheduler getAD_Scheduler() throws RuntimeException; + public org.compiere.model.I_AD_Scheduler getAD_Scheduler() throws RuntimeException; + + /** Column name AD_Scheduler_Para_UU */ + public static final String COLUMNNAME_AD_Scheduler_Para_UU = "AD_Scheduler_Para_UU"; + + /** Set AD_Scheduler_Para_UU */ + public void setAD_Scheduler_Para_UU (String AD_Scheduler_Para_UU); + + /** Get AD_Scheduler_Para_UU */ + public String getAD_Scheduler_Para_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_SearchDefinition.java b/org.adempiere.base/src/org/compiere/model/I_AD_SearchDefinition.java index d25e53e705..95d1c1a14e 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_SearchDefinition.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_SearchDefinition.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_SearchDefinition - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_SearchDefinition { @@ -31,7 +31,7 @@ public interface I_AD_SearchDefinition public static final String Table_Name = "AD_SearchDefinition"; /** AD_Table_ID=53169 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53169; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,7 +62,7 @@ public interface I_AD_SearchDefinition */ public int getAD_Column_ID(); - public I_AD_Column getAD_Column() throws RuntimeException; + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -86,6 +86,15 @@ public interface I_AD_SearchDefinition /** Get Search Definition */ public int getAD_SearchDefinition_ID(); + /** Column name AD_SearchDefinition_UU */ + public static final String COLUMNNAME_AD_SearchDefinition_UU = "AD_SearchDefinition_UU"; + + /** Set AD_SearchDefinition_UU */ + public void setAD_SearchDefinition_UU (String AD_SearchDefinition_UU); + + /** Get AD_SearchDefinition_UU */ + public String getAD_SearchDefinition_UU(); + /** Column name AD_Table_ID */ public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID"; @@ -99,7 +108,7 @@ public interface I_AD_SearchDefinition */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name AD_Window_ID */ public static final String COLUMNNAME_AD_Window_ID = "AD_Window_ID"; @@ -114,7 +123,7 @@ public interface I_AD_SearchDefinition */ public int getAD_Window_ID(); - public I_AD_Window getAD_Window() throws RuntimeException; + public org.compiere.model.I_AD_Window getAD_Window() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -210,7 +219,7 @@ public interface I_AD_SearchDefinition */ public int getPO_Window_ID(); - public I_AD_Window getPO_Window() throws RuntimeException; + public org.compiere.model.I_AD_Window getPO_Window() throws RuntimeException; /** Column name Query */ public static final String COLUMNNAME_Query = "Query"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Sequence.java b/org.adempiere.base/src/org/compiere/model/I_AD_Sequence.java index ad3d67a040..dd38535cdd 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Sequence.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Sequence.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Sequence - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Sequence { diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Sequence_Audit.java b/org.adempiere.base/src/org/compiere/model/I_AD_Sequence_Audit.java index 37305fe8d2..d74bd09acd 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Sequence_Audit.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Sequence_Audit.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Sequence_Audit - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Sequence_Audit { @@ -31,7 +31,7 @@ public interface I_AD_Sequence_Audit public static final String Table_Name = "AD_Sequence_Audit"; /** AD_Table_ID=121 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 121; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,6 +62,15 @@ public interface I_AD_Sequence_Audit */ public int getAD_Org_ID(); + /** Column name AD_Sequence_Audit_UU */ + public static final String COLUMNNAME_AD_Sequence_Audit_UU = "AD_Sequence_Audit_UU"; + + /** Set AD_Sequence_Audit_UU */ + public void setAD_Sequence_Audit_UU (String AD_Sequence_Audit_UU); + + /** Get AD_Sequence_Audit_UU */ + public String getAD_Sequence_Audit_UU(); + /** Column name AD_Sequence_ID */ public static final String COLUMNNAME_AD_Sequence_ID = "AD_Sequence_ID"; @@ -75,7 +84,7 @@ public interface I_AD_Sequence_Audit */ public int getAD_Sequence_ID(); - public I_AD_Sequence getAD_Sequence() throws RuntimeException; + public org.compiere.model.I_AD_Sequence getAD_Sequence() throws RuntimeException; /** Column name AD_Table_ID */ public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID"; @@ -90,7 +99,7 @@ public interface I_AD_Sequence_Audit */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Sequence_No.java b/org.adempiere.base/src/org/compiere/model/I_AD_Sequence_No.java index 6508ded9c8..2203fbbf06 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Sequence_No.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Sequence_No.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Sequence_No - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Sequence_No { diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Session.java b/org.adempiere.base/src/org/compiere/model/I_AD_Session.java index ef58feb340..321b4807fa 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Session.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Session.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Session - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Session { @@ -31,7 +31,7 @@ public interface I_AD_Session public static final String Table_Name = "AD_Session"; /** AD_Table_ID=566 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 566; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_AD_Session */ public int getAD_Role_ID(); - public I_AD_Role getAD_Role() throws RuntimeException; + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException; /** Column name AD_Session_ID */ public static final String COLUMNNAME_AD_Session_ID = "AD_Session_ID"; @@ -90,6 +90,15 @@ public interface I_AD_Session */ public int getAD_Session_ID(); + /** Column name AD_Session_UU */ + public static final String COLUMNNAME_AD_Session_UU = "AD_Session_UU"; + + /** Set AD_Session_UU */ + public void setAD_Session_UU (String AD_Session_UU); + + /** Get AD_Session_UU */ + public String getAD_Session_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -183,10 +192,10 @@ public interface I_AD_Session /** Column name ServerName */ public static final String COLUMNNAME_ServerName = "ServerName"; - /** Set Server name */ + /** Set Server Name */ public void setServerName (String ServerName); - /** Get Server name */ + /** Get Server Name */ public String getServerName(); /** Column name Updated */ diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_SysConfig.java b/org.adempiere.base/src/org/compiere/model/I_AD_SysConfig.java index fd67ceb3d1..a0c16da110 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_SysConfig.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_SysConfig.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_SysConfig - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_SysConfig { @@ -31,7 +31,7 @@ public interface I_AD_SysConfig public static final String Table_Name = "AD_SysConfig"; /** AD_Table_ID=50009 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 50009; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -71,6 +71,15 @@ public interface I_AD_SysConfig /** Get System Configurator */ public int getAD_SysConfig_ID(); + /** Column name AD_SysConfig_UU */ + public static final String COLUMNNAME_AD_SysConfig_UU = "AD_SysConfig_UU"; + + /** Set AD_SysConfig_UU */ + public void setAD_SysConfig_UU (String AD_SysConfig_UU); + + /** Get AD_SysConfig_UU */ + public String getAD_SysConfig_UU(); + /** Column name ConfigurationLevel */ public static final String COLUMNNAME_ConfigurationLevel = "ConfigurationLevel"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_System.java b/org.adempiere.base/src/org/compiere/model/I_AD_System.java index 9515f97080..9b7a230ecc 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_System.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_System.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_System - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_System { @@ -31,7 +31,7 @@ public interface I_AD_System public static final String Table_Name = "AD_System"; /** AD_Table_ID=531 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 531; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_AD_System */ public int getAD_System_ID(); + /** Column name AD_System_UU */ + public static final String COLUMNNAME_AD_System_UU = "AD_System_UU"; + + /** Set AD_System_UU */ + public void setAD_System_UU (String AD_System_UU); + + /** Get AD_System_UU */ + public String getAD_System_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -274,6 +283,19 @@ public interface I_AD_System /** Get Last Build Info */ public String getLastBuildInfo(); + /** Column name LastMigrationScriptApplied */ + public static final String COLUMNNAME_LastMigrationScriptApplied = "LastMigrationScriptApplied"; + + /** Set Last Migration Script Applied. + * Register of the filename for the last migration script applied on this database + */ + public void setLastMigrationScriptApplied (String LastMigrationScriptApplied); + + /** Get Last Migration Script Applied. + * Register of the filename for the last migration script applied on this database + */ + public String getLastMigrationScriptApplied(); + /** Column name LDAPDomain */ public static final String COLUMNNAME_LDAPDomain = "LDAPDomain"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Tab.java b/org.adempiere.base/src/org/compiere/model/I_AD_Tab.java index 318b0c2d92..c466b7a989 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Tab.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Tab.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Tab - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Tab { @@ -31,7 +31,7 @@ public interface I_AD_Tab public static final String Table_Name = "AD_Tab"; /** AD_Table_ID=106 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 106; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,7 +62,7 @@ public interface I_AD_Tab */ public int getAD_Column_ID(); - public I_AD_Column getAD_Column() throws RuntimeException; + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException; /** Column name AD_ColumnSortOrder_ID */ public static final String COLUMNNAME_AD_ColumnSortOrder_ID = "AD_ColumnSortOrder_ID"; @@ -77,7 +77,7 @@ public interface I_AD_Tab */ public int getAD_ColumnSortOrder_ID(); - public I_AD_Column getAD_ColumnSortOrder() throws RuntimeException; + public org.compiere.model.I_AD_Column getAD_ColumnSortOrder() throws RuntimeException; /** Column name AD_ColumnSortYesNo_ID */ public static final String COLUMNNAME_AD_ColumnSortYesNo_ID = "AD_ColumnSortYesNo_ID"; @@ -92,7 +92,7 @@ public interface I_AD_Tab */ public int getAD_ColumnSortYesNo_ID(); - public I_AD_Column getAD_ColumnSortYesNo() throws RuntimeException; + public org.compiere.model.I_AD_Column getAD_ColumnSortYesNo() throws RuntimeException; /** Column name AD_Image_ID */ public static final String COLUMNNAME_AD_Image_ID = "AD_Image_ID"; @@ -107,7 +107,7 @@ public interface I_AD_Tab */ public int getAD_Image_ID(); - public I_AD_Image getAD_Image() throws RuntimeException; + public org.compiere.model.I_AD_Image getAD_Image() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -135,7 +135,7 @@ public interface I_AD_Tab */ public int getAD_Process_ID(); - public I_AD_Process getAD_Process() throws RuntimeException; + public org.compiere.model.I_AD_Process getAD_Process() throws RuntimeException; /** Column name AD_Tab_ID */ public static final String COLUMNNAME_AD_Tab_ID = "AD_Tab_ID"; @@ -163,7 +163,16 @@ public interface I_AD_Tab */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; + + /** Column name AD_Tab_UU */ + public static final String COLUMNNAME_AD_Tab_UU = "AD_Tab_UU"; + + /** Set AD_Tab_UU */ + public void setAD_Tab_UU (String AD_Tab_UU); + + /** Get AD_Tab_UU */ + public String getAD_Tab_UU(); /** Column name AD_Window_ID */ public static final String COLUMNNAME_AD_Window_ID = "AD_Window_ID"; @@ -178,7 +187,7 @@ public interface I_AD_Tab */ public int getAD_Window_ID(); - public I_AD_Window getAD_Window() throws RuntimeException; + public org.compiere.model.I_AD_Window getAD_Window() throws RuntimeException; /** Column name CommitWarning */ public static final String COLUMNNAME_CommitWarning = "CommitWarning"; @@ -302,7 +311,7 @@ public interface I_AD_Tab */ public int getIncluded_Tab_ID(); - public I_AD_Tab getIncluded_Tab() throws RuntimeException; + public org.compiere.model.I_AD_Tab getIncluded_Tab() throws RuntimeException; /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; @@ -447,7 +456,7 @@ public interface I_AD_Tab */ public int getParent_Column_ID(); - public I_AD_Column getParent_Column() throws RuntimeException; + public org.compiere.model.I_AD_Column getParent_Column() throws RuntimeException; /** Column name Processing */ public static final String COLUMNNAME_Processing = "Processing"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Tab_Customization.java b/org.adempiere.base/src/org/compiere/model/I_AD_Tab_Customization.java index ae7d9c0d90..01538e1372 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Tab_Customization.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Tab_Customization.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Tab_Customization - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Tab_Customization { @@ -71,6 +71,15 @@ public interface I_AD_Tab_Customization /** Get Tab Customization */ public int getAD_Tab_Customization_ID(); + /** Column name AD_Tab_Customization_UU */ + public static final String COLUMNNAME_AD_Tab_Customization_UU = "AD_Tab_Customization_UU"; + + /** Set AD_Tab_Customization_UU */ + public void setAD_Tab_Customization_UU (String AD_Tab_Customization_UU); + + /** Get AD_Tab_Customization_UU */ + public String getAD_Tab_Customization_UU(); + /** Column name AD_Tab_ID */ public static final String COLUMNNAME_AD_Tab_ID = "AD_Tab_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Table.java b/org.adempiere.base/src/org/compiere/model/I_AD_Table.java index 0194466cbf..2fcecacf5a 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Table.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Table.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Table - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Table { @@ -31,7 +31,7 @@ public interface I_AD_Table public static final String Table_Name = "AD_Table"; /** AD_Table_ID=100 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 100; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,6 +88,15 @@ public interface I_AD_Table */ public int getAD_Table_ID(); + /** Column name AD_Table_UU */ + public static final String COLUMNNAME_AD_Table_UU = "AD_Table_UU"; + + /** Set AD_Table_UU */ + public void setAD_Table_UU (String AD_Table_UU); + + /** Get AD_Table_UU */ + public String getAD_Table_UU(); + /** Column name AD_Val_Rule_ID */ public static final String COLUMNNAME_AD_Val_Rule_ID = "AD_Val_Rule_ID"; @@ -101,7 +110,7 @@ public interface I_AD_Table */ public int getAD_Val_Rule_ID(); - public I_AD_Val_Rule getAD_Val_Rule() throws RuntimeException; + public org.compiere.model.I_AD_Val_Rule getAD_Val_Rule() throws RuntimeException; /** Column name AD_Window_ID */ public static final String COLUMNNAME_AD_Window_ID = "AD_Window_ID"; @@ -116,7 +125,7 @@ public interface I_AD_Table */ public int getAD_Window_ID(); - public I_AD_Window getAD_Window() throws RuntimeException; + public org.compiere.model.I_AD_Window getAD_Window() throws RuntimeException; /** Column name CopyColumnsFromTable */ public static final String COLUMNNAME_CopyColumnsFromTable = "CopyColumnsFromTable"; @@ -323,7 +332,7 @@ public interface I_AD_Table */ public int getPO_Window_ID(); - public I_AD_Window getPO_Window() throws RuntimeException; + public org.compiere.model.I_AD_Window getPO_Window() throws RuntimeException; /** Column name ReplicationType */ public static final String COLUMNNAME_ReplicationType = "ReplicationType"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Table_Access.java b/org.adempiere.base/src/org/compiere/model/I_AD_Table_Access.java index 59a7f28bfb..6fabf9c609 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Table_Access.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Table_Access.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Table_Access - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Table_Access { @@ -31,7 +31,7 @@ public interface I_AD_Table_Access public static final String Table_Name = "AD_Table_Access"; /** AD_Table_ID=565 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 565; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,16 @@ public interface I_AD_Table_Access */ public int getAD_Role_ID(); - public I_AD_Role getAD_Role() throws RuntimeException; + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException; + + /** Column name AD_Table_Access_UU */ + public static final String COLUMNNAME_AD_Table_Access_UU = "AD_Table_Access_UU"; + + /** Set AD_Table_Access_UU */ + public void setAD_Table_Access_UU (String AD_Table_Access_UU); + + /** Get AD_Table_Access_UU */ + public String getAD_Table_Access_UU(); /** Column name AD_Table_ID */ public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID"; @@ -103,7 +112,7 @@ public interface I_AD_Table_Access */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Table_ScriptValidator.java b/org.adempiere.base/src/org/compiere/model/I_AD_Table_ScriptValidator.java index 0b574eb3f4..3f881e9ba6 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Table_ScriptValidator.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Table_ScriptValidator.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Table_ScriptValidator - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Table_ScriptValidator { @@ -31,7 +31,7 @@ public interface I_AD_Table_ScriptValidator public static final String Table_Name = "AD_Table_ScriptValidator"; /** AD_Table_ID=53059 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53059; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -71,7 +71,7 @@ public interface I_AD_Table_ScriptValidator /** Get Rule */ public int getAD_Rule_ID(); - public I_AD_Rule getAD_Rule() throws RuntimeException; + public org.compiere.model.I_AD_Rule getAD_Rule() throws RuntimeException; /** Column name AD_Table_ID */ public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID"; @@ -86,7 +86,7 @@ public interface I_AD_Table_ScriptValidator */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name AD_Table_ScriptValidator_ID */ public static final String COLUMNNAME_AD_Table_ScriptValidator_ID = "AD_Table_ScriptValidator_ID"; @@ -97,6 +97,15 @@ public interface I_AD_Table_ScriptValidator /** Get Table Script Validator */ public int getAD_Table_ScriptValidator_ID(); + /** Column name AD_Table_ScriptValidator_UU */ + public static final String COLUMNNAME_AD_Table_ScriptValidator_UU = "AD_Table_ScriptValidator_UU"; + + /** Set AD_Table_ScriptValidator_UU */ + public void setAD_Table_ScriptValidator_UU (String AD_Table_ScriptValidator_UU); + + /** Get AD_Table_ScriptValidator_UU */ + public String getAD_Table_ScriptValidator_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Task.java b/org.adempiere.base/src/org/compiere/model/I_AD_Task.java index 0961308a23..4d1ba7f0a6 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Task.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Task.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Task - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Task { @@ -31,7 +31,7 @@ public interface I_AD_Task public static final String Table_Name = "AD_Task"; /** AD_Table_ID=118 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 118; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,6 +88,15 @@ public interface I_AD_Task */ public int getAD_Task_ID(); + /** Column name AD_Task_UU */ + public static final String COLUMNNAME_AD_Task_UU = "AD_Task_UU"; + + /** Set AD_Task_UU */ + public void setAD_Task_UU (String AD_Task_UU); + + /** Get AD_Task_UU */ + public String getAD_Task_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_TaskInstance.java b/org.adempiere.base/src/org/compiere/model/I_AD_TaskInstance.java index b32bd82fad..9ffeffab3a 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_TaskInstance.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_TaskInstance.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_TaskInstance - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_TaskInstance { @@ -31,7 +31,7 @@ public interface I_AD_TaskInstance public static final String Table_Name = "AD_TaskInstance"; /** AD_Table_ID=125 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 125; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -84,6 +84,15 @@ public interface I_AD_TaskInstance /** Get Task Instance */ public int getAD_TaskInstance_ID(); + /** Column name AD_TaskInstance_UU */ + public static final String COLUMNNAME_AD_TaskInstance_UU = "AD_TaskInstance_UU"; + + /** Set AD_TaskInstance_UU */ + public void setAD_TaskInstance_UU (String AD_TaskInstance_UU); + + /** Get AD_TaskInstance_UU */ + public String getAD_TaskInstance_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Task_Access.java b/org.adempiere.base/src/org/compiere/model/I_AD_Task_Access.java index d6008ff85c..fdc41ba12f 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Task_Access.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Task_Access.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Task_Access - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Task_Access { @@ -31,7 +31,7 @@ public interface I_AD_Task_Access public static final String Table_Name = "AD_Task_Access"; /** AD_Table_ID=199 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 199; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_AD_Task_Access */ public int getAD_Role_ID(); - public I_AD_Role getAD_Role() throws RuntimeException; + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException; + + /** Column name AD_Task_Access_UU */ + public static final String COLUMNNAME_AD_Task_Access_UU = "AD_Task_Access_UU"; + + /** Set AD_Task_Access_UU */ + public void setAD_Task_Access_UU (String AD_Task_Access_UU); + + /** Get AD_Task_Access_UU */ + public String getAD_Task_Access_UU(); /** Column name AD_Task_ID */ public static final String COLUMNNAME_AD_Task_ID = "AD_Task_ID"; @@ -90,7 +99,7 @@ public interface I_AD_Task_Access */ public int getAD_Task_ID(); - public I_AD_Task getAD_Task() throws RuntimeException; + public org.compiere.model.I_AD_Task getAD_Task() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_ToolBarButton.java b/org.adempiere.base/src/org/compiere/model/I_AD_ToolBarButton.java index 8c6adb8de0..fe8f46aca4 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_ToolBarButton.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_ToolBarButton.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_ToolBarButton - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_ToolBarButton { @@ -57,13 +57,13 @@ public interface I_AD_ToolBarButton /** Column name ActionClassName */ public static final String COLUMNNAME_ActionClassName = "ActionClassName"; - /** Set Action Class Name. - * The class name that implements the interface for toolbar actions + /** Set Service Component Name. + * The service component name that implements the interface for toolbar actions */ public void setActionClassName (String ActionClassName); - /** Get Action Class Name. - * The class name that implements the interface for toolbar actions + /** Get Service Component Name. + * The service component name that implements the interface for toolbar actions */ public String getActionClassName(); diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_ToolBarButtonRestrict.java b/org.adempiere.base/src/org/compiere/model/I_AD_ToolBarButtonRestrict.java index c57f510745..8f685558de 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_ToolBarButtonRestrict.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_ToolBarButtonRestrict.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_ToolBarButtonRestrict - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_ToolBarButtonRestrict { diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Tree.java b/org.adempiere.base/src/org/compiere/model/I_AD_Tree.java index a8397e3299..35ad11ac66 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Tree.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Tree.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Tree - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Tree { @@ -31,7 +31,7 @@ public interface I_AD_Tree public static final String Table_Name = "AD_Tree"; /** AD_Table_ID=288 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 288; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_AD_Tree */ public int getAD_Tree_ID(); + /** Column name AD_Tree_UU */ + public static final String COLUMNNAME_AD_Tree_UU = "AD_Tree_UU"; + + /** Set AD_Tree_UU */ + public void setAD_Tree_UU (String AD_Tree_UU); + + /** Get AD_Tree_UU */ + public String getAD_Tree_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_TreeBar.java b/org.adempiere.base/src/org/compiere/model/I_AD_TreeBar.java index 3db8a747c3..2385ae2b4a 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_TreeBar.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_TreeBar.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_TreeBar - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_TreeBar { @@ -31,7 +31,7 @@ public interface I_AD_TreeBar public static final String Table_Name = "AD_TreeBar"; /** AD_Table_ID=456 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 456; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,6 +62,15 @@ public interface I_AD_TreeBar */ public int getAD_Org_ID(); + /** Column name AD_TreeBar_UU */ + public static final String COLUMNNAME_AD_TreeBar_UU = "AD_TreeBar_UU"; + + /** Set AD_TreeBar_UU */ + public void setAD_TreeBar_UU (String AD_TreeBar_UU); + + /** Get AD_TreeBar_UU */ + public String getAD_TreeBar_UU(); + /** Column name AD_Tree_ID */ public static final String COLUMNNAME_AD_Tree_ID = "AD_Tree_ID"; @@ -75,7 +84,7 @@ public interface I_AD_TreeBar */ public int getAD_Tree_ID(); - public I_AD_Tree getAD_Tree() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException; /** Column name AD_User_ID */ public static final String COLUMNNAME_AD_User_ID = "AD_User_ID"; @@ -90,7 +99,7 @@ public interface I_AD_TreeBar */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_TreeNode.java b/org.adempiere.base/src/org/compiere/model/I_AD_TreeNode.java index 00f1bed687..91d5add1ef 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_TreeNode.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_TreeNode.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_TreeNode - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_TreeNode { @@ -31,7 +31,7 @@ public interface I_AD_TreeNode public static final String Table_Name = "AD_TreeNode"; /** AD_Table_ID=289 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 289; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_AD_TreeNode */ public int getAD_Tree_ID(); - public I_AD_Tree getAD_Tree() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException; + + /** Column name AD_TreeNode_UU */ + public static final String COLUMNNAME_AD_TreeNode_UU = "AD_TreeNode_UU"; + + /** Set AD_TreeNode_UU */ + public void setAD_TreeNode_UU (String AD_TreeNode_UU); + + /** Get AD_TreeNode_UU */ + public String getAD_TreeNode_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeBP.java b/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeBP.java index a6aeee14a0..58506eaf33 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeBP.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeBP.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_TreeNodeBP - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_TreeNodeBP { @@ -31,7 +31,7 @@ public interface I_AD_TreeNodeBP public static final String Table_Name = "AD_TreeNodeBP"; /** AD_Table_ID=451 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 451; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_AD_TreeNodeBP */ public int getAD_Tree_ID(); - public I_AD_Tree getAD_Tree() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException; + + /** Column name AD_TreeNodeBP_UU */ + public static final String COLUMNNAME_AD_TreeNodeBP_UU = "AD_TreeNodeBP_UU"; + + /** Set AD_TreeNodeBP_UU */ + public void setAD_TreeNodeBP_UU (String AD_TreeNodeBP_UU); + + /** Get AD_TreeNodeBP_UU */ + public String getAD_TreeNodeBP_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeCMC.java b/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeCMC.java index 8d88862595..1edb0abd71 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeCMC.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeCMC.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_TreeNodeCMC - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_TreeNodeCMC { @@ -31,7 +31,7 @@ public interface I_AD_TreeNodeCMC public static final String Table_Name = "AD_TreeNodeCMC"; /** AD_Table_ID=845 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 845; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_AD_TreeNodeCMC */ public int getAD_Tree_ID(); - public I_AD_Tree getAD_Tree() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException; + + /** Column name AD_TreeNodeCMC_UU */ + public static final String COLUMNNAME_AD_TreeNodeCMC_UU = "AD_TreeNodeCMC_UU"; + + /** Set AD_TreeNodeCMC_UU */ + public void setAD_TreeNodeCMC_UU (String AD_TreeNodeCMC_UU); + + /** Get AD_TreeNodeCMC_UU */ + public String getAD_TreeNodeCMC_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeCMM.java b/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeCMM.java index c48cbbd226..8b4067fade 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeCMM.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeCMM.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_TreeNodeCMM - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_TreeNodeCMM { @@ -31,7 +31,7 @@ public interface I_AD_TreeNodeCMM public static final String Table_Name = "AD_TreeNodeCMM"; /** AD_Table_ID=846 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 846; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_AD_TreeNodeCMM */ public int getAD_Tree_ID(); - public I_AD_Tree getAD_Tree() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException; + + /** Column name AD_TreeNodeCMM_UU */ + public static final String COLUMNNAME_AD_TreeNodeCMM_UU = "AD_TreeNodeCMM_UU"; + + /** Set AD_TreeNodeCMM_UU */ + public void setAD_TreeNodeCMM_UU (String AD_TreeNodeCMM_UU); + + /** Get AD_TreeNodeCMM_UU */ + public String getAD_TreeNodeCMM_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeCMS.java b/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeCMS.java index 040dcd58ac..e3cf41ff0b 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeCMS.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeCMS.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_TreeNodeCMS - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_TreeNodeCMS { @@ -31,7 +31,7 @@ public interface I_AD_TreeNodeCMS public static final String Table_Name = "AD_TreeNodeCMS"; /** AD_Table_ID=847 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 847; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_AD_TreeNodeCMS */ public int getAD_Tree_ID(); - public I_AD_Tree getAD_Tree() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException; + + /** Column name AD_TreeNodeCMS_UU */ + public static final String COLUMNNAME_AD_TreeNodeCMS_UU = "AD_TreeNodeCMS_UU"; + + /** Set AD_TreeNodeCMS_UU */ + public void setAD_TreeNodeCMS_UU (String AD_TreeNodeCMS_UU); + + /** Get AD_TreeNodeCMS_UU */ + public String getAD_TreeNodeCMS_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeCMT.java b/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeCMT.java index 3357d8754d..2bf164846a 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeCMT.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeCMT.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_TreeNodeCMT - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_TreeNodeCMT { @@ -31,7 +31,7 @@ public interface I_AD_TreeNodeCMT public static final String Table_Name = "AD_TreeNodeCMT"; /** AD_Table_ID=848 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 848; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_AD_TreeNodeCMT */ public int getAD_Tree_ID(); - public I_AD_Tree getAD_Tree() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException; + + /** Column name AD_TreeNodeCMT_UU */ + public static final String COLUMNNAME_AD_TreeNodeCMT_UU = "AD_TreeNodeCMT_UU"; + + /** Set AD_TreeNodeCMT_UU */ + public void setAD_TreeNodeCMT_UU (String AD_TreeNodeCMT_UU); + + /** Get AD_TreeNodeCMT_UU */ + public String getAD_TreeNodeCMT_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeMM.java b/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeMM.java index 40cafae4e9..4b7465b51e 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeMM.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeMM.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_TreeNodeMM - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_TreeNodeMM { @@ -31,7 +31,7 @@ public interface I_AD_TreeNodeMM public static final String Table_Name = "AD_TreeNodeMM"; /** AD_Table_ID=452 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 452; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_AD_TreeNodeMM */ public int getAD_Tree_ID(); - public I_AD_Tree getAD_Tree() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException; + + /** Column name AD_TreeNodeMM_UU */ + public static final String COLUMNNAME_AD_TreeNodeMM_UU = "AD_TreeNodeMM_UU"; + + /** Set AD_TreeNodeMM_UU */ + public void setAD_TreeNodeMM_UU (String AD_TreeNodeMM_UU); + + /** Get AD_TreeNodeMM_UU */ + public String getAD_TreeNodeMM_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodePR.java b/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodePR.java index 14f4424576..12c37115b3 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodePR.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodePR.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_TreeNodePR - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_TreeNodePR { @@ -31,7 +31,7 @@ public interface I_AD_TreeNodePR public static final String Table_Name = "AD_TreeNodePR"; /** AD_Table_ID=453 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 453; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_AD_TreeNodePR */ public int getAD_Tree_ID(); - public I_AD_Tree getAD_Tree() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException; + + /** Column name AD_TreeNodePR_UU */ + public static final String COLUMNNAME_AD_TreeNodePR_UU = "AD_TreeNodePR_UU"; + + /** Set AD_TreeNodePR_UU */ + public void setAD_TreeNodePR_UU (String AD_TreeNodePR_UU); + + /** Get AD_TreeNodePR_UU */ + public String getAD_TreeNodePR_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeU1.java b/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeU1.java index 30e28241fa..e674d57a94 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeU1.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeU1.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_TreeNodeU1 - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_TreeNodeU1 { @@ -31,7 +31,7 @@ public interface I_AD_TreeNodeU1 public static final String Table_Name = "AD_TreeNodeU1"; /** AD_Table_ID=852 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 852; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_AD_TreeNodeU1 */ public int getAD_Tree_ID(); - public I_AD_Tree getAD_Tree() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException; + + /** Column name AD_TreeNodeU1_UU */ + public static final String COLUMNNAME_AD_TreeNodeU1_UU = "AD_TreeNodeU1_UU"; + + /** Set AD_TreeNodeU1_UU */ + public void setAD_TreeNodeU1_UU (String AD_TreeNodeU1_UU); + + /** Get AD_TreeNodeU1_UU */ + public String getAD_TreeNodeU1_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeU2.java b/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeU2.java index 6451fa1572..d4e419ebc7 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeU2.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeU2.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_TreeNodeU2 - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_TreeNodeU2 { @@ -31,7 +31,7 @@ public interface I_AD_TreeNodeU2 public static final String Table_Name = "AD_TreeNodeU2"; /** AD_Table_ID=851 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 851; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_AD_TreeNodeU2 */ public int getAD_Tree_ID(); - public I_AD_Tree getAD_Tree() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException; + + /** Column name AD_TreeNodeU2_UU */ + public static final String COLUMNNAME_AD_TreeNodeU2_UU = "AD_TreeNodeU2_UU"; + + /** Set AD_TreeNodeU2_UU */ + public void setAD_TreeNodeU2_UU (String AD_TreeNodeU2_UU); + + /** Get AD_TreeNodeU2_UU */ + public String getAD_TreeNodeU2_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeU3.java b/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeU3.java index 4cba9d5375..41654ca64f 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeU3.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeU3.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_TreeNodeU3 - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_TreeNodeU3 { @@ -31,7 +31,7 @@ public interface I_AD_TreeNodeU3 public static final String Table_Name = "AD_TreeNodeU3"; /** AD_Table_ID=850 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 850; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_AD_TreeNodeU3 */ public int getAD_Tree_ID(); - public I_AD_Tree getAD_Tree() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException; + + /** Column name AD_TreeNodeU3_UU */ + public static final String COLUMNNAME_AD_TreeNodeU3_UU = "AD_TreeNodeU3_UU"; + + /** Set AD_TreeNodeU3_UU */ + public void setAD_TreeNodeU3_UU (String AD_TreeNodeU3_UU); + + /** Get AD_TreeNodeU3_UU */ + public String getAD_TreeNodeU3_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeU4.java b/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeU4.java index 4e12640ec7..0728edde92 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeU4.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_TreeNodeU4.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_TreeNodeU4 - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_TreeNodeU4 { @@ -31,7 +31,7 @@ public interface I_AD_TreeNodeU4 public static final String Table_Name = "AD_TreeNodeU4"; /** AD_Table_ID=849 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 849; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_AD_TreeNodeU4 */ public int getAD_Tree_ID(); - public I_AD_Tree getAD_Tree() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException; + + /** Column name AD_TreeNodeU4_UU */ + public static final String COLUMNNAME_AD_TreeNodeU4_UU = "AD_TreeNodeU4_UU"; + + /** Set AD_TreeNodeU4_UU */ + public void setAD_TreeNodeU4_UU (String AD_TreeNodeU4_UU); + + /** Get AD_TreeNodeU4_UU */ + public String getAD_TreeNodeU4_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_User.java b/org.adempiere.base/src/org/compiere/model/I_AD_User.java index 0a8a6525e9..1baffac23b 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_User.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_User.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_User - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_User { diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_UserBPAccess.java b/org.adempiere.base/src/org/compiere/model/I_AD_UserBPAccess.java index 8a23c5cb32..11e4d4adb6 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_UserBPAccess.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_UserBPAccess.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_UserBPAccess - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_UserBPAccess { @@ -31,7 +31,7 @@ public interface I_AD_UserBPAccess public static final String Table_Name = "AD_UserBPAccess"; /** AD_Table_ID=813 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 813; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_AD_UserBPAccess */ public int getAD_UserBPAccess_ID(); + /** Column name AD_UserBPAccess_UU */ + public static final String COLUMNNAME_AD_UserBPAccess_UU = "AD_UserBPAccess_UU"; + + /** Set AD_UserBPAccess_UU */ + public void setAD_UserBPAccess_UU (String AD_UserBPAccess_UU); + + /** Get AD_UserBPAccess_UU */ + public String getAD_UserBPAccess_UU(); + /** Column name AD_User_ID */ public static final String COLUMNNAME_AD_User_ID = "AD_User_ID"; @@ -88,7 +97,7 @@ public interface I_AD_UserBPAccess */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name BPAccessType */ public static final String COLUMNNAME_BPAccessType = "BPAccessType"; @@ -158,7 +167,7 @@ public interface I_AD_UserBPAccess */ public int getR_RequestType_ID(); - public I_R_RequestType getR_RequestType() throws RuntimeException; + public org.compiere.model.I_R_RequestType getR_RequestType() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_UserDef_Field.java b/org.adempiere.base/src/org/compiere/model/I_AD_UserDef_Field.java index 019141a21d..57cf8a7fd6 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_UserDef_Field.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_UserDef_Field.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_UserDef_Field - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_UserDef_Field { diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_UserDef_Tab.java b/org.adempiere.base/src/org/compiere/model/I_AD_UserDef_Tab.java index b1a493072a..9f019b8fd2 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_UserDef_Tab.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_UserDef_Tab.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_UserDef_Tab - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_UserDef_Tab { diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_UserDef_Win.java b/org.adempiere.base/src/org/compiere/model/I_AD_UserDef_Win.java index db6a4e2edf..9c5c365645 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_UserDef_Win.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_UserDef_Win.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_UserDef_Win - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_UserDef_Win { diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_UserMail.java b/org.adempiere.base/src/org/compiere/model/I_AD_UserMail.java index fba175ad4d..481f11b3cb 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_UserMail.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_UserMail.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_UserMail - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_UserMail { @@ -31,7 +31,7 @@ public interface I_AD_UserMail public static final String Table_Name = "AD_UserMail"; /** AD_Table_ID=782 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 782; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_AD_UserMail */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name AD_UserMail_ID */ public static final String COLUMNNAME_AD_UserMail_ID = "AD_UserMail_ID"; @@ -90,6 +90,15 @@ public interface I_AD_UserMail */ public int getAD_UserMail_ID(); + /** Column name AD_UserMail_UU */ + public static final String COLUMNNAME_AD_UserMail_UU = "AD_UserMail_UU"; + + /** Set AD_UserMail_UU */ + public void setAD_UserMail_UU (String AD_UserMail_UU); + + /** Get AD_UserMail_UU */ + public String getAD_UserMail_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -180,7 +189,7 @@ public interface I_AD_UserMail */ public int getR_MailText_ID(); - public I_R_MailText getR_MailText() throws RuntimeException; + public org.compiere.model.I_R_MailText getR_MailText() throws RuntimeException; /** Column name Subject */ public static final String COLUMNNAME_Subject = "Subject"; @@ -224,5 +233,5 @@ public interface I_AD_UserMail */ public int getW_MailMsg_ID(); - public I_W_MailMsg getW_MailMsg() throws RuntimeException; + public org.compiere.model.I_W_MailMsg getW_MailMsg() throws RuntimeException; } diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_UserQuery.java b/org.adempiere.base/src/org/compiere/model/I_AD_UserQuery.java index d314f5e8c7..cbf2dbbd66 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_UserQuery.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_UserQuery.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_UserQuery - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_UserQuery { @@ -31,7 +31,7 @@ public interface I_AD_UserQuery public static final String Table_Name = "AD_UserQuery"; /** AD_Table_ID=814 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 814; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_AD_UserQuery */ public int getAD_Tab_ID(); - public I_AD_Tab getAD_Tab() throws RuntimeException; + public org.compiere.model.I_AD_Tab getAD_Tab() throws RuntimeException; /** Column name AD_Table_ID */ public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID"; @@ -90,7 +90,7 @@ public interface I_AD_UserQuery */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name AD_User_ID */ public static final String COLUMNNAME_AD_User_ID = "AD_User_ID"; @@ -105,7 +105,7 @@ public interface I_AD_UserQuery */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name AD_UserQuery_ID */ public static final String COLUMNNAME_AD_UserQuery_ID = "AD_UserQuery_ID"; @@ -120,6 +120,15 @@ public interface I_AD_UserQuery */ public int getAD_UserQuery_ID(); + /** Column name AD_UserQuery_UU */ + public static final String COLUMNNAME_AD_UserQuery_UU = "AD_UserQuery_UU"; + + /** Set AD_UserQuery_UU */ + public void setAD_UserQuery_UU (String AD_UserQuery_UU); + + /** Get AD_UserQuery_UU */ + public String getAD_UserQuery_UU(); + /** Column name Code */ public static final String COLUMNNAME_Code = "Code"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_User_OrgAccess.java b/org.adempiere.base/src/org/compiere/model/I_AD_User_OrgAccess.java index 10953d7231..74aa3b61e9 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_User_OrgAccess.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_User_OrgAccess.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_User_OrgAccess - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_User_OrgAccess { @@ -31,7 +31,7 @@ public interface I_AD_User_OrgAccess public static final String Table_Name = "AD_User_OrgAccess"; /** AD_Table_ID=769 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 769; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_AD_User_OrgAccess */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; + + /** Column name AD_User_OrgAccess_UU */ + public static final String COLUMNNAME_AD_User_OrgAccess_UU = "AD_User_OrgAccess_UU"; + + /** Set AD_User_OrgAccess_UU */ + public void setAD_User_OrgAccess_UU (String AD_User_OrgAccess_UU); + + /** Get AD_User_OrgAccess_UU */ + public String getAD_User_OrgAccess_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_User_Roles.java b/org.adempiere.base/src/org/compiere/model/I_AD_User_Roles.java index a31d8f6955..eb994a3f74 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_User_Roles.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_User_Roles.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_User_Roles - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_User_Roles { @@ -31,7 +31,7 @@ public interface I_AD_User_Roles public static final String Table_Name = "AD_User_Roles"; /** AD_Table_ID=157 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 157; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_AD_User_Roles */ public int getAD_Role_ID(); - public I_AD_Role getAD_Role() throws RuntimeException; + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException; /** Column name AD_User_ID */ public static final String COLUMNNAME_AD_User_ID = "AD_User_ID"; @@ -90,7 +90,16 @@ public interface I_AD_User_Roles */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; + + /** Column name AD_User_Roles_UU */ + public static final String COLUMNNAME_AD_User_Roles_UU = "AD_User_Roles_UU"; + + /** Set AD_User_Roles_UU */ + public void setAD_User_Roles_UU (String AD_User_Roles_UU); + + /** Get AD_User_Roles_UU */ + public String getAD_User_Roles_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_User_Substitute.java b/org.adempiere.base/src/org/compiere/model/I_AD_User_Substitute.java index 9d1fbd5ef0..13673d87fd 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_User_Substitute.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_User_Substitute.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_User_Substitute - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_User_Substitute { @@ -31,7 +31,7 @@ public interface I_AD_User_Substitute public static final String Table_Name = "AD_User_Substitute"; /** AD_Table_ID=642 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 642; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_AD_User_Substitute */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name AD_User_Substitute_ID */ public static final String COLUMNNAME_AD_User_Substitute_ID = "AD_User_Substitute_ID"; @@ -90,6 +90,15 @@ public interface I_AD_User_Substitute */ public int getAD_User_Substitute_ID(); + /** Column name AD_User_Substitute_UU */ + public static final String COLUMNNAME_AD_User_Substitute_UU = "AD_User_Substitute_UU"; + + /** Set AD_User_Substitute_UU */ + public void setAD_User_Substitute_UU (String AD_User_Substitute_UU); + + /** Get AD_User_Substitute_UU */ + public String getAD_User_Substitute_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -158,7 +167,7 @@ public interface I_AD_User_Substitute */ public int getSubstitute_ID(); - public I_AD_User getSubstitute() throws RuntimeException; + public org.compiere.model.I_AD_User getSubstitute() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Val_Rule.java b/org.adempiere.base/src/org/compiere/model/I_AD_Val_Rule.java index ee6382678a..343f79ed8a 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Val_Rule.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Val_Rule.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Val_Rule - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Val_Rule { @@ -31,7 +31,7 @@ public interface I_AD_Val_Rule public static final String Table_Name = "AD_Val_Rule"; /** AD_Table_ID=108 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 108; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_AD_Val_Rule */ public int getAD_Val_Rule_ID(); + /** Column name AD_Val_Rule_UU */ + public static final String COLUMNNAME_AD_Val_Rule_UU = "AD_Val_Rule_UU"; + + /** Set AD_Val_Rule_UU */ + public void setAD_Val_Rule_UU (String AD_Val_Rule_UU); + + /** Get AD_Val_Rule_UU */ + public String getAD_Val_Rule_UU(); + /** Column name Code */ public static final String COLUMNNAME_Code = "Code"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_WF_Activity.java b/org.adempiere.base/src/org/compiere/model/I_AD_WF_Activity.java index 5b51fa41eb..17cc40c543 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_WF_Activity.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_WF_Activity.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_WF_Activity - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_WF_Activity { @@ -31,7 +31,7 @@ public interface I_AD_WF_Activity public static final String Table_Name = "AD_WF_Activity"; /** AD_Table_ID=644 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 644; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,7 +62,7 @@ public interface I_AD_WF_Activity */ public int getAD_Message_ID(); - public I_AD_Message getAD_Message() throws RuntimeException; + public org.compiere.model.I_AD_Message getAD_Message() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -90,7 +90,7 @@ public interface I_AD_WF_Activity */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name AD_User_ID */ public static final String COLUMNNAME_AD_User_ID = "AD_User_ID"; @@ -105,7 +105,7 @@ public interface I_AD_WF_Activity */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name AD_WF_Activity_ID */ public static final String COLUMNNAME_AD_WF_Activity_ID = "AD_WF_Activity_ID"; @@ -120,6 +120,15 @@ public interface I_AD_WF_Activity */ public int getAD_WF_Activity_ID(); + /** Column name AD_WF_Activity_UU */ + public static final String COLUMNNAME_AD_WF_Activity_UU = "AD_WF_Activity_UU"; + + /** Set AD_WF_Activity_UU */ + public void setAD_WF_Activity_UU (String AD_WF_Activity_UU); + + /** Get AD_WF_Activity_UU */ + public String getAD_WF_Activity_UU(); + /** Column name AD_WF_Node_ID */ public static final String COLUMNNAME_AD_WF_Node_ID = "AD_WF_Node_ID"; @@ -133,7 +142,7 @@ public interface I_AD_WF_Activity */ public int getAD_WF_Node_ID(); - public I_AD_WF_Node getAD_WF_Node() throws RuntimeException; + public org.compiere.model.I_AD_WF_Node getAD_WF_Node() throws RuntimeException; /** Column name AD_WF_Process_ID */ public static final String COLUMNNAME_AD_WF_Process_ID = "AD_WF_Process_ID"; @@ -148,7 +157,7 @@ public interface I_AD_WF_Activity */ public int getAD_WF_Process_ID(); - public I_AD_WF_Process getAD_WF_Process() throws RuntimeException; + public org.compiere.model.I_AD_WF_Process getAD_WF_Process() throws RuntimeException; /** Column name AD_WF_Responsible_ID */ public static final String COLUMNNAME_AD_WF_Responsible_ID = "AD_WF_Responsible_ID"; @@ -163,7 +172,7 @@ public interface I_AD_WF_Activity */ public int getAD_WF_Responsible_ID(); - public I_AD_WF_Responsible getAD_WF_Responsible() throws RuntimeException; + public org.compiere.model.I_AD_WF_Responsible getAD_WF_Responsible() throws RuntimeException; /** Column name AD_Workflow_ID */ public static final String COLUMNNAME_AD_Workflow_ID = "AD_Workflow_ID"; @@ -178,7 +187,7 @@ public interface I_AD_WF_Activity */ public int getAD_Workflow_ID(); - public I_AD_Workflow getAD_Workflow() throws RuntimeException; + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_WF_ActivityResult.java b/org.adempiere.base/src/org/compiere/model/I_AD_WF_ActivityResult.java index 73754b488e..2acc5815f0 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_WF_ActivityResult.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_WF_ActivityResult.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_WF_ActivityResult - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_WF_ActivityResult { @@ -31,7 +31,7 @@ public interface I_AD_WF_ActivityResult public static final String Table_Name = "AD_WF_ActivityResult"; /** AD_Table_ID=650 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 650; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_AD_WF_ActivityResult */ public int getAD_WF_Activity_ID(); - public I_AD_WF_Activity getAD_WF_Activity() throws RuntimeException; + public org.compiere.model.I_AD_WF_Activity getAD_WF_Activity() throws RuntimeException; /** Column name AD_WF_ActivityResult_ID */ public static final String COLUMNNAME_AD_WF_ActivityResult_ID = "AD_WF_ActivityResult_ID"; @@ -90,6 +90,15 @@ public interface I_AD_WF_ActivityResult */ public int getAD_WF_ActivityResult_ID(); + /** Column name AD_WF_ActivityResult_UU */ + public static final String COLUMNNAME_AD_WF_ActivityResult_UU = "AD_WF_ActivityResult_UU"; + + /** Set AD_WF_ActivityResult_UU */ + public void setAD_WF_ActivityResult_UU (String AD_WF_ActivityResult_UU); + + /** Get AD_WF_ActivityResult_UU */ + public String getAD_WF_ActivityResult_UU(); + /** Column name AttributeName */ public static final String COLUMNNAME_AttributeName = "AttributeName"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_WF_Block.java b/org.adempiere.base/src/org/compiere/model/I_AD_WF_Block.java index 8ea62be041..10b7dca342 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_WF_Block.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_WF_Block.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_WF_Block - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_WF_Block { @@ -31,7 +31,7 @@ public interface I_AD_WF_Block public static final String Table_Name = "AD_WF_Block"; /** AD_Table_ID=647 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 647; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_AD_WF_Block */ public int getAD_WF_Block_ID(); + /** Column name AD_WF_Block_UU */ + public static final String COLUMNNAME_AD_WF_Block_UU = "AD_WF_Block_UU"; + + /** Set AD_WF_Block_UU */ + public void setAD_WF_Block_UU (String AD_WF_Block_UU); + + /** Get AD_WF_Block_UU */ + public String getAD_WF_Block_UU(); + /** Column name AD_Workflow_ID */ public static final String COLUMNNAME_AD_Workflow_ID = "AD_Workflow_ID"; @@ -88,7 +97,7 @@ public interface I_AD_WF_Block */ public int getAD_Workflow_ID(); - public I_AD_Workflow getAD_Workflow() throws RuntimeException; + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_WF_EventAudit.java b/org.adempiere.base/src/org/compiere/model/I_AD_WF_EventAudit.java index cdfd7eb06c..fcd076e615 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_WF_EventAudit.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_WF_EventAudit.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_WF_EventAudit - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_WF_EventAudit { @@ -31,7 +31,7 @@ public interface I_AD_WF_EventAudit public static final String Table_Name = "AD_WF_EventAudit"; /** AD_Table_ID=649 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 649; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_AD_WF_EventAudit */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name AD_User_ID */ public static final String COLUMNNAME_AD_User_ID = "AD_User_ID"; @@ -90,7 +90,7 @@ public interface I_AD_WF_EventAudit */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name AD_WF_EventAudit_ID */ public static final String COLUMNNAME_AD_WF_EventAudit_ID = "AD_WF_EventAudit_ID"; @@ -105,6 +105,15 @@ public interface I_AD_WF_EventAudit */ public int getAD_WF_EventAudit_ID(); + /** Column name AD_WF_EventAudit_UU */ + public static final String COLUMNNAME_AD_WF_EventAudit_UU = "AD_WF_EventAudit_UU"; + + /** Set AD_WF_EventAudit_UU */ + public void setAD_WF_EventAudit_UU (String AD_WF_EventAudit_UU); + + /** Get AD_WF_EventAudit_UU */ + public String getAD_WF_EventAudit_UU(); + /** Column name AD_WF_Node_ID */ public static final String COLUMNNAME_AD_WF_Node_ID = "AD_WF_Node_ID"; @@ -118,7 +127,7 @@ public interface I_AD_WF_EventAudit */ public int getAD_WF_Node_ID(); - public I_AD_WF_Node getAD_WF_Node() throws RuntimeException; + public org.compiere.model.I_AD_WF_Node getAD_WF_Node() throws RuntimeException; /** Column name AD_WF_Process_ID */ public static final String COLUMNNAME_AD_WF_Process_ID = "AD_WF_Process_ID"; @@ -133,7 +142,7 @@ public interface I_AD_WF_EventAudit */ public int getAD_WF_Process_ID(); - public I_AD_WF_Process getAD_WF_Process() throws RuntimeException; + public org.compiere.model.I_AD_WF_Process getAD_WF_Process() throws RuntimeException; /** Column name AD_WF_Responsible_ID */ public static final String COLUMNNAME_AD_WF_Responsible_ID = "AD_WF_Responsible_ID"; @@ -148,7 +157,7 @@ public interface I_AD_WF_EventAudit */ public int getAD_WF_Responsible_ID(); - public I_AD_WF_Responsible getAD_WF_Responsible() throws RuntimeException; + public org.compiere.model.I_AD_WF_Responsible getAD_WF_Responsible() throws RuntimeException; /** Column name AttributeName */ public static final String COLUMNNAME_AttributeName = "AttributeName"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_WF_NextCondition.java b/org.adempiere.base/src/org/compiere/model/I_AD_WF_NextCondition.java index f43efb11dd..417e65b5af 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_WF_NextCondition.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_WF_NextCondition.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_WF_NextCondition - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_WF_NextCondition { @@ -31,7 +31,7 @@ public interface I_AD_WF_NextCondition public static final String Table_Name = "AD_WF_NextCondition"; /** AD_Table_ID=706 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 706; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,7 +62,7 @@ public interface I_AD_WF_NextCondition */ public int getAD_Column_ID(); - public I_AD_Column getAD_Column() throws RuntimeException; + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -90,6 +90,15 @@ public interface I_AD_WF_NextCondition */ public int getAD_WF_NextCondition_ID(); + /** Column name AD_WF_NextCondition_UU */ + public static final String COLUMNNAME_AD_WF_NextCondition_UU = "AD_WF_NextCondition_UU"; + + /** Set AD_WF_NextCondition_UU */ + public void setAD_WF_NextCondition_UU (String AD_WF_NextCondition_UU); + + /** Get AD_WF_NextCondition_UU */ + public String getAD_WF_NextCondition_UU(); + /** Column name AD_WF_NodeNext_ID */ public static final String COLUMNNAME_AD_WF_NodeNext_ID = "AD_WF_NodeNext_ID"; @@ -103,7 +112,7 @@ public interface I_AD_WF_NextCondition */ public int getAD_WF_NodeNext_ID(); - public I_AD_WF_NodeNext getAD_WF_NodeNext() throws RuntimeException; + public org.compiere.model.I_AD_WF_NodeNext getAD_WF_NodeNext() throws RuntimeException; /** Column name AndOr */ public static final String COLUMNNAME_AndOr = "AndOr"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_WF_Node.java b/org.adempiere.base/src/org/compiere/model/I_AD_WF_Node.java index d3306c62be..70f7815a7c 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_WF_Node.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_WF_Node.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_WF_Node - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_WF_Node { diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_WF_NodeNext.java b/org.adempiere.base/src/org/compiere/model/I_AD_WF_NodeNext.java index 929911fee3..4d47e7e22b 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_WF_NodeNext.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_WF_NodeNext.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_WF_NodeNext - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_WF_NodeNext { @@ -31,7 +31,7 @@ public interface I_AD_WF_NodeNext public static final String Table_Name = "AD_WF_NodeNext"; /** AD_Table_ID=131 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 131; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_AD_WF_NodeNext */ public int getAD_WF_Next_ID(); - public I_AD_WF_Node getAD_WF_Next() throws RuntimeException; + public org.compiere.model.I_AD_WF_Node getAD_WF_Next() throws RuntimeException; /** Column name AD_WF_Node_ID */ public static final String COLUMNNAME_AD_WF_Node_ID = "AD_WF_Node_ID"; @@ -90,7 +90,7 @@ public interface I_AD_WF_NodeNext */ public int getAD_WF_Node_ID(); - public I_AD_WF_Node getAD_WF_Node() throws RuntimeException; + public org.compiere.model.I_AD_WF_Node getAD_WF_Node() throws RuntimeException; /** Column name AD_WF_NodeNext_ID */ public static final String COLUMNNAME_AD_WF_NodeNext_ID = "AD_WF_NodeNext_ID"; @@ -105,6 +105,15 @@ public interface I_AD_WF_NodeNext */ public int getAD_WF_NodeNext_ID(); + /** Column name AD_WF_NodeNext_UU */ + public static final String COLUMNNAME_AD_WF_NodeNext_UU = "AD_WF_NodeNext_UU"; + + /** Set AD_WF_NodeNext_UU */ + public void setAD_WF_NodeNext_UU (String AD_WF_NodeNext_UU); + + /** Get AD_WF_NodeNext_UU */ + public String getAD_WF_NodeNext_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_WF_Node_Para.java b/org.adempiere.base/src/org/compiere/model/I_AD_WF_Node_Para.java index e1b99e3e04..d8894d77d8 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_WF_Node_Para.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_WF_Node_Para.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_WF_Node_Para - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_WF_Node_Para { @@ -31,7 +31,7 @@ public interface I_AD_WF_Node_Para public static final String Table_Name = "AD_WF_Node_Para"; /** AD_Table_ID=643 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 643; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -71,7 +71,7 @@ public interface I_AD_WF_Node_Para /** Get Process Parameter */ public int getAD_Process_Para_ID(); - public I_AD_Process_Para getAD_Process_Para() throws RuntimeException; + public org.compiere.model.I_AD_Process_Para getAD_Process_Para() throws RuntimeException; /** Column name AD_WF_Node_ID */ public static final String COLUMNNAME_AD_WF_Node_ID = "AD_WF_Node_ID"; @@ -86,7 +86,7 @@ public interface I_AD_WF_Node_Para */ public int getAD_WF_Node_ID(); - public I_AD_WF_Node getAD_WF_Node() throws RuntimeException; + public org.compiere.model.I_AD_WF_Node getAD_WF_Node() throws RuntimeException; /** Column name AD_WF_Node_Para_ID */ public static final String COLUMNNAME_AD_WF_Node_Para_ID = "AD_WF_Node_Para_ID"; @@ -101,6 +101,15 @@ public interface I_AD_WF_Node_Para */ public int getAD_WF_Node_Para_ID(); + /** Column name AD_WF_Node_Para_UU */ + public static final String COLUMNNAME_AD_WF_Node_Para_UU = "AD_WF_Node_Para_UU"; + + /** Set AD_WF_Node_Para_UU */ + public void setAD_WF_Node_Para_UU (String AD_WF_Node_Para_UU); + + /** Get AD_WF_Node_Para_UU */ + public String getAD_WF_Node_Para_UU(); + /** Column name AttributeName */ public static final String COLUMNNAME_AttributeName = "AttributeName"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_WF_Process.java b/org.adempiere.base/src/org/compiere/model/I_AD_WF_Process.java index 0ac14fdee9..2def494b58 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_WF_Process.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_WF_Process.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_WF_Process - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_WF_Process { @@ -31,7 +31,7 @@ public interface I_AD_WF_Process public static final String Table_Name = "AD_WF_Process"; /** AD_Table_ID=645 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 645; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,7 +62,7 @@ public interface I_AD_WF_Process */ public int getAD_Message_ID(); - public I_AD_Message getAD_Message() throws RuntimeException; + public org.compiere.model.I_AD_Message getAD_Message() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -90,7 +90,7 @@ public interface I_AD_WF_Process */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name AD_User_ID */ public static final String COLUMNNAME_AD_User_ID = "AD_User_ID"; @@ -105,7 +105,7 @@ public interface I_AD_WF_Process */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name AD_WF_Process_ID */ public static final String COLUMNNAME_AD_WF_Process_ID = "AD_WF_Process_ID"; @@ -120,6 +120,15 @@ public interface I_AD_WF_Process */ public int getAD_WF_Process_ID(); + /** Column name AD_WF_Process_UU */ + public static final String COLUMNNAME_AD_WF_Process_UU = "AD_WF_Process_UU"; + + /** Set AD_WF_Process_UU */ + public void setAD_WF_Process_UU (String AD_WF_Process_UU); + + /** Get AD_WF_Process_UU */ + public String getAD_WF_Process_UU(); + /** Column name AD_WF_Responsible_ID */ public static final String COLUMNNAME_AD_WF_Responsible_ID = "AD_WF_Responsible_ID"; @@ -133,7 +142,7 @@ public interface I_AD_WF_Process */ public int getAD_WF_Responsible_ID(); - public I_AD_WF_Responsible getAD_WF_Responsible() throws RuntimeException; + public org.compiere.model.I_AD_WF_Responsible getAD_WF_Responsible() throws RuntimeException; /** Column name AD_Workflow_ID */ public static final String COLUMNNAME_AD_Workflow_ID = "AD_Workflow_ID"; @@ -148,7 +157,7 @@ public interface I_AD_WF_Process */ public int getAD_Workflow_ID(); - public I_AD_Workflow getAD_Workflow() throws RuntimeException; + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_WF_ProcessData.java b/org.adempiere.base/src/org/compiere/model/I_AD_WF_ProcessData.java index 8b026e627b..e14068b03b 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_WF_ProcessData.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_WF_ProcessData.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_WF_ProcessData - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_WF_ProcessData { @@ -31,7 +31,7 @@ public interface I_AD_WF_ProcessData public static final String Table_Name = "AD_WF_ProcessData"; /** AD_Table_ID=648 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 648; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_AD_WF_ProcessData */ public int getAD_WF_ProcessData_ID(); + /** Column name AD_WF_ProcessData_UU */ + public static final String COLUMNNAME_AD_WF_ProcessData_UU = "AD_WF_ProcessData_UU"; + + /** Set AD_WF_ProcessData_UU */ + public void setAD_WF_ProcessData_UU (String AD_WF_ProcessData_UU); + + /** Get AD_WF_ProcessData_UU */ + public String getAD_WF_ProcessData_UU(); + /** Column name AD_WF_Process_ID */ public static final String COLUMNNAME_AD_WF_Process_ID = "AD_WF_Process_ID"; @@ -88,7 +97,7 @@ public interface I_AD_WF_ProcessData */ public int getAD_WF_Process_ID(); - public I_AD_WF_Process getAD_WF_Process() throws RuntimeException; + public org.compiere.model.I_AD_WF_Process getAD_WF_Process() throws RuntimeException; /** Column name AttributeName */ public static final String COLUMNNAME_AttributeName = "AttributeName"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_WF_Responsible.java b/org.adempiere.base/src/org/compiere/model/I_AD_WF_Responsible.java index 3eea95db7b..d0d6bbd767 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_WF_Responsible.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_WF_Responsible.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_WF_Responsible - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_WF_Responsible { @@ -31,7 +31,7 @@ public interface I_AD_WF_Responsible public static final String Table_Name = "AD_WF_Responsible"; /** AD_Table_ID=646 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 646; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_AD_WF_Responsible */ public int getAD_Role_ID(); - public I_AD_Role getAD_Role() throws RuntimeException; + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException; /** Column name AD_User_ID */ public static final String COLUMNNAME_AD_User_ID = "AD_User_ID"; @@ -90,7 +90,7 @@ public interface I_AD_WF_Responsible */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name AD_WF_Responsible_ID */ public static final String COLUMNNAME_AD_WF_Responsible_ID = "AD_WF_Responsible_ID"; @@ -105,6 +105,15 @@ public interface I_AD_WF_Responsible */ public int getAD_WF_Responsible_ID(); + /** Column name AD_WF_Responsible_UU */ + public static final String COLUMNNAME_AD_WF_Responsible_UU = "AD_WF_Responsible_UU"; + + /** Set AD_WF_Responsible_UU */ + public void setAD_WF_Responsible_UU (String AD_WF_Responsible_UU); + + /** Get AD_WF_Responsible_UU */ + public String getAD_WF_Responsible_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Window.java b/org.adempiere.base/src/org/compiere/model/I_AD_Window.java index 4cf23b4ceb..e88cbf444b 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Window.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Window.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Window - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Window { @@ -31,7 +31,7 @@ public interface I_AD_Window public static final String Table_Name = "AD_Window"; /** AD_Table_ID=105 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 105; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,7 +62,7 @@ public interface I_AD_Window */ public int getAD_Color_ID(); - public I_AD_Color getAD_Color() throws RuntimeException; + public org.compiere.model.I_AD_Color getAD_Color() throws RuntimeException; /** Column name AD_Image_ID */ public static final String COLUMNNAME_AD_Image_ID = "AD_Image_ID"; @@ -77,7 +77,7 @@ public interface I_AD_Window */ public int getAD_Image_ID(); - public I_AD_Image getAD_Image() throws RuntimeException; + public org.compiere.model.I_AD_Image getAD_Image() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -105,6 +105,15 @@ public interface I_AD_Window */ public int getAD_Window_ID(); + /** Column name AD_Window_UU */ + public static final String COLUMNNAME_AD_Window_UU = "AD_Window_UU"; + + /** Set AD_Window_UU */ + public void setAD_Window_UU (String AD_Window_UU); + + /** Get AD_Window_UU */ + public String getAD_Window_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Window_Access.java b/org.adempiere.base/src/org/compiere/model/I_AD_Window_Access.java index 0855c33b40..d1f419960e 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Window_Access.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Window_Access.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Window_Access - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Window_Access { @@ -31,7 +31,7 @@ public interface I_AD_Window_Access public static final String Table_Name = "AD_Window_Access"; /** AD_Table_ID=201 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 201; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_AD_Window_Access */ public int getAD_Role_ID(); - public I_AD_Role getAD_Role() throws RuntimeException; + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException; + + /** Column name AD_Window_Access_UU */ + public static final String COLUMNNAME_AD_Window_Access_UU = "AD_Window_Access_UU"; + + /** Set AD_Window_Access_UU */ + public void setAD_Window_Access_UU (String AD_Window_Access_UU); + + /** Get AD_Window_Access_UU */ + public String getAD_Window_Access_UU(); /** Column name AD_Window_ID */ public static final String COLUMNNAME_AD_Window_ID = "AD_Window_ID"; @@ -90,7 +99,7 @@ public interface I_AD_Window_Access */ public int getAD_Window_ID(); - public I_AD_Window getAD_Window() throws RuntimeException; + public org.compiere.model.I_AD_Window getAD_Window() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_WizardProcess.java b/org.adempiere.base/src/org/compiere/model/I_AD_WizardProcess.java index 740854c2ba..e0e312c452 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_WizardProcess.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_WizardProcess.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_WizardProcess - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_WizardProcess { diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Workbench.java b/org.adempiere.base/src/org/compiere/model/I_AD_Workbench.java index a57335776d..cf36f702c7 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Workbench.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Workbench.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Workbench - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Workbench { @@ -31,7 +31,7 @@ public interface I_AD_Workbench public static final String Table_Name = "AD_Workbench"; /** AD_Table_ID=468 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 468; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_AD_Workbench */ public int getAD_Column_ID(); - public I_AD_Column getAD_Column() throws RuntimeException; + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException; /** Column name AD_Image_ID */ public static final String COLUMNNAME_AD_Image_ID = "AD_Image_ID"; @@ -116,6 +116,15 @@ public interface I_AD_Workbench */ public int getAD_Workbench_ID(); + /** Column name AD_Workbench_UU */ + public static final String COLUMNNAME_AD_Workbench_UU = "AD_Workbench_UU"; + + /** Set AD_Workbench_UU */ + public void setAD_Workbench_UU (String AD_Workbench_UU); + + /** Get AD_Workbench_UU */ + public String getAD_Workbench_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_WorkbenchWindow.java b/org.adempiere.base/src/org/compiere/model/I_AD_WorkbenchWindow.java index 706d76492d..15dedf7189 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_WorkbenchWindow.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_WorkbenchWindow.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_WorkbenchWindow - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_WorkbenchWindow { @@ -31,7 +31,7 @@ public interface I_AD_WorkbenchWindow public static final String Table_Name = "AD_WorkbenchWindow"; /** AD_Table_ID=469 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 469; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,7 +62,7 @@ public interface I_AD_WorkbenchWindow */ public int getAD_Form_ID(); - public I_AD_Form getAD_Form() throws RuntimeException; + public org.compiere.model.I_AD_Form getAD_Form() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -90,7 +90,7 @@ public interface I_AD_WorkbenchWindow */ public int getAD_Process_ID(); - public I_AD_Process getAD_Process() throws RuntimeException; + public org.compiere.model.I_AD_Process getAD_Process() throws RuntimeException; /** Column name AD_Task_ID */ public static final String COLUMNNAME_AD_Task_ID = "AD_Task_ID"; @@ -105,7 +105,7 @@ public interface I_AD_WorkbenchWindow */ public int getAD_Task_ID(); - public I_AD_Task getAD_Task() throws RuntimeException; + public org.compiere.model.I_AD_Task getAD_Task() throws RuntimeException; /** Column name AD_Window_ID */ public static final String COLUMNNAME_AD_Window_ID = "AD_Window_ID"; @@ -120,7 +120,7 @@ public interface I_AD_WorkbenchWindow */ public int getAD_Window_ID(); - public I_AD_Window getAD_Window() throws RuntimeException; + public org.compiere.model.I_AD_Window getAD_Window() throws RuntimeException; /** Column name AD_Workbench_ID */ public static final String COLUMNNAME_AD_Workbench_ID = "AD_Workbench_ID"; @@ -135,7 +135,7 @@ public interface I_AD_WorkbenchWindow */ public int getAD_Workbench_ID(); - public I_AD_Workbench getAD_Workbench() throws RuntimeException; + public org.compiere.model.I_AD_Workbench getAD_Workbench() throws RuntimeException; /** Column name AD_WorkbenchWindow_ID */ public static final String COLUMNNAME_AD_WorkbenchWindow_ID = "AD_WorkbenchWindow_ID"; @@ -146,6 +146,15 @@ public interface I_AD_WorkbenchWindow /** Get Workbench Window */ public int getAD_WorkbenchWindow_ID(); + /** Column name AD_WorkbenchWindow_UU */ + public static final String COLUMNNAME_AD_WorkbenchWindow_UU = "AD_WorkbenchWindow_UU"; + + /** Set AD_WorkbenchWindow_UU */ + public void setAD_WorkbenchWindow_UU (String AD_WorkbenchWindow_UU); + + /** Get AD_WorkbenchWindow_UU */ + public String getAD_WorkbenchWindow_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Workflow.java b/org.adempiere.base/src/org/compiere/model/I_AD_Workflow.java index bd32d7d2b9..b99abf8f0b 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Workflow.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Workflow.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Workflow - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Workflow { diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_WorkflowProcessor.java b/org.adempiere.base/src/org/compiere/model/I_AD_WorkflowProcessor.java index 6843046966..c7010844e8 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_WorkflowProcessor.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_WorkflowProcessor.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_WorkflowProcessor - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_WorkflowProcessor { @@ -65,10 +65,10 @@ public interface I_AD_WorkflowProcessor /** Column name AD_Schedule_ID */ public static final String COLUMNNAME_AD_Schedule_ID = "AD_Schedule_ID"; - /** Set AD_Schedule_ID */ + /** Set Schedule */ public void setAD_Schedule_ID (int AD_Schedule_ID); - /** Get AD_Schedule_ID */ + /** Get Schedule */ public int getAD_Schedule_ID(); public org.compiere.model.I_AD_Schedule getAD_Schedule() throws RuntimeException; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_WorkflowProcessorLog.java b/org.adempiere.base/src/org/compiere/model/I_AD_WorkflowProcessorLog.java index 03908d56b2..be1f4cdab9 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_WorkflowProcessorLog.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_WorkflowProcessorLog.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_WorkflowProcessorLog - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_WorkflowProcessorLog { @@ -31,13 +31,13 @@ public interface I_AD_WorkflowProcessorLog public static final String Table_Name = "AD_WorkflowProcessorLog"; /** AD_Table_ID=696 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 696; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); - /** AccessLevel = 4 - System + /** AccessLevel = 6 - System - Client */ - BigDecimal accessLevel = BigDecimal.valueOf(4); + BigDecimal accessLevel = BigDecimal.valueOf(6); /** Load Meta Data */ @@ -75,7 +75,7 @@ public interface I_AD_WorkflowProcessorLog */ public int getAD_WorkflowProcessor_ID(); - public I_AD_WorkflowProcessor getAD_WorkflowProcessor() throws RuntimeException; + public org.compiere.model.I_AD_WorkflowProcessor getAD_WorkflowProcessor() throws RuntimeException; /** Column name AD_WorkflowProcessorLog_ID */ public static final String COLUMNNAME_AD_WorkflowProcessorLog_ID = "AD_WorkflowProcessorLog_ID"; @@ -90,6 +90,15 @@ public interface I_AD_WorkflowProcessorLog */ public int getAD_WorkflowProcessorLog_ID(); + /** Column name AD_WorkflowProcessorLog_UU */ + public static final String COLUMNNAME_AD_WorkflowProcessorLog_UU = "AD_WorkflowProcessorLog_UU"; + + /** Set AD_WorkflowProcessorLog_UU */ + public void setAD_WorkflowProcessorLog_UU (String AD_WorkflowProcessorLog_UU); + + /** Get AD_WorkflowProcessorLog_UU */ + public String getAD_WorkflowProcessorLog_UU(); + /** Column name BinaryData */ public static final String COLUMNNAME_BinaryData = "BinaryData"; diff --git a/org.adempiere.base/src/org/compiere/model/I_AD_Workflow_Access.java b/org.adempiere.base/src/org/compiere/model/I_AD_Workflow_Access.java index 7cb002c2ae..d20af74442 100644 --- a/org.adempiere.base/src/org/compiere/model/I_AD_Workflow_Access.java +++ b/org.adempiere.base/src/org/compiere/model/I_AD_Workflow_Access.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_Workflow_Access - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_AD_Workflow_Access { @@ -31,7 +31,7 @@ public interface I_AD_Workflow_Access public static final String Table_Name = "AD_Workflow_Access"; /** AD_Table_ID=202 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 202; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_AD_Workflow_Access */ public int getAD_Role_ID(); - public I_AD_Role getAD_Role() throws RuntimeException; + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException; + + /** Column name AD_Workflow_Access_UU */ + public static final String COLUMNNAME_AD_Workflow_Access_UU = "AD_Workflow_Access_UU"; + + /** Set AD_Workflow_Access_UU */ + public void setAD_Workflow_Access_UU (String AD_Workflow_Access_UU); + + /** Get AD_Workflow_Access_UU */ + public String getAD_Workflow_Access_UU(); /** Column name AD_Workflow_ID */ public static final String COLUMNNAME_AD_Workflow_ID = "AD_Workflow_ID"; @@ -90,7 +99,7 @@ public interface I_AD_Workflow_Access */ public int getAD_Workflow_ID(); - public I_AD_Workflow getAD_Workflow() throws RuntimeException; + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_ASP_ClientException.java b/org.adempiere.base/src/org/compiere/model/I_ASP_ClientException.java index b1f209e5da..7b6e2822a9 100644 --- a/org.adempiere.base/src/org/compiere/model/I_ASP_ClientException.java +++ b/org.adempiere.base/src/org/compiere/model/I_ASP_ClientException.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for ASP_ClientException - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_ASP_ClientException { @@ -31,7 +31,7 @@ public interface I_ASP_ClientException public static final String Table_Name = "ASP_ClientException"; /** AD_Table_ID=53057 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53057; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,7 +62,7 @@ public interface I_ASP_ClientException */ public int getAD_Field_ID(); - public I_AD_Field getAD_Field() throws RuntimeException; + public org.compiere.model.I_AD_Field getAD_Field() throws RuntimeException; /** Column name AD_Form_ID */ public static final String COLUMNNAME_AD_Form_ID = "AD_Form_ID"; @@ -77,7 +77,7 @@ public interface I_ASP_ClientException */ public int getAD_Form_ID(); - public I_AD_Form getAD_Form() throws RuntimeException; + public org.compiere.model.I_AD_Form getAD_Form() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -105,7 +105,7 @@ public interface I_ASP_ClientException */ public int getAD_Process_ID(); - public I_AD_Process getAD_Process() throws RuntimeException; + public org.compiere.model.I_AD_Process getAD_Process() throws RuntimeException; /** Column name AD_Process_Para_ID */ public static final String COLUMNNAME_AD_Process_Para_ID = "AD_Process_Para_ID"; @@ -116,7 +116,7 @@ public interface I_ASP_ClientException /** Get Process Parameter */ public int getAD_Process_Para_ID(); - public I_AD_Process_Para getAD_Process_Para() throws RuntimeException; + public org.compiere.model.I_AD_Process_Para getAD_Process_Para() throws RuntimeException; /** Column name AD_Tab_ID */ public static final String COLUMNNAME_AD_Tab_ID = "AD_Tab_ID"; @@ -131,7 +131,7 @@ public interface I_ASP_ClientException */ public int getAD_Tab_ID(); - public I_AD_Tab getAD_Tab() throws RuntimeException; + public org.compiere.model.I_AD_Tab getAD_Tab() throws RuntimeException; /** Column name AD_Task_ID */ public static final String COLUMNNAME_AD_Task_ID = "AD_Task_ID"; @@ -146,7 +146,7 @@ public interface I_ASP_ClientException */ public int getAD_Task_ID(); - public I_AD_Task getAD_Task() throws RuntimeException; + public org.compiere.model.I_AD_Task getAD_Task() throws RuntimeException; /** Column name AD_WF_Node_ID */ public static final String COLUMNNAME_AD_WF_Node_ID = "AD_WF_Node_ID"; @@ -161,7 +161,7 @@ public interface I_ASP_ClientException */ public int getAD_WF_Node_ID(); - public I_AD_WF_Node getAD_WF_Node() throws RuntimeException; + public org.compiere.model.I_AD_WF_Node getAD_WF_Node() throws RuntimeException; /** Column name AD_Window_ID */ public static final String COLUMNNAME_AD_Window_ID = "AD_Window_ID"; @@ -176,7 +176,7 @@ public interface I_ASP_ClientException */ public int getAD_Window_ID(); - public I_AD_Window getAD_Window() throws RuntimeException; + public org.compiere.model.I_AD_Window getAD_Window() throws RuntimeException; /** Column name AD_Workflow_ID */ public static final String COLUMNNAME_AD_Workflow_ID = "AD_Workflow_ID"; @@ -191,7 +191,7 @@ public interface I_ASP_ClientException */ public int getAD_Workflow_ID(); - public I_AD_Workflow getAD_Workflow() throws RuntimeException; + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException; /** Column name ASP_ClientException_ID */ public static final String COLUMNNAME_ASP_ClientException_ID = "ASP_ClientException_ID"; @@ -202,6 +202,15 @@ public interface I_ASP_ClientException /** Get Client Exception */ public int getASP_ClientException_ID(); + /** Column name ASP_ClientException_UU */ + public static final String COLUMNNAME_ASP_ClientException_UU = "ASP_ClientException_UU"; + + /** Set ASP_ClientException_UU */ + public void setASP_ClientException_UU (String ASP_ClientException_UU); + + /** Get ASP_ClientException_UU */ + public String getASP_ClientException_UU(); + /** Column name ASP_Status */ public static final String COLUMNNAME_ASP_Status = "ASP_Status"; diff --git a/org.adempiere.base/src/org/compiere/model/I_ASP_ClientLevel.java b/org.adempiere.base/src/org/compiere/model/I_ASP_ClientLevel.java index 0f640a1c44..1aef837804 100644 --- a/org.adempiere.base/src/org/compiere/model/I_ASP_ClientLevel.java +++ b/org.adempiere.base/src/org/compiere/model/I_ASP_ClientLevel.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for ASP_ClientLevel - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_ASP_ClientLevel { @@ -31,7 +31,7 @@ public interface I_ASP_ClientLevel public static final String Table_Name = "ASP_ClientLevel"; /** AD_Table_ID=53056 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53056; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -71,6 +71,15 @@ public interface I_ASP_ClientLevel /** Get Client Level */ public int getASP_ClientLevel_ID(); + /** Column name ASP_ClientLevel_UU */ + public static final String COLUMNNAME_ASP_ClientLevel_UU = "ASP_ClientLevel_UU"; + + /** Set ASP_ClientLevel_UU */ + public void setASP_ClientLevel_UU (String ASP_ClientLevel_UU); + + /** Get ASP_ClientLevel_UU */ + public String getASP_ClientLevel_UU(); + /** Column name ASP_Level_ID */ public static final String COLUMNNAME_ASP_Level_ID = "ASP_Level_ID"; @@ -80,7 +89,7 @@ public interface I_ASP_ClientLevel /** Get ASP Level */ public int getASP_Level_ID(); - public I_ASP_Level getASP_Level() throws RuntimeException; + public org.compiere.model.I_ASP_Level getASP_Level() throws RuntimeException; /** Column name ASP_Module_ID */ public static final String COLUMNNAME_ASP_Module_ID = "ASP_Module_ID"; @@ -91,7 +100,7 @@ public interface I_ASP_ClientLevel /** Get ASP Module */ public int getASP_Module_ID(); - public I_ASP_Module getASP_Module() throws RuntimeException; + public org.compiere.model.I_ASP_Module getASP_Module() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_ASP_Field.java b/org.adempiere.base/src/org/compiere/model/I_ASP_Field.java index 27225dd811..09e462cdb5 100644 --- a/org.adempiere.base/src/org/compiere/model/I_ASP_Field.java +++ b/org.adempiere.base/src/org/compiere/model/I_ASP_Field.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for ASP_Field - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_ASP_Field { @@ -31,7 +31,7 @@ public interface I_ASP_Field public static final String Table_Name = "ASP_Field"; /** AD_Table_ID=53048 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53048; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,7 +62,7 @@ public interface I_ASP_Field */ public int getAD_Field_ID(); - public I_AD_Field getAD_Field() throws RuntimeException; + public org.compiere.model.I_AD_Field getAD_Field() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -86,6 +86,15 @@ public interface I_ASP_Field /** Get ASP Field */ public int getASP_Field_ID(); + /** Column name ASP_Field_UU */ + public static final String COLUMNNAME_ASP_Field_UU = "ASP_Field_UU"; + + /** Set ASP_Field_UU */ + public void setASP_Field_UU (String ASP_Field_UU); + + /** Get ASP_Field_UU */ + public String getASP_Field_UU(); + /** Column name ASP_Status */ public static final String COLUMNNAME_ASP_Status = "ASP_Status"; @@ -104,7 +113,7 @@ public interface I_ASP_Field /** Get ASP Tab */ public int getASP_Tab_ID(); - public I_ASP_Tab getASP_Tab() throws RuntimeException; + public org.compiere.model.I_ASP_Tab getASP_Tab() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_ASP_Form.java b/org.adempiere.base/src/org/compiere/model/I_ASP_Form.java index e46ec61cdb..847bd6453b 100644 --- a/org.adempiere.base/src/org/compiere/model/I_ASP_Form.java +++ b/org.adempiere.base/src/org/compiere/model/I_ASP_Form.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for ASP_Form - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_ASP_Form { @@ -31,7 +31,7 @@ public interface I_ASP_Form public static final String Table_Name = "ASP_Form"; /** AD_Table_ID=53051 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53051; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,7 +62,7 @@ public interface I_ASP_Form */ public int getAD_Form_ID(); - public I_AD_Form getAD_Form() throws RuntimeException; + public org.compiere.model.I_AD_Form getAD_Form() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -86,6 +86,15 @@ public interface I_ASP_Form /** Get ASP Form */ public int getASP_Form_ID(); + /** Column name ASP_Form_UU */ + public static final String COLUMNNAME_ASP_Form_UU = "ASP_Form_UU"; + + /** Set ASP_Form_UU */ + public void setASP_Form_UU (String ASP_Form_UU); + + /** Get ASP_Form_UU */ + public String getASP_Form_UU(); + /** Column name ASP_Level_ID */ public static final String COLUMNNAME_ASP_Level_ID = "ASP_Level_ID"; @@ -95,7 +104,7 @@ public interface I_ASP_Form /** Get ASP Level */ public int getASP_Level_ID(); - public I_ASP_Level getASP_Level() throws RuntimeException; + public org.compiere.model.I_ASP_Level getASP_Level() throws RuntimeException; /** Column name ASP_Status */ public static final String COLUMNNAME_ASP_Status = "ASP_Status"; diff --git a/org.adempiere.base/src/org/compiere/model/I_ASP_Level.java b/org.adempiere.base/src/org/compiere/model/I_ASP_Level.java index 00d0301716..159c79362d 100644 --- a/org.adempiere.base/src/org/compiere/model/I_ASP_Level.java +++ b/org.adempiere.base/src/org/compiere/model/I_ASP_Level.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for ASP_Level - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_ASP_Level { @@ -31,7 +31,7 @@ public interface I_ASP_Level public static final String Table_Name = "ASP_Level"; /** AD_Table_ID=53055 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53055; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -71,6 +71,15 @@ public interface I_ASP_Level /** Get ASP Level */ public int getASP_Level_ID(); + /** Column name ASP_Level_UU */ + public static final String COLUMNNAME_ASP_Level_UU = "ASP_Level_UU"; + + /** Set ASP_Level_UU */ + public void setASP_Level_UU (String ASP_Level_UU); + + /** Get ASP_Level_UU */ + public String getASP_Level_UU(); + /** Column name ASP_Module_ID */ public static final String COLUMNNAME_ASP_Module_ID = "ASP_Module_ID"; @@ -80,7 +89,7 @@ public interface I_ASP_Level /** Get ASP Module */ public int getASP_Module_ID(); - public I_ASP_Module getASP_Module() throws RuntimeException; + public org.compiere.model.I_ASP_Module getASP_Module() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_ASP_Module.java b/org.adempiere.base/src/org/compiere/model/I_ASP_Module.java index fd0752653c..be2358c419 100644 --- a/org.adempiere.base/src/org/compiere/model/I_ASP_Module.java +++ b/org.adempiere.base/src/org/compiere/model/I_ASP_Module.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for ASP_Module - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_ASP_Module { @@ -31,7 +31,7 @@ public interface I_ASP_Module public static final String Table_Name = "ASP_Module"; /** AD_Table_ID=53054 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53054; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -71,6 +71,15 @@ public interface I_ASP_Module /** Get ASP Module */ public int getASP_Module_ID(); + /** Column name ASP_Module_UU */ + public static final String COLUMNNAME_ASP_Module_UU = "ASP_Module_UU"; + + /** Set ASP_Module_UU */ + public void setASP_Module_UU (String ASP_Module_UU); + + /** Get ASP_Module_UU */ + public String getASP_Module_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_ASP_Process.java b/org.adempiere.base/src/org/compiere/model/I_ASP_Process.java index c96350bc63..e1a14cd92e 100644 --- a/org.adempiere.base/src/org/compiere/model/I_ASP_Process.java +++ b/org.adempiere.base/src/org/compiere/model/I_ASP_Process.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for ASP_Process - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_ASP_Process { @@ -31,7 +31,7 @@ public interface I_ASP_Process public static final String Table_Name = "ASP_Process"; /** AD_Table_ID=53049 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53049; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_ASP_Process */ public int getAD_Process_ID(); - public I_AD_Process getAD_Process() throws RuntimeException; + public org.compiere.model.I_AD_Process getAD_Process() throws RuntimeException; /** Column name ASP_Level_ID */ public static final String COLUMNNAME_ASP_Level_ID = "ASP_Level_ID"; @@ -86,7 +86,7 @@ public interface I_ASP_Process /** Get ASP Level */ public int getASP_Level_ID(); - public I_ASP_Level getASP_Level() throws RuntimeException; + public org.compiere.model.I_ASP_Level getASP_Level() throws RuntimeException; /** Column name ASP_Process_ID */ public static final String COLUMNNAME_ASP_Process_ID = "ASP_Process_ID"; @@ -97,6 +97,15 @@ public interface I_ASP_Process /** Get ASP Process */ public int getASP_Process_ID(); + /** Column name ASP_Process_UU */ + public static final String COLUMNNAME_ASP_Process_UU = "ASP_Process_UU"; + + /** Set ASP_Process_UU */ + public void setASP_Process_UU (String ASP_Process_UU); + + /** Get ASP_Process_UU */ + public String getASP_Process_UU(); + /** Column name ASP_Status */ public static final String COLUMNNAME_ASP_Status = "ASP_Status"; diff --git a/org.adempiere.base/src/org/compiere/model/I_ASP_Process_Para.java b/org.adempiere.base/src/org/compiere/model/I_ASP_Process_Para.java index 2950b78e2b..88e5c6c519 100644 --- a/org.adempiere.base/src/org/compiere/model/I_ASP_Process_Para.java +++ b/org.adempiere.base/src/org/compiere/model/I_ASP_Process_Para.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for ASP_Process_Para - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_ASP_Process_Para { @@ -31,7 +31,7 @@ public interface I_ASP_Process_Para public static final String Table_Name = "ASP_Process_Para"; /** AD_Table_ID=53050 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53050; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -71,7 +71,7 @@ public interface I_ASP_Process_Para /** Get Process Parameter */ public int getAD_Process_Para_ID(); - public I_AD_Process_Para getAD_Process_Para() throws RuntimeException; + public org.compiere.model.I_AD_Process_Para getAD_Process_Para() throws RuntimeException; /** Column name ASP_Process_ID */ public static final String COLUMNNAME_ASP_Process_ID = "ASP_Process_ID"; @@ -82,7 +82,7 @@ public interface I_ASP_Process_Para /** Get ASP Process */ public int getASP_Process_ID(); - public I_ASP_Process getASP_Process() throws RuntimeException; + public org.compiere.model.I_ASP_Process getASP_Process() throws RuntimeException; /** Column name ASP_Process_Para_ID */ public static final String COLUMNNAME_ASP_Process_Para_ID = "ASP_Process_Para_ID"; @@ -93,6 +93,15 @@ public interface I_ASP_Process_Para /** Get ASP Process Parameter */ public int getASP_Process_Para_ID(); + /** Column name ASP_Process_Para_UU */ + public static final String COLUMNNAME_ASP_Process_Para_UU = "ASP_Process_Para_UU"; + + /** Set ASP_Process_Para_UU */ + public void setASP_Process_Para_UU (String ASP_Process_Para_UU); + + /** Get ASP_Process_Para_UU */ + public String getASP_Process_Para_UU(); + /** Column name ASP_Status */ public static final String COLUMNNAME_ASP_Status = "ASP_Status"; diff --git a/org.adempiere.base/src/org/compiere/model/I_ASP_Ref_List.java b/org.adempiere.base/src/org/compiere/model/I_ASP_Ref_List.java new file mode 100644 index 0000000000..0cbfd8ed8e --- /dev/null +++ b/org.adempiere.base/src/org/compiere/model/I_ASP_Ref_List.java @@ -0,0 +1,177 @@ +/****************************************************************************** + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * + * This program is free software, you can redistribute it and/or modify it * + * under the terms version 2 of the GNU General Public License as published * + * by the Free Software Foundation. This program is distributed in the hope * + * that it will be useful, but WITHOUT ANY WARRANTY, without even the implied * + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * + * See the GNU General Public License for more details. * + * You should have received a copy of the GNU General Public License along * + * with this program, if not, write to the Free Software Foundation, Inc., * + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * + * For the text or an alternative of this public license, you may reach us * + * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * + * or via info@compiere.org or http://www.compiere.org/license.html * + *****************************************************************************/ +package org.compiere.model; + +import java.math.BigDecimal; +import java.sql.Timestamp; +import org.compiere.util.KeyNamePair; + +/** Generated Interface for ASP_Ref_List + * @author iDempiere (generated) + * @version Release 1.0a + */ +public interface I_ASP_Ref_List +{ + + /** TableName=ASP_Ref_List */ + public static final String Table_Name = "ASP_Ref_List"; + + /** AD_Table_ID=200011 */ + public static final int Table_ID = 200011; + + KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); + + /** AccessLevel = 4 - System + */ + BigDecimal accessLevel = BigDecimal.valueOf(4); + + /** Load Meta Data */ + + /** Column name AD_Client_ID */ + public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; + + /** Get Client. + * Client/Tenant for this installation. + */ + public int getAD_Client_ID(); + + /** Column name AD_Org_ID */ + public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; + + /** Set Organization. + * Organizational entity within client + */ + public void setAD_Org_ID (int AD_Org_ID); + + /** Get Organization. + * Organizational entity within client + */ + public int getAD_Org_ID(); + + /** Column name AD_Reference_ID */ + public static final String COLUMNNAME_AD_Reference_ID = "AD_Reference_ID"; + + /** Set Reference. + * System Reference and Validation + */ + public void setAD_Reference_ID (int AD_Reference_ID); + + /** Get Reference. + * System Reference and Validation + */ + public int getAD_Reference_ID(); + + public org.compiere.model.I_AD_Reference getAD_Reference() throws RuntimeException; + + /** Column name AD_Ref_List_ID */ + public static final String COLUMNNAME_AD_Ref_List_ID = "AD_Ref_List_ID"; + + /** Set Reference List. + * Reference List based on Table + */ + public void setAD_Ref_List_ID (int AD_Ref_List_ID); + + /** Get Reference List. + * Reference List based on Table + */ + public int getAD_Ref_List_ID(); + + public org.compiere.model.I_AD_Ref_List getAD_Ref_List() throws RuntimeException; + + /** Column name ASP_Level_ID */ + public static final String COLUMNNAME_ASP_Level_ID = "ASP_Level_ID"; + + /** Set ASP Level */ + public void setASP_Level_ID (int ASP_Level_ID); + + /** Get ASP Level */ + public int getASP_Level_ID(); + + public org.compiere.model.I_ASP_Level getASP_Level() throws RuntimeException; + + /** Column name ASP_Ref_List_ID */ + public static final String COLUMNNAME_ASP_Ref_List_ID = "ASP_Ref_List_ID"; + + /** Set ASP_Ref_List */ + public void setASP_Ref_List_ID (int ASP_Ref_List_ID); + + /** Get ASP_Ref_List */ + public int getASP_Ref_List_ID(); + + /** Column name ASP_Ref_List_UU */ + public static final String COLUMNNAME_ASP_Ref_List_UU = "ASP_Ref_List_UU"; + + /** Set ASP_Ref_List_UU */ + public void setASP_Ref_List_UU (String ASP_Ref_List_UU); + + /** Get ASP_Ref_List_UU */ + public String getASP_Ref_List_UU(); + + /** Column name ASP_Status */ + public static final String COLUMNNAME_ASP_Status = "ASP_Status"; + + /** Set ASP Status */ + public void setASP_Status (String ASP_Status); + + /** Get ASP Status */ + public String getASP_Status(); + + /** Column name Created */ + public static final String COLUMNNAME_Created = "Created"; + + /** Get Created. + * Date this record was created + */ + public Timestamp getCreated(); + + /** Column name CreatedBy */ + public static final String COLUMNNAME_CreatedBy = "CreatedBy"; + + /** Get Created By. + * User who created this records + */ + public int getCreatedBy(); + + /** Column name IsActive */ + public static final String COLUMNNAME_IsActive = "IsActive"; + + /** Set Active. + * The record is active in the system + */ + public void setIsActive (boolean IsActive); + + /** Get Active. + * The record is active in the system + */ + public boolean isActive(); + + /** Column name Updated */ + public static final String COLUMNNAME_Updated = "Updated"; + + /** Get Updated. + * Date this record was updated + */ + public Timestamp getUpdated(); + + /** Column name UpdatedBy */ + public static final String COLUMNNAME_UpdatedBy = "UpdatedBy"; + + /** Get Updated By. + * User who updated this records + */ + public int getUpdatedBy(); +} diff --git a/org.adempiere.base/src/org/compiere/model/I_ASP_Tab.java b/org.adempiere.base/src/org/compiere/model/I_ASP_Tab.java index 801505d976..0b5fede0b1 100644 --- a/org.adempiere.base/src/org/compiere/model/I_ASP_Tab.java +++ b/org.adempiere.base/src/org/compiere/model/I_ASP_Tab.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for ASP_Tab - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_ASP_Tab { @@ -31,7 +31,7 @@ public interface I_ASP_Tab public static final String Table_Name = "ASP_Tab"; /** AD_Table_ID=53047 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53047; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_ASP_Tab */ public int getAD_Tab_ID(); - public I_AD_Tab getAD_Tab() throws RuntimeException; + public org.compiere.model.I_AD_Tab getAD_Tab() throws RuntimeException; /** Column name AllFields */ public static final String COLUMNNAME_AllFields = "AllFields"; @@ -104,6 +104,15 @@ public interface I_ASP_Tab /** Get ASP Tab */ public int getASP_Tab_ID(); + /** Column name ASP_Tab_UU */ + public static final String COLUMNNAME_ASP_Tab_UU = "ASP_Tab_UU"; + + /** Set ASP_Tab_UU */ + public void setASP_Tab_UU (String ASP_Tab_UU); + + /** Get ASP_Tab_UU */ + public String getASP_Tab_UU(); + /** Column name ASP_Window_ID */ public static final String COLUMNNAME_ASP_Window_ID = "ASP_Window_ID"; @@ -113,7 +122,7 @@ public interface I_ASP_Tab /** Get ASP Window */ public int getASP_Window_ID(); - public I_ASP_Window getASP_Window() throws RuntimeException; + public org.compiere.model.I_ASP_Window getASP_Window() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_ASP_Task.java b/org.adempiere.base/src/org/compiere/model/I_ASP_Task.java index aebf7d43a5..178ecb3a8e 100644 --- a/org.adempiere.base/src/org/compiere/model/I_ASP_Task.java +++ b/org.adempiere.base/src/org/compiere/model/I_ASP_Task.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for ASP_Task - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_ASP_Task { @@ -31,7 +31,7 @@ public interface I_ASP_Task public static final String Table_Name = "ASP_Task"; /** AD_Table_ID=53052 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53052; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_ASP_Task */ public int getAD_Task_ID(); - public I_AD_Task getAD_Task() throws RuntimeException; + public org.compiere.model.I_AD_Task getAD_Task() throws RuntimeException; /** Column name ASP_Level_ID */ public static final String COLUMNNAME_ASP_Level_ID = "ASP_Level_ID"; @@ -86,7 +86,7 @@ public interface I_ASP_Task /** Get ASP Level */ public int getASP_Level_ID(); - public I_ASP_Level getASP_Level() throws RuntimeException; + public org.compiere.model.I_ASP_Level getASP_Level() throws RuntimeException; /** Column name ASP_Status */ public static final String COLUMNNAME_ASP_Status = "ASP_Status"; @@ -106,6 +106,15 @@ public interface I_ASP_Task /** Get ASP Task */ public int getASP_Task_ID(); + /** Column name ASP_Task_UU */ + public static final String COLUMNNAME_ASP_Task_UU = "ASP_Task_UU"; + + /** Set ASP_Task_UU */ + public void setASP_Task_UU (String ASP_Task_UU); + + /** Get ASP_Task_UU */ + public String getASP_Task_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_ASP_Window.java b/org.adempiere.base/src/org/compiere/model/I_ASP_Window.java index 37edd2b9f1..c6bd092c03 100644 --- a/org.adempiere.base/src/org/compiere/model/I_ASP_Window.java +++ b/org.adempiere.base/src/org/compiere/model/I_ASP_Window.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for ASP_Window - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_ASP_Window { @@ -31,7 +31,7 @@ public interface I_ASP_Window public static final String Table_Name = "ASP_Window"; /** AD_Table_ID=53046 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53046; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_ASP_Window */ public int getAD_Window_ID(); - public I_AD_Window getAD_Window() throws RuntimeException; + public org.compiere.model.I_AD_Window getAD_Window() throws RuntimeException; /** Column name ASP_Level_ID */ public static final String COLUMNNAME_ASP_Level_ID = "ASP_Level_ID"; @@ -86,7 +86,7 @@ public interface I_ASP_Window /** Get ASP Level */ public int getASP_Level_ID(); - public I_ASP_Level getASP_Level() throws RuntimeException; + public org.compiere.model.I_ASP_Level getASP_Level() throws RuntimeException; /** Column name ASP_Status */ public static final String COLUMNNAME_ASP_Status = "ASP_Status"; @@ -106,6 +106,15 @@ public interface I_ASP_Window /** Get ASP Window */ public int getASP_Window_ID(); + /** Column name ASP_Window_UU */ + public static final String COLUMNNAME_ASP_Window_UU = "ASP_Window_UU"; + + /** Set ASP_Window_UU */ + public void setASP_Window_UU (String ASP_Window_UU); + + /** Get ASP_Window_UU */ + public String getASP_Window_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_ASP_Workflow.java b/org.adempiere.base/src/org/compiere/model/I_ASP_Workflow.java index 4bc5720791..86b3b1b5cc 100644 --- a/org.adempiere.base/src/org/compiere/model/I_ASP_Workflow.java +++ b/org.adempiere.base/src/org/compiere/model/I_ASP_Workflow.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for ASP_Workflow - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_ASP_Workflow { @@ -31,7 +31,7 @@ public interface I_ASP_Workflow public static final String Table_Name = "ASP_Workflow"; /** AD_Table_ID=53053 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53053; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_ASP_Workflow */ public int getAD_Workflow_ID(); - public I_AD_Workflow getAD_Workflow() throws RuntimeException; + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException; /** Column name ASP_Level_ID */ public static final String COLUMNNAME_ASP_Level_ID = "ASP_Level_ID"; @@ -86,7 +86,7 @@ public interface I_ASP_Workflow /** Get ASP Level */ public int getASP_Level_ID(); - public I_ASP_Level getASP_Level() throws RuntimeException; + public org.compiere.model.I_ASP_Level getASP_Level() throws RuntimeException; /** Column name ASP_Status */ public static final String COLUMNNAME_ASP_Status = "ASP_Status"; @@ -106,6 +106,15 @@ public interface I_ASP_Workflow /** Get ASP Workflow */ public int getASP_Workflow_ID(); + /** Column name ASP_Workflow_UU */ + public static final String COLUMNNAME_ASP_Workflow_UU = "ASP_Workflow_UU"; + + /** Set ASP_Workflow_UU */ + public void setASP_Workflow_UU (String ASP_Workflow_UU); + + /** Get ASP_Workflow_UU */ + public String getASP_Workflow_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Asset.java b/org.adempiere.base/src/org/compiere/model/I_A_Asset.java index 8f2d398ed3..2b13e59ba7 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Asset.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Asset.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Asset - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Asset { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Acct.java b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Acct.java index ab4f341698..cc97671fe7 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Asset_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Asset_Acct { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Addition.java b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Addition.java index acc8cd9526..4aca569754 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Addition.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Addition.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Asset_Addition - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Asset_Addition { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Change.java b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Change.java index 2a93980a3e..c512c78014 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Change.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Change.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Asset_Change - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Asset_Change { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Class.java b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Class.java index fdfacdb4ab..ef869ddeac 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Class.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Class.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Asset_Class - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Asset_Class { @@ -50,6 +50,15 @@ public interface I_A_Asset_Class /** Get Asset class */ public int getA_Asset_Class_ID(); + /** Column name A_Asset_Class_UU */ + public static final String COLUMNNAME_A_Asset_Class_UU = "A_Asset_Class_UU"; + + /** Set A_Asset_Class_UU */ + public void setA_Asset_Class_UU (String A_Asset_Class_UU); + + /** Get A_Asset_Class_UU */ + public String getA_Asset_Class_UU(); + /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Delivery.java b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Delivery.java index f0aa41b2e4..805e232fbd 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Delivery.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Delivery.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Asset_Delivery - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Asset_Delivery { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Disposed.java b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Disposed.java index bdfa160c8d..e2490aa01a 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Disposed.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Disposed.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Asset_Disposed - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Asset_Disposed { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Group.java b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Group.java index e4b8267c9d..94b4afc6a1 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Group.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Group.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Asset_Group - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Asset_Group { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Group_Acct.java b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Group_Acct.java index 101e3040a7..86e8b67d00 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Group_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Group_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Asset_Group_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Asset_Group_Acct { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Info_Fin.java b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Info_Fin.java index 82f35b71db..e9af8083d8 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Info_Fin.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Info_Fin.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Asset_Info_Fin - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Asset_Info_Fin { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Info_Ins.java b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Info_Ins.java index 73a4729b2d..d4e082ea81 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Info_Ins.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Info_Ins.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Asset_Info_Ins - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Asset_Info_Ins { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Info_Lic.java b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Info_Lic.java index c81fc01157..aa610e98e3 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Info_Lic.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Info_Lic.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Asset_Info_Lic - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Asset_Info_Lic { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Info_Oth.java b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Info_Oth.java index f61d298e32..e52d464db0 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Info_Oth.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Info_Oth.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Asset_Info_Oth - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Asset_Info_Oth { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Info_Tax.java b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Info_Tax.java index f005f3897c..ee4dd5d07c 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Info_Tax.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Info_Tax.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Asset_Info_Tax - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Asset_Info_Tax { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Product.java b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Product.java index db236c67c3..8797fcf2ae 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Product.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Product.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Asset_Product - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Asset_Product { @@ -65,6 +65,15 @@ public interface I_A_Asset_Product /** Get Asset Product */ public int getA_Asset_Product_ID(); + /** Column name A_Asset_Product_UU */ + public static final String COLUMNNAME_A_Asset_Product_UU = "A_Asset_Product_UU"; + + /** Set A_Asset_Product_UU */ + public void setA_Asset_Product_UU (String A_Asset_Product_UU); + + /** Get A_Asset_Product_UU */ + public String getA_Asset_Product_UU(); + /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Retirement.java b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Retirement.java index f5e72daee1..dcf16029be 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Retirement.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Retirement.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Asset_Retirement - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Asset_Retirement { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Reval.java b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Reval.java index 196fbe2b11..4ae67ffbda 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Reval.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Reval.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Asset_Reval - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Asset_Reval { @@ -92,6 +92,15 @@ public interface I_A_Asset_Reval /** Get Asset Revaluation */ public int getA_Asset_Reval_ID(); + /** Column name A_Asset_Reval_UU */ + public static final String COLUMNNAME_A_Asset_Reval_UU = "A_Asset_Reval_UU"; + + /** Set A_Asset_Reval_UU */ + public void setA_Asset_Reval_UU (String A_Asset_Reval_UU); + + /** Get A_Asset_Reval_UU */ + public String getA_Asset_Reval_UU(); + /** Column name A_Change_Acumulated_Depr */ public static final String COLUMNNAME_A_Change_Acumulated_Depr = "A_Change_Acumulated_Depr"; diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Reval_Entry.java b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Reval_Entry.java index 80c7d6b402..b2be6b4584 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Reval_Entry.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Reval_Entry.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Asset_Reval_Entry - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Asset_Reval_Entry { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Reval_Index.java b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Reval_Index.java index e98d910f31..5db7f84e27 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Reval_Index.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Reval_Index.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Asset_Reval_Index - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Asset_Reval_Index { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Split.java b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Split.java index e3e10eb426..90b7fb5b88 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Split.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Split.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Asset_Split - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Asset_Split { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Spread.java b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Spread.java index 29a14e41cb..ab8fba0e35 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Spread.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Spread.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Asset_Spread - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Asset_Spread { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Transfer.java b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Transfer.java index 12b0bfe1df..ec92539d16 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Transfer.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Transfer.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Asset_Transfer - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Asset_Transfer { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Type.java b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Type.java index 9f502c752e..13ab87c8dc 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Type.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Type.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Asset_Type - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Asset_Type { @@ -50,6 +50,15 @@ public interface I_A_Asset_Type /** Get Asset Type */ public int getA_Asset_Type_ID(); + /** Column name A_Asset_Type_UU */ + public static final String COLUMNNAME_A_Asset_Type_UU = "A_Asset_Type_UU"; + + /** Set A_Asset_Type_UU */ + public void setA_Asset_Type_UU (String A_Asset_Type_UU); + + /** Get A_Asset_Type_UU */ + public String getA_Asset_Type_UU(); + /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Use.java b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Use.java index 0592d742ed..6f013824db 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Asset_Use.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Asset_Use.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Asset_Use - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Asset_Use { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Depreciation.java b/org.adempiere.base/src/org/compiere/model/I_A_Depreciation.java index e27f72cecf..cf571d4e3b 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Depreciation.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Depreciation.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Depreciation - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Depreciation { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Build.java b/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Build.java index e8e1f0d7c8..e1c8b40ddb 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Build.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Build.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Depreciation_Build - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Depreciation_Build { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Convention.java b/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Convention.java index d245627f8c..d0a6100df9 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Convention.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Convention.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Depreciation_Convention - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Depreciation_Convention { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Entry.java b/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Entry.java index af8af8bf3f..39ee88dca4 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Entry.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Entry.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Depreciation_Entry - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Depreciation_Entry { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Exp.java b/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Exp.java index 6a44289287..69eca2fc3e 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Exp.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Exp.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Depreciation_Exp - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Depreciation_Exp { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Forecast.java b/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Forecast.java index e8b97aa4c3..944d63304f 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Forecast.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Forecast.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Depreciation_Forecast - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Depreciation_Forecast { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Method.java b/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Method.java index e72c007f22..222fbed0d6 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Method.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Method.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Depreciation_Method - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Depreciation_Method { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Table_Detail.java b/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Table_Detail.java index e98a60119f..d17860edb8 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Table_Detail.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Table_Detail.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Depreciation_Table_Detail - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Depreciation_Table_Detail { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Table_Header.java b/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Table_Header.java index 5bef31bcea..b0af2bfb11 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Table_Header.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Table_Header.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Depreciation_Table_Header - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Depreciation_Table_Header { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Workfile.java b/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Workfile.java index 01aa8dd5c3..23c3698db3 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Workfile.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Depreciation_Workfile.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Depreciation_Workfile - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Depreciation_Workfile { diff --git a/org.adempiere.base/src/org/compiere/model/I_A_FundingMode.java b/org.adempiere.base/src/org/compiere/model/I_A_FundingMode.java index 84c6c7e580..482b5e608b 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_FundingMode.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_FundingMode.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_FundingMode - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_FundingMode { @@ -71,6 +71,15 @@ public interface I_A_FundingMode /** Get Asset Funding Mode */ public int getA_FundingMode_ID(); + /** Column name A_FundingMode_UU */ + public static final String COLUMNNAME_A_FundingMode_UU = "A_FundingMode_UU"; + + /** Set A_FundingMode_UU */ + public void setA_FundingMode_UU (String A_FundingMode_UU); + + /** Get A_FundingMode_UU */ + public String getA_FundingMode_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_A_FundingMode_Acct.java b/org.adempiere.base/src/org/compiere/model/I_A_FundingMode_Acct.java new file mode 100644 index 0000000000..0880b41e7a --- /dev/null +++ b/org.adempiere.base/src/org/compiere/model/I_A_FundingMode_Acct.java @@ -0,0 +1,155 @@ +/****************************************************************************** + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * + * This program is free software, you can redistribute it and/or modify it * + * under the terms version 2 of the GNU General Public License as published * + * by the Free Software Foundation. This program is distributed in the hope * + * that it will be useful, but WITHOUT ANY WARRANTY, without even the implied * + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * + * See the GNU General Public License for more details. * + * You should have received a copy of the GNU General Public License along * + * with this program, if not, write to the Free Software Foundation, Inc., * + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * + * For the text or an alternative of this public license, you may reach us * + * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * + * or via info@compiere.org or http://www.compiere.org/license.html * + *****************************************************************************/ +package org.compiere.model; + +import java.math.BigDecimal; +import java.sql.Timestamp; +import org.compiere.util.KeyNamePair; + +/** Generated Interface for A_FundingMode_Acct + * @author iDempiere (generated) + * @version Release 1.0a + */ +public interface I_A_FundingMode_Acct +{ + + /** TableName=A_FundingMode_Acct */ + public static final String Table_Name = "A_FundingMode_Acct"; + + /** AD_Table_ID=53274 */ + public static final int Table_ID = 53274; + + KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); + + /** AccessLevel = 3 - Client - Org + */ + BigDecimal accessLevel = BigDecimal.valueOf(3); + + /** Load Meta Data */ + + /** Column name AD_Client_ID */ + public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; + + /** Get Client. + * Client/Tenant for this installation. + */ + public int getAD_Client_ID(); + + /** Column name AD_Org_ID */ + public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; + + /** Set Organization. + * Organizational entity within client + */ + public void setAD_Org_ID (int AD_Org_ID); + + /** Get Organization. + * Organizational entity within client + */ + public int getAD_Org_ID(); + + /** Column name A_FundingMode_Acct */ + public static final String COLUMNNAME_A_FundingMode_Acct = "A_FundingMode_Acct"; + + /** Set Funding Mode Account */ + public void setA_FundingMode_Acct (int A_FundingMode_Acct); + + /** Get Funding Mode Account */ + public int getA_FundingMode_Acct(); + + public I_C_ValidCombination getA_FundingMode_A() throws RuntimeException; + + /** Column name A_FundingMode_Acct_UU */ + public static final String COLUMNNAME_A_FundingMode_Acct_UU = "A_FundingMode_Acct_UU"; + + /** Set A_FundingMode_Acct_UU */ + public void setA_FundingMode_Acct_UU (String A_FundingMode_Acct_UU); + + /** Get A_FundingMode_Acct_UU */ + public String getA_FundingMode_Acct_UU(); + + /** Column name A_FundingMode_ID */ + public static final String COLUMNNAME_A_FundingMode_ID = "A_FundingMode_ID"; + + /** Set Asset Funding Mode */ + public void setA_FundingMode_ID (int A_FundingMode_ID); + + /** Get Asset Funding Mode */ + public int getA_FundingMode_ID(); + + public org.compiere.model.I_A_FundingMode getA_FundingMode() throws RuntimeException; + + /** Column name C_AcctSchema_ID */ + public static final String COLUMNNAME_C_AcctSchema_ID = "C_AcctSchema_ID"; + + /** Set Accounting Schema. + * Rules for accounting + */ + public void setC_AcctSchema_ID (int C_AcctSchema_ID); + + /** Get Accounting Schema. + * Rules for accounting + */ + public int getC_AcctSchema_ID(); + + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + + /** Column name Created */ + public static final String COLUMNNAME_Created = "Created"; + + /** Get Created. + * Date this record was created + */ + public Timestamp getCreated(); + + /** Column name CreatedBy */ + public static final String COLUMNNAME_CreatedBy = "CreatedBy"; + + /** Get Created By. + * User who created this records + */ + public int getCreatedBy(); + + /** Column name IsActive */ + public static final String COLUMNNAME_IsActive = "IsActive"; + + /** Set Active. + * The record is active in the system + */ + public void setIsActive (boolean IsActive); + + /** Get Active. + * The record is active in the system + */ + public boolean isActive(); + + /** Column name Updated */ + public static final String COLUMNNAME_Updated = "Updated"; + + /** Get Updated. + * Date this record was updated + */ + public Timestamp getUpdated(); + + /** Column name UpdatedBy */ + public static final String COLUMNNAME_UpdatedBy = "UpdatedBy"; + + /** Get Updated By. + * User who updated this records + */ + public int getUpdatedBy(); +} diff --git a/org.adempiere.base/src/org/compiere/model/I_A_Registration.java b/org.adempiere.base/src/org/compiere/model/I_A_Registration.java index 148da7ee5c..d5045469f8 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_Registration.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_Registration.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_Registration - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_Registration { @@ -31,7 +31,7 @@ public interface I_A_Registration public static final String Table_Name = "A_Registration"; /** AD_Table_ID=651 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 651; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -54,7 +54,7 @@ public interface I_A_Registration */ public int getA_Asset_ID(); - public I_A_Asset getA_Asset() throws RuntimeException; + public org.compiere.model.I_A_Asset getA_Asset() throws RuntimeException; /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; @@ -90,7 +90,7 @@ public interface I_A_Registration */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name A_Registration_ID */ public static final String COLUMNNAME_A_Registration_ID = "A_Registration_ID"; @@ -105,6 +105,15 @@ public interface I_A_Registration */ public int getA_Registration_ID(); + /** Column name A_Registration_UU */ + public static final String COLUMNNAME_A_Registration_UU = "A_Registration_UU"; + + /** Set A_Registration_UU */ + public void setA_Registration_UU (String A_Registration_UU); + + /** Get A_Registration_UU */ + public String getA_Registration_UU(); + /** Column name AssetServiceDate */ public static final String COLUMNNAME_AssetServiceDate = "AssetServiceDate"; @@ -131,7 +140,7 @@ public interface I_A_Registration */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -240,7 +249,7 @@ public interface I_A_Registration */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_A_RegistrationAttribute.java b/org.adempiere.base/src/org/compiere/model/I_A_RegistrationAttribute.java index 158a8427d7..f5121c3757 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_RegistrationAttribute.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_RegistrationAttribute.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_RegistrationAttribute - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_RegistrationAttribute { @@ -31,7 +31,7 @@ public interface I_A_RegistrationAttribute public static final String Table_Name = "A_RegistrationAttribute"; /** AD_Table_ID=652 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 652; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_A_RegistrationAttribute */ public int getAD_Reference_ID(); - public I_AD_Reference getAD_Reference() throws RuntimeException; + public org.compiere.model.I_AD_Reference getAD_Reference() throws RuntimeException; /** Column name AD_Reference_Value_ID */ public static final String COLUMNNAME_AD_Reference_Value_ID = "AD_Reference_Value_ID"; @@ -90,7 +90,7 @@ public interface I_A_RegistrationAttribute */ public int getAD_Reference_Value_ID(); - public I_AD_Reference getAD_Reference_Value() throws RuntimeException; + public org.compiere.model.I_AD_Reference getAD_Reference_Value() throws RuntimeException; /** Column name A_RegistrationAttribute_ID */ public static final String COLUMNNAME_A_RegistrationAttribute_ID = "A_RegistrationAttribute_ID"; @@ -105,6 +105,15 @@ public interface I_A_RegistrationAttribute */ public int getA_RegistrationAttribute_ID(); + /** Column name A_RegistrationAttribute_UU */ + public static final String COLUMNNAME_A_RegistrationAttribute_UU = "A_RegistrationAttribute_UU"; + + /** Set A_RegistrationAttribute_UU */ + public void setA_RegistrationAttribute_UU (String A_RegistrationAttribute_UU); + + /** Get A_RegistrationAttribute_UU */ + public String getA_RegistrationAttribute_UU(); + /** Column name ColumnName */ public static final String COLUMNNAME_ColumnName = "ColumnName"; diff --git a/org.adempiere.base/src/org/compiere/model/I_A_RegistrationProduct.java b/org.adempiere.base/src/org/compiere/model/I_A_RegistrationProduct.java index 973cd0036d..79aadb331b 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_RegistrationProduct.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_RegistrationProduct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_RegistrationProduct - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_RegistrationProduct { @@ -31,7 +31,7 @@ public interface I_A_RegistrationProduct public static final String Table_Name = "A_RegistrationProduct"; /** AD_Table_ID=715 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 715; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_A_RegistrationProduct */ public int getA_RegistrationAttribute_ID(); - public I_A_RegistrationAttribute getA_RegistrationAttribute() throws RuntimeException; + public org.compiere.model.I_A_RegistrationAttribute getA_RegistrationAttribute() throws RuntimeException; + + /** Column name A_RegistrationProduct_UU */ + public static final String COLUMNNAME_A_RegistrationProduct_UU = "A_RegistrationProduct_UU"; + + /** Set A_RegistrationProduct_UU */ + public void setA_RegistrationProduct_UU (String A_RegistrationProduct_UU); + + /** Get A_RegistrationProduct_UU */ + public String getA_RegistrationProduct_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -132,7 +141,7 @@ public interface I_A_RegistrationProduct */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_A_RegistrationValue.java b/org.adempiere.base/src/org/compiere/model/I_A_RegistrationValue.java index a9cbe9fb47..7788532571 100644 --- a/org.adempiere.base/src/org/compiere/model/I_A_RegistrationValue.java +++ b/org.adempiere.base/src/org/compiere/model/I_A_RegistrationValue.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for A_RegistrationValue - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_A_RegistrationValue { @@ -31,7 +31,7 @@ public interface I_A_RegistrationValue public static final String Table_Name = "A_RegistrationValue"; /** AD_Table_ID=653 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 653; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_A_RegistrationValue */ public int getA_RegistrationAttribute_ID(); - public I_A_RegistrationAttribute getA_RegistrationAttribute() throws RuntimeException; + public org.compiere.model.I_A_RegistrationAttribute getA_RegistrationAttribute() throws RuntimeException; /** Column name A_Registration_ID */ public static final String COLUMNNAME_A_Registration_ID = "A_Registration_ID"; @@ -90,7 +90,16 @@ public interface I_A_RegistrationValue */ public int getA_Registration_ID(); - public I_A_Registration getA_Registration() throws RuntimeException; + public org.compiere.model.I_A_Registration getA_Registration() throws RuntimeException; + + /** Column name A_RegistrationValue_UU */ + public static final String COLUMNNAME_A_RegistrationValue_UU = "A_RegistrationValue_UU"; + + /** Set A_RegistrationValue_UU */ + public void setA_RegistrationValue_UU (String A_RegistrationValue_UU); + + /** Get A_RegistrationValue_UU */ + public String getA_RegistrationValue_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_B_Bid.java b/org.adempiere.base/src/org/compiere/model/I_B_Bid.java index 36d327b90c..ca078445d6 100644 --- a/org.adempiere.base/src/org/compiere/model/I_B_Bid.java +++ b/org.adempiere.base/src/org/compiere/model/I_B_Bid.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for B_Bid - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_B_Bid { @@ -31,7 +31,7 @@ public interface I_B_Bid public static final String Table_Name = "B_Bid"; /** AD_Table_ID=686 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 686; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_B_Bid */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name B_Bid_ID */ public static final String COLUMNNAME_B_Bid_ID = "B_Bid_ID"; @@ -90,6 +90,15 @@ public interface I_B_Bid */ public int getB_Bid_ID(); + /** Column name B_Bid_UU */ + public static final String COLUMNNAME_B_Bid_UU = "B_Bid_UU"; + + /** Set B_Bid_UU */ + public void setB_Bid_UU (String B_Bid_UU); + + /** Get B_Bid_UU */ + public String getB_Bid_UU(); + /** Column name B_BuyerFunds_ID */ public static final String COLUMNNAME_B_BuyerFunds_ID = "B_BuyerFunds_ID"; @@ -103,7 +112,7 @@ public interface I_B_Bid */ public int getB_BuyerFunds_ID(); - public I_B_BuyerFunds getB_BuyerFunds() throws RuntimeException; + public org.compiere.model.I_B_BuyerFunds getB_BuyerFunds() throws RuntimeException; /** Column name B_Topic_ID */ public static final String COLUMNNAME_B_Topic_ID = "B_Topic_ID"; @@ -118,7 +127,7 @@ public interface I_B_Bid */ public int getB_Topic_ID(); - public I_B_Topic getB_Topic() throws RuntimeException; + public org.compiere.model.I_B_Topic getB_Topic() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_B_BidComment.java b/org.adempiere.base/src/org/compiere/model/I_B_BidComment.java index a7c6387437..733d2c8adf 100644 --- a/org.adempiere.base/src/org/compiere/model/I_B_BidComment.java +++ b/org.adempiere.base/src/org/compiere/model/I_B_BidComment.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for B_BidComment - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_B_BidComment { @@ -31,7 +31,7 @@ public interface I_B_BidComment public static final String Table_Name = "B_BidComment"; /** AD_Table_ID=685 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 685; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_B_BidComment */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name B_BidComment_ID */ public static final String COLUMNNAME_B_BidComment_ID = "B_BidComment_ID"; @@ -90,6 +90,15 @@ public interface I_B_BidComment */ public int getB_BidComment_ID(); + /** Column name B_BidComment_UU */ + public static final String COLUMNNAME_B_BidComment_UU = "B_BidComment_UU"; + + /** Set B_BidComment_UU */ + public void setB_BidComment_UU (String B_BidComment_UU); + + /** Get B_BidComment_UU */ + public String getB_BidComment_UU(); + /** Column name B_Topic_ID */ public static final String COLUMNNAME_B_Topic_ID = "B_Topic_ID"; @@ -103,7 +112,7 @@ public interface I_B_BidComment */ public int getB_Topic_ID(); - public I_B_Topic getB_Topic() throws RuntimeException; + public org.compiere.model.I_B_Topic getB_Topic() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_B_Buyer.java b/org.adempiere.base/src/org/compiere/model/I_B_Buyer.java index 65080bed6e..c3451991ff 100644 --- a/org.adempiere.base/src/org/compiere/model/I_B_Buyer.java +++ b/org.adempiere.base/src/org/compiere/model/I_B_Buyer.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for B_Buyer - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_B_Buyer { @@ -31,7 +31,7 @@ public interface I_B_Buyer public static final String Table_Name = "B_Buyer"; /** AD_Table_ID=684 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 684; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_B_Buyer */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; + + /** Column name B_Buyer_UU */ + public static final String COLUMNNAME_B_Buyer_UU = "B_Buyer_UU"; + + /** Set B_Buyer_UU */ + public void setB_Buyer_UU (String B_Buyer_UU); + + /** Get B_Buyer_UU */ + public String getB_Buyer_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_B_BuyerFunds.java b/org.adempiere.base/src/org/compiere/model/I_B_BuyerFunds.java index d26a9cdd0a..a071640c12 100644 --- a/org.adempiere.base/src/org/compiere/model/I_B_BuyerFunds.java +++ b/org.adempiere.base/src/org/compiere/model/I_B_BuyerFunds.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for B_BuyerFunds - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_B_BuyerFunds { @@ -31,7 +31,7 @@ public interface I_B_BuyerFunds public static final String Table_Name = "B_BuyerFunds"; /** AD_Table_ID=683 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 683; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_B_BuyerFunds */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name B_BuyerFunds_ID */ public static final String COLUMNNAME_B_BuyerFunds_ID = "B_BuyerFunds_ID"; @@ -90,6 +90,15 @@ public interface I_B_BuyerFunds */ public int getB_BuyerFunds_ID(); + /** Column name B_BuyerFunds_UU */ + public static final String COLUMNNAME_B_BuyerFunds_UU = "B_BuyerFunds_UU"; + + /** Set B_BuyerFunds_UU */ + public void setB_BuyerFunds_UU (String B_BuyerFunds_UU); + + /** Get B_BuyerFunds_UU */ + public String getB_BuyerFunds_UU(); + /** Column name CommittedAmt */ public static final String COLUMNNAME_CommittedAmt = "CommittedAmt"; @@ -116,7 +125,7 @@ public interface I_B_BuyerFunds */ public int getC_Order_ID(); - public I_C_Order getC_Order() throws RuntimeException; + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException; /** Column name C_Payment_ID */ public static final String COLUMNNAME_C_Payment_ID = "C_Payment_ID"; @@ -131,7 +140,7 @@ public interface I_B_BuyerFunds */ public int getC_Payment_ID(); - public I_C_Payment getC_Payment() throws RuntimeException; + public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_B_Offer.java b/org.adempiere.base/src/org/compiere/model/I_B_Offer.java index d3d1730712..c5f251c514 100644 --- a/org.adempiere.base/src/org/compiere/model/I_B_Offer.java +++ b/org.adempiere.base/src/org/compiere/model/I_B_Offer.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for B_Offer - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_B_Offer { @@ -31,7 +31,7 @@ public interface I_B_Offer public static final String Table_Name = "B_Offer"; /** AD_Table_ID=682 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 682; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_B_Offer */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name B_Offer_ID */ public static final String COLUMNNAME_B_Offer_ID = "B_Offer_ID"; @@ -90,6 +90,15 @@ public interface I_B_Offer */ public int getB_Offer_ID(); + /** Column name B_Offer_UU */ + public static final String COLUMNNAME_B_Offer_UU = "B_Offer_UU"; + + /** Set B_Offer_UU */ + public void setB_Offer_UU (String B_Offer_UU); + + /** Get B_Offer_UU */ + public String getB_Offer_UU(); + /** Column name B_SellerFunds_ID */ public static final String COLUMNNAME_B_SellerFunds_ID = "B_SellerFunds_ID"; @@ -103,7 +112,7 @@ public interface I_B_Offer */ public int getB_SellerFunds_ID(); - public I_B_SellerFunds getB_SellerFunds() throws RuntimeException; + public org.compiere.model.I_B_SellerFunds getB_SellerFunds() throws RuntimeException; /** Column name B_Topic_ID */ public static final String COLUMNNAME_B_Topic_ID = "B_Topic_ID"; @@ -118,7 +127,7 @@ public interface I_B_Offer */ public int getB_Topic_ID(); - public I_B_Topic getB_Topic() throws RuntimeException; + public org.compiere.model.I_B_Topic getB_Topic() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_B_Seller.java b/org.adempiere.base/src/org/compiere/model/I_B_Seller.java index a93bdd7970..9d631b3dd5 100644 --- a/org.adempiere.base/src/org/compiere/model/I_B_Seller.java +++ b/org.adempiere.base/src/org/compiere/model/I_B_Seller.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for B_Seller - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_B_Seller { @@ -31,7 +31,7 @@ public interface I_B_Seller public static final String Table_Name = "B_Seller"; /** AD_Table_ID=681 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 681; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_B_Seller */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; + + /** Column name B_Seller_UU */ + public static final String COLUMNNAME_B_Seller_UU = "B_Seller_UU"; + + /** Set B_Seller_UU */ + public void setB_Seller_UU (String B_Seller_UU); + + /** Get B_Seller_UU */ + public String getB_Seller_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_B_SellerFunds.java b/org.adempiere.base/src/org/compiere/model/I_B_SellerFunds.java index 1f57d5cb67..9714f95cf2 100644 --- a/org.adempiere.base/src/org/compiere/model/I_B_SellerFunds.java +++ b/org.adempiere.base/src/org/compiere/model/I_B_SellerFunds.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for B_SellerFunds - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_B_SellerFunds { @@ -31,7 +31,7 @@ public interface I_B_SellerFunds public static final String Table_Name = "B_SellerFunds"; /** AD_Table_ID=680 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 680; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_B_SellerFunds */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name B_SellerFunds_ID */ public static final String COLUMNNAME_B_SellerFunds_ID = "B_SellerFunds_ID"; @@ -90,6 +90,15 @@ public interface I_B_SellerFunds */ public int getB_SellerFunds_ID(); + /** Column name B_SellerFunds_UU */ + public static final String COLUMNNAME_B_SellerFunds_UU = "B_SellerFunds_UU"; + + /** Set B_SellerFunds_UU */ + public void setB_SellerFunds_UU (String B_SellerFunds_UU); + + /** Get B_SellerFunds_UU */ + public String getB_SellerFunds_UU(); + /** Column name CommittedAmt */ public static final String COLUMNNAME_CommittedAmt = "CommittedAmt"; @@ -116,7 +125,7 @@ public interface I_B_SellerFunds */ public int getC_Order_ID(); - public I_C_Order getC_Order() throws RuntimeException; + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException; /** Column name C_Payment_ID */ public static final String COLUMNNAME_C_Payment_ID = "C_Payment_ID"; @@ -131,7 +140,7 @@ public interface I_B_SellerFunds */ public int getC_Payment_ID(); - public I_C_Payment getC_Payment() throws RuntimeException; + public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_B_Topic.java b/org.adempiere.base/src/org/compiere/model/I_B_Topic.java index 4f02dc2007..668d2ba71b 100644 --- a/org.adempiere.base/src/org/compiere/model/I_B_Topic.java +++ b/org.adempiere.base/src/org/compiere/model/I_B_Topic.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for B_Topic - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_B_Topic { @@ -31,7 +31,7 @@ public interface I_B_Topic public static final String Table_Name = "B_Topic"; /** AD_Table_ID=679 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 679; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_B_Topic */ public int getB_TopicCategory_ID(); - public I_B_TopicCategory getB_TopicCategory() throws RuntimeException; + public org.compiere.model.I_B_TopicCategory getB_TopicCategory() throws RuntimeException; /** Column name B_Topic_ID */ public static final String COLUMNNAME_B_Topic_ID = "B_Topic_ID"; @@ -103,7 +103,16 @@ public interface I_B_Topic */ public int getB_TopicType_ID(); - public I_B_TopicType getB_TopicType() throws RuntimeException; + public org.compiere.model.I_B_TopicType getB_TopicType() throws RuntimeException; + + /** Column name B_Topic_UU */ + public static final String COLUMNNAME_B_Topic_UU = "B_Topic_UU"; + + /** Set B_Topic_UU */ + public void setB_Topic_UU (String B_Topic_UU); + + /** Get B_Topic_UU */ + public String getB_Topic_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_B_TopicCategory.java b/org.adempiere.base/src/org/compiere/model/I_B_TopicCategory.java index 975a0e906a..2a757e0266 100644 --- a/org.adempiere.base/src/org/compiere/model/I_B_TopicCategory.java +++ b/org.adempiere.base/src/org/compiere/model/I_B_TopicCategory.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for B_TopicCategory - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_B_TopicCategory { @@ -31,7 +31,7 @@ public interface I_B_TopicCategory public static final String Table_Name = "B_TopicCategory"; /** AD_Table_ID=691 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 691; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_B_TopicCategory */ public int getB_TopicCategory_ID(); + /** Column name B_TopicCategory_UU */ + public static final String COLUMNNAME_B_TopicCategory_UU = "B_TopicCategory_UU"; + + /** Set B_TopicCategory_UU */ + public void setB_TopicCategory_UU (String B_TopicCategory_UU); + + /** Get B_TopicCategory_UU */ + public String getB_TopicCategory_UU(); + /** Column name B_TopicType_ID */ public static final String COLUMNNAME_B_TopicType_ID = "B_TopicType_ID"; @@ -88,7 +97,7 @@ public interface I_B_TopicCategory */ public int getB_TopicType_ID(); - public I_B_TopicType getB_TopicType() throws RuntimeException; + public org.compiere.model.I_B_TopicType getB_TopicType() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_B_TopicType.java b/org.adempiere.base/src/org/compiere/model/I_B_TopicType.java index 10bbe9606d..9773b06f43 100644 --- a/org.adempiere.base/src/org/compiere/model/I_B_TopicType.java +++ b/org.adempiere.base/src/org/compiere/model/I_B_TopicType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for B_TopicType - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_B_TopicType { @@ -31,7 +31,7 @@ public interface I_B_TopicType public static final String Table_Name = "B_TopicType"; /** AD_Table_ID=690 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 690; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -84,6 +84,15 @@ public interface I_B_TopicType */ public int getB_TopicType_ID(); + /** Column name B_TopicType_UU */ + public static final String COLUMNNAME_B_TopicType_UU = "B_TopicType_UU"; + + /** Set B_TopicType_UU */ + public void setB_TopicType_UU (String B_TopicType_UU); + + /** Get B_TopicType_UU */ + public String getB_TopicType_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -152,7 +161,7 @@ public interface I_B_TopicType */ public int getM_PriceList_ID(); - public I_M_PriceList getM_PriceList() throws RuntimeException; + public org.compiere.model.I_M_PriceList getM_PriceList() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -167,7 +176,7 @@ public interface I_B_TopicType */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name M_ProductMember_ID */ public static final String COLUMNNAME_M_ProductMember_ID = "M_ProductMember_ID"; @@ -182,7 +191,7 @@ public interface I_B_TopicType */ public int getM_ProductMember_ID(); - public I_M_Product getM_ProductMember() throws RuntimeException; + public org.compiere.model.I_M_Product getM_ProductMember() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_AccessContainer.java b/org.adempiere.base/src/org/compiere/model/I_CM_AccessContainer.java index 0d3e359354..8b7a47a342 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_AccessContainer.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_AccessContainer.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_AccessContainer - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_AccessContainer { @@ -31,7 +31,7 @@ public interface I_CM_AccessContainer public static final String Table_Name = "CM_AccessContainer"; /** AD_Table_ID=888 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 888; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,6 +62,15 @@ public interface I_CM_AccessContainer */ public int getAD_Org_ID(); + /** Column name CM_AccessContainer_UU */ + public static final String COLUMNNAME_CM_AccessContainer_UU = "CM_AccessContainer_UU"; + + /** Set CM_AccessContainer_UU */ + public void setCM_AccessContainer_UU (String CM_AccessContainer_UU); + + /** Get CM_AccessContainer_UU */ + public String getCM_AccessContainer_UU(); + /** Column name CM_AccessProfile_ID */ public static final String COLUMNNAME_CM_AccessProfile_ID = "CM_AccessProfile_ID"; @@ -75,7 +84,7 @@ public interface I_CM_AccessContainer */ public int getCM_AccessProfile_ID(); - public I_CM_AccessProfile getCM_AccessProfile() throws RuntimeException; + public org.compiere.model.I_CM_AccessProfile getCM_AccessProfile() throws RuntimeException; /** Column name CM_Container_ID */ public static final String COLUMNNAME_CM_Container_ID = "CM_Container_ID"; @@ -90,7 +99,7 @@ public interface I_CM_AccessContainer */ public int getCM_Container_ID(); - public I_CM_Container getCM_Container() throws RuntimeException; + public org.compiere.model.I_CM_Container getCM_Container() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_AccessListBPGroup.java b/org.adempiere.base/src/org/compiere/model/I_CM_AccessListBPGroup.java index 62913d41ef..e7e21f0c08 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_AccessListBPGroup.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_AccessListBPGroup.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_AccessListBPGroup - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_AccessListBPGroup { @@ -31,7 +31,7 @@ public interface I_CM_AccessListBPGroup public static final String Table_Name = "CM_AccessListBPGroup"; /** AD_Table_ID=886 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 886; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_CM_AccessListBPGroup */ public int getC_BP_Group_ID(); - public I_C_BP_Group getC_BP_Group() throws RuntimeException; + public org.compiere.model.I_C_BP_Group getC_BP_Group() throws RuntimeException; + + /** Column name CM_AccessListBPGroup_UU */ + public static final String COLUMNNAME_CM_AccessListBPGroup_UU = "CM_AccessListBPGroup_UU"; + + /** Set CM_AccessListBPGroup_UU */ + public void setCM_AccessListBPGroup_UU (String CM_AccessListBPGroup_UU); + + /** Get CM_AccessListBPGroup_UU */ + public String getCM_AccessListBPGroup_UU(); /** Column name CM_AccessProfile_ID */ public static final String COLUMNNAME_CM_AccessProfile_ID = "CM_AccessProfile_ID"; @@ -90,7 +99,7 @@ public interface I_CM_AccessListBPGroup */ public int getCM_AccessProfile_ID(); - public I_CM_AccessProfile getCM_AccessProfile() throws RuntimeException; + public org.compiere.model.I_CM_AccessProfile getCM_AccessProfile() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_AccessListRole.java b/org.adempiere.base/src/org/compiere/model/I_CM_AccessListRole.java index 31ed48ace2..6aefb52150 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_AccessListRole.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_AccessListRole.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_AccessListRole - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_AccessListRole { @@ -31,7 +31,7 @@ public interface I_CM_AccessListRole public static final String Table_Name = "CM_AccessListRole"; /** AD_Table_ID=887 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 887; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_CM_AccessListRole */ public int getAD_Role_ID(); - public I_AD_Role getAD_Role() throws RuntimeException; + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException; + + /** Column name CM_AccessListRole_UU */ + public static final String COLUMNNAME_CM_AccessListRole_UU = "CM_AccessListRole_UU"; + + /** Set CM_AccessListRole_UU */ + public void setCM_AccessListRole_UU (String CM_AccessListRole_UU); + + /** Get CM_AccessListRole_UU */ + public String getCM_AccessListRole_UU(); /** Column name CM_AccessProfile_ID */ public static final String COLUMNNAME_CM_AccessProfile_ID = "CM_AccessProfile_ID"; @@ -90,7 +99,7 @@ public interface I_CM_AccessListRole */ public int getCM_AccessProfile_ID(); - public I_CM_AccessProfile getCM_AccessProfile() throws RuntimeException; + public org.compiere.model.I_CM_AccessProfile getCM_AccessProfile() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_AccessMedia.java b/org.adempiere.base/src/org/compiere/model/I_CM_AccessMedia.java index 80ba366275..7cac075827 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_AccessMedia.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_AccessMedia.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_AccessMedia - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_AccessMedia { @@ -31,7 +31,7 @@ public interface I_CM_AccessMedia public static final String Table_Name = "CM_AccessMedia"; /** AD_Table_ID=890 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 890; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,6 +62,15 @@ public interface I_CM_AccessMedia */ public int getAD_Org_ID(); + /** Column name CM_AccessMedia_UU */ + public static final String COLUMNNAME_CM_AccessMedia_UU = "CM_AccessMedia_UU"; + + /** Set CM_AccessMedia_UU */ + public void setCM_AccessMedia_UU (String CM_AccessMedia_UU); + + /** Get CM_AccessMedia_UU */ + public String getCM_AccessMedia_UU(); + /** Column name CM_AccessProfile_ID */ public static final String COLUMNNAME_CM_AccessProfile_ID = "CM_AccessProfile_ID"; @@ -75,7 +84,7 @@ public interface I_CM_AccessMedia */ public int getCM_AccessProfile_ID(); - public I_CM_AccessProfile getCM_AccessProfile() throws RuntimeException; + public org.compiere.model.I_CM_AccessProfile getCM_AccessProfile() throws RuntimeException; /** Column name CM_Media_ID */ public static final String COLUMNNAME_CM_Media_ID = "CM_Media_ID"; @@ -90,7 +99,7 @@ public interface I_CM_AccessMedia */ public int getCM_Media_ID(); - public I_CM_Media getCM_Media() throws RuntimeException; + public org.compiere.model.I_CM_Media getCM_Media() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_AccessNewsChannel.java b/org.adempiere.base/src/org/compiere/model/I_CM_AccessNewsChannel.java index b047844419..ce434f7c86 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_AccessNewsChannel.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_AccessNewsChannel.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_AccessNewsChannel - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_AccessNewsChannel { @@ -31,7 +31,7 @@ public interface I_CM_AccessNewsChannel public static final String Table_Name = "CM_AccessNewsChannel"; /** AD_Table_ID=891 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 891; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,6 +62,15 @@ public interface I_CM_AccessNewsChannel */ public int getAD_Org_ID(); + /** Column name CM_AccessNewsChannel_UU */ + public static final String COLUMNNAME_CM_AccessNewsChannel_UU = "CM_AccessNewsChannel_UU"; + + /** Set CM_AccessNewsChannel_UU */ + public void setCM_AccessNewsChannel_UU (String CM_AccessNewsChannel_UU); + + /** Get CM_AccessNewsChannel_UU */ + public String getCM_AccessNewsChannel_UU(); + /** Column name CM_AccessProfile_ID */ public static final String COLUMNNAME_CM_AccessProfile_ID = "CM_AccessProfile_ID"; @@ -75,7 +84,7 @@ public interface I_CM_AccessNewsChannel */ public int getCM_AccessProfile_ID(); - public I_CM_AccessProfile getCM_AccessProfile() throws RuntimeException; + public org.compiere.model.I_CM_AccessProfile getCM_AccessProfile() throws RuntimeException; /** Column name CM_NewsChannel_ID */ public static final String COLUMNNAME_CM_NewsChannel_ID = "CM_NewsChannel_ID"; @@ -90,7 +99,7 @@ public interface I_CM_AccessNewsChannel */ public int getCM_NewsChannel_ID(); - public I_CM_NewsChannel getCM_NewsChannel() throws RuntimeException; + public org.compiere.model.I_CM_NewsChannel getCM_NewsChannel() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_AccessProfile.java b/org.adempiere.base/src/org/compiere/model/I_CM_AccessProfile.java index 8c6608a76c..cdc05ee13d 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_AccessProfile.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_AccessProfile.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_AccessProfile - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_AccessProfile { @@ -31,7 +31,7 @@ public interface I_CM_AccessProfile public static final String Table_Name = "CM_AccessProfile"; /** AD_Table_ID=885 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 885; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_CM_AccessProfile */ public int getCM_AccessProfile_ID(); + /** Column name CM_AccessProfile_UU */ + public static final String COLUMNNAME_CM_AccessProfile_UU = "CM_AccessProfile_UU"; + + /** Set CM_AccessProfile_UU */ + public void setCM_AccessProfile_UU (String CM_AccessProfile_UU); + + /** Get CM_AccessProfile_UU */ + public String getCM_AccessProfile_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_AccessStage.java b/org.adempiere.base/src/org/compiere/model/I_CM_AccessStage.java index c2513df784..2329053113 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_AccessStage.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_AccessStage.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_AccessStage - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_AccessStage { @@ -31,7 +31,7 @@ public interface I_CM_AccessStage public static final String Table_Name = "CM_AccessStage"; /** AD_Table_ID=889 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 889; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_CM_AccessStage */ public int getCM_AccessProfile_ID(); - public I_CM_AccessProfile getCM_AccessProfile() throws RuntimeException; + public org.compiere.model.I_CM_AccessProfile getCM_AccessProfile() throws RuntimeException; + + /** Column name CM_AccessStage_UU */ + public static final String COLUMNNAME_CM_AccessStage_UU = "CM_AccessStage_UU"; + + /** Set CM_AccessStage_UU */ + public void setCM_AccessStage_UU (String CM_AccessStage_UU); + + /** Get CM_AccessStage_UU */ + public String getCM_AccessStage_UU(); /** Column name CM_CStage_ID */ public static final String COLUMNNAME_CM_CStage_ID = "CM_CStage_ID"; @@ -90,7 +99,7 @@ public interface I_CM_AccessStage */ public int getCM_CStage_ID(); - public I_CM_CStage getCM_CStage() throws RuntimeException; + public org.compiere.model.I_CM_CStage getCM_CStage() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_Ad.java b/org.adempiere.base/src/org/compiere/model/I_CM_Ad.java index d4e9762e40..e6522a8017 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_Ad.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_Ad.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_Ad - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_Ad { @@ -31,7 +31,7 @@ public interface I_CM_Ad public static final String Table_Name = "CM_Ad"; /** AD_Table_ID=858 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 858; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -101,7 +101,7 @@ public interface I_CM_Ad */ public int getCM_Ad_Cat_ID(); - public I_CM_Ad_Cat getCM_Ad_Cat() throws RuntimeException; + public org.compiere.model.I_CM_Ad_Cat getCM_Ad_Cat() throws RuntimeException; /** Column name CM_Ad_ID */ public static final String COLUMNNAME_CM_Ad_ID = "CM_Ad_ID"; @@ -116,6 +116,15 @@ public interface I_CM_Ad */ public int getCM_Ad_ID(); + /** Column name CM_Ad_UU */ + public static final String COLUMNNAME_CM_Ad_UU = "CM_Ad_UU"; + + /** Set CM_Ad_UU */ + public void setCM_Ad_UU (String CM_Ad_UU); + + /** Get CM_Ad_UU */ + public String getCM_Ad_UU(); + /** Column name CM_Media_ID */ public static final String COLUMNNAME_CM_Media_ID = "CM_Media_ID"; @@ -129,7 +138,7 @@ public interface I_CM_Ad */ public int getCM_Media_ID(); - public I_CM_Media getCM_Media() throws RuntimeException; + public org.compiere.model.I_CM_Media getCM_Media() throws RuntimeException; /** Column name ContentHTML */ public static final String COLUMNNAME_ContentHTML = "ContentHTML"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_Ad_Cat.java b/org.adempiere.base/src/org/compiere/model/I_CM_Ad_Cat.java index f2076edf54..0ba9f2f958 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_Ad_Cat.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_Ad_Cat.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_Ad_Cat - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_Ad_Cat { @@ -31,7 +31,7 @@ public interface I_CM_Ad_Cat public static final String Table_Name = "CM_Ad_Cat"; /** AD_Table_ID=856 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 856; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_CM_Ad_Cat */ public int getCM_Ad_Cat_ID(); + /** Column name CM_Ad_Cat_UU */ + public static final String COLUMNNAME_CM_Ad_Cat_UU = "CM_Ad_Cat_UU"; + + /** Set CM_Ad_Cat_UU */ + public void setCM_Ad_Cat_UU (String CM_Ad_Cat_UU); + + /** Get CM_Ad_Cat_UU */ + public String getCM_Ad_Cat_UU(); + /** Column name CM_WebProject_ID */ public static final String COLUMNNAME_CM_WebProject_ID = "CM_WebProject_ID"; @@ -88,7 +97,7 @@ public interface I_CM_Ad_Cat */ public int getCM_WebProject_ID(); - public I_CM_WebProject getCM_WebProject() throws RuntimeException; + public org.compiere.model.I_CM_WebProject getCM_WebProject() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_BroadcastServer.java b/org.adempiere.base/src/org/compiere/model/I_CM_BroadcastServer.java index 647e665856..318d4447d8 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_BroadcastServer.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_BroadcastServer.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_BroadcastServer - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_BroadcastServer { @@ -31,7 +31,7 @@ public interface I_CM_BroadcastServer public static final String Table_Name = "CM_BroadcastServer"; /** AD_Table_ID=893 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 893; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_CM_BroadcastServer */ public int getCM_BroadcastServer_ID(); + /** Column name CM_BroadcastServer_UU */ + public static final String COLUMNNAME_CM_BroadcastServer_UU = "CM_BroadcastServer_UU"; + + /** Set CM_BroadcastServer_UU */ + public void setCM_BroadcastServer_UU (String CM_BroadcastServer_UU); + + /** Get CM_BroadcastServer_UU */ + public String getCM_BroadcastServer_UU(); + /** Column name CM_WebProject_ID */ public static final String COLUMNNAME_CM_WebProject_ID = "CM_WebProject_ID"; @@ -88,7 +97,7 @@ public interface I_CM_BroadcastServer */ public int getCM_WebProject_ID(); - public I_CM_WebProject getCM_WebProject() throws RuntimeException; + public org.compiere.model.I_CM_WebProject getCM_WebProject() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_CStage.java b/org.adempiere.base/src/org/compiere/model/I_CM_CStage.java index f205d5d099..0174dd7bfd 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_CStage.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_CStage.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_CStage - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_CStage { @@ -31,7 +31,7 @@ public interface I_CM_CStage public static final String Table_Name = "CM_CStage"; /** AD_Table_ID=866 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 866; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,16 @@ public interface I_CM_CStage */ public int getCM_CStageLink_ID(); - public I_CM_CStage getCM_CStageLink() throws RuntimeException; + public org.compiere.model.I_CM_CStage getCM_CStageLink() throws RuntimeException; + + /** Column name CM_CStage_UU */ + public static final String COLUMNNAME_CM_CStage_UU = "CM_CStage_UU"; + + /** Set CM_CStage_UU */ + public void setCM_CStage_UU (String CM_CStage_UU); + + /** Get CM_CStage_UU */ + public String getCM_CStage_UU(); /** Column name CM_Template_ID */ public static final String COLUMNNAME_CM_Template_ID = "CM_Template_ID"; @@ -103,7 +112,7 @@ public interface I_CM_CStage */ public int getCM_Template_ID(); - public I_CM_Template getCM_Template() throws RuntimeException; + public org.compiere.model.I_CM_Template getCM_Template() throws RuntimeException; /** Column name CM_WebProject_ID */ public static final String COLUMNNAME_CM_WebProject_ID = "CM_WebProject_ID"; @@ -118,7 +127,7 @@ public interface I_CM_CStage */ public int getCM_WebProject_ID(); - public I_CM_WebProject getCM_WebProject() throws RuntimeException; + public org.compiere.model.I_CM_WebProject getCM_WebProject() throws RuntimeException; /** Column name ContainerLinkURL */ public static final String COLUMNNAME_ContainerLinkURL = "ContainerLinkURL"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_CStageTTable.java b/org.adempiere.base/src/org/compiere/model/I_CM_CStageTTable.java index b2cb1efd42..ba9185b365 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_CStageTTable.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_CStageTTable.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_CStageTTable - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_CStageTTable { @@ -31,7 +31,7 @@ public interface I_CM_CStageTTable public static final String Table_Name = "CM_CStageTTable"; /** AD_Table_ID=881 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 881; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_CM_CStageTTable */ public int getCM_CStage_ID(); - public I_CM_CStage getCM_CStage() throws RuntimeException; + public org.compiere.model.I_CM_CStage getCM_CStage() throws RuntimeException; /** Column name CM_CStageTTable_ID */ public static final String COLUMNNAME_CM_CStageTTable_ID = "CM_CStageTTable_ID"; @@ -90,6 +90,15 @@ public interface I_CM_CStageTTable */ public int getCM_CStageTTable_ID(); + /** Column name CM_CStageTTable_UU */ + public static final String COLUMNNAME_CM_CStageTTable_UU = "CM_CStageTTable_UU"; + + /** Set CM_CStageTTable_UU */ + public void setCM_CStageTTable_UU (String CM_CStageTTable_UU); + + /** Get CM_CStageTTable_UU */ + public String getCM_CStageTTable_UU(); + /** Column name CM_TemplateTable_ID */ public static final String COLUMNNAME_CM_TemplateTable_ID = "CM_TemplateTable_ID"; @@ -103,7 +112,7 @@ public interface I_CM_CStageTTable */ public int getCM_TemplateTable_ID(); - public I_CM_TemplateTable getCM_TemplateTable() throws RuntimeException; + public org.compiere.model.I_CM_TemplateTable getCM_TemplateTable() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_CStage_Element.java b/org.adempiere.base/src/org/compiere/model/I_CM_CStage_Element.java index 1c556cb4bc..6a65b74dc8 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_CStage_Element.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_CStage_Element.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_CStage_Element - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_CStage_Element { @@ -31,7 +31,7 @@ public interface I_CM_CStage_Element public static final String Table_Name = "CM_CStage_Element"; /** AD_Table_ID=867 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 867; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_CM_CStage_Element */ public int getCM_CStage_Element_ID(); + /** Column name CM_CStage_Element_UU */ + public static final String COLUMNNAME_CM_CStage_Element_UU = "CM_CStage_Element_UU"; + + /** Set CM_CStage_Element_UU */ + public void setCM_CStage_Element_UU (String CM_CStage_Element_UU); + + /** Get CM_CStage_Element_UU */ + public String getCM_CStage_Element_UU(); + /** Column name CM_CStage_ID */ public static final String COLUMNNAME_CM_CStage_ID = "CM_CStage_ID"; @@ -88,7 +97,7 @@ public interface I_CM_CStage_Element */ public int getCM_CStage_ID(); - public I_CM_CStage getCM_CStage() throws RuntimeException; + public org.compiere.model.I_CM_CStage getCM_CStage() throws RuntimeException; /** Column name ContentHTML */ public static final String COLUMNNAME_ContentHTML = "ContentHTML"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_Chat.java b/org.adempiere.base/src/org/compiere/model/I_CM_Chat.java index 0efae15de6..6b2c5cd627 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_Chat.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_Chat.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_Chat - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_Chat { @@ -31,7 +31,7 @@ public interface I_CM_Chat public static final String Table_Name = "CM_Chat"; /** AD_Table_ID=876 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 876; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_CM_Chat */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name CM_Chat_ID */ public static final String COLUMNNAME_CM_Chat_ID = "CM_Chat_ID"; @@ -103,7 +103,16 @@ public interface I_CM_Chat */ public int getCM_ChatType_ID(); - public I_CM_ChatType getCM_ChatType() throws RuntimeException; + public org.compiere.model.I_CM_ChatType getCM_ChatType() throws RuntimeException; + + /** Column name CM_Chat_UU */ + public static final String COLUMNNAME_CM_Chat_UU = "CM_Chat_UU"; + + /** Set CM_Chat_UU */ + public void setCM_Chat_UU (String CM_Chat_UU); + + /** Get CM_Chat_UU */ + public String getCM_Chat_UU(); /** Column name ConfidentialType */ public static final String COLUMNNAME_ConfidentialType = "ConfidentialType"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_ChatEntry.java b/org.adempiere.base/src/org/compiere/model/I_CM_ChatEntry.java index 67a0bd29cd..1836029dc3 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_ChatEntry.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_ChatEntry.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_ChatEntry - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_ChatEntry { @@ -31,7 +31,7 @@ public interface I_CM_ChatEntry public static final String Table_Name = "CM_ChatEntry"; /** AD_Table_ID=877 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 877; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_CM_ChatEntry */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name CharacterData */ public static final String COLUMNNAME_CharacterData = "CharacterData"; @@ -116,7 +116,7 @@ public interface I_CM_ChatEntry */ public int getCM_ChatEntryGrandParent_ID(); - public I_CM_ChatEntry getCM_ChatEntryGrandParent() throws RuntimeException; + public org.compiere.model.I_CM_ChatEntry getCM_ChatEntryGrandParent() throws RuntimeException; /** Column name CM_ChatEntry_ID */ public static final String COLUMNNAME_CM_ChatEntry_ID = "CM_ChatEntry_ID"; @@ -144,7 +144,16 @@ public interface I_CM_ChatEntry */ public int getCM_ChatEntryParent_ID(); - public I_CM_ChatEntry getCM_ChatEntryParent() throws RuntimeException; + public org.compiere.model.I_CM_ChatEntry getCM_ChatEntryParent() throws RuntimeException; + + /** Column name CM_ChatEntry_UU */ + public static final String COLUMNNAME_CM_ChatEntry_UU = "CM_ChatEntry_UU"; + + /** Set CM_ChatEntry_UU */ + public void setCM_ChatEntry_UU (String CM_ChatEntry_UU); + + /** Get CM_ChatEntry_UU */ + public String getCM_ChatEntry_UU(); /** Column name CM_Chat_ID */ public static final String COLUMNNAME_CM_Chat_ID = "CM_Chat_ID"; @@ -159,7 +168,7 @@ public interface I_CM_ChatEntry */ public int getCM_Chat_ID(); - public I_CM_Chat getCM_Chat() throws RuntimeException; + public org.compiere.model.I_CM_Chat getCM_Chat() throws RuntimeException; /** Column name ConfidentialType */ public static final String COLUMNNAME_ConfidentialType = "ConfidentialType"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_ChatType.java b/org.adempiere.base/src/org/compiere/model/I_CM_ChatType.java index 713600cc40..d7fc7946f6 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_ChatType.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_ChatType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_ChatType - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_ChatType { @@ -31,7 +31,7 @@ public interface I_CM_ChatType public static final String Table_Name = "CM_ChatType"; /** AD_Table_ID=874 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 874; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_CM_ChatType */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name CM_ChatType_ID */ public static final String COLUMNNAME_CM_ChatType_ID = "CM_ChatType_ID"; @@ -90,6 +90,15 @@ public interface I_CM_ChatType */ public int getCM_ChatType_ID(); + /** Column name CM_ChatType_UU */ + public static final String COLUMNNAME_CM_ChatType_UU = "CM_ChatType_UU"; + + /** Set CM_ChatType_UU */ + public void setCM_ChatType_UU (String CM_ChatType_UU); + + /** Get CM_ChatType_UU */ + public String getCM_ChatType_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_ChatTypeUpdate.java b/org.adempiere.base/src/org/compiere/model/I_CM_ChatTypeUpdate.java index 11b3fb1101..843974cd68 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_ChatTypeUpdate.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_ChatTypeUpdate.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_ChatTypeUpdate - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_ChatTypeUpdate { @@ -31,7 +31,7 @@ public interface I_CM_ChatTypeUpdate public static final String Table_Name = "CM_ChatTypeUpdate"; /** AD_Table_ID=875 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 875; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_CM_ChatTypeUpdate */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name CM_ChatType_ID */ public static final String COLUMNNAME_CM_ChatType_ID = "CM_ChatType_ID"; @@ -90,7 +90,16 @@ public interface I_CM_ChatTypeUpdate */ public int getCM_ChatType_ID(); - public I_CM_ChatType getCM_ChatType() throws RuntimeException; + public org.compiere.model.I_CM_ChatType getCM_ChatType() throws RuntimeException; + + /** Column name CM_ChatTypeUpdate_UU */ + public static final String COLUMNNAME_CM_ChatTypeUpdate_UU = "CM_ChatTypeUpdate_UU"; + + /** Set CM_ChatTypeUpdate_UU */ + public void setCM_ChatTypeUpdate_UU (String CM_ChatTypeUpdate_UU); + + /** Get CM_ChatTypeUpdate_UU */ + public String getCM_ChatTypeUpdate_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_ChatUpdate.java b/org.adempiere.base/src/org/compiere/model/I_CM_ChatUpdate.java index b4dedc91d8..20143a74a2 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_ChatUpdate.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_ChatUpdate.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_ChatUpdate - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_ChatUpdate { @@ -31,7 +31,7 @@ public interface I_CM_ChatUpdate public static final String Table_Name = "CM_ChatUpdate"; /** AD_Table_ID=878 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 878; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_CM_ChatUpdate */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name CM_Chat_ID */ public static final String COLUMNNAME_CM_Chat_ID = "CM_Chat_ID"; @@ -90,7 +90,16 @@ public interface I_CM_ChatUpdate */ public int getCM_Chat_ID(); - public I_CM_Chat getCM_Chat() throws RuntimeException; + public org.compiere.model.I_CM_Chat getCM_Chat() throws RuntimeException; + + /** Column name CM_ChatUpdate_UU */ + public static final String COLUMNNAME_CM_ChatUpdate_UU = "CM_ChatUpdate_UU"; + + /** Set CM_ChatUpdate_UU */ + public void setCM_ChatUpdate_UU (String CM_ChatUpdate_UU); + + /** Get CM_ChatUpdate_UU */ + public String getCM_ChatUpdate_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_Container.java b/org.adempiere.base/src/org/compiere/model/I_CM_Container.java index d011901d99..784c4d2857 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_Container.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_Container.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_Container - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_Container { @@ -31,7 +31,7 @@ public interface I_CM_Container public static final String Table_Name = "CM_Container"; /** AD_Table_ID=855 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 855; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,16 @@ public interface I_CM_Container */ public int getCM_ContainerLink_ID(); - public I_CM_Container getCM_ContainerLink() throws RuntimeException; + public org.compiere.model.I_CM_Container getCM_ContainerLink() throws RuntimeException; + + /** Column name CM_Container_UU */ + public static final String COLUMNNAME_CM_Container_UU = "CM_Container_UU"; + + /** Set CM_Container_UU */ + public void setCM_Container_UU (String CM_Container_UU); + + /** Get CM_Container_UU */ + public String getCM_Container_UU(); /** Column name CM_Template_ID */ public static final String COLUMNNAME_CM_Template_ID = "CM_Template_ID"; @@ -103,7 +112,7 @@ public interface I_CM_Container */ public int getCM_Template_ID(); - public I_CM_Template getCM_Template() throws RuntimeException; + public org.compiere.model.I_CM_Template getCM_Template() throws RuntimeException; /** Column name CM_WebProject_ID */ public static final String COLUMNNAME_CM_WebProject_ID = "CM_WebProject_ID"; @@ -118,7 +127,7 @@ public interface I_CM_Container */ public int getCM_WebProject_ID(); - public I_CM_WebProject getCM_WebProject() throws RuntimeException; + public org.compiere.model.I_CM_WebProject getCM_WebProject() throws RuntimeException; /** Column name ContainerLinkURL */ public static final String COLUMNNAME_ContainerLinkURL = "ContainerLinkURL"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_ContainerTTable.java b/org.adempiere.base/src/org/compiere/model/I_CM_ContainerTTable.java index 90aa57fdd3..ffaeeac2ce 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_ContainerTTable.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_ContainerTTable.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_ContainerTTable - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_ContainerTTable { @@ -31,7 +31,7 @@ public interface I_CM_ContainerTTable public static final String Table_Name = "CM_ContainerTTable"; /** AD_Table_ID=880 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 880; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_CM_ContainerTTable */ public int getCM_Container_ID(); - public I_CM_Container getCM_Container() throws RuntimeException; + public org.compiere.model.I_CM_Container getCM_Container() throws RuntimeException; /** Column name CM_ContainerTTable_ID */ public static final String COLUMNNAME_CM_ContainerTTable_ID = "CM_ContainerTTable_ID"; @@ -90,6 +90,15 @@ public interface I_CM_ContainerTTable */ public int getCM_ContainerTTable_ID(); + /** Column name CM_ContainerTTable_UU */ + public static final String COLUMNNAME_CM_ContainerTTable_UU = "CM_ContainerTTable_UU"; + + /** Set CM_ContainerTTable_UU */ + public void setCM_ContainerTTable_UU (String CM_ContainerTTable_UU); + + /** Get CM_ContainerTTable_UU */ + public String getCM_ContainerTTable_UU(); + /** Column name CM_TemplateTable_ID */ public static final String COLUMNNAME_CM_TemplateTable_ID = "CM_TemplateTable_ID"; @@ -103,7 +112,7 @@ public interface I_CM_ContainerTTable */ public int getCM_TemplateTable_ID(); - public I_CM_TemplateTable getCM_TemplateTable() throws RuntimeException; + public org.compiere.model.I_CM_TemplateTable getCM_TemplateTable() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_Container_Element.java b/org.adempiere.base/src/org/compiere/model/I_CM_Container_Element.java index 9a431648a9..962dc951cb 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_Container_Element.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_Container_Element.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_Container_Element - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_Container_Element { @@ -31,7 +31,7 @@ public interface I_CM_Container_Element public static final String Table_Name = "CM_Container_Element"; /** AD_Table_ID=860 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 860; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_CM_Container_Element */ public int getCM_Container_Element_ID(); + /** Column name CM_Container_Element_UU */ + public static final String COLUMNNAME_CM_Container_Element_UU = "CM_Container_Element_UU"; + + /** Set CM_Container_Element_UU */ + public void setCM_Container_Element_UU (String CM_Container_Element_UU); + + /** Get CM_Container_Element_UU */ + public String getCM_Container_Element_UU(); + /** Column name CM_Container_ID */ public static final String COLUMNNAME_CM_Container_ID = "CM_Container_ID"; @@ -88,7 +97,7 @@ public interface I_CM_Container_Element */ public int getCM_Container_ID(); - public I_CM_Container getCM_Container() throws RuntimeException; + public org.compiere.model.I_CM_Container getCM_Container() throws RuntimeException; /** Column name ContentHTML */ public static final String COLUMNNAME_ContentHTML = "ContentHTML"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_Container_URL.java b/org.adempiere.base/src/org/compiere/model/I_CM_Container_URL.java index ff94840c9a..e20c2c569a 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_Container_URL.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_Container_URL.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_Container_URL - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_Container_URL { @@ -31,7 +31,7 @@ public interface I_CM_Container_URL public static final String Table_Name = "CM_Container_URL"; /** AD_Table_ID=865 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 865; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_CM_Container_URL */ public int getCM_Container_ID(); - public I_CM_Container getCM_Container() throws RuntimeException; + public org.compiere.model.I_CM_Container getCM_Container() throws RuntimeException; /** Column name CM_Container_URL_ID */ public static final String COLUMNNAME_CM_Container_URL_ID = "CM_Container_URL_ID"; @@ -103,6 +103,15 @@ public interface I_CM_Container_URL */ public int getCM_Container_URL_ID(); + /** Column name CM_Container_URL_UU */ + public static final String COLUMNNAME_CM_Container_URL_UU = "CM_Container_URL_UU"; + + /** Set CM_Container_URL_UU */ + public void setCM_Container_URL_UU (String CM_Container_URL_UU); + + /** Get CM_Container_URL_UU */ + public String getCM_Container_URL_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_Media.java b/org.adempiere.base/src/org/compiere/model/I_CM_Media.java index c1922557c8..c7e7a7b3ac 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_Media.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_Media.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_Media - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_Media { @@ -31,7 +31,7 @@ public interface I_CM_Media public static final String Table_Name = "CM_Media"; /** AD_Table_ID=857 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 857; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,6 +88,15 @@ public interface I_CM_Media */ public int getCM_Media_ID(); + /** Column name CM_Media_UU */ + public static final String COLUMNNAME_CM_Media_UU = "CM_Media_UU"; + + /** Set CM_Media_UU */ + public void setCM_Media_UU (String CM_Media_UU); + + /** Get CM_Media_UU */ + public String getCM_Media_UU(); + /** Column name CM_WebProject_ID */ public static final String COLUMNNAME_CM_WebProject_ID = "CM_WebProject_ID"; @@ -101,7 +110,7 @@ public interface I_CM_Media */ public int getCM_WebProject_ID(); - public I_CM_WebProject getCM_WebProject() throws RuntimeException; + public org.compiere.model.I_CM_WebProject getCM_WebProject() throws RuntimeException; /** Column name ContentText */ public static final String COLUMNNAME_ContentText = "ContentText"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_MediaDeploy.java b/org.adempiere.base/src/org/compiere/model/I_CM_MediaDeploy.java index 66341b6269..53675c513f 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_MediaDeploy.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_MediaDeploy.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_MediaDeploy - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_MediaDeploy { @@ -31,7 +31,7 @@ public interface I_CM_MediaDeploy public static final String Table_Name = "CM_MediaDeploy"; /** AD_Table_ID=892 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 892; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_CM_MediaDeploy */ public int getCM_MediaDeploy_ID(); + /** Column name CM_MediaDeploy_UU */ + public static final String COLUMNNAME_CM_MediaDeploy_UU = "CM_MediaDeploy_UU"; + + /** Set CM_MediaDeploy_UU */ + public void setCM_MediaDeploy_UU (String CM_MediaDeploy_UU); + + /** Get CM_MediaDeploy_UU */ + public String getCM_MediaDeploy_UU(); + /** Column name CM_Media_ID */ public static final String COLUMNNAME_CM_Media_ID = "CM_Media_ID"; @@ -88,7 +97,7 @@ public interface I_CM_MediaDeploy */ public int getCM_Media_ID(); - public I_CM_Media getCM_Media() throws RuntimeException; + public org.compiere.model.I_CM_Media getCM_Media() throws RuntimeException; /** Column name CM_Media_Server_ID */ public static final String COLUMNNAME_CM_Media_Server_ID = "CM_Media_Server_ID"; @@ -103,7 +112,7 @@ public interface I_CM_MediaDeploy */ public int getCM_Media_Server_ID(); - public I_CM_Media_Server getCM_Media_Server() throws RuntimeException; + public org.compiere.model.I_CM_Media_Server getCM_Media_Server() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_Media_Server.java b/org.adempiere.base/src/org/compiere/model/I_CM_Media_Server.java index a107a79405..42e8ccba2e 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_Media_Server.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_Media_Server.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_Media_Server - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_Media_Server { @@ -31,7 +31,7 @@ public interface I_CM_Media_Server public static final String Table_Name = "CM_Media_Server"; /** AD_Table_ID=859 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 859; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_CM_Media_Server */ public int getCM_Media_Server_ID(); + /** Column name CM_Media_Server_UU */ + public static final String COLUMNNAME_CM_Media_Server_UU = "CM_Media_Server_UU"; + + /** Set CM_Media_Server_UU */ + public void setCM_Media_Server_UU (String CM_Media_Server_UU); + + /** Get CM_Media_Server_UU */ + public String getCM_Media_Server_UU(); + /** Column name CM_WebProject_ID */ public static final String COLUMNNAME_CM_WebProject_ID = "CM_WebProject_ID"; @@ -88,7 +97,7 @@ public interface I_CM_Media_Server */ public int getCM_WebProject_ID(); - public I_CM_WebProject getCM_WebProject() throws RuntimeException; + public org.compiere.model.I_CM_WebProject getCM_WebProject() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -230,12 +239,12 @@ public interface I_CM_Media_Server public static final String COLUMNNAME_URL = "URL"; /** Set URL. - * Full URL address - e.g. http://www.adempiere.org + * Full URL address - e.g. http://www.idempiere.org */ public void setURL (String URL); /** Get URL. - * Full URL address - e.g. http://www.adempiere.org + * Full URL address - e.g. http://www.idempiere.org */ public String getURL(); diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_NewsChannel.java b/org.adempiere.base/src/org/compiere/model/I_CM_NewsChannel.java index 2962874dc4..8c924be9b3 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_NewsChannel.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_NewsChannel.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_NewsChannel - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_NewsChannel { @@ -31,7 +31,7 @@ public interface I_CM_NewsChannel public static final String Table_Name = "CM_NewsChannel"; /** AD_Table_ID=870 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 870; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,6 +88,15 @@ public interface I_CM_NewsChannel */ public int getCM_NewsChannel_ID(); + /** Column name CM_NewsChannel_UU */ + public static final String COLUMNNAME_CM_NewsChannel_UU = "CM_NewsChannel_UU"; + + /** Set CM_NewsChannel_UU */ + public void setCM_NewsChannel_UU (String CM_NewsChannel_UU); + + /** Get CM_NewsChannel_UU */ + public String getCM_NewsChannel_UU(); + /** Column name CM_WebProject_ID */ public static final String COLUMNNAME_CM_WebProject_ID = "CM_WebProject_ID"; @@ -101,7 +110,7 @@ public interface I_CM_NewsChannel */ public int getCM_WebProject_ID(); - public I_CM_WebProject getCM_WebProject() throws RuntimeException; + public org.compiere.model.I_CM_WebProject getCM_WebProject() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_NewsItem.java b/org.adempiere.base/src/org/compiere/model/I_CM_NewsItem.java index 13d8daec8c..a06c3f2072 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_NewsItem.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_NewsItem.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_NewsItem - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_NewsItem { @@ -31,7 +31,7 @@ public interface I_CM_NewsItem public static final String Table_Name = "CM_NewsItem"; /** AD_Table_ID=871 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 871; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_CM_NewsItem */ public int getCM_NewsChannel_ID(); - public I_CM_NewsChannel getCM_NewsChannel() throws RuntimeException; + public org.compiere.model.I_CM_NewsChannel getCM_NewsChannel() throws RuntimeException; /** Column name CM_NewsItem_ID */ public static final String COLUMNNAME_CM_NewsItem_ID = "CM_NewsItem_ID"; @@ -103,6 +103,15 @@ public interface I_CM_NewsItem */ public int getCM_NewsItem_ID(); + /** Column name CM_NewsItem_UU */ + public static final String COLUMNNAME_CM_NewsItem_UU = "CM_NewsItem_UU"; + + /** Set CM_NewsItem_UU */ + public void setCM_NewsItem_UU (String CM_NewsItem_UU); + + /** Get CM_NewsItem_UU */ + public String getCM_NewsItem_UU(); + /** Column name ContentHTML */ public static final String COLUMNNAME_ContentHTML = "ContentHTML"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_Template.java b/org.adempiere.base/src/org/compiere/model/I_CM_Template.java index 83688533cc..91b14944de 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_Template.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_Template.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_Template - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_Template { @@ -31,7 +31,7 @@ public interface I_CM_Template public static final String Table_Name = "CM_Template"; /** AD_Table_ID=854 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 854; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_CM_Template */ public int getCM_Template_ID(); + /** Column name CM_Template_UU */ + public static final String COLUMNNAME_CM_Template_UU = "CM_Template_UU"; + + /** Set CM_Template_UU */ + public void setCM_Template_UU (String CM_Template_UU); + + /** Get CM_Template_UU */ + public String getCM_Template_UU(); + /** Column name CM_WebProject_ID */ public static final String COLUMNNAME_CM_WebProject_ID = "CM_WebProject_ID"; @@ -88,7 +97,7 @@ public interface I_CM_Template */ public int getCM_WebProject_ID(); - public I_CM_WebProject getCM_WebProject() throws RuntimeException; + public org.compiere.model.I_CM_WebProject getCM_WebProject() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_TemplateTable.java b/org.adempiere.base/src/org/compiere/model/I_CM_TemplateTable.java index b4bb4c8c6c..e4f8217acc 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_TemplateTable.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_TemplateTable.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_TemplateTable - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_TemplateTable { @@ -31,7 +31,7 @@ public interface I_CM_TemplateTable public static final String Table_Name = "CM_TemplateTable"; /** AD_Table_ID=879 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 879; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_CM_TemplateTable */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name CM_Template_ID */ public static final String COLUMNNAME_CM_Template_ID = "CM_Template_ID"; @@ -90,7 +90,7 @@ public interface I_CM_TemplateTable */ public int getCM_Template_ID(); - public I_CM_Template getCM_Template() throws RuntimeException; + public org.compiere.model.I_CM_Template getCM_Template() throws RuntimeException; /** Column name CM_TemplateTable_ID */ public static final String COLUMNNAME_CM_TemplateTable_ID = "CM_TemplateTable_ID"; @@ -105,6 +105,15 @@ public interface I_CM_TemplateTable */ public int getCM_TemplateTable_ID(); + /** Column name CM_TemplateTable_UU */ + public static final String COLUMNNAME_CM_TemplateTable_UU = "CM_TemplateTable_UU"; + + /** Set CM_TemplateTable_UU */ + public void setCM_TemplateTable_UU (String CM_TemplateTable_UU); + + /** Get CM_TemplateTable_UU */ + public String getCM_TemplateTable_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_Template_Ad_Cat.java b/org.adempiere.base/src/org/compiere/model/I_CM_Template_Ad_Cat.java index 662c96b795..32041db718 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_Template_Ad_Cat.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_Template_Ad_Cat.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_Template_Ad_Cat - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_Template_Ad_Cat { @@ -31,7 +31,7 @@ public interface I_CM_Template_Ad_Cat public static final String Table_Name = "CM_Template_Ad_Cat"; /** AD_Table_ID=872 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 872; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_CM_Template_Ad_Cat */ public int getCM_Ad_Cat_ID(); - public I_CM_Ad_Cat getCM_Ad_Cat() throws RuntimeException; + public org.compiere.model.I_CM_Ad_Cat getCM_Ad_Cat() throws RuntimeException; + + /** Column name CM_Template_Ad_Cat_UU */ + public static final String COLUMNNAME_CM_Template_Ad_Cat_UU = "CM_Template_Ad_Cat_UU"; + + /** Set CM_Template_Ad_Cat_UU */ + public void setCM_Template_Ad_Cat_UU (String CM_Template_Ad_Cat_UU); + + /** Get CM_Template_Ad_Cat_UU */ + public String getCM_Template_Ad_Cat_UU(); /** Column name CM_Template_ID */ public static final String COLUMNNAME_CM_Template_ID = "CM_Template_ID"; @@ -90,7 +99,7 @@ public interface I_CM_Template_Ad_Cat */ public int getCM_Template_ID(); - public I_CM_Template getCM_Template() throws RuntimeException; + public org.compiere.model.I_CM_Template getCM_Template() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_WebAccessLog.java b/org.adempiere.base/src/org/compiere/model/I_CM_WebAccessLog.java index 9a72a1990f..f7cb6b8b95 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_WebAccessLog.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_WebAccessLog.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_WebAccessLog - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_WebAccessLog { @@ -31,7 +31,7 @@ public interface I_CM_WebAccessLog public static final String Table_Name = "CM_WebAccessLog"; /** AD_Table_ID=894 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 894; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_CM_WebAccessLog */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name CM_BroadcastServer_ID */ public static final String COLUMNNAME_CM_BroadcastServer_ID = "CM_BroadcastServer_ID"; @@ -103,7 +103,7 @@ public interface I_CM_WebAccessLog */ public int getCM_BroadcastServer_ID(); - public I_CM_BroadcastServer getCM_BroadcastServer() throws RuntimeException; + public org.compiere.model.I_CM_BroadcastServer getCM_BroadcastServer() throws RuntimeException; /** Column name CM_Media_ID */ public static final String COLUMNNAME_CM_Media_ID = "CM_Media_ID"; @@ -118,7 +118,7 @@ public interface I_CM_WebAccessLog */ public int getCM_Media_ID(); - public I_CM_Media getCM_Media() throws RuntimeException; + public org.compiere.model.I_CM_Media getCM_Media() throws RuntimeException; /** Column name CM_WebAccessLog_ID */ public static final String COLUMNNAME_CM_WebAccessLog_ID = "CM_WebAccessLog_ID"; @@ -133,6 +133,15 @@ public interface I_CM_WebAccessLog */ public int getCM_WebAccessLog_ID(); + /** Column name CM_WebAccessLog_UU */ + public static final String COLUMNNAME_CM_WebAccessLog_UU = "CM_WebAccessLog_UU"; + + /** Set CM_WebAccessLog_UU */ + public void setCM_WebAccessLog_UU (String CM_WebAccessLog_UU); + + /** Get CM_WebAccessLog_UU */ + public String getCM_WebAccessLog_UU(); + /** Column name CM_WebProject_ID */ public static final String COLUMNNAME_CM_WebProject_ID = "CM_WebProject_ID"; @@ -146,7 +155,7 @@ public interface I_CM_WebAccessLog */ public int getCM_WebProject_ID(); - public I_CM_WebProject getCM_WebProject() throws RuntimeException; + public org.compiere.model.I_CM_WebProject getCM_WebProject() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_WebProject.java b/org.adempiere.base/src/org/compiere/model/I_CM_WebProject.java index 8320168c15..a07a42642a 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_WebProject.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_WebProject.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_WebProject - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_WebProject { @@ -31,7 +31,7 @@ public interface I_CM_WebProject public static final String Table_Name = "CM_WebProject"; /** AD_Table_ID=853 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 853; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_CM_WebProject */ public int getAD_TreeCMC_ID(); - public I_AD_Tree getAD_TreeCMC() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_TreeCMC() throws RuntimeException; /** Column name AD_TreeCMM_ID */ public static final String COLUMNNAME_AD_TreeCMM_ID = "AD_TreeCMM_ID"; @@ -90,7 +90,7 @@ public interface I_CM_WebProject */ public int getAD_TreeCMM_ID(); - public I_AD_Tree getAD_TreeCMM() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_TreeCMM() throws RuntimeException; /** Column name AD_TreeCMS_ID */ public static final String COLUMNNAME_AD_TreeCMS_ID = "AD_TreeCMS_ID"; @@ -105,7 +105,7 @@ public interface I_CM_WebProject */ public int getAD_TreeCMS_ID(); - public I_AD_Tree getAD_TreeCMS() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_TreeCMS() throws RuntimeException; /** Column name AD_TreeCMT_ID */ public static final String COLUMNNAME_AD_TreeCMT_ID = "AD_TreeCMT_ID"; @@ -120,7 +120,7 @@ public interface I_CM_WebProject */ public int getAD_TreeCMT_ID(); - public I_AD_Tree getAD_TreeCMT() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_TreeCMT() throws RuntimeException; /** Column name CM_WebProject_ID */ public static final String COLUMNNAME_CM_WebProject_ID = "CM_WebProject_ID"; @@ -135,6 +135,15 @@ public interface I_CM_WebProject */ public int getCM_WebProject_ID(); + /** Column name CM_WebProject_UU */ + public static final String COLUMNNAME_CM_WebProject_UU = "CM_WebProject_UU"; + + /** Set CM_WebProject_UU */ + public void setCM_WebProject_UU (String CM_WebProject_UU); + + /** Get CM_WebProject_UU */ + public String getCM_WebProject_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_WebProject_Domain.java b/org.adempiere.base/src/org/compiere/model/I_CM_WebProject_Domain.java index a0388087e3..66843a76ae 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_WebProject_Domain.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_WebProject_Domain.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_WebProject_Domain - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_WebProject_Domain { @@ -31,7 +31,7 @@ public interface I_CM_WebProject_Domain public static final String Table_Name = "CM_WebProject_Domain"; /** AD_Table_ID=873 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 873; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_CM_WebProject_Domain */ public int getCM_Container_ID(); - public I_CM_Container getCM_Container() throws RuntimeException; + public org.compiere.model.I_CM_Container getCM_Container() throws RuntimeException; /** Column name CM_WebProject_Domain_ID */ public static final String COLUMNNAME_CM_WebProject_Domain_ID = "CM_WebProject_Domain_ID"; @@ -90,6 +90,15 @@ public interface I_CM_WebProject_Domain */ public int getCM_WebProject_Domain_ID(); + /** Column name CM_WebProject_Domain_UU */ + public static final String COLUMNNAME_CM_WebProject_Domain_UU = "CM_WebProject_Domain_UU"; + + /** Set CM_WebProject_Domain_UU */ + public void setCM_WebProject_Domain_UU (String CM_WebProject_Domain_UU); + + /** Get CM_WebProject_Domain_UU */ + public String getCM_WebProject_Domain_UU(); + /** Column name CM_WebProject_ID */ public static final String COLUMNNAME_CM_WebProject_ID = "CM_WebProject_ID"; @@ -103,7 +112,7 @@ public interface I_CM_WebProject_Domain */ public int getCM_WebProject_ID(); - public I_CM_WebProject getCM_WebProject() throws RuntimeException; + public org.compiere.model.I_CM_WebProject getCM_WebProject() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_CM_WikiToken.java b/org.adempiere.base/src/org/compiere/model/I_CM_WikiToken.java index 9f0a4ddff6..e74dfadb95 100644 --- a/org.adempiere.base/src/org/compiere/model/I_CM_WikiToken.java +++ b/org.adempiere.base/src/org/compiere/model/I_CM_WikiToken.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for CM_WikiToken - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_CM_WikiToken { @@ -31,7 +31,7 @@ public interface I_CM_WikiToken public static final String Table_Name = "CM_WikiToken"; /** AD_Table_ID=905 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 905; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_CM_WikiToken */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name CM_WikiToken_ID */ public static final String COLUMNNAME_CM_WikiToken_ID = "CM_WikiToken_ID"; @@ -90,6 +90,15 @@ public interface I_CM_WikiToken */ public int getCM_WikiToken_ID(); + /** Column name CM_WikiToken_UU */ + public static final String COLUMNNAME_CM_WikiToken_UU = "CM_WikiToken_UU"; + + /** Set CM_WikiToken_UU */ + public void setCM_WikiToken_UU (String CM_WikiToken_UU); + + /** Get CM_WikiToken_UU */ + public String getCM_WikiToken_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_AcctProcessor.java b/org.adempiere.base/src/org/compiere/model/I_C_AcctProcessor.java index 5b321cfdbb..422d34f012 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_AcctProcessor.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_AcctProcessor.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_AcctProcessor - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_AcctProcessor { @@ -65,10 +65,10 @@ public interface I_C_AcctProcessor /** Column name AD_Schedule_ID */ public static final String COLUMNNAME_AD_Schedule_ID = "AD_Schedule_ID"; - /** Set AD_Schedule_ID */ + /** Set Schedule */ public void setAD_Schedule_ID (int AD_Schedule_ID); - /** Get AD_Schedule_ID */ + /** Get Schedule */ public int getAD_Schedule_ID(); public org.compiere.model.I_AD_Schedule getAD_Schedule() throws RuntimeException; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_AcctProcessorLog.java b/org.adempiere.base/src/org/compiere/model/I_C_AcctProcessorLog.java index 3ca8300100..f20fb037c3 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_AcctProcessorLog.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_AcctProcessorLog.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_AcctProcessorLog - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_AcctProcessorLog { @@ -31,7 +31,7 @@ public interface I_C_AcctProcessorLog public static final String Table_Name = "C_AcctProcessorLog"; /** AD_Table_ID=694 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 694; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_C_AcctProcessorLog */ public int getC_AcctProcessor_ID(); - public I_C_AcctProcessor getC_AcctProcessor() throws RuntimeException; + public org.compiere.model.I_C_AcctProcessor getC_AcctProcessor() throws RuntimeException; /** Column name C_AcctProcessorLog_ID */ public static final String COLUMNNAME_C_AcctProcessorLog_ID = "C_AcctProcessorLog_ID"; @@ -103,6 +103,15 @@ public interface I_C_AcctProcessorLog */ public int getC_AcctProcessorLog_ID(); + /** Column name C_AcctProcessorLog_UU */ + public static final String COLUMNNAME_C_AcctProcessorLog_UU = "C_AcctProcessorLog_UU"; + + /** Set C_AcctProcessorLog_UU */ + public void setC_AcctProcessorLog_UU (String C_AcctProcessorLog_UU); + + /** Get C_AcctProcessorLog_UU */ + public String getC_AcctProcessorLog_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_AcctSchema.java b/org.adempiere.base/src/org/compiere/model/I_C_AcctSchema.java index dff733e241..25c27172b1 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_AcctSchema.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_AcctSchema.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_AcctSchema - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_AcctSchema { @@ -31,7 +31,7 @@ public interface I_C_AcctSchema public static final String Table_Name = "C_AcctSchema"; /** AD_Table_ID=265 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 265; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -101,6 +101,15 @@ public interface I_C_AcctSchema */ public int getC_AcctSchema_ID(); + /** Column name C_AcctSchema_UU */ + public static final String COLUMNNAME_C_AcctSchema_UU = "C_AcctSchema_UU"; + + /** Set C_AcctSchema_UU */ + public void setC_AcctSchema_UU (String C_AcctSchema_UU); + + /** Get C_AcctSchema_UU */ + public String getC_AcctSchema_UU(); + /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -114,7 +123,7 @@ public interface I_C_AcctSchema */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name CommitmentType */ public static final String COLUMNNAME_CommitmentType = "CommitmentType"; @@ -168,7 +177,7 @@ public interface I_C_AcctSchema */ public int getC_Period_ID(); - public I_C_Period getC_Period() throws RuntimeException; + public org.compiere.model.I_C_Period getC_Period() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -368,7 +377,7 @@ public interface I_C_AcctSchema */ public int getM_CostType_ID(); - public I_M_CostType getM_CostType() throws RuntimeException; + public org.compiere.model.I_M_CostType getM_CostType() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_AcctSchema_Default.java b/org.adempiere.base/src/org/compiere/model/I_C_AcctSchema_Default.java index a994519eba..850a9f21dc 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_AcctSchema_Default.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_AcctSchema_Default.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_AcctSchema_Default - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_AcctSchema_Default { @@ -35,7 +35,7 @@ public interface I_C_AcctSchema_Default KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); - /** AccessLevel = - Client + /** AccessLevel = 2 - Client */ BigDecimal accessLevel = BigDecimal.valueOf(2); diff --git a/org.adempiere.base/src/org/compiere/model/I_C_AcctSchema_Element.java b/org.adempiere.base/src/org/compiere/model/I_C_AcctSchema_Element.java index 404c4693d5..62d7fa7b28 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_AcctSchema_Element.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_AcctSchema_Element.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_AcctSchema_Element - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_AcctSchema_Element { @@ -31,7 +31,7 @@ public interface I_C_AcctSchema_Element public static final String Table_Name = "C_AcctSchema_Element"; /** AD_Table_ID=279 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 279; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,7 +62,7 @@ public interface I_C_AcctSchema_Element */ public int getAD_Column_ID(); - public I_AD_Column getAD_Column() throws RuntimeException; + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -86,6 +86,15 @@ public interface I_C_AcctSchema_Element /** Get Acct.Schema Element */ public int getC_AcctSchema_Element_ID(); + /** Column name C_AcctSchema_Element_UU */ + public static final String COLUMNNAME_C_AcctSchema_Element_UU = "C_AcctSchema_Element_UU"; + + /** Set C_AcctSchema_Element_UU */ + public void setC_AcctSchema_Element_UU (String C_AcctSchema_Element_UU); + + /** Get C_AcctSchema_Element_UU */ + public String getC_AcctSchema_Element_UU(); + /** Column name C_AcctSchema_ID */ public static final String COLUMNNAME_C_AcctSchema_ID = "C_AcctSchema_ID"; @@ -99,7 +108,7 @@ public interface I_C_AcctSchema_Element */ public int getC_AcctSchema_ID(); - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException; /** Column name C_Activity_ID */ public static final String COLUMNNAME_C_Activity_ID = "C_Activity_ID"; @@ -114,7 +123,7 @@ public interface I_C_AcctSchema_Element */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -129,7 +138,7 @@ public interface I_C_AcctSchema_Element */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -144,7 +153,7 @@ public interface I_C_AcctSchema_Element */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_Element_ID */ public static final String COLUMNNAME_C_Element_ID = "C_Element_ID"; @@ -159,7 +168,7 @@ public interface I_C_AcctSchema_Element */ public int getC_Element_ID(); - public I_C_Element getC_Element() throws RuntimeException; + public org.compiere.model.I_C_Element getC_Element() throws RuntimeException; /** Column name C_ElementValue_ID */ public static final String COLUMNNAME_C_ElementValue_ID = "C_ElementValue_ID"; @@ -174,7 +183,7 @@ public interface I_C_AcctSchema_Element */ public int getC_ElementValue_ID(); - public I_C_ElementValue getC_ElementValue() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getC_ElementValue() throws RuntimeException; /** Column name C_Location_ID */ public static final String COLUMNNAME_C_Location_ID = "C_Location_ID"; @@ -204,7 +213,7 @@ public interface I_C_AcctSchema_Element */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -235,7 +244,7 @@ public interface I_C_AcctSchema_Element */ public int getC_SalesRegion_ID(); - public I_C_SalesRegion getC_SalesRegion() throws RuntimeException; + public org.compiere.model.I_C_SalesRegion getC_SalesRegion() throws RuntimeException; /** Column name ElementType */ public static final String COLUMNNAME_ElementType = "ElementType"; @@ -298,7 +307,7 @@ public interface I_C_AcctSchema_Element */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_AcctSchema_GL.java b/org.adempiere.base/src/org/compiere/model/I_C_AcctSchema_GL.java index 02b9784dd6..6bc3feab1c 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_AcctSchema_GL.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_AcctSchema_GL.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_AcctSchema_GL - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_AcctSchema_GL { @@ -35,7 +35,7 @@ public interface I_C_AcctSchema_GL KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); - /** AccessLevel = - Client + /** AccessLevel = 2 - Client */ BigDecimal accessLevel = BigDecimal.valueOf(2); diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Activity.java b/org.adempiere.base/src/org/compiere/model/I_C_Activity.java index b0504e385e..d1c16c7877 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Activity.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Activity.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Activity - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Activity { @@ -31,7 +31,7 @@ public interface I_C_Activity public static final String Table_Name = "C_Activity"; /** AD_Table_ID=316 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 316; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_C_Activity */ public int getC_Activity_ID(); + /** Column name C_Activity_UU */ + public static final String COLUMNNAME_C_Activity_UU = "C_Activity_UU"; + + /** Set C_Activity_UU */ + public void setC_Activity_UU (String C_Activity_UU); + + /** Get C_Activity_UU */ + public String getC_Activity_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_AllocationHdr.java b/org.adempiere.base/src/org/compiere/model/I_C_AllocationHdr.java index 6a076094f7..621a4134e5 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_AllocationHdr.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_AllocationHdr.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_AllocationHdr - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_AllocationHdr { @@ -31,7 +31,7 @@ public interface I_C_AllocationHdr public static final String Table_Name = "C_AllocationHdr"; /** AD_Table_ID=735 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 735; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,6 +88,15 @@ public interface I_C_AllocationHdr */ public int getC_AllocationHdr_ID(); + /** Column name C_AllocationHdr_UU */ + public static final String COLUMNNAME_C_AllocationHdr_UU = "C_AllocationHdr_UU"; + + /** Set C_AllocationHdr_UU */ + public void setC_AllocationHdr_UU (String C_AllocationHdr_UU); + + /** Get C_AllocationHdr_UU */ + public String getC_AllocationHdr_UU(); + /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -101,7 +110,7 @@ public interface I_C_AllocationHdr */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_AllocationLine.java b/org.adempiere.base/src/org/compiere/model/I_C_AllocationLine.java index 271cbf904c..dbb4620b03 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_AllocationLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_AllocationLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_AllocationLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_AllocationLine { @@ -31,7 +31,7 @@ public interface I_C_AllocationLine public static final String Table_Name = "C_AllocationLine"; /** AD_Table_ID=390 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 390; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_C_AllocationLine */ public int getC_AllocationHdr_ID(); - public I_C_AllocationHdr getC_AllocationHdr() throws RuntimeException; + public org.compiere.model.I_C_AllocationHdr getC_AllocationHdr() throws RuntimeException; /** Column name C_AllocationLine_ID */ public static final String COLUMNNAME_C_AllocationLine_ID = "C_AllocationLine_ID"; @@ -103,6 +103,15 @@ public interface I_C_AllocationLine */ public int getC_AllocationLine_ID(); + /** Column name C_AllocationLine_UU */ + public static final String COLUMNNAME_C_AllocationLine_UU = "C_AllocationLine_UU"; + + /** Set C_AllocationLine_UU */ + public void setC_AllocationLine_UU (String C_AllocationLine_UU); + + /** Get C_AllocationLine_UU */ + public String getC_AllocationLine_UU(); + /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -116,7 +125,7 @@ public interface I_C_AllocationLine */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_CashLine_ID */ public static final String COLUMNNAME_C_CashLine_ID = "C_CashLine_ID"; @@ -131,7 +140,22 @@ public interface I_C_AllocationLine */ public int getC_CashLine_ID(); - public I_C_CashLine getC_CashLine() throws RuntimeException; + public org.compiere.model.I_C_CashLine getC_CashLine() throws RuntimeException; + + /** Column name C_Charge_ID */ + public static final String COLUMNNAME_C_Charge_ID = "C_Charge_ID"; + + /** Set Charge. + * Additional document charges + */ + public void setC_Charge_ID (int C_Charge_ID); + + /** Get Charge. + * Additional document charges + */ + public int getC_Charge_ID(); + + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException; /** Column name C_Invoice_ID */ public static final String COLUMNNAME_C_Invoice_ID = "C_Invoice_ID"; @@ -146,7 +170,7 @@ public interface I_C_AllocationLine */ public int getC_Invoice_ID(); - public I_C_Invoice getC_Invoice() throws RuntimeException; + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException; /** Column name C_Order_ID */ public static final String COLUMNNAME_C_Order_ID = "C_Order_ID"; @@ -161,7 +185,7 @@ public interface I_C_AllocationLine */ public int getC_Order_ID(); - public I_C_Order getC_Order() throws RuntimeException; + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException; /** Column name C_Payment_ID */ public static final String COLUMNNAME_C_Payment_ID = "C_Payment_ID"; @@ -176,7 +200,7 @@ public interface I_C_AllocationLine */ public int getC_Payment_ID(); - public I_C_Payment getC_Payment() throws RuntimeException; + public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_BP_BankAccount.java b/org.adempiere.base/src/org/compiere/model/I_C_BP_BankAccount.java index 2babd49e28..d92228a445 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_BP_BankAccount.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_BP_BankAccount.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_BP_BankAccount - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_BP_BankAccount { @@ -41,6 +41,19 @@ public interface I_C_BP_BankAccount /** Load Meta Data */ + /** Column name AccountNo */ + public static final String COLUMNNAME_AccountNo = "AccountNo"; + + /** Set Account No. + * Account Number + */ + public void setAccountNo (String AccountNo); + + /** Get Account No. + * Account Number + */ + public String getAccountNo(); + /** Column name A_City */ public static final String COLUMNNAME_A_City = "A_City"; @@ -67,6 +80,42 @@ public interface I_C_BP_BankAccount */ public String getA_Country(); + /** Column name AD_Client_ID */ + public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; + + /** Get Client. + * Client/Tenant for this installation. + */ + public int getAD_Client_ID(); + + /** Column name AD_Org_ID */ + public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; + + /** Set Organization. + * Organizational entity within client + */ + public void setAD_Org_ID (int AD_Org_ID); + + /** Get Organization. + * Organizational entity within client + */ + public int getAD_Org_ID(); + + /** Column name AD_User_ID */ + public static final String COLUMNNAME_AD_User_ID = "AD_User_ID"; + + /** Set User/Contact. + * User within the system - Internal or Business Partner Contact + */ + public void setAD_User_ID (int AD_User_ID); + + /** Get User/Contact. + * User within the system - Internal or Business Partner Contact + */ + public int getAD_User_ID(); + + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; + /** Column name A_EMail */ public static final String COLUMNNAME_A_EMail = "A_EMail"; @@ -158,55 +207,6 @@ public interface I_C_BP_BankAccount */ public String getA_Zip(); - /** Column name AccountNo */ - public static final String COLUMNNAME_AccountNo = "AccountNo"; - - /** Set Account No. - * Account Number - */ - public void setAccountNo (String AccountNo); - - /** Get Account No. - * Account Number - */ - public String getAccountNo(); - - /** Column name AD_Client_ID */ - public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; - - /** Get Client. - * Client/Tenant for this installation. - */ - public int getAD_Client_ID(); - - /** Column name AD_Org_ID */ - public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; - - /** Set Organization. - * Organizational entity within client - */ - public void setAD_Org_ID (int AD_Org_ID); - - /** Get Organization. - * Organizational entity within client - */ - public int getAD_Org_ID(); - - /** Column name AD_User_ID */ - public static final String COLUMNNAME_AD_User_ID = "AD_User_ID"; - - /** Set User/Contact. - * User within the system - Internal or Business Partner Contact - */ - public void setAD_User_ID (int AD_User_ID); - - /** Get User/Contact. - * User within the system - Internal or Business Partner Contact - */ - public int getAD_User_ID(); - - public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; - /** Column name BankAccountType */ public static final String COLUMNNAME_BankAccountType = "BankAccountType"; @@ -248,6 +248,21 @@ public interface I_C_BP_BankAccount public org.compiere.model.I_C_Bank getC_Bank() throws RuntimeException; + /** Column name C_BPartner_ID */ + public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; + + /** Set Business Partner . + * Identifies a Business Partner + */ + public void setC_BPartner_ID (int C_BPartner_ID); + + /** Get Business Partner . + * Identifies a Business Partner + */ + public int getC_BPartner_ID(); + + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; + /** Column name C_BP_BankAccount_ID */ public static final String COLUMNNAME_C_BP_BankAccount_ID = "C_BP_BankAccount_ID"; @@ -270,21 +285,6 @@ public interface I_C_BP_BankAccount /** Get C_BP_BankAccount_UU */ public String getC_BP_BankAccount_UU(); - /** Column name C_BPartner_ID */ - public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; - - /** Set Business Partner . - * Identifies a Business Partner - */ - public void setC_BPartner_ID (int C_BPartner_ID); - - /** Get Business Partner . - * Identifies a Business Partner - */ - public int getC_BPartner_ID(); - - public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; - /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_BP_Customer_Acct.java b/org.adempiere.base/src/org/compiere/model/I_C_BP_Customer_Acct.java index 69322a31a5..541de71b7d 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_BP_Customer_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_BP_Customer_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_BP_Customer_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_BP_Customer_Acct { @@ -31,7 +31,7 @@ public interface I_C_BP_Customer_Acct public static final String Table_Name = "C_BP_Customer_Acct"; /** AD_Table_ID=183 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 183; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_BP_Customer_Acct */ public int getC_AcctSchema_ID(); - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -90,7 +90,16 @@ public interface I_C_BP_Customer_Acct */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; + + /** Column name C_BP_Customer_Acct_UU */ + public static final String COLUMNNAME_C_BP_Customer_Acct_UU = "C_BP_Customer_Acct_UU"; + + /** Set C_BP_Customer_Acct_UU */ + public void setC_BP_Customer_Acct_UU (String C_BP_Customer_Acct_UU); + + /** Get C_BP_Customer_Acct_UU */ + public String getC_BP_Customer_Acct_UU(); /** Column name C_Prepayment_Acct */ public static final String COLUMNNAME_C_Prepayment_Acct = "C_Prepayment_Acct"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_BP_EDI.java b/org.adempiere.base/src/org/compiere/model/I_C_BP_EDI.java index 8f9b5cdfe3..cbc6fee896 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_BP_EDI.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_BP_EDI.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_BP_EDI - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_BP_EDI { @@ -31,7 +31,7 @@ public interface I_C_BP_EDI public static final String Table_Name = "C_BP_EDI"; /** AD_Table_ID=366 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 366; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_BP_EDI */ public int getAD_Sequence_ID(); - public I_AD_Sequence getAD_Sequence() throws RuntimeException; + public org.compiere.model.I_AD_Sequence getAD_Sequence() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -90,7 +90,7 @@ public interface I_C_BP_EDI */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_BP_EDI_ID */ public static final String COLUMNNAME_C_BP_EDI_ID = "C_BP_EDI_ID"; @@ -105,6 +105,15 @@ public interface I_C_BP_EDI */ public int getC_BP_EDI_ID(); + /** Column name C_BP_EDI_UU */ + public static final String COLUMNNAME_C_BP_EDI_UU = "C_BP_EDI_UU"; + + /** Set C_BP_EDI_UU */ + public void setC_BP_EDI_UU (String C_BP_EDI_UU); + + /** Get C_BP_EDI_UU */ + public String getC_BP_EDI_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -286,7 +295,7 @@ public interface I_C_BP_EDI */ public int getM_Warehouse_ID(); - public I_M_Warehouse getM_Warehouse() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_BP_Employee_Acct.java b/org.adempiere.base/src/org/compiere/model/I_C_BP_Employee_Acct.java index ccb98f5fbf..df2c729266 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_BP_Employee_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_BP_Employee_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_BP_Employee_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_BP_Employee_Acct { @@ -35,7 +35,7 @@ public interface I_C_BP_Employee_Acct KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); - /** AccessLevel = - Client - Org + /** AccessLevel = 3 - Client - Org */ BigDecimal accessLevel = BigDecimal.valueOf(3); diff --git a/org.adempiere.base/src/org/compiere/model/I_C_BP_Group.java b/org.adempiere.base/src/org/compiere/model/I_C_BP_Group.java index b4e25e571c..181b7275b4 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_BP_Group.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_BP_Group.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_BP_Group - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_BP_Group { @@ -31,7 +31,7 @@ public interface I_C_BP_Group public static final String Table_Name = "C_BP_Group"; /** AD_Table_ID=394 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 394; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_BP_Group */ public int getAD_PrintColor_ID(); - public I_AD_PrintColor getAD_PrintColor() throws RuntimeException; + public org.compiere.model.I_AD_PrintColor getAD_PrintColor() throws RuntimeException; /** Column name C_BP_Group_ID */ public static final String COLUMNNAME_C_BP_Group_ID = "C_BP_Group_ID"; @@ -90,6 +90,15 @@ public interface I_C_BP_Group */ public int getC_BP_Group_ID(); + /** Column name C_BP_Group_UU */ + public static final String COLUMNNAME_C_BP_Group_UU = "C_BP_Group_UU"; + + /** Set C_BP_Group_UU */ + public void setC_BP_Group_UU (String C_BP_Group_UU); + + /** Get C_BP_Group_UU */ + public String getC_BP_Group_UU(); + /** Column name C_Dunning_ID */ public static final String COLUMNNAME_C_Dunning_ID = "C_Dunning_ID"; @@ -103,7 +112,7 @@ public interface I_C_BP_Group */ public int getC_Dunning_ID(); - public I_C_Dunning getC_Dunning() throws RuntimeException; + public org.compiere.model.I_C_Dunning getC_Dunning() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -199,7 +208,7 @@ public interface I_C_BP_Group */ public int getM_DiscountSchema_ID(); - public I_M_DiscountSchema getM_DiscountSchema() throws RuntimeException; + public org.compiere.model.I_M_DiscountSchema getM_DiscountSchema() throws RuntimeException; /** Column name M_PriceList_ID */ public static final String COLUMNNAME_M_PriceList_ID = "M_PriceList_ID"; @@ -214,7 +223,7 @@ public interface I_C_BP_Group */ public int getM_PriceList_ID(); - public I_M_PriceList getM_PriceList() throws RuntimeException; + public org.compiere.model.I_M_PriceList getM_PriceList() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; @@ -242,7 +251,7 @@ public interface I_C_BP_Group */ public int getPO_DiscountSchema_ID(); - public I_M_DiscountSchema getPO_DiscountSchema() throws RuntimeException; + public org.compiere.model.I_M_DiscountSchema getPO_DiscountSchema() throws RuntimeException; /** Column name PO_PriceList_ID */ public static final String COLUMNNAME_PO_PriceList_ID = "PO_PriceList_ID"; @@ -257,7 +266,7 @@ public interface I_C_BP_Group */ public int getPO_PriceList_ID(); - public I_M_PriceList getPO_PriceList() throws RuntimeException; + public org.compiere.model.I_M_PriceList getPO_PriceList() throws RuntimeException; /** Column name PriceMatchTolerance */ public static final String COLUMNNAME_PriceMatchTolerance = "PriceMatchTolerance"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_BP_Group_Acct.java b/org.adempiere.base/src/org/compiere/model/I_C_BP_Group_Acct.java index 929e0a7fd9..a9604288db 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_BP_Group_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_BP_Group_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_BP_Group_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_BP_Group_Acct { @@ -35,7 +35,7 @@ public interface I_C_BP_Group_Acct KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); - /** AccessLevel = - Client - Org + /** AccessLevel = 3 - Client - Org */ BigDecimal accessLevel = BigDecimal.valueOf(3); diff --git a/org.adempiere.base/src/org/compiere/model/I_C_BP_Relation.java b/org.adempiere.base/src/org/compiere/model/I_C_BP_Relation.java index f66fd84535..b54a8d12b6 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_BP_Relation.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_BP_Relation.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_BP_Relation - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_BP_Relation { @@ -31,7 +31,7 @@ public interface I_C_BP_Relation public static final String Table_Name = "C_BP_Relation"; /** AD_Table_ID=678 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 678; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_BP_Relation */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_BPartner_Location_ID */ public static final String COLUMNNAME_C_BPartner_Location_ID = "C_BPartner_Location_ID"; @@ -90,7 +90,7 @@ public interface I_C_BP_Relation */ public int getC_BPartner_Location_ID(); - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; /** Column name C_BPartnerRelation_ID */ public static final String COLUMNNAME_C_BPartnerRelation_ID = "C_BPartnerRelation_ID"; @@ -105,7 +105,7 @@ public interface I_C_BP_Relation */ public int getC_BPartnerRelation_ID(); - public I_C_BPartner getC_BPartnerRelation() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartnerRelation() throws RuntimeException; /** Column name C_BPartnerRelation_Location_ID */ public static final String COLUMNNAME_C_BPartnerRelation_Location_ID = "C_BPartnerRelation_Location_ID"; @@ -120,7 +120,7 @@ public interface I_C_BP_Relation */ public int getC_BPartnerRelation_Location_ID(); - public I_C_BPartner_Location getC_BPartnerRelation_Location() throws RuntimeException; + public org.compiere.model.I_C_BPartner_Location getC_BPartnerRelation_Location() throws RuntimeException; /** Column name C_BP_Relation_ID */ public static final String COLUMNNAME_C_BP_Relation_ID = "C_BP_Relation_ID"; @@ -135,6 +135,15 @@ public interface I_C_BP_Relation */ public int getC_BP_Relation_ID(); + /** Column name C_BP_Relation_UU */ + public static final String COLUMNNAME_C_BP_Relation_UU = "C_BP_Relation_UU"; + + /** Set C_BP_Relation_UU */ + public void setC_BP_Relation_UU (String C_BP_Relation_UU); + + /** Get C_BP_Relation_UU */ + public String getC_BP_Relation_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_BP_Vendor_Acct.java b/org.adempiere.base/src/org/compiere/model/I_C_BP_Vendor_Acct.java index 35b98fd263..f7f91ce9e6 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_BP_Vendor_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_BP_Vendor_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_BP_Vendor_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_BP_Vendor_Acct { @@ -31,7 +31,7 @@ public interface I_C_BP_Vendor_Acct public static final String Table_Name = "C_BP_Vendor_Acct"; /** AD_Table_ID=185 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 185; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_BP_Vendor_Acct */ public int getC_AcctSchema_ID(); - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -90,7 +90,16 @@ public interface I_C_BP_Vendor_Acct */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; + + /** Column name C_BP_Vendor_Acct_UU */ + public static final String COLUMNNAME_C_BP_Vendor_Acct_UU = "C_BP_Vendor_Acct_UU"; + + /** Set C_BP_Vendor_Acct_UU */ + public void setC_BP_Vendor_Acct_UU (String C_BP_Vendor_Acct_UU); + + /** Get C_BP_Vendor_Acct_UU */ + public String getC_BP_Vendor_Acct_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_BP_Withholding.java b/org.adempiere.base/src/org/compiere/model/I_C_BP_Withholding.java index 932d076212..81673482f8 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_BP_Withholding.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_BP_Withholding.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_BP_Withholding - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_BP_Withholding { @@ -31,7 +31,7 @@ public interface I_C_BP_Withholding public static final String Table_Name = "C_BP_Withholding"; /** AD_Table_ID=299 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 299; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_C_BP_Withholding */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; + + /** Column name C_BP_Withholding_UU */ + public static final String COLUMNNAME_C_BP_Withholding_UU = "C_BP_Withholding_UU"; + + /** Set C_BP_Withholding_UU */ + public void setC_BP_Withholding_UU (String C_BP_Withholding_UU); + + /** Get C_BP_Withholding_UU */ + public String getC_BP_Withholding_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -106,7 +115,7 @@ public interface I_C_BP_Withholding */ public int getC_Withholding_ID(); - public I_C_Withholding getC_Withholding() throws RuntimeException; + public org.compiere.model.I_C_Withholding getC_Withholding() throws RuntimeException; /** Column name ExemptReason */ public static final String COLUMNNAME_ExemptReason = "ExemptReason"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_BPartner.java b/org.adempiere.base/src/org/compiere/model/I_C_BPartner.java index 5b381f00ce..0a50182131 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_BPartner.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_BPartner.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_BPartner - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_BPartner { @@ -88,19 +88,6 @@ public interface I_C_BPartner */ public String getAD_Language(); - /** Column name AD_Org_ID */ - public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; - - /** Set Organization. - * Organizational entity within client - */ - public void setAD_Org_ID (int AD_Org_ID); - - /** Get Organization. - * Organizational entity within client - */ - public int getAD_Org_ID(); - /** Column name AD_OrgBP_ID */ public static final String COLUMNNAME_AD_OrgBP_ID = "AD_OrgBP_ID"; @@ -114,6 +101,19 @@ public interface I_C_BPartner */ public String getAD_OrgBP_ID(); + /** Column name AD_Org_ID */ + public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; + + /** Set Organization. + * Organizational entity within client + */ + public void setAD_Org_ID (int AD_Org_ID); + + /** Get Organization. + * Organizational entity within client + */ + public int getAD_Org_ID(); + /** Column name BPartner_Parent_ID */ public static final String COLUMNNAME_BPartner_Parent_ID = "BPartner_Parent_ID"; @@ -127,21 +127,6 @@ public interface I_C_BPartner */ public int getBPartner_Parent_ID(); - /** Column name C_BP_Group_ID */ - public static final String COLUMNNAME_C_BP_Group_ID = "C_BP_Group_ID"; - - /** Set Business Partner Group. - * Business Partner Group - */ - public void setC_BP_Group_ID (int C_BP_Group_ID); - - /** Get Business Partner Group. - * Business Partner Group - */ - public int getC_BP_Group_ID(); - - public org.compiere.model.I_C_BP_Group getC_BP_Group() throws RuntimeException; - /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -164,6 +149,21 @@ public interface I_C_BPartner /** Get C_BPartner_UU */ public String getC_BPartner_UU(); + /** Column name C_BP_Group_ID */ + public static final String COLUMNNAME_C_BP_Group_ID = "C_BP_Group_ID"; + + /** Set Business Partner Group. + * Business Partner Group + */ + public void setC_BP_Group_ID (int C_BP_Group_ID); + + /** Get Business Partner Group. + * Business Partner Group + */ + public int getC_BP_Group_ID(); + + public org.compiere.model.I_C_BP_Group getC_BP_Group() throws RuntimeException; + /** Column name C_Dunning_ID */ public static final String COLUMNNAME_C_Dunning_ID = "C_Dunning_ID"; @@ -224,17 +224,6 @@ public interface I_C_BPartner public org.compiere.model.I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException; - /** Column name C_TaxGroup_ID */ - public static final String COLUMNNAME_C_TaxGroup_ID = "C_TaxGroup_ID"; - - /** Set Tax Group */ - public void setC_TaxGroup_ID (int C_TaxGroup_ID); - - /** Get Tax Group */ - public int getC_TaxGroup_ID(); - - public org.eevolution.model.I_C_TaxGroup getC_TaxGroup() throws RuntimeException; - /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -251,6 +240,17 @@ public interface I_C_BPartner */ public int getCreatedBy(); + /** Column name C_TaxGroup_ID */ + public static final String COLUMNNAME_C_TaxGroup_ID = "C_TaxGroup_ID"; + + /** Set Tax Group */ + public void setC_TaxGroup_ID (int C_TaxGroup_ID); + + /** Get Tax Group */ + public int getC_TaxGroup_ID(); + + public org.eevolution.model.I_C_TaxGroup getC_TaxGroup() throws RuntimeException; + /** Column name CustomerProfileID */ public static final String COLUMNNAME_CustomerProfileID = "CustomerProfileID"; @@ -847,6 +847,19 @@ public interface I_C_BPartner */ public BigDecimal getSO_CreditLimit(); + /** Column name SOCreditStatus */ + public static final String COLUMNNAME_SOCreditStatus = "SOCreditStatus"; + + /** Set Credit Status. + * Business Partner Credit Status + */ + public void setSOCreditStatus (String SOCreditStatus); + + /** Get Credit Status. + * Business Partner Credit Status + */ + public String getSOCreditStatus(); + /** Column name SO_CreditUsed */ public static final String COLUMNNAME_SO_CreditUsed = "SO_CreditUsed"; @@ -873,19 +886,6 @@ public interface I_C_BPartner */ public String getSO_Description(); - /** Column name SOCreditStatus */ - public static final String COLUMNNAME_SOCreditStatus = "SOCreditStatus"; - - /** Set Credit Status. - * Business Partner Credit Status - */ - public void setSOCreditStatus (String SOCreditStatus); - - /** Get Credit Status. - * Business Partner Credit Status - */ - public String getSOCreditStatus(); - /** Column name TaxID */ public static final String COLUMNNAME_TaxID = "TaxID"; @@ -932,12 +932,12 @@ public interface I_C_BPartner public static final String COLUMNNAME_URL = "URL"; /** Set URL. - * Full URL address - e.g. http://www.adempiere.org + * Full URL address - e.g. http://www.idempiere.org */ public void setURL (String URL); /** Get URL. - * Full URL address - e.g. http://www.adempiere.org + * Full URL address - e.g. http://www.idempiere.org */ public String getURL(); diff --git a/org.adempiere.base/src/org/compiere/model/I_C_BPartner_Location.java b/org.adempiere.base/src/org/compiere/model/I_C_BPartner_Location.java index 136c45f900..aff7549570 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_BPartner_Location.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_BPartner_Location.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_BPartner_Location - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_BPartner_Location { @@ -114,21 +114,6 @@ public interface I_C_BPartner_Location public I_C_Location getC_Location() throws RuntimeException; - /** Column name C_SalesRegion_ID */ - public static final String COLUMNNAME_C_SalesRegion_ID = "C_SalesRegion_ID"; - - /** Set Sales Region. - * Sales coverage region - */ - public void setC_SalesRegion_ID (int C_SalesRegion_ID); - - /** Get Sales Region. - * Sales coverage region - */ - public int getC_SalesRegion_ID(); - - public org.compiere.model.I_C_SalesRegion getC_SalesRegion() throws RuntimeException; - /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -145,6 +130,21 @@ public interface I_C_BPartner_Location */ public int getCreatedBy(); + /** Column name C_SalesRegion_ID */ + public static final String COLUMNNAME_C_SalesRegion_ID = "C_SalesRegion_ID"; + + /** Set Sales Region. + * Sales coverage region + */ + public void setC_SalesRegion_ID (int C_SalesRegion_ID); + + /** Get Sales Region. + * Sales coverage region + */ + public int getC_SalesRegion_ID(); + + public org.compiere.model.I_C_SalesRegion getC_SalesRegion() throws RuntimeException; + /** Column name CustomerAddressID */ public static final String COLUMNNAME_CustomerAddressID = "CustomerAddressID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_BPartner_Product.java b/org.adempiere.base/src/org/compiere/model/I_C_BPartner_Product.java index a3f82793a6..8d35481ed7 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_BPartner_Product.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_BPartner_Product.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_BPartner_Product - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_BPartner_Product { @@ -31,7 +31,7 @@ public interface I_C_BPartner_Product public static final String Table_Name = "C_BPartner_Product"; /** AD_Table_ID=632 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 632; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_C_BPartner_Product */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; + + /** Column name C_BPartner_Product_UU */ + public static final String COLUMNNAME_C_BPartner_Product_UU = "C_BPartner_Product_UU"; + + /** Set C_BPartner_Product_UU */ + public void setC_BPartner_Product_UU (String C_BPartner_Product_UU); + + /** Get C_BPartner_Product_UU */ + public String getC_BPartner_Product_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -158,7 +167,7 @@ public interface I_C_BPartner_Product */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name QualityRating */ public static final String COLUMNNAME_QualityRating = "QualityRating"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Bank.java b/org.adempiere.base/src/org/compiere/model/I_C_Bank.java index 968983afe4..3a40ad0fa2 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Bank.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Bank.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Bank - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Bank { @@ -75,6 +75,15 @@ public interface I_C_Bank */ public int getC_Bank_ID(); + /** Column name C_Bank_UU */ + public static final String COLUMNNAME_C_Bank_UU = "C_Bank_UU"; + + /** Set C_Bank_UU */ + public void setC_Bank_UU (String C_Bank_UU); + + /** Get C_Bank_UU */ + public String getC_Bank_UU(); + /** Column name C_Location_ID */ public static final String COLUMNNAME_C_Location_ID = "C_Location_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_BankAccount.java b/org.adempiere.base/src/org/compiere/model/I_C_BankAccount.java index 0cab72cac1..60d4923804 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_BankAccount.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_BankAccount.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_BankAccount - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_BankAccount { @@ -101,21 +101,6 @@ public interface I_C_BankAccount */ public String getBBAN(); - /** Column name C_Bank_ID */ - public static final String COLUMNNAME_C_Bank_ID = "C_Bank_ID"; - - /** Set Bank. - * Bank - */ - public void setC_Bank_ID (int C_Bank_ID); - - /** Get Bank. - * Bank - */ - public int getC_Bank_ID(); - - public org.compiere.model.I_C_Bank getC_Bank() throws RuntimeException; - /** Column name C_BankAccount_ID */ public static final String COLUMNNAME_C_BankAccount_ID = "C_BankAccount_ID"; @@ -138,6 +123,21 @@ public interface I_C_BankAccount /** Get C_BankAccount_UU */ public String getC_BankAccount_UU(); + /** Column name C_Bank_ID */ + public static final String COLUMNNAME_C_Bank_ID = "C_Bank_ID"; + + /** Set Bank. + * Bank + */ + public void setC_Bank_ID (int C_Bank_ID); + + /** Get Bank. + * Bank + */ + public int getC_Bank_ID(); + + public org.compiere.model.I_C_Bank getC_Bank() throws RuntimeException; + /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_BankAccountDoc.java b/org.adempiere.base/src/org/compiere/model/I_C_BankAccountDoc.java index 838e7c5802..be60557ca0 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_BankAccountDoc.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_BankAccountDoc.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_BankAccountDoc - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_BankAccountDoc { diff --git a/org.adempiere.base/src/org/compiere/model/I_C_BankAccount_Acct.java b/org.adempiere.base/src/org/compiere/model/I_C_BankAccount_Acct.java index eac085b167..4dff5a21b9 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_BankAccount_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_BankAccount_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_BankAccount_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_BankAccount_Acct { @@ -35,7 +35,7 @@ public interface I_C_BankAccount_Acct KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); - /** AccessLevel = - Client - Org + /** AccessLevel = 3 - Client - Org */ BigDecimal accessLevel = BigDecimal.valueOf(3); diff --git a/org.adempiere.base/src/org/compiere/model/I_C_BankAccount_Processor.java b/org.adempiere.base/src/org/compiere/model/I_C_BankAccount_Processor.java index 47ebc0fbf4..b19aed797f 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_BankAccount_Processor.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_BankAccount_Processor.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_BankAccount_Processor - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_BankAccount_Processor { diff --git a/org.adempiere.base/src/org/compiere/model/I_C_BankStatement.java b/org.adempiere.base/src/org/compiere/model/I_C_BankStatement.java index 95e023f788..8232c304e8 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_BankStatement.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_BankStatement.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_BankStatement - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_BankStatement { @@ -31,7 +31,7 @@ public interface I_C_BankStatement public static final String Table_Name = "C_BankStatement"; /** AD_Table_ID=392 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 392; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_C_BankStatement */ public int getC_BankAccount_ID(); - public I_C_BankAccount getC_BankAccount() throws RuntimeException; + public org.compiere.model.I_C_BankAccount getC_BankAccount() throws RuntimeException; /** Column name C_BankStatement_ID */ public static final String COLUMNNAME_C_BankStatement_ID = "C_BankStatement_ID"; @@ -103,6 +103,15 @@ public interface I_C_BankStatement */ public int getC_BankStatement_ID(); + /** Column name C_BankStatement_UU */ + public static final String COLUMNNAME_C_BankStatement_UU = "C_BankStatement_UU"; + + /** Set C_BankStatement_UU */ + public void setC_BankStatement_UU (String C_BankStatement_UU); + + /** Get C_BankStatement_UU */ + public String getC_BankStatement_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_BankStatementLine.java b/org.adempiere.base/src/org/compiere/model/I_C_BankStatementLine.java index b1d02634e9..5e8ccdf016 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_BankStatementLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_BankStatementLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_BankStatementLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_BankStatementLine { @@ -31,7 +31,7 @@ public interface I_C_BankStatementLine public static final String Table_Name = "C_BankStatementLine"; /** AD_Table_ID=393 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 393; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_BankStatementLine */ public int getC_BankStatement_ID(); - public I_C_BankStatement getC_BankStatement() throws RuntimeException; + public org.compiere.model.I_C_BankStatement getC_BankStatement() throws RuntimeException; /** Column name C_BankStatementLine_ID */ public static final String COLUMNNAME_C_BankStatementLine_ID = "C_BankStatementLine_ID"; @@ -90,6 +90,15 @@ public interface I_C_BankStatementLine */ public int getC_BankStatementLine_ID(); + /** Column name C_BankStatementLine_UU */ + public static final String COLUMNNAME_C_BankStatementLine_UU = "C_BankStatementLine_UU"; + + /** Set C_BankStatementLine_UU */ + public void setC_BankStatementLine_UU (String C_BankStatementLine_UU); + + /** Get C_BankStatementLine_UU */ + public String getC_BankStatementLine_UU(); + /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -103,7 +112,7 @@ public interface I_C_BankStatementLine */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Charge_ID */ public static final String COLUMNNAME_C_Charge_ID = "C_Charge_ID"; @@ -118,7 +127,7 @@ public interface I_C_BankStatementLine */ public int getC_Charge_ID(); - public I_C_Charge getC_Charge() throws RuntimeException; + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -133,7 +142,7 @@ public interface I_C_BankStatementLine */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name ChargeAmt */ public static final String COLUMNNAME_ChargeAmt = "ChargeAmt"; @@ -161,7 +170,7 @@ public interface I_C_BankStatementLine */ public int getC_Invoice_ID(); - public I_C_Invoice getC_Invoice() throws RuntimeException; + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException; /** Column name C_Payment_ID */ public static final String COLUMNNAME_C_Payment_ID = "C_Payment_ID"; @@ -176,7 +185,7 @@ public interface I_C_BankStatementLine */ public int getC_Payment_ID(); - public I_C_Payment getC_Payment() throws RuntimeException; + public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_BankStatementLoader.java b/org.adempiere.base/src/org/compiere/model/I_C_BankStatementLoader.java index edf405c7a9..9c122aa6d8 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_BankStatementLoader.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_BankStatementLoader.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_BankStatementLoader - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_BankStatementLoader { @@ -31,7 +31,7 @@ public interface I_C_BankStatementLoader public static final String Table_Name = "C_BankStatementLoader"; /** AD_Table_ID=640 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 640; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -101,7 +101,7 @@ public interface I_C_BankStatementLoader */ public int getC_BankAccount_ID(); - public I_C_BankAccount getC_BankAccount() throws RuntimeException; + public org.compiere.model.I_C_BankAccount getC_BankAccount() throws RuntimeException; /** Column name C_BankStatementLoader_ID */ public static final String COLUMNNAME_C_BankStatementLoader_ID = "C_BankStatementLoader_ID"; @@ -116,6 +116,15 @@ public interface I_C_BankStatementLoader */ public int getC_BankStatementLoader_ID(); + /** Column name C_BankStatementLoader_UU */ + public static final String COLUMNNAME_C_BankStatementLoader_UU = "C_BankStatementLoader_UU"; + + /** Set C_BankStatementLoader_UU */ + public void setC_BankStatementLoader_UU (String C_BankStatementLoader_UU); + + /** Get C_BankStatementLoader_UU */ + public String getC_BankStatementLoader_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_BankStatementMatcher.java b/org.adempiere.base/src/org/compiere/model/I_C_BankStatementMatcher.java index d76322426e..d38db4b88d 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_BankStatementMatcher.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_BankStatementMatcher.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_BankStatementMatcher - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_BankStatementMatcher { @@ -31,7 +31,7 @@ public interface I_C_BankStatementMatcher public static final String Table_Name = "C_BankStatementMatcher"; /** AD_Table_ID=658 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 658; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_C_BankStatementMatcher */ public int getC_BankStatementMatcher_ID(); + /** Column name C_BankStatementMatcher_UU */ + public static final String COLUMNNAME_C_BankStatementMatcher_UU = "C_BankStatementMatcher_UU"; + + /** Set C_BankStatementMatcher_UU */ + public void setC_BankStatementMatcher_UU (String C_BankStatementMatcher_UU); + + /** Get C_BankStatementMatcher_UU */ + public String getC_BankStatementMatcher_UU(); + /** Column name Classname */ public static final String COLUMNNAME_Classname = "Classname"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Calendar.java b/org.adempiere.base/src/org/compiere/model/I_C_Calendar.java index d7ad082b2b..304865d3fd 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Calendar.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Calendar.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Calendar - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Calendar { @@ -31,7 +31,7 @@ public interface I_C_Calendar public static final String Table_Name = "C_Calendar"; /** AD_Table_ID=139 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 139; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_C_Calendar */ public int getC_Calendar_ID(); + /** Column name C_Calendar_UU */ + public static final String COLUMNNAME_C_Calendar_UU = "C_Calendar_UU"; + + /** Set C_Calendar_UU */ + public void setC_Calendar_UU (String C_Calendar_UU); + + /** Get C_Calendar_UU */ + public String getC_Calendar_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Campaign.java b/org.adempiere.base/src/org/compiere/model/I_C_Campaign.java index e8a13361c2..749a755d8f 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Campaign.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Campaign.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Campaign - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Campaign { @@ -31,7 +31,7 @@ public interface I_C_Campaign public static final String Table_Name = "C_Campaign"; /** AD_Table_ID=274 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 274; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_C_Campaign */ public int getC_Campaign_ID(); + /** Column name C_Campaign_UU */ + public static final String COLUMNNAME_C_Campaign_UU = "C_Campaign_UU"; + + /** Set C_Campaign_UU */ + public void setC_Campaign_UU (String C_Campaign_UU); + + /** Get C_Campaign_UU */ + public String getC_Campaign_UU(); + /** Column name C_Channel_ID */ public static final String COLUMNNAME_C_Channel_ID = "C_Channel_ID"; @@ -88,7 +97,7 @@ public interface I_C_Campaign */ public int getC_Channel_ID(); - public I_C_Channel getC_Channel() throws RuntimeException; + public org.compiere.model.I_C_Channel getC_Channel() throws RuntimeException; /** Column name Costs */ public static final String COLUMNNAME_Costs = "Costs"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Cash.java b/org.adempiere.base/src/org/compiere/model/I_C_Cash.java index 21380b3060..b9ded09a2d 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Cash.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Cash.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Cash - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Cash { @@ -31,7 +31,7 @@ public interface I_C_Cash public static final String Table_Name = "C_Cash"; /** AD_Table_ID=407 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 407; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -101,7 +101,7 @@ public interface I_C_Cash */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -116,7 +116,7 @@ public interface I_C_Cash */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_CashBook_ID */ public static final String COLUMNNAME_C_CashBook_ID = "C_CashBook_ID"; @@ -131,7 +131,7 @@ public interface I_C_Cash */ public int getC_CashBook_ID(); - public I_C_CashBook getC_CashBook() throws RuntimeException; + public org.compiere.model.I_C_CashBook getC_CashBook() throws RuntimeException; /** Column name C_Cash_ID */ public static final String COLUMNNAME_C_Cash_ID = "C_Cash_ID"; @@ -146,6 +146,15 @@ public interface I_C_Cash */ public int getC_Cash_ID(); + /** Column name C_Cash_UU */ + public static final String COLUMNNAME_C_Cash_UU = "C_Cash_UU"; + + /** Set C_Cash_UU */ + public void setC_Cash_UU (String C_Cash_UU); + + /** Get C_Cash_UU */ + public String getC_Cash_UU(); + /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -159,7 +168,7 @@ public interface I_C_Cash */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -384,7 +393,7 @@ public interface I_C_Cash */ public int getUser1_ID(); - public I_C_ElementValue getUser1() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException; /** Column name User2_ID */ public static final String COLUMNNAME_User2_ID = "User2_ID"; @@ -399,5 +408,5 @@ public interface I_C_Cash */ public int getUser2_ID(); - public I_C_ElementValue getUser2() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException; } diff --git a/org.adempiere.base/src/org/compiere/model/I_C_CashBook.java b/org.adempiere.base/src/org/compiere/model/I_C_CashBook.java index 2ce24b5327..bbf752c1b7 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_CashBook.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_CashBook.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_CashBook - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_CashBook { @@ -31,7 +31,7 @@ public interface I_C_CashBook public static final String Table_Name = "C_CashBook"; /** AD_Table_ID=408 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 408; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_C_CashBook */ public int getC_CashBook_ID(); + /** Column name C_CashBook_UU */ + public static final String COLUMNNAME_C_CashBook_UU = "C_CashBook_UU"; + + /** Set C_CashBook_UU */ + public void setC_CashBook_UU (String C_CashBook_UU); + + /** Get C_CashBook_UU */ + public String getC_CashBook_UU(); + /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -88,7 +97,7 @@ public interface I_C_CashBook */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_CashBook_Acct.java b/org.adempiere.base/src/org/compiere/model/I_C_CashBook_Acct.java index 49327449e6..9190a80c3b 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_CashBook_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_CashBook_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_CashBook_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_CashBook_Acct { @@ -31,7 +31,7 @@ public interface I_C_CashBook_Acct public static final String Table_Name = "C_CashBook_Acct"; /** AD_Table_ID=409 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 409; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_CashBook_Acct */ public int getC_AcctSchema_ID(); - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException; /** Column name CB_Asset_Acct */ public static final String COLUMNNAME_CB_Asset_Acct = "CB_Asset_Acct"; @@ -152,6 +152,15 @@ public interface I_C_CashBook_Acct public I_C_ValidCombination getCB_Receipt_A() throws RuntimeException; + /** Column name C_CashBook_Acct_UU */ + public static final String COLUMNNAME_C_CashBook_Acct_UU = "C_CashBook_Acct_UU"; + + /** Set C_CashBook_Acct_UU */ + public void setC_CashBook_Acct_UU (String C_CashBook_Acct_UU); + + /** Get C_CashBook_Acct_UU */ + public String getC_CashBook_Acct_UU(); + /** Column name C_CashBook_ID */ public static final String COLUMNNAME_C_CashBook_ID = "C_CashBook_ID"; @@ -165,7 +174,7 @@ public interface I_C_CashBook_Acct */ public int getC_CashBook_ID(); - public I_C_CashBook getC_CashBook() throws RuntimeException; + public org.compiere.model.I_C_CashBook getC_CashBook() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_CashLine.java b/org.adempiere.base/src/org/compiere/model/I_C_CashLine.java index a0854f132d..2b06d130f7 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_CashLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_CashLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_CashLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_CashLine { @@ -31,7 +31,7 @@ public interface I_C_CashLine public static final String Table_Name = "C_CashLine"; /** AD_Table_ID=410 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 410; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -101,7 +101,7 @@ public interface I_C_CashLine */ public int getC_BankAccount_ID(); - public I_C_BankAccount getC_BankAccount() throws RuntimeException; + public org.compiere.model.I_C_BankAccount getC_BankAccount() throws RuntimeException; /** Column name C_Cash_ID */ public static final String COLUMNNAME_C_Cash_ID = "C_Cash_ID"; @@ -116,7 +116,7 @@ public interface I_C_CashLine */ public int getC_Cash_ID(); - public I_C_Cash getC_Cash() throws RuntimeException; + public org.compiere.model.I_C_Cash getC_Cash() throws RuntimeException; /** Column name C_CashLine_ID */ public static final String COLUMNNAME_C_CashLine_ID = "C_CashLine_ID"; @@ -131,6 +131,15 @@ public interface I_C_CashLine */ public int getC_CashLine_ID(); + /** Column name C_CashLine_UU */ + public static final String COLUMNNAME_C_CashLine_UU = "C_CashLine_UU"; + + /** Set C_CashLine_UU */ + public void setC_CashLine_UU (String C_CashLine_UU); + + /** Get C_CashLine_UU */ + public String getC_CashLine_UU(); + /** Column name C_Charge_ID */ public static final String COLUMNNAME_C_Charge_ID = "C_Charge_ID"; @@ -144,7 +153,7 @@ public interface I_C_CashLine */ public int getC_Charge_ID(); - public I_C_Charge getC_Charge() throws RuntimeException; + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -159,7 +168,7 @@ public interface I_C_CashLine */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name C_Invoice_ID */ public static final String COLUMNNAME_C_Invoice_ID = "C_Invoice_ID"; @@ -174,7 +183,7 @@ public interface I_C_CashLine */ public int getC_Invoice_ID(); - public I_C_Invoice getC_Invoice() throws RuntimeException; + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException; /** Column name C_Payment_ID */ public static final String COLUMNNAME_C_Payment_ID = "C_Payment_ID"; @@ -189,7 +198,7 @@ public interface I_C_CashLine */ public int getC_Payment_ID(); - public I_C_Payment getC_Payment() throws RuntimeException; + public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_CashPlan.java b/org.adempiere.base/src/org/compiere/model/I_C_CashPlan.java index f4bbe465b4..dd4436e490 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_CashPlan.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_CashPlan.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_CashPlan - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_CashPlan { @@ -138,6 +138,15 @@ public interface I_C_CashPlan /** Get Cash Plan */ public int getC_CashPlan_ID(); + /** Column name C_CashPlan_UU */ + public static final String COLUMNNAME_C_CashPlan_UU = "C_CashPlan_UU"; + + /** Set C_CashPlan_UU */ + public void setC_CashPlan_UU (String C_CashPlan_UU); + + /** Get C_CashPlan_UU */ + public String getC_CashPlan_UU(); + /** Column name CopyFrom */ public static final String COLUMNNAME_CopyFrom = "CopyFrom"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_CashPlanLine.java b/org.adempiere.base/src/org/compiere/model/I_C_CashPlanLine.java index 2e46707d22..dfaf829395 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_CashPlanLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_CashPlanLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_CashPlanLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_CashPlanLine { @@ -140,6 +140,15 @@ public interface I_C_CashPlanLine /** Get Cash Plan Line */ public int getC_CashPlanLine_ID(); + /** Column name C_CashPlanLine_UU */ + public static final String COLUMNNAME_C_CashPlanLine_UU = "C_CashPlanLine_UU"; + + /** Set C_CashPlanLine_UU */ + public void setC_CashPlanLine_UU (String C_CashPlanLine_UU); + + /** Get C_CashPlanLine_UU */ + public String getC_CashPlanLine_UU(); + /** Column name C_Charge_ID */ public static final String COLUMNNAME_C_Charge_ID = "C_Charge_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Channel.java b/org.adempiere.base/src/org/compiere/model/I_C_Channel.java index d4b7d18aed..87011a7334 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Channel.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Channel.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Channel - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Channel { @@ -31,7 +31,7 @@ public interface I_C_Channel public static final String Table_Name = "C_Channel"; /** AD_Table_ID=275 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 275; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_Channel */ public int getAD_PrintColor_ID(); - public I_AD_PrintColor getAD_PrintColor() throws RuntimeException; + public org.compiere.model.I_AD_PrintColor getAD_PrintColor() throws RuntimeException; /** Column name C_Channel_ID */ public static final String COLUMNNAME_C_Channel_ID = "C_Channel_ID"; @@ -90,6 +90,15 @@ public interface I_C_Channel */ public int getC_Channel_ID(); + /** Column name C_Channel_UU */ + public static final String COLUMNNAME_C_Channel_UU = "C_Channel_UU"; + + /** Set C_Channel_UU */ + public void setC_Channel_UU (String C_Channel_UU); + + /** Get C_Channel_UU */ + public String getC_Channel_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Charge.java b/org.adempiere.base/src/org/compiere/model/I_C_Charge.java index 13b13abbbc..c79ad78eb9 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Charge.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Charge.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Charge - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Charge { @@ -31,7 +31,7 @@ public interface I_C_Charge public static final String Table_Name = "C_Charge"; /** AD_Table_ID=313 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 313; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_Charge */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Charge_ID */ public static final String COLUMNNAME_C_Charge_ID = "C_Charge_ID"; @@ -99,7 +99,16 @@ public interface I_C_Charge /** Get Charge Type */ public int getC_ChargeType_ID(); - public I_C_ChargeType getC_ChargeType() throws RuntimeException; + public org.compiere.model.I_C_ChargeType getC_ChargeType() throws RuntimeException; + + /** Column name C_Charge_UU */ + public static final String COLUMNNAME_C_Charge_UU = "C_Charge_UU"; + + /** Set C_Charge_UU */ + public void setC_Charge_UU (String C_Charge_UU); + + /** Get C_Charge_UU */ + public String getC_Charge_UU(); /** Column name ChargeAmt */ public static final String COLUMNNAME_ChargeAmt = "ChargeAmt"; @@ -143,7 +152,7 @@ public interface I_C_Charge */ public int getC_TaxCategory_ID(); - public I_C_TaxCategory getC_TaxCategory() throws RuntimeException; + public org.compiere.model.I_C_TaxCategory getC_TaxCategory() throws RuntimeException; /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_ChargeType.java b/org.adempiere.base/src/org/compiere/model/I_C_ChargeType.java index 17d3be2e56..31e5906197 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_ChargeType.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_ChargeType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_ChargeType - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_ChargeType { @@ -31,7 +31,7 @@ public interface I_C_ChargeType public static final String Table_Name = "C_ChargeType"; /** AD_Table_ID=53145 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53145; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -71,6 +71,15 @@ public interface I_C_ChargeType /** Get Charge Type */ public int getC_ChargeType_ID(); + /** Column name C_ChargeType_UU */ + public static final String COLUMNNAME_C_ChargeType_UU = "C_ChargeType_UU"; + + /** Set C_ChargeType_UU */ + public void setC_ChargeType_UU (String C_ChargeType_UU); + + /** Get C_ChargeType_UU */ + public String getC_ChargeType_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_ChargeType_DocType.java b/org.adempiere.base/src/org/compiere/model/I_C_ChargeType_DocType.java index 753eab3d7e..76496df840 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_ChargeType_DocType.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_ChargeType_DocType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_ChargeType_DocType - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_ChargeType_DocType { @@ -31,7 +31,7 @@ public interface I_C_ChargeType_DocType public static final String Table_Name = "C_ChargeType_DocType"; /** AD_Table_ID=53146 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53146; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,6 +62,15 @@ public interface I_C_ChargeType_DocType */ public int getAD_Org_ID(); + /** Column name C_ChargeType_DocType_UU */ + public static final String COLUMNNAME_C_ChargeType_DocType_UU = "C_ChargeType_DocType_UU"; + + /** Set C_ChargeType_DocType_UU */ + public void setC_ChargeType_DocType_UU (String C_ChargeType_DocType_UU); + + /** Get C_ChargeType_DocType_UU */ + public String getC_ChargeType_DocType_UU(); + /** Column name C_ChargeType_ID */ public static final String COLUMNNAME_C_ChargeType_ID = "C_ChargeType_ID"; @@ -71,7 +80,7 @@ public interface I_C_ChargeType_DocType /** Get Charge Type */ public int getC_ChargeType_ID(); - public I_C_ChargeType getC_ChargeType() throws RuntimeException; + public org.compiere.model.I_C_ChargeType getC_ChargeType() throws RuntimeException; /** Column name C_DocType_ID */ public static final String COLUMNNAME_C_DocType_ID = "C_DocType_ID"; @@ -86,7 +95,7 @@ public interface I_C_ChargeType_DocType */ public int getC_DocType_ID(); - public I_C_DocType getC_DocType() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Charge_Acct.java b/org.adempiere.base/src/org/compiere/model/I_C_Charge_Acct.java index 1c2cce411b..e0e7aa0590 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Charge_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Charge_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Charge_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Charge_Acct { diff --git a/org.adempiere.base/src/org/compiere/model/I_C_City.java b/org.adempiere.base/src/org/compiere/model/I_C_City.java index 288b17e960..7e8572ebf4 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_City.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_City.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_City - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_City { @@ -31,7 +31,7 @@ public interface I_C_City public static final String Table_Name = "C_City"; /** AD_Table_ID=186 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 186; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,6 +88,15 @@ public interface I_C_City */ public int getC_City_ID(); + /** Column name C_City_UU */ + public static final String COLUMNNAME_C_City_UU = "C_City_UU"; + + /** Set C_City_UU */ + public void setC_City_UU (String C_City_UU); + + /** Get C_City_UU */ + public String getC_City_UU(); + /** Column name C_Country_ID */ public static final String COLUMNNAME_C_Country_ID = "C_Country_ID"; @@ -101,7 +110,7 @@ public interface I_C_City */ public int getC_Country_ID(); - public I_C_Country getC_Country() throws RuntimeException; + public org.compiere.model.I_C_Country getC_Country() throws RuntimeException; /** Column name Coordinates */ public static final String COLUMNNAME_Coordinates = "Coordinates"; @@ -145,7 +154,7 @@ public interface I_C_City */ public int getC_Region_ID(); - public I_C_Region getC_Region() throws RuntimeException; + public org.compiere.model.I_C_Region getC_Region() throws RuntimeException; /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Commission.java b/org.adempiere.base/src/org/compiere/model/I_C_Commission.java index 4c40eae3d1..218ecf9750 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Commission.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Commission.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Commission - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Commission { @@ -31,7 +31,7 @@ public interface I_C_Commission public static final String Table_Name = "C_Commission"; /** AD_Table_ID=429 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 429; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_Commission */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Charge_ID */ public static final String COLUMNNAME_C_Charge_ID = "C_Charge_ID"; @@ -90,7 +90,7 @@ public interface I_C_Commission */ public int getC_Charge_ID(); - public I_C_Charge getC_Charge() throws RuntimeException; + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException; /** Column name C_Commission_ID */ public static final String COLUMNNAME_C_Commission_ID = "C_Commission_ID"; @@ -105,6 +105,15 @@ public interface I_C_Commission */ public int getC_Commission_ID(); + /** Column name C_Commission_UU */ + public static final String COLUMNNAME_C_Commission_UU = "C_Commission_UU"; + + /** Set C_Commission_UU */ + public void setC_Commission_UU (String C_Commission_UU); + + /** Get C_Commission_UU */ + public String getC_Commission_UU(); + /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -118,7 +127,7 @@ public interface I_C_Commission */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_CommissionAmt.java b/org.adempiere.base/src/org/compiere/model/I_C_CommissionAmt.java index 11b0f22b44..91162d55f8 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_CommissionAmt.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_CommissionAmt.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_CommissionAmt - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_CommissionAmt { @@ -31,7 +31,7 @@ public interface I_C_CommissionAmt public static final String Table_Name = "C_CommissionAmt"; /** AD_Table_ID=430 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 430; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,6 +88,15 @@ public interface I_C_CommissionAmt */ public int getC_CommissionAmt_ID(); + /** Column name C_CommissionAmt_UU */ + public static final String COLUMNNAME_C_CommissionAmt_UU = "C_CommissionAmt_UU"; + + /** Set C_CommissionAmt_UU */ + public void setC_CommissionAmt_UU (String C_CommissionAmt_UU); + + /** Get C_CommissionAmt_UU */ + public String getC_CommissionAmt_UU(); + /** Column name C_CommissionLine_ID */ public static final String COLUMNNAME_C_CommissionLine_ID = "C_CommissionLine_ID"; @@ -101,7 +110,7 @@ public interface I_C_CommissionAmt */ public int getC_CommissionLine_ID(); - public I_C_CommissionLine getC_CommissionLine() throws RuntimeException; + public org.compiere.model.I_C_CommissionLine getC_CommissionLine() throws RuntimeException; /** Column name C_CommissionRun_ID */ public static final String COLUMNNAME_C_CommissionRun_ID = "C_CommissionRun_ID"; @@ -116,7 +125,7 @@ public interface I_C_CommissionAmt */ public int getC_CommissionRun_ID(); - public I_C_CommissionRun getC_CommissionRun() throws RuntimeException; + public org.compiere.model.I_C_CommissionRun getC_CommissionRun() throws RuntimeException; /** Column name CommissionAmt */ public static final String COLUMNNAME_CommissionAmt = "CommissionAmt"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_CommissionDetail.java b/org.adempiere.base/src/org/compiere/model/I_C_CommissionDetail.java index af90b3f9b9..4ea3599074 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_CommissionDetail.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_CommissionDetail.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_CommissionDetail - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_CommissionDetail { @@ -31,7 +31,7 @@ public interface I_C_CommissionDetail public static final String Table_Name = "C_CommissionDetail"; /** AD_Table_ID=437 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 437; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -101,7 +101,7 @@ public interface I_C_CommissionDetail */ public int getC_CommissionAmt_ID(); - public I_C_CommissionAmt getC_CommissionAmt() throws RuntimeException; + public org.compiere.model.I_C_CommissionAmt getC_CommissionAmt() throws RuntimeException; /** Column name C_CommissionDetail_ID */ public static final String COLUMNNAME_C_CommissionDetail_ID = "C_CommissionDetail_ID"; @@ -116,6 +116,15 @@ public interface I_C_CommissionDetail */ public int getC_CommissionDetail_ID(); + /** Column name C_CommissionDetail_UU */ + public static final String COLUMNNAME_C_CommissionDetail_UU = "C_CommissionDetail_UU"; + + /** Set C_CommissionDetail_UU */ + public void setC_CommissionDetail_UU (String C_CommissionDetail_UU); + + /** Get C_CommissionDetail_UU */ + public String getC_CommissionDetail_UU(); + /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -129,7 +138,7 @@ public interface I_C_CommissionDetail */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name C_InvoiceLine_ID */ public static final String COLUMNNAME_C_InvoiceLine_ID = "C_InvoiceLine_ID"; @@ -144,7 +153,7 @@ public interface I_C_CommissionDetail */ public int getC_InvoiceLine_ID(); - public I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException; + public org.compiere.model.I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException; /** Column name ConvertedAmt */ public static final String COLUMNNAME_ConvertedAmt = "ConvertedAmt"; @@ -172,7 +181,7 @@ public interface I_C_CommissionDetail */ public int getC_OrderLine_ID(); - public I_C_OrderLine getC_OrderLine() throws RuntimeException; + public org.compiere.model.I_C_OrderLine getC_OrderLine() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_CommissionLine.java b/org.adempiere.base/src/org/compiere/model/I_C_CommissionLine.java index 4d2c31eada..44b74a75fc 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_CommissionLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_CommissionLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_CommissionLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_CommissionLine { diff --git a/org.adempiere.base/src/org/compiere/model/I_C_CommissionRun.java b/org.adempiere.base/src/org/compiere/model/I_C_CommissionRun.java index b9531780b9..985f117e2c 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_CommissionRun.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_CommissionRun.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_CommissionRun - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_CommissionRun { @@ -31,7 +31,7 @@ public interface I_C_CommissionRun public static final String Table_Name = "C_CommissionRun"; /** AD_Table_ID=436 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 436; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_CommissionRun */ public int getC_Commission_ID(); - public I_C_Commission getC_Commission() throws RuntimeException; + public org.compiere.model.I_C_Commission getC_Commission() throws RuntimeException; /** Column name C_CommissionRun_ID */ public static final String COLUMNNAME_C_CommissionRun_ID = "C_CommissionRun_ID"; @@ -90,6 +90,15 @@ public interface I_C_CommissionRun */ public int getC_CommissionRun_ID(); + /** Column name C_CommissionRun_UU */ + public static final String COLUMNNAME_C_CommissionRun_UU = "C_CommissionRun_UU"; + + /** Set C_CommissionRun_UU */ + public void setC_CommissionRun_UU (String C_CommissionRun_UU); + + /** Get C_CommissionRun_UU */ + public String getC_CommissionRun_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_ConversionType.java b/org.adempiere.base/src/org/compiere/model/I_C_ConversionType.java index 3afe667572..a6c89c3ea8 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_ConversionType.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_ConversionType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_ConversionType - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_ConversionType { @@ -31,7 +31,7 @@ public interface I_C_ConversionType public static final String Table_Name = "C_ConversionType"; /** AD_Table_ID=637 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 637; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_C_ConversionType */ public int getC_ConversionType_ID(); + /** Column name C_ConversionType_UU */ + public static final String COLUMNNAME_C_ConversionType_UU = "C_ConversionType_UU"; + + /** Set C_ConversionType_UU */ + public void setC_ConversionType_UU (String C_ConversionType_UU); + + /** Get C_ConversionType_UU */ + public String getC_ConversionType_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Conversion_Rate.java b/org.adempiere.base/src/org/compiere/model/I_C_Conversion_Rate.java index 1d2d15e904..1b49e617f8 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Conversion_Rate.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Conversion_Rate.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Conversion_Rate - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Conversion_Rate { @@ -31,7 +31,7 @@ public interface I_C_Conversion_Rate public static final String Table_Name = "C_Conversion_Rate"; /** AD_Table_ID=140 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 140; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_C_Conversion_Rate */ public int getC_Conversion_Rate_ID(); + /** Column name C_Conversion_Rate_UU */ + public static final String COLUMNNAME_C_Conversion_Rate_UU = "C_Conversion_Rate_UU"; + + /** Set C_Conversion_Rate_UU */ + public void setC_Conversion_Rate_UU (String C_Conversion_Rate_UU); + + /** Get C_Conversion_Rate_UU */ + public String getC_Conversion_Rate_UU(); + /** Column name C_ConversionType_ID */ public static final String COLUMNNAME_C_ConversionType_ID = "C_ConversionType_ID"; @@ -88,7 +97,7 @@ public interface I_C_Conversion_Rate */ public int getC_ConversionType_ID(); - public I_C_ConversionType getC_ConversionType() throws RuntimeException; + public org.compiere.model.I_C_ConversionType getC_ConversionType() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -103,7 +112,7 @@ public interface I_C_Conversion_Rate */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name C_Currency_ID_To */ public static final String COLUMNNAME_C_Currency_ID_To = "C_Currency_ID_To"; @@ -118,7 +127,7 @@ public interface I_C_Conversion_Rate */ public int getC_Currency_ID_To(); - public I_C_Currency getC_Currency_To() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency_To() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Country.java b/org.adempiere.base/src/org/compiere/model/I_C_Country.java index e156b03eed..2c5035628a 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Country.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Country.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Country - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Country { @@ -31,7 +31,7 @@ public interface I_C_Country public static final String Table_Name = "C_Country"; /** AD_Table_ID=170 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 170; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -110,6 +110,15 @@ public interface I_C_Country */ public int getC_Country_ID(); + /** Column name C_Country_UU */ + public static final String COLUMNNAME_C_Country_UU = "C_Country_UU"; + + /** Set C_Country_UU */ + public void setC_Country_UU (String C_Country_UU); + + /** Get C_Country_UU */ + public String getC_Country_UU(); + /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -123,7 +132,7 @@ public interface I_C_Country */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name CountryCode */ public static final String COLUMNNAME_CountryCode = "CountryCode"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Currency.java b/org.adempiere.base/src/org/compiere/model/I_C_Currency.java index 81472c3712..9ceca4f031 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Currency.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Currency.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Currency - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Currency { @@ -31,7 +31,7 @@ public interface I_C_Currency public static final String Table_Name = "C_Currency"; /** AD_Table_ID=141 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 141; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_C_Currency */ public int getC_Currency_ID(); + /** Column name C_Currency_UU */ + public static final String COLUMNNAME_C_Currency_UU = "C_Currency_UU"; + + /** Set C_Currency_UU */ + public void setC_Currency_UU (String C_Currency_UU); + + /** Get C_Currency_UU */ + public String getC_Currency_UU(); + /** Column name CostingPrecision */ public static final String COLUMNNAME_CostingPrecision = "CostingPrecision"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Currency_Acct.java b/org.adempiere.base/src/org/compiere/model/I_C_Currency_Acct.java index b0b18865a4..12b32d7891 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Currency_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Currency_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Currency_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Currency_Acct { @@ -35,7 +35,7 @@ public interface I_C_Currency_Acct KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); - /** AccessLevel = - Client - Org + /** AccessLevel = 3 - Client - Org */ BigDecimal accessLevel = BigDecimal.valueOf(3); diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Cycle.java b/org.adempiere.base/src/org/compiere/model/I_C_Cycle.java index 0862e4ec74..c14e38dca8 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Cycle.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Cycle.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Cycle - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Cycle { @@ -31,7 +31,7 @@ public interface I_C_Cycle public static final String Table_Name = "C_Cycle"; /** AD_Table_ID=432 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 432; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_Cycle */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name C_Cycle_ID */ public static final String COLUMNNAME_C_Cycle_ID = "C_Cycle_ID"; @@ -90,6 +90,15 @@ public interface I_C_Cycle */ public int getC_Cycle_ID(); + /** Column name C_Cycle_UU */ + public static final String COLUMNNAME_C_Cycle_UU = "C_Cycle_UU"; + + /** Set C_Cycle_UU */ + public void setC_Cycle_UU (String C_Cycle_UU); + + /** Get C_Cycle_UU */ + public String getC_Cycle_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_CyclePhase.java b/org.adempiere.base/src/org/compiere/model/I_C_CyclePhase.java index e68ad4b9ac..fdb6f51e9a 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_CyclePhase.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_CyclePhase.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_CyclePhase - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_CyclePhase { @@ -31,7 +31,7 @@ public interface I_C_CyclePhase public static final String Table_Name = "C_CyclePhase"; /** AD_Table_ID=433 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 433; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,6 +62,15 @@ public interface I_C_CyclePhase */ public int getAD_Org_ID(); + /** Column name C_CyclePhase_UU */ + public static final String COLUMNNAME_C_CyclePhase_UU = "C_CyclePhase_UU"; + + /** Set C_CyclePhase_UU */ + public void setC_CyclePhase_UU (String C_CyclePhase_UU); + + /** Get C_CyclePhase_UU */ + public String getC_CyclePhase_UU(); + /** Column name C_CycleStep_ID */ public static final String COLUMNNAME_C_CycleStep_ID = "C_CycleStep_ID"; @@ -75,7 +84,7 @@ public interface I_C_CyclePhase */ public int getC_CycleStep_ID(); - public I_C_CycleStep getC_CycleStep() throws RuntimeException; + public org.compiere.model.I_C_CycleStep getC_CycleStep() throws RuntimeException; /** Column name C_Phase_ID */ public static final String COLUMNNAME_C_Phase_ID = "C_Phase_ID"; @@ -90,7 +99,7 @@ public interface I_C_CyclePhase */ public int getC_Phase_ID(); - public I_C_Phase getC_Phase() throws RuntimeException; + public org.compiere.model.I_C_Phase getC_Phase() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_CycleStep.java b/org.adempiere.base/src/org/compiere/model/I_C_CycleStep.java index 76215fbeda..e1999e4daa 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_CycleStep.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_CycleStep.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_CycleStep - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_CycleStep { @@ -31,7 +31,7 @@ public interface I_C_CycleStep public static final String Table_Name = "C_CycleStep"; /** AD_Table_ID=590 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 590; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_CycleStep */ public int getC_Cycle_ID(); - public I_C_Cycle getC_Cycle() throws RuntimeException; + public org.compiere.model.I_C_Cycle getC_Cycle() throws RuntimeException; /** Column name C_CycleStep_ID */ public static final String COLUMNNAME_C_CycleStep_ID = "C_CycleStep_ID"; @@ -90,6 +90,15 @@ public interface I_C_CycleStep */ public int getC_CycleStep_ID(); + /** Column name C_CycleStep_UU */ + public static final String COLUMNNAME_C_CycleStep_UU = "C_CycleStep_UU"; + + /** Set C_CycleStep_UU */ + public void setC_CycleStep_UU (String C_CycleStep_UU); + + /** Get C_CycleStep_UU */ + public String getC_CycleStep_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_DocType.java b/org.adempiere.base/src/org/compiere/model/I_C_DocType.java index 1d71dc9028..a2e333743d 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_DocType.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_DocType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_DocType - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_DocType { diff --git a/org.adempiere.base/src/org/compiere/model/I_C_DocTypeCounter.java b/org.adempiere.base/src/org/compiere/model/I_C_DocTypeCounter.java index 408f37b6b1..92231ab96f 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_DocTypeCounter.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_DocTypeCounter.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_DocTypeCounter - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_DocTypeCounter { @@ -31,7 +31,7 @@ public interface I_C_DocTypeCounter public static final String Table_Name = "C_DocTypeCounter"; /** AD_Table_ID=718 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 718; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_C_DocTypeCounter */ public int getC_DocTypeCounter_ID(); + /** Column name C_DocTypeCounter_UU */ + public static final String COLUMNNAME_C_DocTypeCounter_UU = "C_DocTypeCounter_UU"; + + /** Set C_DocTypeCounter_UU */ + public void setC_DocTypeCounter_UU (String C_DocTypeCounter_UU); + + /** Get C_DocTypeCounter_UU */ + public String getC_DocTypeCounter_UU(); + /** Column name C_DocType_ID */ public static final String COLUMNNAME_C_DocType_ID = "C_DocType_ID"; @@ -88,7 +97,7 @@ public interface I_C_DocTypeCounter */ public int getC_DocType_ID(); - public I_C_DocType getC_DocType() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException; /** Column name Counter_C_DocType_ID */ public static final String COLUMNNAME_Counter_C_DocType_ID = "Counter_C_DocType_ID"; @@ -103,7 +112,7 @@ public interface I_C_DocTypeCounter */ public int getCounter_C_DocType_ID(); - public I_C_DocType getCounter_C_DocType() throws RuntimeException; + public org.compiere.model.I_C_DocType getCounter_C_DocType() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Dunning.java b/org.adempiere.base/src/org/compiere/model/I_C_Dunning.java index 091ccb8460..fac14aa9a0 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Dunning.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Dunning.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Dunning - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Dunning { @@ -31,7 +31,7 @@ public interface I_C_Dunning public static final String Table_Name = "C_Dunning"; /** AD_Table_ID=301 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 301; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_C_Dunning */ public int getC_Dunning_ID(); + /** Column name C_Dunning_UU */ + public static final String COLUMNNAME_C_Dunning_UU = "C_Dunning_UU"; + + /** Set C_Dunning_UU */ + public void setC_Dunning_UU (String C_Dunning_UU); + + /** Get C_Dunning_UU */ + public String getC_Dunning_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_DunningLevel.java b/org.adempiere.base/src/org/compiere/model/I_C_DunningLevel.java index 85d2676114..cb1c35391b 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_DunningLevel.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_DunningLevel.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_DunningLevel - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_DunningLevel { @@ -31,7 +31,7 @@ public interface I_C_DunningLevel public static final String Table_Name = "C_DunningLevel"; /** AD_Table_ID=331 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 331; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_DunningLevel */ public int getC_Dunning_ID(); - public I_C_Dunning getC_Dunning() throws RuntimeException; + public org.compiere.model.I_C_Dunning getC_Dunning() throws RuntimeException; /** Column name C_DunningLevel_ID */ public static final String COLUMNNAME_C_DunningLevel_ID = "C_DunningLevel_ID"; @@ -86,6 +86,15 @@ public interface I_C_DunningLevel /** Get Dunning Level */ public int getC_DunningLevel_ID(); + /** Column name C_DunningLevel_UU */ + public static final String COLUMNNAME_C_DunningLevel_UU = "C_DunningLevel_UU"; + + /** Set C_DunningLevel_UU */ + public void setC_DunningLevel_UU (String C_DunningLevel_UU); + + /** Get C_DunningLevel_UU */ + public String getC_DunningLevel_UU(); + /** Column name ChargeFee */ public static final String COLUMNNAME_ChargeFee = "ChargeFee"; @@ -125,7 +134,7 @@ public interface I_C_DunningLevel */ public int getC_PaymentTerm_ID(); - public I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException; + public org.compiere.model.I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -195,7 +204,7 @@ public interface I_C_DunningLevel */ public int getDunning_PrintFormat_ID(); - public I_AD_PrintFormat getDunning_PrintFormat() throws RuntimeException; + public org.compiere.model.I_AD_PrintFormat getDunning_PrintFormat() throws RuntimeException; /** Column name FeeAmt */ public static final String COLUMNNAME_FeeAmt = "FeeAmt"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_DunningRun.java b/org.adempiere.base/src/org/compiere/model/I_C_DunningRun.java index 3a24578ece..1c4cb71a45 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_DunningRun.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_DunningRun.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_DunningRun - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_DunningRun { @@ -31,7 +31,7 @@ public interface I_C_DunningRun public static final String Table_Name = "C_DunningRun"; /** AD_Table_ID=526 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 526; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_DunningRun */ public int getC_Dunning_ID(); - public I_C_Dunning getC_Dunning() throws RuntimeException; + public org.compiere.model.I_C_Dunning getC_Dunning() throws RuntimeException; /** Column name C_DunningLevel_ID */ public static final String COLUMNNAME_C_DunningLevel_ID = "C_DunningLevel_ID"; @@ -86,7 +86,7 @@ public interface I_C_DunningRun /** Get Dunning Level */ public int getC_DunningLevel_ID(); - public I_C_DunningLevel getC_DunningLevel() throws RuntimeException; + public org.compiere.model.I_C_DunningLevel getC_DunningLevel() throws RuntimeException; /** Column name C_DunningRun_ID */ public static final String COLUMNNAME_C_DunningRun_ID = "C_DunningRun_ID"; @@ -101,6 +101,15 @@ public interface I_C_DunningRun */ public int getC_DunningRun_ID(); + /** Column name C_DunningRun_UU */ + public static final String COLUMNNAME_C_DunningRun_UU = "C_DunningRun_UU"; + + /** Set C_DunningRun_UU */ + public void setC_DunningRun_UU (String C_DunningRun_UU); + + /** Get C_DunningRun_UU */ + public String getC_DunningRun_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_DunningRunEntry.java b/org.adempiere.base/src/org/compiere/model/I_C_DunningRunEntry.java index 49431eff06..328c18ba80 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_DunningRunEntry.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_DunningRunEntry.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_DunningRunEntry - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_DunningRunEntry { @@ -31,7 +31,7 @@ public interface I_C_DunningRunEntry public static final String Table_Name = "C_DunningRunEntry"; /** AD_Table_ID=527 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 527; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_DunningRunEntry */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name Amt */ public static final String COLUMNNAME_Amt = "Amt"; @@ -103,7 +103,7 @@ public interface I_C_DunningRunEntry */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_BPartner_Location_ID */ public static final String COLUMNNAME_C_BPartner_Location_ID = "C_BPartner_Location_ID"; @@ -118,7 +118,7 @@ public interface I_C_DunningRunEntry */ public int getC_BPartner_Location_ID(); - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -133,7 +133,7 @@ public interface I_C_DunningRunEntry */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name C_DunningLevel_ID */ public static final String COLUMNNAME_C_DunningLevel_ID = "C_DunningLevel_ID"; @@ -144,7 +144,7 @@ public interface I_C_DunningRunEntry /** Get Dunning Level */ public int getC_DunningLevel_ID(); - public I_C_DunningLevel getC_DunningLevel() throws RuntimeException; + public org.compiere.model.I_C_DunningLevel getC_DunningLevel() throws RuntimeException; /** Column name C_DunningRunEntry_ID */ public static final String COLUMNNAME_C_DunningRunEntry_ID = "C_DunningRunEntry_ID"; @@ -159,6 +159,15 @@ public interface I_C_DunningRunEntry */ public int getC_DunningRunEntry_ID(); + /** Column name C_DunningRunEntry_UU */ + public static final String COLUMNNAME_C_DunningRunEntry_UU = "C_DunningRunEntry_UU"; + + /** Set C_DunningRunEntry_UU */ + public void setC_DunningRunEntry_UU (String C_DunningRunEntry_UU); + + /** Get C_DunningRunEntry_UU */ + public String getC_DunningRunEntry_UU(); + /** Column name C_DunningRun_ID */ public static final String COLUMNNAME_C_DunningRun_ID = "C_DunningRun_ID"; @@ -172,7 +181,7 @@ public interface I_C_DunningRunEntry */ public int getC_DunningRun_ID(); - public I_C_DunningRun getC_DunningRun() throws RuntimeException; + public org.compiere.model.I_C_DunningRun getC_DunningRun() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -255,7 +264,7 @@ public interface I_C_DunningRunEntry */ public int getSalesRep_ID(); - public I_AD_User getSalesRep() throws RuntimeException; + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_DunningRunLine.java b/org.adempiere.base/src/org/compiere/model/I_C_DunningRunLine.java index 7d77ee90b3..8c2bcad129 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_DunningRunLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_DunningRunLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_DunningRunLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_DunningRunLine { @@ -31,7 +31,7 @@ public interface I_C_DunningRunLine public static final String Table_Name = "C_DunningRunLine"; /** AD_Table_ID=524 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 524; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_C_DunningRunLine */ public int getC_DunningRunEntry_ID(); - public I_C_DunningRunEntry getC_DunningRunEntry() throws RuntimeException; + public org.compiere.model.I_C_DunningRunEntry getC_DunningRunEntry() throws RuntimeException; /** Column name C_DunningRunLine_ID */ public static final String COLUMNNAME_C_DunningRunLine_ID = "C_DunningRunLine_ID"; @@ -103,6 +103,15 @@ public interface I_C_DunningRunLine */ public int getC_DunningRunLine_ID(); + /** Column name C_DunningRunLine_UU */ + public static final String COLUMNNAME_C_DunningRunLine_UU = "C_DunningRunLine_UU"; + + /** Set C_DunningRunLine_UU */ + public void setC_DunningRunLine_UU (String C_DunningRunLine_UU); + + /** Get C_DunningRunLine_UU */ + public String getC_DunningRunLine_UU(); + /** Column name C_Invoice_ID */ public static final String COLUMNNAME_C_Invoice_ID = "C_Invoice_ID"; @@ -116,7 +125,7 @@ public interface I_C_DunningRunLine */ public int getC_Invoice_ID(); - public I_C_Invoice getC_Invoice() throws RuntimeException; + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException; /** Column name C_InvoicePaySchedule_ID */ public static final String COLUMNNAME_C_InvoicePaySchedule_ID = "C_InvoicePaySchedule_ID"; @@ -131,7 +140,7 @@ public interface I_C_DunningRunLine */ public int getC_InvoicePaySchedule_ID(); - public I_C_InvoicePaySchedule getC_InvoicePaySchedule() throws RuntimeException; + public org.compiere.model.I_C_InvoicePaySchedule getC_InvoicePaySchedule() throws RuntimeException; /** Column name ConvertedAmt */ public static final String COLUMNNAME_ConvertedAmt = "ConvertedAmt"; @@ -159,7 +168,7 @@ public interface I_C_DunningRunLine */ public int getC_Payment_ID(); - public I_C_Payment getC_Payment() throws RuntimeException; + public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Element.java b/org.adempiere.base/src/org/compiere/model/I_C_Element.java index b304eef1a7..4e232930b7 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Element.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Element.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Element - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Element { @@ -31,7 +31,7 @@ public interface I_C_Element public static final String Table_Name = "C_Element"; /** AD_Table_ID=142 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 142; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_Element */ public int getAD_Tree_ID(); - public I_AD_Tree getAD_Tree() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException; /** Column name C_Element_ID */ public static final String COLUMNNAME_C_Element_ID = "C_Element_ID"; @@ -90,6 +90,15 @@ public interface I_C_Element */ public int getC_Element_ID(); + /** Column name C_Element_UU */ + public static final String COLUMNNAME_C_Element_UU = "C_Element_UU"; + + /** Set C_Element_UU */ + public void setC_Element_UU (String C_Element_UU); + + /** Get C_Element_UU */ + public String getC_Element_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_ElementValue.java b/org.adempiere.base/src/org/compiere/model/I_C_ElementValue.java index 9fea60ffc1..91ccc36083 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_ElementValue.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_ElementValue.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_ElementValue - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_ElementValue { @@ -31,7 +31,7 @@ public interface I_C_ElementValue public static final String Table_Name = "C_ElementValue"; /** AD_Table_ID=188 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 188; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -101,7 +101,7 @@ public interface I_C_ElementValue */ public int getC_BankAccount_ID(); - public I_C_BankAccount getC_BankAccount() throws RuntimeException; + public org.compiere.model.I_C_BankAccount getC_BankAccount() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -116,7 +116,7 @@ public interface I_C_ElementValue */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name C_Element_ID */ public static final String COLUMNNAME_C_Element_ID = "C_Element_ID"; @@ -131,7 +131,7 @@ public interface I_C_ElementValue */ public int getC_Element_ID(); - public I_C_Element getC_Element() throws RuntimeException; + public org.compiere.model.I_C_Element getC_Element() throws RuntimeException; /** Column name C_ElementValue_ID */ public static final String COLUMNNAME_C_ElementValue_ID = "C_ElementValue_ID"; @@ -146,6 +146,15 @@ public interface I_C_ElementValue */ public int getC_ElementValue_ID(); + /** Column name C_ElementValue_UU */ + public static final String COLUMNNAME_C_ElementValue_UU = "C_ElementValue_UU"; + + /** Set C_ElementValue_UU */ + public void setC_ElementValue_UU (String C_ElementValue_UU); + + /** Get C_ElementValue_UU */ + public String getC_ElementValue_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Greeting.java b/org.adempiere.base/src/org/compiere/model/I_C_Greeting.java index 0f51a16984..6e2bc088e6 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Greeting.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Greeting.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Greeting - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Greeting { @@ -31,7 +31,7 @@ public interface I_C_Greeting public static final String Table_Name = "C_Greeting"; /** AD_Table_ID=346 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 346; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_C_Greeting */ public int getC_Greeting_ID(); + /** Column name C_Greeting_UU */ + public static final String COLUMNNAME_C_Greeting_UU = "C_Greeting_UU"; + + /** Set C_Greeting_UU */ + public void setC_Greeting_UU (String C_Greeting_UU); + + /** Get C_Greeting_UU */ + public String getC_Greeting_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_InterOrg_Acct.java b/org.adempiere.base/src/org/compiere/model/I_C_InterOrg_Acct.java index 9b02dc3425..2ad9b63bbc 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_InterOrg_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_InterOrg_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_InterOrg_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_InterOrg_Acct { @@ -31,7 +31,7 @@ public interface I_C_InterOrg_Acct public static final String Table_Name = "C_InterOrg_Acct"; /** AD_Table_ID=397 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 397; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,16 @@ public interface I_C_InterOrg_Acct */ public int getC_AcctSchema_ID(); - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + + /** Column name C_InterOrg_Acct_UU */ + public static final String COLUMNNAME_C_InterOrg_Acct_UU = "C_InterOrg_Acct_UU"; + + /** Set C_InterOrg_Acct_UU */ + public void setC_InterOrg_Acct_UU (String C_InterOrg_Acct_UU); + + /** Get C_InterOrg_Acct_UU */ + public String getC_InterOrg_Acct_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Invoice.java b/org.adempiere.base/src/org/compiere/model/I_C_Invoice.java index b4e4a8f0e9..1b98ff3990 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Invoice.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Invoice.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Invoice - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Invoice { @@ -590,6 +590,15 @@ public interface I_C_Invoice */ public boolean isDiscountPrinted(); + /** Column name IsFixedAssetInvoice */ + public static final String COLUMNNAME_IsFixedAssetInvoice = "IsFixedAssetInvoice"; + + /** Set IsFixedAssetInvoice */ + public void setIsFixedAssetInvoice (boolean IsFixedAssetInvoice); + + /** Get IsFixedAssetInvoice */ + public boolean isFixedAssetInvoice(); + /** Column name IsInDispute */ public static final String COLUMNNAME_IsInDispute = "IsInDispute"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_InvoiceBatch.java b/org.adempiere.base/src/org/compiere/model/I_C_InvoiceBatch.java index 3781847385..47ea516b29 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_InvoiceBatch.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_InvoiceBatch.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_InvoiceBatch - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_InvoiceBatch { @@ -31,7 +31,7 @@ public interface I_C_InvoiceBatch public static final String Table_Name = "C_InvoiceBatch"; /** AD_Table_ID=767 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 767; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_InvoiceBatch */ public int getC_ConversionType_ID(); - public I_C_ConversionType getC_ConversionType() throws RuntimeException; + public org.compiere.model.I_C_ConversionType getC_ConversionType() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -90,7 +90,7 @@ public interface I_C_InvoiceBatch */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name C_InvoiceBatch_ID */ public static final String COLUMNNAME_C_InvoiceBatch_ID = "C_InvoiceBatch_ID"; @@ -105,6 +105,15 @@ public interface I_C_InvoiceBatch */ public int getC_InvoiceBatch_ID(); + /** Column name C_InvoiceBatch_UU */ + public static final String COLUMNNAME_C_InvoiceBatch_UU = "C_InvoiceBatch_UU"; + + /** Set C_InvoiceBatch_UU */ + public void setC_InvoiceBatch_UU (String C_InvoiceBatch_UU); + + /** Get C_InvoiceBatch_UU */ + public String getC_InvoiceBatch_UU(); + /** Column name ControlAmt */ public static final String COLUMNNAME_ControlAmt = "ControlAmt"; @@ -247,7 +256,7 @@ public interface I_C_InvoiceBatch */ public int getSalesRep_ID(); - public I_AD_User getSalesRep() throws RuntimeException; + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_InvoiceBatchLine.java b/org.adempiere.base/src/org/compiere/model/I_C_InvoiceBatchLine.java index 9f399d1cc9..9be26ad9c0 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_InvoiceBatchLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_InvoiceBatchLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_InvoiceBatchLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_InvoiceBatchLine { @@ -31,7 +31,7 @@ public interface I_C_InvoiceBatchLine public static final String Table_Name = "C_InvoiceBatchLine"; /** AD_Table_ID=768 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 768; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_C_InvoiceBatchLine */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name C_Activity_ID */ public static final String COLUMNNAME_C_Activity_ID = "C_Activity_ID"; @@ -103,7 +103,7 @@ public interface I_C_InvoiceBatchLine */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -118,7 +118,7 @@ public interface I_C_InvoiceBatchLine */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_BPartner_Location_ID */ public static final String COLUMNNAME_C_BPartner_Location_ID = "C_BPartner_Location_ID"; @@ -133,7 +133,7 @@ public interface I_C_InvoiceBatchLine */ public int getC_BPartner_Location_ID(); - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; /** Column name C_Charge_ID */ public static final String COLUMNNAME_C_Charge_ID = "C_Charge_ID"; @@ -148,7 +148,7 @@ public interface I_C_InvoiceBatchLine */ public int getC_Charge_ID(); - public I_C_Charge getC_Charge() throws RuntimeException; + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException; /** Column name C_DocType_ID */ public static final String COLUMNNAME_C_DocType_ID = "C_DocType_ID"; @@ -163,7 +163,7 @@ public interface I_C_InvoiceBatchLine */ public int getC_DocType_ID(); - public I_C_DocType getC_DocType() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException; /** Column name C_InvoiceBatch_ID */ public static final String COLUMNNAME_C_InvoiceBatch_ID = "C_InvoiceBatch_ID"; @@ -178,7 +178,7 @@ public interface I_C_InvoiceBatchLine */ public int getC_InvoiceBatch_ID(); - public I_C_InvoiceBatch getC_InvoiceBatch() throws RuntimeException; + public org.compiere.model.I_C_InvoiceBatch getC_InvoiceBatch() throws RuntimeException; /** Column name C_InvoiceBatchLine_ID */ public static final String COLUMNNAME_C_InvoiceBatchLine_ID = "C_InvoiceBatchLine_ID"; @@ -193,6 +193,15 @@ public interface I_C_InvoiceBatchLine */ public int getC_InvoiceBatchLine_ID(); + /** Column name C_InvoiceBatchLine_UU */ + public static final String COLUMNNAME_C_InvoiceBatchLine_UU = "C_InvoiceBatchLine_UU"; + + /** Set C_InvoiceBatchLine_UU */ + public void setC_InvoiceBatchLine_UU (String C_InvoiceBatchLine_UU); + + /** Get C_InvoiceBatchLine_UU */ + public String getC_InvoiceBatchLine_UU(); + /** Column name C_Invoice_ID */ public static final String COLUMNNAME_C_Invoice_ID = "C_Invoice_ID"; @@ -206,7 +215,7 @@ public interface I_C_InvoiceBatchLine */ public int getC_Invoice_ID(); - public I_C_Invoice getC_Invoice() throws RuntimeException; + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException; /** Column name C_InvoiceLine_ID */ public static final String COLUMNNAME_C_InvoiceLine_ID = "C_InvoiceLine_ID"; @@ -221,7 +230,7 @@ public interface I_C_InvoiceBatchLine */ public int getC_InvoiceLine_ID(); - public I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException; + public org.compiere.model.I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException; /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -236,7 +245,7 @@ public interface I_C_InvoiceBatchLine */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -267,7 +276,7 @@ public interface I_C_InvoiceBatchLine */ public int getC_Tax_ID(); - public I_C_Tax getC_Tax() throws RuntimeException; + public org.compiere.model.I_C_Tax getC_Tax() throws RuntimeException; /** Column name DateAcct */ public static final String COLUMNNAME_DateAcct = "DateAcct"; @@ -467,7 +476,7 @@ public interface I_C_InvoiceBatchLine */ public int getUser1_ID(); - public I_C_ElementValue getUser1() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException; /** Column name User2_ID */ public static final String COLUMNNAME_User2_ID = "User2_ID"; @@ -482,5 +491,5 @@ public interface I_C_InvoiceBatchLine */ public int getUser2_ID(); - public I_C_ElementValue getUser2() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException; } diff --git a/org.adempiere.base/src/org/compiere/model/I_C_InvoiceLine.java b/org.adempiere.base/src/org/compiere/model/I_C_InvoiceLine.java index 9549ef8c12..bb61a58a9c 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_InvoiceLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_InvoiceLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_InvoiceLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_InvoiceLine { @@ -31,7 +31,7 @@ public interface I_C_InvoiceLine public static final String Table_Name = "C_InvoiceLine"; /** AD_Table_ID=333 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 333; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -54,7 +54,7 @@ public interface I_C_InvoiceLine */ public int getA_Asset_Group_ID(); - public I_A_Asset_Group getA_Asset_Group() throws RuntimeException; + public org.compiere.model.I_A_Asset_Group getA_Asset_Group() throws RuntimeException; /** Column name A_Asset_ID */ public static final String COLUMNNAME_A_Asset_ID = "A_Asset_ID"; @@ -69,24 +69,24 @@ public interface I_C_InvoiceLine */ public int getA_Asset_ID(); - public I_A_Asset getA_Asset() throws RuntimeException; + public org.compiere.model.I_A_Asset getA_Asset() throws RuntimeException; /** Column name A_CapvsExp */ public static final String COLUMNNAME_A_CapvsExp = "A_CapvsExp"; - /** Set Capital vs Expense */ + /** Set Capital/Expense */ public void setA_CapvsExp (String A_CapvsExp); - /** Get Capital vs Expense */ + /** Get Capital/Expense */ public String getA_CapvsExp(); /** Column name A_CreateAsset */ public static final String COLUMNNAME_A_CreateAsset = "A_CreateAsset"; - /** Set Asset Related? */ + /** Set Create Asset */ public void setA_CreateAsset (boolean A_CreateAsset); - /** Get Asset Related? */ + /** Get Create Asset */ public boolean isA_CreateAsset(); /** Column name AD_Client_ID */ @@ -145,7 +145,7 @@ public interface I_C_InvoiceLine */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -160,7 +160,7 @@ public interface I_C_InvoiceLine */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_Charge_ID */ public static final String COLUMNNAME_C_Charge_ID = "C_Charge_ID"; @@ -175,7 +175,7 @@ public interface I_C_InvoiceLine */ public int getC_Charge_ID(); - public I_C_Charge getC_Charge() throws RuntimeException; + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException; /** Column name C_Invoice_ID */ public static final String COLUMNNAME_C_Invoice_ID = "C_Invoice_ID"; @@ -190,7 +190,7 @@ public interface I_C_InvoiceLine */ public int getC_Invoice_ID(); - public I_C_Invoice getC_Invoice() throws RuntimeException; + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException; /** Column name C_InvoiceLine_ID */ public static final String COLUMNNAME_C_InvoiceLine_ID = "C_InvoiceLine_ID"; @@ -205,6 +205,15 @@ public interface I_C_InvoiceLine */ public int getC_InvoiceLine_ID(); + /** Column name C_InvoiceLine_UU */ + public static final String COLUMNNAME_C_InvoiceLine_UU = "C_InvoiceLine_UU"; + + /** Set C_InvoiceLine_UU */ + public void setC_InvoiceLine_UU (String C_InvoiceLine_UU); + + /** Get C_InvoiceLine_UU */ + public String getC_InvoiceLine_UU(); + /** Column name C_OrderLine_ID */ public static final String COLUMNNAME_C_OrderLine_ID = "C_OrderLine_ID"; @@ -218,7 +227,7 @@ public interface I_C_InvoiceLine */ public int getC_OrderLine_ID(); - public I_C_OrderLine getC_OrderLine() throws RuntimeException; + public org.compiere.model.I_C_OrderLine getC_OrderLine() throws RuntimeException; /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -233,7 +242,7 @@ public interface I_C_InvoiceLine */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name C_ProjectPhase_ID */ public static final String COLUMNNAME_C_ProjectPhase_ID = "C_ProjectPhase_ID"; @@ -248,7 +257,7 @@ public interface I_C_InvoiceLine */ public int getC_ProjectPhase_ID(); - public I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException; + public org.compiere.model.I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException; /** Column name C_ProjectTask_ID */ public static final String COLUMNNAME_C_ProjectTask_ID = "C_ProjectTask_ID"; @@ -263,7 +272,7 @@ public interface I_C_InvoiceLine */ public int getC_ProjectTask_ID(); - public I_C_ProjectTask getC_ProjectTask() throws RuntimeException; + public org.compiere.model.I_C_ProjectTask getC_ProjectTask() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -294,7 +303,7 @@ public interface I_C_InvoiceLine */ public int getC_Tax_ID(); - public I_C_Tax getC_Tax() throws RuntimeException; + public org.compiere.model.I_C_Tax getC_Tax() throws RuntimeException; /** Column name C_UOM_ID */ public static final String COLUMNNAME_C_UOM_ID = "C_UOM_ID"; @@ -309,7 +318,7 @@ public interface I_C_InvoiceLine */ public int getC_UOM_ID(); - public I_C_UOM getC_UOM() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException; /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; @@ -350,6 +359,15 @@ public interface I_C_InvoiceLine */ public boolean isDescription(); + /** Column name IsFixedAssetInvoice */ + public static final String COLUMNNAME_IsFixedAssetInvoice = "IsFixedAssetInvoice"; + + /** Set IsFixedAssetInvoice */ + public void setIsFixedAssetInvoice (boolean IsFixedAssetInvoice); + + /** Get IsFixedAssetInvoice */ + public boolean isFixedAssetInvoice(); + /** Column name IsPrinted */ public static final String COLUMNNAME_IsPrinted = "IsPrinted"; @@ -430,7 +448,7 @@ public interface I_C_InvoiceLine */ public int getM_InOutLine_ID(); - public I_M_InOutLine getM_InOutLine() throws RuntimeException; + public org.compiere.model.I_M_InOutLine getM_InOutLine() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -445,7 +463,7 @@ public interface I_C_InvoiceLine */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name M_RMALine_ID */ public static final String COLUMNNAME_M_RMALine_ID = "M_RMALine_ID"; @@ -460,7 +478,7 @@ public interface I_C_InvoiceLine */ public int getM_RMALine_ID(); - public I_M_RMALine getM_RMALine() throws RuntimeException; + public org.compiere.model.I_M_RMALine getM_RMALine() throws RuntimeException; /** Column name PriceActual */ public static final String COLUMNNAME_PriceActual = "PriceActual"; @@ -643,7 +661,7 @@ public interface I_C_InvoiceLine */ public int getUser1_ID(); - public I_C_ElementValue getUser1() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException; /** Column name User2_ID */ public static final String COLUMNNAME_User2_ID = "User2_ID"; @@ -658,5 +676,5 @@ public interface I_C_InvoiceLine */ public int getUser2_ID(); - public I_C_ElementValue getUser2() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException; } diff --git a/org.adempiere.base/src/org/compiere/model/I_C_InvoicePaySchedule.java b/org.adempiere.base/src/org/compiere/model/I_C_InvoicePaySchedule.java index 2ee94f603b..d78aa17763 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_InvoicePaySchedule.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_InvoicePaySchedule.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_InvoicePaySchedule - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_InvoicePaySchedule { @@ -31,7 +31,7 @@ public interface I_C_InvoicePaySchedule public static final String Table_Name = "C_InvoicePaySchedule"; /** AD_Table_ID=551 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 551; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_InvoicePaySchedule */ public int getC_Invoice_ID(); - public I_C_Invoice getC_Invoice() throws RuntimeException; + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException; /** Column name C_InvoicePaySchedule_ID */ public static final String COLUMNNAME_C_InvoicePaySchedule_ID = "C_InvoicePaySchedule_ID"; @@ -90,6 +90,15 @@ public interface I_C_InvoicePaySchedule */ public int getC_InvoicePaySchedule_ID(); + /** Column name C_InvoicePaySchedule_UU */ + public static final String COLUMNNAME_C_InvoicePaySchedule_UU = "C_InvoicePaySchedule_UU"; + + /** Set C_InvoicePaySchedule_UU */ + public void setC_InvoicePaySchedule_UU (String C_InvoicePaySchedule_UU); + + /** Get C_InvoicePaySchedule_UU */ + public String getC_InvoicePaySchedule_UU(); + /** Column name C_PaySchedule_ID */ public static final String COLUMNNAME_C_PaySchedule_ID = "C_PaySchedule_ID"; @@ -103,7 +112,7 @@ public interface I_C_InvoicePaySchedule */ public int getC_PaySchedule_ID(); - public I_C_PaySchedule getC_PaySchedule() throws RuntimeException; + public org.compiere.model.I_C_PaySchedule getC_PaySchedule() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_InvoiceSchedule.java b/org.adempiere.base/src/org/compiere/model/I_C_InvoiceSchedule.java index 4d0b85d134..e529c0bcec 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_InvoiceSchedule.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_InvoiceSchedule.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_InvoiceSchedule - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_InvoiceSchedule { @@ -31,7 +31,7 @@ public interface I_C_InvoiceSchedule public static final String Table_Name = "C_InvoiceSchedule"; /** AD_Table_ID=257 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 257; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,6 +88,15 @@ public interface I_C_InvoiceSchedule */ public int getC_InvoiceSchedule_ID(); + /** Column name C_InvoiceSchedule_UU */ + public static final String COLUMNNAME_C_InvoiceSchedule_UU = "C_InvoiceSchedule_UU"; + + /** Set C_InvoiceSchedule_UU */ + public void setC_InvoiceSchedule_UU (String C_InvoiceSchedule_UU); + + /** Get C_InvoiceSchedule_UU */ + public String getC_InvoiceSchedule_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_InvoiceTax.java b/org.adempiere.base/src/org/compiere/model/I_C_InvoiceTax.java index 56b171aaac..8a9ea2c4b9 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_InvoiceTax.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_InvoiceTax.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_InvoiceTax - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_InvoiceTax { @@ -31,7 +31,7 @@ public interface I_C_InvoiceTax public static final String Table_Name = "C_InvoiceTax"; /** AD_Table_ID=334 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 334; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_C_InvoiceTax */ public int getC_Invoice_ID(); - public I_C_Invoice getC_Invoice() throws RuntimeException; + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException; + + /** Column name C_InvoiceTax_UU */ + public static final String COLUMNNAME_C_InvoiceTax_UU = "C_InvoiceTax_UU"; + + /** Set C_InvoiceTax_UU */ + public void setC_InvoiceTax_UU (String C_InvoiceTax_UU); + + /** Get C_InvoiceTax_UU */ + public String getC_InvoiceTax_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -106,7 +115,7 @@ public interface I_C_InvoiceTax */ public int getC_Tax_ID(); - public I_C_Tax getC_Tax() throws RuntimeException; + public org.compiere.model.I_C_Tax getC_Tax() throws RuntimeException; /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Job.java b/org.adempiere.base/src/org/compiere/model/I_C_Job.java index 86c03755da..ff0694bb5f 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Job.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Job.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Job - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Job { @@ -31,7 +31,7 @@ public interface I_C_Job public static final String Table_Name = "C_Job"; /** AD_Table_ID=789 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 789; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_Job */ public int getC_JobCategory_ID(); - public I_C_JobCategory getC_JobCategory() throws RuntimeException; + public org.compiere.model.I_C_JobCategory getC_JobCategory() throws RuntimeException; /** Column name C_Job_ID */ public static final String COLUMNNAME_C_Job_ID = "C_Job_ID"; @@ -90,6 +90,15 @@ public interface I_C_Job */ public int getC_Job_ID(); + /** Column name C_Job_UU */ + public static final String COLUMNNAME_C_Job_UU = "C_Job_UU"; + + /** Set C_Job_UU */ + public void setC_Job_UU (String C_Job_UU); + + /** Get C_Job_UU */ + public String getC_Job_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_JobAssignment.java b/org.adempiere.base/src/org/compiere/model/I_C_JobAssignment.java index a782913b1f..77d275ed38 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_JobAssignment.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_JobAssignment.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_JobAssignment - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_JobAssignment { @@ -31,7 +31,7 @@ public interface I_C_JobAssignment public static final String Table_Name = "C_JobAssignment"; /** AD_Table_ID=791 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 791; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_JobAssignment */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name C_JobAssignment_ID */ public static final String COLUMNNAME_C_JobAssignment_ID = "C_JobAssignment_ID"; @@ -90,6 +90,15 @@ public interface I_C_JobAssignment */ public int getC_JobAssignment_ID(); + /** Column name C_JobAssignment_UU */ + public static final String COLUMNNAME_C_JobAssignment_UU = "C_JobAssignment_UU"; + + /** Set C_JobAssignment_UU */ + public void setC_JobAssignment_UU (String C_JobAssignment_UU); + + /** Get C_JobAssignment_UU */ + public String getC_JobAssignment_UU(); + /** Column name C_Job_ID */ public static final String COLUMNNAME_C_Job_ID = "C_Job_ID"; @@ -103,7 +112,7 @@ public interface I_C_JobAssignment */ public int getC_Job_ID(); - public I_C_Job getC_Job() throws RuntimeException; + public org.compiere.model.I_C_Job getC_Job() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_JobCategory.java b/org.adempiere.base/src/org/compiere/model/I_C_JobCategory.java index 088aec6962..54f15f9449 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_JobCategory.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_JobCategory.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_JobCategory - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_JobCategory { @@ -31,7 +31,7 @@ public interface I_C_JobCategory public static final String Table_Name = "C_JobCategory"; /** AD_Table_ID=790 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 790; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_C_JobCategory */ public int getC_JobCategory_ID(); + /** Column name C_JobCategory_UU */ + public static final String COLUMNNAME_C_JobCategory_UU = "C_JobCategory_UU"; + + /** Set C_JobCategory_UU */ + public void setC_JobCategory_UU (String C_JobCategory_UU); + + /** Get C_JobCategory_UU */ + public String getC_JobCategory_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_JobRemuneration.java b/org.adempiere.base/src/org/compiere/model/I_C_JobRemuneration.java index 3bf0882010..7416af734c 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_JobRemuneration.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_JobRemuneration.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_JobRemuneration - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_JobRemuneration { @@ -31,7 +31,7 @@ public interface I_C_JobRemuneration public static final String Table_Name = "C_JobRemuneration"; /** AD_Table_ID=793 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 793; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_JobRemuneration */ public int getC_Job_ID(); - public I_C_Job getC_Job() throws RuntimeException; + public org.compiere.model.I_C_Job getC_Job() throws RuntimeException; /** Column name C_JobRemuneration_ID */ public static final String COLUMNNAME_C_JobRemuneration_ID = "C_JobRemuneration_ID"; @@ -90,6 +90,15 @@ public interface I_C_JobRemuneration */ public int getC_JobRemuneration_ID(); + /** Column name C_JobRemuneration_UU */ + public static final String COLUMNNAME_C_JobRemuneration_UU = "C_JobRemuneration_UU"; + + /** Set C_JobRemuneration_UU */ + public void setC_JobRemuneration_UU (String C_JobRemuneration_UU); + + /** Get C_JobRemuneration_UU */ + public String getC_JobRemuneration_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -119,7 +128,7 @@ public interface I_C_JobRemuneration */ public int getC_Remuneration_ID(); - public I_C_Remuneration getC_Remuneration() throws RuntimeException; + public org.compiere.model.I_C_Remuneration getC_Remuneration() throws RuntimeException; /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_LandedCost.java b/org.adempiere.base/src/org/compiere/model/I_C_LandedCost.java index 59ba0fe477..0f404a9989 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_LandedCost.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_LandedCost.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_LandedCost - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_LandedCost { @@ -31,7 +31,7 @@ public interface I_C_LandedCost public static final String Table_Name = "C_LandedCost"; /** AD_Table_ID=759 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 759; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_LandedCost */ public int getC_InvoiceLine_ID(); - public I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException; + public org.compiere.model.I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException; /** Column name C_LandedCost_ID */ public static final String COLUMNNAME_C_LandedCost_ID = "C_LandedCost_ID"; @@ -90,6 +90,15 @@ public interface I_C_LandedCost */ public int getC_LandedCost_ID(); + /** Column name C_LandedCost_UU */ + public static final String COLUMNNAME_C_LandedCost_UU = "C_LandedCost_UU"; + + /** Set C_LandedCost_UU */ + public void setC_LandedCost_UU (String C_LandedCost_UU); + + /** Get C_LandedCost_UU */ + public String getC_LandedCost_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -145,7 +154,7 @@ public interface I_C_LandedCost */ public int getM_CostElement_ID(); - public I_M_CostElement getM_CostElement() throws RuntimeException; + public org.compiere.model.I_M_CostElement getM_CostElement() throws RuntimeException; /** Column name M_InOut_ID */ public static final String COLUMNNAME_M_InOut_ID = "M_InOut_ID"; @@ -160,7 +169,7 @@ public interface I_C_LandedCost */ public int getM_InOut_ID(); - public I_M_InOut getM_InOut() throws RuntimeException; + public org.compiere.model.I_M_InOut getM_InOut() throws RuntimeException; /** Column name M_InOutLine_ID */ public static final String COLUMNNAME_M_InOutLine_ID = "M_InOutLine_ID"; @@ -175,7 +184,7 @@ public interface I_C_LandedCost */ public int getM_InOutLine_ID(); - public I_M_InOutLine getM_InOutLine() throws RuntimeException; + public org.compiere.model.I_M_InOutLine getM_InOutLine() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -190,7 +199,7 @@ public interface I_C_LandedCost */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Processing */ public static final String COLUMNNAME_Processing = "Processing"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_LandedCostAllocation.java b/org.adempiere.base/src/org/compiere/model/I_C_LandedCostAllocation.java index 35602d5c89..0f5ff53946 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_LandedCostAllocation.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_LandedCostAllocation.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_LandedCostAllocation - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_LandedCostAllocation { @@ -31,7 +31,7 @@ public interface I_C_LandedCostAllocation public static final String Table_Name = "C_LandedCostAllocation"; /** AD_Table_ID=760 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 760; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -101,7 +101,7 @@ public interface I_C_LandedCostAllocation */ public int getC_InvoiceLine_ID(); - public I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException; + public org.compiere.model.I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException; /** Column name C_LandedCostAllocation_ID */ public static final String COLUMNNAME_C_LandedCostAllocation_ID = "C_LandedCostAllocation_ID"; @@ -116,6 +116,15 @@ public interface I_C_LandedCostAllocation */ public int getC_LandedCostAllocation_ID(); + /** Column name C_LandedCostAllocation_UU */ + public static final String COLUMNNAME_C_LandedCostAllocation_UU = "C_LandedCostAllocation_UU"; + + /** Set C_LandedCostAllocation_UU */ + public void setC_LandedCostAllocation_UU (String C_LandedCostAllocation_UU); + + /** Get C_LandedCostAllocation_UU */ + public String getC_LandedCostAllocation_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -160,7 +169,7 @@ public interface I_C_LandedCostAllocation */ public int getM_CostElement_ID(); - public I_M_CostElement getM_CostElement() throws RuntimeException; + public org.compiere.model.I_M_CostElement getM_CostElement() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -175,7 +184,7 @@ public interface I_C_LandedCostAllocation */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Qty */ public static final String COLUMNNAME_Qty = "Qty"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Location.java b/org.adempiere.base/src/org/compiere/model/I_C_Location.java index 26117db788..934c8b6aae 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Location.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Location.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Location - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Location { @@ -31,7 +31,7 @@ public interface I_C_Location public static final String Table_Name = "C_Location"; /** AD_Table_ID=162 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 162; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -127,7 +127,7 @@ public interface I_C_Location */ public int getC_City_ID(); - public I_C_City getC_City() throws RuntimeException; + public org.compiere.model.I_C_City getC_City() throws RuntimeException; /** Column name C_Country_ID */ public static final String COLUMNNAME_C_Country_ID = "C_Country_ID"; @@ -142,7 +142,7 @@ public interface I_C_Location */ public int getC_Country_ID(); - public I_C_Country getC_Country() throws RuntimeException; + public org.compiere.model.I_C_Country getC_Country() throws RuntimeException; /** Column name City */ public static final String COLUMNNAME_City = "City"; @@ -170,6 +170,15 @@ public interface I_C_Location */ public int getC_Location_ID(); + /** Column name C_Location_UU */ + public static final String COLUMNNAME_C_Location_UU = "C_Location_UU"; + + /** Set C_Location_UU */ + public void setC_Location_UU (String C_Location_UU); + + /** Get C_Location_UU */ + public String getC_Location_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -199,7 +208,7 @@ public interface I_C_Location */ public int getC_Region_ID(); - public I_C_Region getC_Region() throws RuntimeException; + public org.compiere.model.I_C_Region getC_Region() throws RuntimeException; /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_NonBusinessDay.java b/org.adempiere.base/src/org/compiere/model/I_C_NonBusinessDay.java index 98de3e4e05..e8025e0a7c 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_NonBusinessDay.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_NonBusinessDay.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_NonBusinessDay - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_NonBusinessDay { @@ -31,7 +31,7 @@ public interface I_C_NonBusinessDay public static final String Table_Name = "C_NonBusinessDay"; /** AD_Table_ID=163 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 163; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_NonBusinessDay */ public int getC_Calendar_ID(); - public I_C_Calendar getC_Calendar() throws RuntimeException; + public org.compiere.model.I_C_Calendar getC_Calendar() throws RuntimeException; /** Column name C_NonBusinessDay_ID */ public static final String COLUMNNAME_C_NonBusinessDay_ID = "C_NonBusinessDay_ID"; @@ -90,6 +90,15 @@ public interface I_C_NonBusinessDay */ public int getC_NonBusinessDay_ID(); + /** Column name C_NonBusinessDay_UU */ + public static final String COLUMNNAME_C_NonBusinessDay_UU = "C_NonBusinessDay_UU"; + + /** Set C_NonBusinessDay_UU */ + public void setC_NonBusinessDay_UU (String C_NonBusinessDay_UU); + + /** Get C_NonBusinessDay_UU */ + public String getC_NonBusinessDay_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Order.java b/org.adempiere.base/src/org/compiere/model/I_C_Order.java index 445f90f63f..1b51d79e92 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Order.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Order.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Order - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Order { diff --git a/org.adempiere.base/src/org/compiere/model/I_C_OrderLine.java b/org.adempiere.base/src/org/compiere/model/I_C_OrderLine.java index 25cf34f712..eb2065397a 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_OrderLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_OrderLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_OrderLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_OrderLine { @@ -31,7 +31,7 @@ public interface I_C_OrderLine public static final String Table_Name = "C_OrderLine"; /** AD_Table_ID=260 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 260; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_C_OrderLine */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -103,7 +103,7 @@ public interface I_C_OrderLine */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_BPartner_Location_ID */ public static final String COLUMNNAME_C_BPartner_Location_ID = "C_BPartner_Location_ID"; @@ -118,7 +118,7 @@ public interface I_C_OrderLine */ public int getC_BPartner_Location_ID(); - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -133,7 +133,7 @@ public interface I_C_OrderLine */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_Charge_ID */ public static final String COLUMNNAME_C_Charge_ID = "C_Charge_ID"; @@ -148,7 +148,7 @@ public interface I_C_OrderLine */ public int getC_Charge_ID(); - public I_C_Charge getC_Charge() throws RuntimeException; + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -163,7 +163,7 @@ public interface I_C_OrderLine */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name C_Order_ID */ public static final String COLUMNNAME_C_Order_ID = "C_Order_ID"; @@ -178,7 +178,7 @@ public interface I_C_OrderLine */ public int getC_Order_ID(); - public I_C_Order getC_Order() throws RuntimeException; + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException; /** Column name C_OrderLine_ID */ public static final String COLUMNNAME_C_OrderLine_ID = "C_OrderLine_ID"; @@ -193,6 +193,15 @@ public interface I_C_OrderLine */ public int getC_OrderLine_ID(); + /** Column name C_OrderLine_UU */ + public static final String COLUMNNAME_C_OrderLine_UU = "C_OrderLine_UU"; + + /** Set C_OrderLine_UU */ + public void setC_OrderLine_UU (String C_OrderLine_UU); + + /** Get C_OrderLine_UU */ + public String getC_OrderLine_UU(); + /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -206,7 +215,7 @@ public interface I_C_OrderLine */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name C_ProjectPhase_ID */ public static final String COLUMNNAME_C_ProjectPhase_ID = "C_ProjectPhase_ID"; @@ -221,7 +230,7 @@ public interface I_C_OrderLine */ public int getC_ProjectPhase_ID(); - public I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException; + public org.compiere.model.I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException; /** Column name C_ProjectTask_ID */ public static final String COLUMNNAME_C_ProjectTask_ID = "C_ProjectTask_ID"; @@ -236,7 +245,7 @@ public interface I_C_OrderLine */ public int getC_ProjectTask_ID(); - public I_C_ProjectTask getC_ProjectTask() throws RuntimeException; + public org.compiere.model.I_C_ProjectTask getC_ProjectTask() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -254,6 +263,24 @@ public interface I_C_OrderLine */ public int getCreatedBy(); + /** Column name CreateProduction */ + public static final String COLUMNNAME_CreateProduction = "CreateProduction"; + + /** Set Create Production */ + public void setCreateProduction (String CreateProduction); + + /** Get Create Production */ + public String getCreateProduction(); + + /** Column name CreateShipment */ + public static final String COLUMNNAME_CreateShipment = "CreateShipment"; + + /** Set Create Shipment */ + public void setCreateShipment (String CreateShipment); + + /** Get Create Shipment */ + public String getCreateShipment(); + /** Column name C_Tax_ID */ public static final String COLUMNNAME_C_Tax_ID = "C_Tax_ID"; @@ -267,7 +294,7 @@ public interface I_C_OrderLine */ public int getC_Tax_ID(); - public I_C_Tax getC_Tax() throws RuntimeException; + public org.compiere.model.I_C_Tax getC_Tax() throws RuntimeException; /** Column name C_UOM_ID */ public static final String COLUMNNAME_C_UOM_ID = "C_UOM_ID"; @@ -282,7 +309,7 @@ public interface I_C_OrderLine */ public int getC_UOM_ID(); - public I_C_UOM getC_UOM() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException; /** Column name DateDelivered */ public static final String COLUMNNAME_DateDelivered = "DateDelivered"; @@ -440,7 +467,7 @@ public interface I_C_OrderLine */ public int getLink_OrderLine_ID(); - public I_C_OrderLine getLink_OrderLine() throws RuntimeException; + public org.compiere.model.I_C_OrderLine getLink_OrderLine() throws RuntimeException; /** Column name M_AttributeSetInstance_ID */ public static final String COLUMNNAME_M_AttributeSetInstance_ID = "M_AttributeSetInstance_ID"; @@ -470,7 +497,7 @@ public interface I_C_OrderLine */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name M_Promotion_ID */ public static final String COLUMNNAME_M_Promotion_ID = "M_Promotion_ID"; @@ -481,7 +508,7 @@ public interface I_C_OrderLine /** Get Promotion */ public int getM_Promotion_ID(); - public I_M_Promotion getM_Promotion() throws RuntimeException; + public org.compiere.model.I_M_Promotion getM_Promotion() throws RuntimeException; /** Column name M_Shipper_ID */ public static final String COLUMNNAME_M_Shipper_ID = "M_Shipper_ID"; @@ -496,7 +523,7 @@ public interface I_C_OrderLine */ public int getM_Shipper_ID(); - public I_M_Shipper getM_Shipper() throws RuntimeException; + public org.compiere.model.I_M_Shipper getM_Shipper() throws RuntimeException; /** Column name M_Warehouse_ID */ public static final String COLUMNNAME_M_Warehouse_ID = "M_Warehouse_ID"; @@ -511,7 +538,7 @@ public interface I_C_OrderLine */ public int getM_Warehouse_ID(); - public I_M_Warehouse getM_Warehouse() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException; /** Column name PP_Cost_Collector_ID */ public static final String COLUMNNAME_PP_Cost_Collector_ID = "PP_Cost_Collector_ID"; @@ -693,7 +720,7 @@ public interface I_C_OrderLine */ public int getRef_OrderLine_ID(); - public I_C_OrderLine getRef_OrderLine() throws RuntimeException; + public org.compiere.model.I_C_OrderLine getRef_OrderLine() throws RuntimeException; /** Column name RRAmt */ public static final String COLUMNNAME_RRAmt = "RRAmt"; @@ -763,7 +790,7 @@ public interface I_C_OrderLine */ public int getUser1_ID(); - public I_C_ElementValue getUser1() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException; /** Column name User2_ID */ public static final String COLUMNNAME_User2_ID = "User2_ID"; @@ -778,5 +805,5 @@ public interface I_C_OrderLine */ public int getUser2_ID(); - public I_C_ElementValue getUser2() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException; } diff --git a/org.adempiere.base/src/org/compiere/model/I_C_OrderPaySchedule.java b/org.adempiere.base/src/org/compiere/model/I_C_OrderPaySchedule.java index 4db1e4ee3a..fc2d6be09c 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_OrderPaySchedule.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_OrderPaySchedule.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_OrderPaySchedule - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_OrderPaySchedule { @@ -86,6 +86,15 @@ public interface I_C_OrderPaySchedule /** Get Order Payment Schedule */ public int getC_OrderPaySchedule_ID(); + /** Column name C_OrderPaySchedule_UU */ + public static final String COLUMNNAME_C_OrderPaySchedule_UU = "C_OrderPaySchedule_UU"; + + /** Set C_OrderPaySchedule_UU */ + public void setC_OrderPaySchedule_UU (String C_OrderPaySchedule_UU); + + /** Get C_OrderPaySchedule_UU */ + public String getC_OrderPaySchedule_UU(); + /** Column name C_PaySchedule_ID */ public static final String COLUMNNAME_C_PaySchedule_ID = "C_PaySchedule_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_OrderSource.java b/org.adempiere.base/src/org/compiere/model/I_C_OrderSource.java index 5a077b4d6d..778e096206 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_OrderSource.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_OrderSource.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_OrderSource - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_OrderSource { @@ -31,7 +31,7 @@ public interface I_C_OrderSource public static final String Table_Name = "C_OrderSource"; /** AD_Table_ID=53244 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53244; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -71,6 +71,15 @@ public interface I_C_OrderSource /** Get Order Source */ public int getC_OrderSource_ID(); + /** Column name C_OrderSource_UU */ + public static final String COLUMNNAME_C_OrderSource_UU = "C_OrderSource_UU"; + + /** Set C_OrderSource_UU */ + public void setC_OrderSource_UU (String C_OrderSource_UU); + + /** Get C_OrderSource_UU */ + public String getC_OrderSource_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_OrderTax.java b/org.adempiere.base/src/org/compiere/model/I_C_OrderTax.java index b3c3c64749..85daf51d47 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_OrderTax.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_OrderTax.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_OrderTax - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_OrderTax { @@ -31,7 +31,7 @@ public interface I_C_OrderTax public static final String Table_Name = "C_OrderTax"; /** AD_Table_ID=314 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 314; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_C_OrderTax */ public int getC_Order_ID(); - public I_C_Order getC_Order() throws RuntimeException; + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException; + + /** Column name C_OrderTax_UU */ + public static final String COLUMNNAME_C_OrderTax_UU = "C_OrderTax_UU"; + + /** Set C_OrderTax_UU */ + public void setC_OrderTax_UU (String C_OrderTax_UU); + + /** Get C_OrderTax_UU */ + public String getC_OrderTax_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -106,7 +115,7 @@ public interface I_C_OrderTax */ public int getC_Tax_ID(); - public I_C_Tax getC_Tax() throws RuntimeException; + public org.compiere.model.I_C_Tax getC_Tax() throws RuntimeException; /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_OrgAssignment.java b/org.adempiere.base/src/org/compiere/model/I_C_OrgAssignment.java index 335f38182b..8a0bba9672 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_OrgAssignment.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_OrgAssignment.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_OrgAssignment - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_OrgAssignment { @@ -31,7 +31,7 @@ public interface I_C_OrgAssignment public static final String Table_Name = "C_OrgAssignment"; /** AD_Table_ID=585 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 585; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_OrgAssignment */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name C_OrgAssignment_ID */ public static final String COLUMNNAME_C_OrgAssignment_ID = "C_OrgAssignment_ID"; @@ -90,6 +90,15 @@ public interface I_C_OrgAssignment */ public int getC_OrgAssignment_ID(); + /** Column name C_OrgAssignment_UU */ + public static final String COLUMNNAME_C_OrgAssignment_UU = "C_OrgAssignment_UU"; + + /** Set C_OrgAssignment_UU */ + public void setC_OrgAssignment_UU (String C_OrgAssignment_UU); + + /** Get C_OrgAssignment_UU */ + public String getC_OrgAssignment_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_POS.java b/org.adempiere.base/src/org/compiere/model/I_C_POS.java index c5fba2129a..0aa0a59546 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_POS.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_POS.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_POS - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_POS { diff --git a/org.adempiere.base/src/org/compiere/model/I_C_POSKey.java b/org.adempiere.base/src/org/compiere/model/I_C_POSKey.java index 91472849d9..c1c9749635 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_POSKey.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_POSKey.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_POSKey - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_POSKey { @@ -284,10 +284,10 @@ public interface I_C_POSKey /** Column name Text */ public static final String COLUMNNAME_Text = "Text"; - /** Set Text */ + /** Set Description */ public void setText (String Text); - /** Get Text */ + /** Get Description */ public String getText(); /** Column name Updated */ diff --git a/org.adempiere.base/src/org/compiere/model/I_C_POSKeyLayout.java b/org.adempiere.base/src/org/compiere/model/I_C_POSKeyLayout.java index 288b15d862..86aee771a0 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_POSKeyLayout.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_POSKeyLayout.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_POSKeyLayout - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_POSKeyLayout { diff --git a/org.adempiere.base/src/org/compiere/model/I_C_POSPayment.java b/org.adempiere.base/src/org/compiere/model/I_C_POSPayment.java index 233cd2c49d..60dfd83410 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_POSPayment.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_POSPayment.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_POSPayment - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_POSPayment { diff --git a/org.adempiere.base/src/org/compiere/model/I_C_POSTenderType.java b/org.adempiere.base/src/org/compiere/model/I_C_POSTenderType.java index ba3070a1e7..730e494b47 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_POSTenderType.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_POSTenderType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_POSTenderType - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_POSTenderType { diff --git a/org.adempiere.base/src/org/compiere/model/I_C_PaySchedule.java b/org.adempiere.base/src/org/compiere/model/I_C_PaySchedule.java index 212c874230..7f38a3daa7 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_PaySchedule.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_PaySchedule.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_PaySchedule - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_PaySchedule { @@ -31,7 +31,7 @@ public interface I_C_PaySchedule public static final String Table_Name = "C_PaySchedule"; /** AD_Table_ID=548 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 548; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_PaySchedule */ public int getC_PaymentTerm_ID(); - public I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException; + public org.compiere.model.I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException; /** Column name C_PaySchedule_ID */ public static final String COLUMNNAME_C_PaySchedule_ID = "C_PaySchedule_ID"; @@ -90,6 +90,15 @@ public interface I_C_PaySchedule */ public int getC_PaySchedule_ID(); + /** Column name C_PaySchedule_UU */ + public static final String COLUMNNAME_C_PaySchedule_UU = "C_PaySchedule_UU"; + + /** Set C_PaySchedule_UU */ + public void setC_PaySchedule_UU (String C_PaySchedule_UU); + + /** Get C_PaySchedule_UU */ + public String getC_PaySchedule_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_PaySelection.java b/org.adempiere.base/src/org/compiere/model/I_C_PaySelection.java index 80b2dc69c2..95e43ee314 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_PaySelection.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_PaySelection.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_PaySelection - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_PaySelection { @@ -31,7 +31,7 @@ public interface I_C_PaySelection public static final String Table_Name = "C_PaySelection"; /** AD_Table_ID=426 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 426; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_PaySelection */ public int getC_BankAccount_ID(); - public I_C_BankAccount getC_BankAccount() throws RuntimeException; + public org.compiere.model.I_C_BankAccount getC_BankAccount() throws RuntimeException; /** Column name C_PaySelection_ID */ public static final String COLUMNNAME_C_PaySelection_ID = "C_PaySelection_ID"; @@ -90,6 +90,15 @@ public interface I_C_PaySelection */ public int getC_PaySelection_ID(); + /** Column name C_PaySelection_UU */ + public static final String COLUMNNAME_C_PaySelection_UU = "C_PaySelection_UU"; + + /** Set C_PaySelection_UU */ + public void setC_PaySelection_UU (String C_PaySelection_UU); + + /** Get C_PaySelection_UU */ + public String getC_PaySelection_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_PaySelectionCheck.java b/org.adempiere.base/src/org/compiere/model/I_C_PaySelectionCheck.java index 209d4441ca..cfd017560b 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_PaySelectionCheck.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_PaySelectionCheck.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_PaySelectionCheck - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_PaySelectionCheck { diff --git a/org.adempiere.base/src/org/compiere/model/I_C_PaySelectionLine.java b/org.adempiere.base/src/org/compiere/model/I_C_PaySelectionLine.java index 9fa1140abb..b93505c06e 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_PaySelectionLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_PaySelectionLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_PaySelectionLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_PaySelectionLine { diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Payment.java b/org.adempiere.base/src/org/compiere/model/I_C_Payment.java index 92a5b898f9..c4cc7c495a 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Payment.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Payment.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Payment - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Payment { @@ -41,6 +41,19 @@ public interface I_C_Payment /** Load Meta Data */ + /** Column name AccountNo */ + public static final String COLUMNNAME_AccountNo = "AccountNo"; + + /** Set Account No. + * Account Number + */ + public void setAccountNo (String AccountNo); + + /** Get Account No. + * Account Number + */ + public String getAccountNo(); + /** Column name A_City */ public static final String COLUMNNAME_A_City = "A_City"; @@ -67,6 +80,40 @@ public interface I_C_Payment */ public String getA_Country(); + /** Column name AD_Client_ID */ + public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; + + /** Get Client. + * Client/Tenant for this installation. + */ + public int getAD_Client_ID(); + + /** Column name AD_Org_ID */ + public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; + + /** Set Organization. + * Organizational entity within client + */ + public void setAD_Org_ID (int AD_Org_ID); + + /** Get Organization. + * Organizational entity within client + */ + public int getAD_Org_ID(); + + /** Column name AD_OrgTrx_ID */ + public static final String COLUMNNAME_AD_OrgTrx_ID = "AD_OrgTrx_ID"; + + /** Set Trx Organization. + * Performing or initiating organization + */ + public void setAD_OrgTrx_ID (int AD_OrgTrx_ID); + + /** Get Trx Organization. + * Performing or initiating organization + */ + public int getAD_OrgTrx_ID(); + /** Column name A_EMail */ public static final String COLUMNNAME_A_EMail = "A_EMail"; @@ -158,53 +205,6 @@ public interface I_C_Payment */ public String getA_Zip(); - /** Column name AccountNo */ - public static final String COLUMNNAME_AccountNo = "AccountNo"; - - /** Set Account No. - * Account Number - */ - public void setAccountNo (String AccountNo); - - /** Get Account No. - * Account Number - */ - public String getAccountNo(); - - /** Column name AD_Client_ID */ - public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; - - /** Get Client. - * Client/Tenant for this installation. - */ - public int getAD_Client_ID(); - - /** Column name AD_Org_ID */ - public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; - - /** Set Organization. - * Organizational entity within client - */ - public void setAD_Org_ID (int AD_Org_ID); - - /** Get Organization. - * Organizational entity within client - */ - public int getAD_Org_ID(); - - /** Column name AD_OrgTrx_ID */ - public static final String COLUMNNAME_AD_OrgTrx_ID = "AD_OrgTrx_ID"; - - /** Set Trx Organization. - * Performing or initiating organization - */ - public void setAD_OrgTrx_ID (int AD_OrgTrx_ID); - - /** Get Trx Organization. - * Performing or initiating organization - */ - public int getAD_OrgTrx_ID(); - /** Column name C_Activity_ID */ public static final String COLUMNNAME_C_Activity_ID = "C_Activity_ID"; @@ -235,21 +235,6 @@ public interface I_C_Payment public org.compiere.model.I_C_BankAccount getC_BankAccount() throws RuntimeException; - /** Column name C_BP_BankAccount_ID */ - public static final String COLUMNNAME_C_BP_BankAccount_ID = "C_BP_BankAccount_ID"; - - /** Set Partner Bank Account. - * Bank Account of the Business Partner - */ - public void setC_BP_BankAccount_ID (int C_BP_BankAccount_ID); - - /** Get Partner Bank Account. - * Bank Account of the Business Partner - */ - public int getC_BP_BankAccount_ID(); - - public org.compiere.model.I_C_BP_BankAccount getC_BP_BankAccount() throws RuntimeException; - /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -265,6 +250,21 @@ public interface I_C_Payment public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; + /** Column name C_BP_BankAccount_ID */ + public static final String COLUMNNAME_C_BP_BankAccount_ID = "C_BP_BankAccount_ID"; + + /** Set Partner Bank Account. + * Bank Account of the Business Partner + */ + public void setC_BP_BankAccount_ID (int C_BP_BankAccount_ID); + + /** Get Partner Bank Account. + * Bank Account of the Business Partner + */ + public int getC_BP_BankAccount_ID(); + + public org.compiere.model.I_C_BP_BankAccount getC_BP_BankAccount() throws RuntimeException; + /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -355,6 +355,32 @@ public interface I_C_Payment public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException; + /** Column name ChargeAmt */ + public static final String COLUMNNAME_ChargeAmt = "ChargeAmt"; + + /** Set Charge amount. + * Charge Amount + */ + public void setChargeAmt (BigDecimal ChargeAmt); + + /** Get Charge amount. + * Charge Amount + */ + public BigDecimal getChargeAmt(); + + /** Column name CheckNo */ + public static final String COLUMNNAME_CheckNo = "CheckNo"; + + /** Set Check No. + * Check Number + */ + public void setCheckNo (String CheckNo); + + /** Get Check No. + * Check Number + */ + public String getCheckNo(); + /** Column name C_Invoice_ID */ public static final String COLUMNNAME_C_Invoice_ID = "C_Invoice_ID"; @@ -385,28 +411,6 @@ public interface I_C_Payment public org.compiere.model.I_C_Order getC_Order() throws RuntimeException; - /** Column name C_Payment_ID */ - public static final String COLUMNNAME_C_Payment_ID = "C_Payment_ID"; - - /** Set Payment. - * Payment identifier - */ - public void setC_Payment_ID (int C_Payment_ID); - - /** Get Payment. - * Payment identifier - */ - public int getC_Payment_ID(); - - /** Column name C_Payment_UU */ - public static final String COLUMNNAME_C_Payment_UU = "C_Payment_UU"; - - /** Set C_Payment_UU */ - public void setC_Payment_UU (String C_Payment_UU); - - /** Get C_Payment_UU */ - public String getC_Payment_UU(); - /** Column name C_PaymentBatch_ID */ public static final String COLUMNNAME_C_PaymentBatch_ID = "C_PaymentBatch_ID"; @@ -422,6 +426,19 @@ public interface I_C_Payment public org.compiere.model.I_C_PaymentBatch getC_PaymentBatch() throws RuntimeException; + /** Column name C_Payment_ID */ + public static final String COLUMNNAME_C_Payment_ID = "C_Payment_ID"; + + /** Set Payment. + * Payment identifier + */ + public void setC_Payment_ID (int C_Payment_ID); + + /** Get Payment. + * Payment identifier + */ + public int getC_Payment_ID(); + /** Column name C_PaymentProcessor_ID */ public static final String COLUMNNAME_C_PaymentProcessor_ID = "C_PaymentProcessor_ID"; @@ -437,6 +454,15 @@ public interface I_C_Payment public org.compiere.model.I_C_PaymentProcessor getC_PaymentProcessor() throws RuntimeException; + /** Column name C_Payment_UU */ + public static final String COLUMNNAME_C_Payment_UU = "C_Payment_UU"; + + /** Set C_Payment_UU */ + public void setC_Payment_UU (String C_Payment_UU); + + /** Get C_Payment_UU */ + public String getC_Payment_UU(); + /** Column name C_POSTenderType_ID */ public static final String COLUMNNAME_C_POSTenderType_ID = "C_POSTenderType_ID"; @@ -463,32 +489,6 @@ public interface I_C_Payment public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; - /** Column name ChargeAmt */ - public static final String COLUMNNAME_ChargeAmt = "ChargeAmt"; - - /** Set Charge amount. - * Charge Amount - */ - public void setChargeAmt (BigDecimal ChargeAmt); - - /** Get Charge amount. - * Charge Amount - */ - public BigDecimal getChargeAmt(); - - /** Column name CheckNo */ - public static final String COLUMNNAME_CheckNo = "CheckNo"; - - /** Set Check No. - * Check Number - */ - public void setCheckNo (String CheckNo); - - /** Get Check No. - * Check Number - */ - public String getCheckNo(); - /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -1018,6 +1018,32 @@ public interface I_C_Payment */ public boolean isR_CVV2Match(); + /** Column name Ref_Payment_ID */ + public static final String COLUMNNAME_Ref_Payment_ID = "Ref_Payment_ID"; + + /** Set Referenced Payment */ + public void setRef_Payment_ID (int Ref_Payment_ID); + + /** Get Referenced Payment */ + public int getRef_Payment_ID(); + + public org.compiere.model.I_C_Payment getRef_Payment() throws RuntimeException; + + /** Column name Reversal_ID */ + public static final String COLUMNNAME_Reversal_ID = "Reversal_ID"; + + /** Set Reversal ID. + * ID of document reversal + */ + public void setReversal_ID (int Reversal_ID); + + /** Get Reversal ID. + * ID of document reversal + */ + public int getReversal_ID(); + + public org.compiere.model.I_C_Payment getReversal() throws RuntimeException; + /** Column name R_Info */ public static final String COLUMNNAME_R_Info = "R_Info"; @@ -1031,6 +1057,19 @@ public interface I_C_Payment */ public String getR_Info(); + /** Column name RoutingNo */ + public static final String COLUMNNAME_RoutingNo = "RoutingNo"; + + /** Set Routing No. + * Bank Routing Number + */ + public void setRoutingNo (String RoutingNo); + + /** Get Routing No. + * Bank Routing Number + */ + public String getRoutingNo(); + /** Column name R_PnRef */ public static final String COLUMNNAME_R_PnRef = "R_PnRef"; @@ -1092,45 +1131,6 @@ public interface I_C_Payment /** Get Void Message */ public String getR_VoidMsg(); - /** Column name Ref_Payment_ID */ - public static final String COLUMNNAME_Ref_Payment_ID = "Ref_Payment_ID"; - - /** Set Referenced Payment */ - public void setRef_Payment_ID (int Ref_Payment_ID); - - /** Get Referenced Payment */ - public int getRef_Payment_ID(); - - public org.compiere.model.I_C_Payment getRef_Payment() throws RuntimeException; - - /** Column name Reversal_ID */ - public static final String COLUMNNAME_Reversal_ID = "Reversal_ID"; - - /** Set Reversal ID. - * ID of document reversal - */ - public void setReversal_ID (int Reversal_ID); - - /** Get Reversal ID. - * ID of document reversal - */ - public int getReversal_ID(); - - public org.compiere.model.I_C_Payment getReversal() throws RuntimeException; - - /** Column name RoutingNo */ - public static final String COLUMNNAME_RoutingNo = "RoutingNo"; - - /** Set Routing No. - * Bank Routing Number - */ - public void setRoutingNo (String RoutingNo); - - /** Get Routing No. - * Bank Routing Number - */ - public String getRoutingNo(); - /** Column name Swipe */ public static final String COLUMNNAME_Swipe = "Swipe"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_PaymentAllocate.java b/org.adempiere.base/src/org/compiere/model/I_C_PaymentAllocate.java index a9d5f758bf..17c5b83d0d 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_PaymentAllocate.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_PaymentAllocate.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_PaymentAllocate - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_PaymentAllocate { @@ -31,7 +31,7 @@ public interface I_C_PaymentAllocate public static final String Table_Name = "C_PaymentAllocate"; /** AD_Table_ID=812 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 812; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_C_PaymentAllocate */ public int getC_AllocationLine_ID(); - public I_C_AllocationLine getC_AllocationLine() throws RuntimeException; + public org.compiere.model.I_C_AllocationLine getC_AllocationLine() throws RuntimeException; /** Column name C_Invoice_ID */ public static final String COLUMNNAME_C_Invoice_ID = "C_Invoice_ID"; @@ -103,7 +103,7 @@ public interface I_C_PaymentAllocate */ public int getC_Invoice_ID(); - public I_C_Invoice getC_Invoice() throws RuntimeException; + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException; /** Column name C_PaymentAllocate_ID */ public static final String COLUMNNAME_C_PaymentAllocate_ID = "C_PaymentAllocate_ID"; @@ -118,6 +118,15 @@ public interface I_C_PaymentAllocate */ public int getC_PaymentAllocate_ID(); + /** Column name C_PaymentAllocate_UU */ + public static final String COLUMNNAME_C_PaymentAllocate_UU = "C_PaymentAllocate_UU"; + + /** Set C_PaymentAllocate_UU */ + public void setC_PaymentAllocate_UU (String C_PaymentAllocate_UU); + + /** Get C_PaymentAllocate_UU */ + public String getC_PaymentAllocate_UU(); + /** Column name C_Payment_ID */ public static final String COLUMNNAME_C_Payment_ID = "C_Payment_ID"; @@ -131,7 +140,7 @@ public interface I_C_PaymentAllocate */ public int getC_Payment_ID(); - public I_C_Payment getC_Payment() throws RuntimeException; + public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_PaymentBatch.java b/org.adempiere.base/src/org/compiere/model/I_C_PaymentBatch.java index b987780710..9cd8626195 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_PaymentBatch.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_PaymentBatch.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_PaymentBatch - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_PaymentBatch { @@ -31,7 +31,7 @@ public interface I_C_PaymentBatch public static final String Table_Name = "C_PaymentBatch"; /** AD_Table_ID=411 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 411; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_C_PaymentBatch */ public int getC_PaymentBatch_ID(); + /** Column name C_PaymentBatch_UU */ + public static final String COLUMNNAME_C_PaymentBatch_UU = "C_PaymentBatch_UU"; + + /** Set C_PaymentBatch_UU */ + public void setC_PaymentBatch_UU (String C_PaymentBatch_UU); + + /** Get C_PaymentBatch_UU */ + public String getC_PaymentBatch_UU(); + /** Column name C_PaymentProcessor_ID */ public static final String COLUMNNAME_C_PaymentProcessor_ID = "C_PaymentProcessor_ID"; @@ -88,7 +97,7 @@ public interface I_C_PaymentBatch */ public int getC_PaymentProcessor_ID(); - public I_C_PaymentProcessor getC_PaymentProcessor() throws RuntimeException; + public org.compiere.model.I_C_PaymentProcessor getC_PaymentProcessor() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_PaymentProcessor.java b/org.adempiere.base/src/org/compiere/model/I_C_PaymentProcessor.java index 4fd01f9972..951812dc72 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_PaymentProcessor.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_PaymentProcessor.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_PaymentProcessor - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_PaymentProcessor { @@ -237,28 +237,6 @@ public interface I_C_PaymentProcessor public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; - /** Column name C_PaymentProcessor_ID */ - public static final String COLUMNNAME_C_PaymentProcessor_ID = "C_PaymentProcessor_ID"; - - /** Set Payment Processor. - * Payment processor for electronic payments - */ - public void setC_PaymentProcessor_ID (int C_PaymentProcessor_ID); - - /** Get Payment Processor. - * Payment processor for electronic payments - */ - public int getC_PaymentProcessor_ID(); - - /** Column name C_PaymentProcessor_UU */ - public static final String COLUMNNAME_C_PaymentProcessor_UU = "C_PaymentProcessor_UU"; - - /** Set C_PaymentProcessor_UU */ - public void setC_PaymentProcessor_UU (String C_PaymentProcessor_UU); - - /** Get C_PaymentProcessor_UU */ - public String getC_PaymentProcessor_UU(); - /** Column name Commission */ public static final String COLUMNNAME_Commission = "Commission"; @@ -285,6 +263,28 @@ public interface I_C_PaymentProcessor */ public BigDecimal getCostPerTrx(); + /** Column name C_PaymentProcessor_ID */ + public static final String COLUMNNAME_C_PaymentProcessor_ID = "C_PaymentProcessor_ID"; + + /** Set Payment Processor. + * Payment processor for electronic payments + */ + public void setC_PaymentProcessor_ID (int C_PaymentProcessor_ID); + + /** Get Payment Processor. + * Payment processor for electronic payments + */ + public int getC_PaymentProcessor_ID(); + + /** Column name C_PaymentProcessor_UU */ + public static final String COLUMNNAME_C_PaymentProcessor_UU = "C_PaymentProcessor_UU"; + + /** Set C_PaymentProcessor_UU */ + public void setC_PaymentProcessor_UU (String C_PaymentProcessor_UU); + + /** Get C_PaymentProcessor_UU */ + public String getC_PaymentProcessor_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_PaymentTerm.java b/org.adempiere.base/src/org/compiere/model/I_C_PaymentTerm.java index 079970db66..e1dcd7a89f 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_PaymentTerm.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_PaymentTerm.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_PaymentTerm - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_PaymentTerm { @@ -88,6 +88,15 @@ public interface I_C_PaymentTerm */ public int getC_PaymentTerm_ID(); + /** Column name C_PaymentTerm_UU */ + public static final String COLUMNNAME_C_PaymentTerm_UU = "C_PaymentTerm_UU"; + + /** Set C_PaymentTerm_UU */ + public void setC_PaymentTerm_UU (String C_PaymentTerm_UU); + + /** Get C_PaymentTerm_UU */ + public String getC_PaymentTerm_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Period.java b/org.adempiere.base/src/org/compiere/model/I_C_Period.java index 477e326acd..2b6d234c35 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Period.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Period.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Period - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Period { @@ -31,7 +31,7 @@ public interface I_C_Period public static final String Table_Name = "C_Period"; /** AD_Table_ID=145 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 145; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_C_Period */ public int getC_Period_ID(); + /** Column name C_Period_UU */ + public static final String COLUMNNAME_C_Period_UU = "C_Period_UU"; + + /** Set C_Period_UU */ + public void setC_Period_UU (String C_Period_UU); + + /** Get C_Period_UU */ + public String getC_Period_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -104,7 +113,7 @@ public interface I_C_Period */ public int getC_Year_ID(); - public I_C_Year getC_Year() throws RuntimeException; + public org.compiere.model.I_C_Year getC_Year() throws RuntimeException; /** Column name EndDate */ public static final String COLUMNNAME_EndDate = "EndDate"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_PeriodControl.java b/org.adempiere.base/src/org/compiere/model/I_C_PeriodControl.java index b9cc45f72e..b64c1e3d48 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_PeriodControl.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_PeriodControl.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_PeriodControl - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_PeriodControl { @@ -31,7 +31,7 @@ public interface I_C_PeriodControl public static final String Table_Name = "C_PeriodControl"; /** AD_Table_ID=229 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 229; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -71,6 +71,15 @@ public interface I_C_PeriodControl /** Get Period Control */ public int getC_PeriodControl_ID(); + /** Column name C_PeriodControl_UU */ + public static final String COLUMNNAME_C_PeriodControl_UU = "C_PeriodControl_UU"; + + /** Set C_PeriodControl_UU */ + public void setC_PeriodControl_UU (String C_PeriodControl_UU); + + /** Get C_PeriodControl_UU */ + public String getC_PeriodControl_UU(); + /** Column name C_Period_ID */ public static final String COLUMNNAME_C_Period_ID = "C_Period_ID"; @@ -84,7 +93,7 @@ public interface I_C_PeriodControl */ public int getC_Period_ID(); - public I_C_Period getC_Period() throws RuntimeException; + public org.compiere.model.I_C_Period getC_Period() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Phase.java b/org.adempiere.base/src/org/compiere/model/I_C_Phase.java index c15c6078a0..e3e4471c4f 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Phase.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Phase.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Phase - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Phase { @@ -31,7 +31,7 @@ public interface I_C_Phase public static final String Table_Name = "C_Phase"; /** AD_Table_ID=577 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 577; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_C_Phase */ public int getC_Phase_ID(); + /** Column name C_Phase_UU */ + public static final String COLUMNNAME_C_Phase_UU = "C_Phase_UU"; + + /** Set C_Phase_UU */ + public void setC_Phase_UU (String C_Phase_UU); + + /** Get C_Phase_UU */ + public String getC_Phase_UU(); + /** Column name C_ProjectType_ID */ public static final String COLUMNNAME_C_ProjectType_ID = "C_ProjectType_ID"; @@ -88,7 +97,7 @@ public interface I_C_Phase */ public int getC_ProjectType_ID(); - public I_C_ProjectType getC_ProjectType() throws RuntimeException; + public org.compiere.model.I_C_ProjectType getC_ProjectType() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -158,7 +167,7 @@ public interface I_C_Phase */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Project.java b/org.adempiere.base/src/org/compiere/model/I_C_Project.java index 14ae3ea40e..37b77cfe62 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Project.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Project.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Project - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Project { @@ -31,7 +31,7 @@ public interface I_C_Project public static final String Table_Name = "C_Project"; /** AD_Table_ID=203 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 203; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_Project */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -90,7 +90,7 @@ public interface I_C_Project */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_BPartner_Location_ID */ public static final String COLUMNNAME_C_BPartner_Location_ID = "C_BPartner_Location_ID"; @@ -105,7 +105,7 @@ public interface I_C_Project */ public int getC_BPartner_Location_ID(); - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; /** Column name C_BPartnerSR_ID */ public static final String COLUMNNAME_C_BPartnerSR_ID = "C_BPartnerSR_ID"; @@ -120,7 +120,7 @@ public interface I_C_Project */ public int getC_BPartnerSR_ID(); - public I_C_BPartner getC_BPartnerSR() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartnerSR() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -135,7 +135,7 @@ public interface I_C_Project */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -150,7 +150,7 @@ public interface I_C_Project */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name CommittedAmt */ public static final String COLUMNNAME_CommittedAmt = "CommittedAmt"; @@ -204,7 +204,7 @@ public interface I_C_Project */ public int getC_PaymentTerm_ID(); - public I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException; + public org.compiere.model.I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException; /** Column name C_Phase_ID */ public static final String COLUMNNAME_C_Phase_ID = "C_Phase_ID"; @@ -219,7 +219,7 @@ public interface I_C_Project */ public int getC_Phase_ID(); - public I_C_Phase getC_Phase() throws RuntimeException; + public org.compiere.model.I_C_Phase getC_Phase() throws RuntimeException; /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -247,6 +247,15 @@ public interface I_C_Project */ public String getC_ProjectType_ID(); + /** Column name C_Project_UU */ + public static final String COLUMNNAME_C_Project_UU = "C_Project_UU"; + + /** Set C_Project_UU */ + public void setC_Project_UU (String C_Project_UU); + + /** Get C_Project_UU */ + public String getC_Project_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -406,7 +415,7 @@ public interface I_C_Project */ public int getM_PriceList_Version_ID(); - public I_M_PriceList_Version getM_PriceList_Version() throws RuntimeException; + public org.compiere.model.I_M_PriceList_Version getM_PriceList_Version() throws RuntimeException; /** Column name M_Warehouse_ID */ public static final String COLUMNNAME_M_Warehouse_ID = "M_Warehouse_ID"; @@ -421,7 +430,7 @@ public interface I_C_Project */ public int getM_Warehouse_ID(); - public I_M_Warehouse getM_Warehouse() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; @@ -588,7 +597,7 @@ public interface I_C_Project */ public int getSalesRep_ID(); - public I_AD_User getSalesRep() throws RuntimeException; + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_ProjectIssue.java b/org.adempiere.base/src/org/compiere/model/I_C_ProjectIssue.java index 7d88229c24..0006867192 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_ProjectIssue.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_ProjectIssue.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_ProjectIssue - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_ProjectIssue { @@ -31,7 +31,7 @@ public interface I_C_ProjectIssue public static final String Table_Name = "C_ProjectIssue"; /** AD_Table_ID=623 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 623; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_ProjectIssue */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name C_ProjectIssue_ID */ public static final String COLUMNNAME_C_ProjectIssue_ID = "C_ProjectIssue_ID"; @@ -90,6 +90,15 @@ public interface I_C_ProjectIssue */ public int getC_ProjectIssue_ID(); + /** Column name C_ProjectIssue_UU */ + public static final String COLUMNNAME_C_ProjectIssue_UU = "C_ProjectIssue_UU"; + + /** Set C_ProjectIssue_UU */ + public void setC_ProjectIssue_UU (String C_ProjectIssue_UU); + + /** Get C_ProjectIssue_UU */ + public String getC_ProjectIssue_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -173,7 +182,7 @@ public interface I_C_ProjectIssue */ public int getM_InOutLine_ID(); - public I_M_InOutLine getM_InOutLine() throws RuntimeException; + public org.compiere.model.I_M_InOutLine getM_InOutLine() throws RuntimeException; /** Column name M_Locator_ID */ public static final String COLUMNNAME_M_Locator_ID = "M_Locator_ID"; @@ -229,7 +238,7 @@ public interface I_C_ProjectIssue */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Posted */ public static final String COLUMNNAME_Posted = "Posted"; @@ -292,7 +301,7 @@ public interface I_C_ProjectIssue */ public int getS_TimeExpenseLine_ID(); - public I_S_TimeExpenseLine getS_TimeExpenseLine() throws RuntimeException; + public org.compiere.model.I_S_TimeExpenseLine getS_TimeExpenseLine() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_ProjectIssueMA.java b/org.adempiere.base/src/org/compiere/model/I_C_ProjectIssueMA.java index 5e9a842a14..720e23a69c 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_ProjectIssueMA.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_ProjectIssueMA.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_ProjectIssueMA - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_ProjectIssueMA { @@ -31,7 +31,7 @@ public interface I_C_ProjectIssueMA public static final String Table_Name = "C_ProjectIssueMA"; /** AD_Table_ID=761 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 761; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_C_ProjectIssueMA */ public int getC_ProjectIssue_ID(); - public I_C_ProjectIssue getC_ProjectIssue() throws RuntimeException; + public org.compiere.model.I_C_ProjectIssue getC_ProjectIssue() throws RuntimeException; + + /** Column name C_ProjectIssueMA_UU */ + public static final String COLUMNNAME_C_ProjectIssueMA_UU = "C_ProjectIssueMA_UU"; + + /** Set C_ProjectIssueMA_UU */ + public void setC_ProjectIssueMA_UU (String C_ProjectIssueMA_UU); + + /** Get C_ProjectIssueMA_UU */ + public String getC_ProjectIssueMA_UU(); /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_ProjectLine.java b/org.adempiere.base/src/org/compiere/model/I_C_ProjectLine.java index cdcb86b592..0cdd0b5d41 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_ProjectLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_ProjectLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_ProjectLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_ProjectLine { @@ -31,7 +31,7 @@ public interface I_C_ProjectLine public static final String Table_Name = "C_ProjectLine"; /** AD_Table_ID=434 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 434; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -101,7 +101,7 @@ public interface I_C_ProjectLine */ public int getC_Order_ID(); - public I_C_Order getC_Order() throws RuntimeException; + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException; /** Column name C_OrderPO_ID */ public static final String COLUMNNAME_C_OrderPO_ID = "C_OrderPO_ID"; @@ -116,7 +116,7 @@ public interface I_C_ProjectLine */ public int getC_OrderPO_ID(); - public I_C_Order getC_OrderPO() throws RuntimeException; + public org.compiere.model.I_C_Order getC_OrderPO() throws RuntimeException; /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -131,7 +131,7 @@ public interface I_C_ProjectLine */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name C_ProjectIssue_ID */ public static final String COLUMNNAME_C_ProjectIssue_ID = "C_ProjectIssue_ID"; @@ -146,7 +146,7 @@ public interface I_C_ProjectLine */ public int getC_ProjectIssue_ID(); - public I_C_ProjectIssue getC_ProjectIssue() throws RuntimeException; + public org.compiere.model.I_C_ProjectIssue getC_ProjectIssue() throws RuntimeException; /** Column name C_ProjectLine_ID */ public static final String COLUMNNAME_C_ProjectLine_ID = "C_ProjectLine_ID"; @@ -161,6 +161,15 @@ public interface I_C_ProjectLine */ public int getC_ProjectLine_ID(); + /** Column name C_ProjectLine_UU */ + public static final String COLUMNNAME_C_ProjectLine_UU = "C_ProjectLine_UU"; + + /** Set C_ProjectLine_UU */ + public void setC_ProjectLine_UU (String C_ProjectLine_UU); + + /** Get C_ProjectLine_UU */ + public String getC_ProjectLine_UU(); + /** Column name C_ProjectPhase_ID */ public static final String COLUMNNAME_C_ProjectPhase_ID = "C_ProjectPhase_ID"; @@ -174,7 +183,7 @@ public interface I_C_ProjectLine */ public int getC_ProjectPhase_ID(); - public I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException; + public org.compiere.model.I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException; /** Column name C_ProjectTask_ID */ public static final String COLUMNNAME_C_ProjectTask_ID = "C_ProjectTask_ID"; @@ -189,7 +198,7 @@ public interface I_C_ProjectLine */ public int getC_ProjectTask_ID(); - public I_C_ProjectTask getC_ProjectTask() throws RuntimeException; + public org.compiere.model.I_C_ProjectTask getC_ProjectTask() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -307,7 +316,7 @@ public interface I_C_ProjectLine */ public int getM_Product_Category_ID(); - public I_M_Product_Category getM_Product_Category() throws RuntimeException; + public org.compiere.model.I_M_Product_Category getM_Product_Category() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -322,7 +331,7 @@ public interface I_C_ProjectLine */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name PlannedAmt */ public static final String COLUMNNAME_PlannedAmt = "PlannedAmt"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_ProjectPhase.java b/org.adempiere.base/src/org/compiere/model/I_C_ProjectPhase.java index 117481a013..9b40407728 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_ProjectPhase.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_ProjectPhase.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_ProjectPhase - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_ProjectPhase { @@ -31,7 +31,7 @@ public interface I_C_ProjectPhase public static final String Table_Name = "C_ProjectPhase"; /** AD_Table_ID=576 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 576; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_C_ProjectPhase */ public int getC_Order_ID(); - public I_C_Order getC_Order() throws RuntimeException; + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException; /** Column name C_Phase_ID */ public static final String COLUMNNAME_C_Phase_ID = "C_Phase_ID"; @@ -103,7 +103,7 @@ public interface I_C_ProjectPhase */ public int getC_Phase_ID(); - public I_C_Phase getC_Phase() throws RuntimeException; + public org.compiere.model.I_C_Phase getC_Phase() throws RuntimeException; /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -118,7 +118,7 @@ public interface I_C_ProjectPhase */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name C_ProjectPhase_ID */ public static final String COLUMNNAME_C_ProjectPhase_ID = "C_ProjectPhase_ID"; @@ -133,6 +133,15 @@ public interface I_C_ProjectPhase */ public int getC_ProjectPhase_ID(); + /** Column name C_ProjectPhase_UU */ + public static final String COLUMNNAME_C_ProjectPhase_UU = "C_ProjectPhase_UU"; + + /** Set C_ProjectPhase_UU */ + public void setC_ProjectPhase_UU (String C_ProjectPhase_UU); + + /** Get C_ProjectPhase_UU */ + public String getC_ProjectPhase_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -253,7 +262,7 @@ public interface I_C_ProjectPhase */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_ProjectTask.java b/org.adempiere.base/src/org/compiere/model/I_C_ProjectTask.java index 88849f1c1c..27b1c149eb 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_ProjectTask.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_ProjectTask.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_ProjectTask - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_ProjectTask { @@ -31,7 +31,7 @@ public interface I_C_ProjectTask public static final String Table_Name = "C_ProjectTask"; /** AD_Table_ID=584 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 584; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_C_ProjectTask */ public int getC_ProjectPhase_ID(); - public I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException; + public org.compiere.model.I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException; /** Column name C_ProjectTask_ID */ public static final String COLUMNNAME_C_ProjectTask_ID = "C_ProjectTask_ID"; @@ -103,6 +103,15 @@ public interface I_C_ProjectTask */ public int getC_ProjectTask_ID(); + /** Column name C_ProjectTask_UU */ + public static final String COLUMNNAME_C_ProjectTask_UU = "C_ProjectTask_UU"; + + /** Set C_ProjectTask_UU */ + public void setC_ProjectTask_UU (String C_ProjectTask_UU); + + /** Get C_ProjectTask_UU */ + public String getC_ProjectTask_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -132,7 +141,7 @@ public interface I_C_ProjectTask */ public int getC_Task_ID(); - public I_C_Task getC_Task() throws RuntimeException; + public org.compiere.model.I_C_Task getC_Task() throws RuntimeException; /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; @@ -186,7 +195,7 @@ public interface I_C_ProjectTask */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_ProjectType.java b/org.adempiere.base/src/org/compiere/model/I_C_ProjectType.java index dcb019f80a..0a9d534de9 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_ProjectType.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_ProjectType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_ProjectType - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_ProjectType { @@ -31,7 +31,7 @@ public interface I_C_ProjectType public static final String Table_Name = "C_ProjectType"; /** AD_Table_ID=575 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 575; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,6 +75,15 @@ public interface I_C_ProjectType */ public int getC_ProjectType_ID(); + /** Column name C_ProjectType_UU */ + public static final String COLUMNNAME_C_ProjectType_UU = "C_ProjectType_UU"; + + /** Set C_ProjectType_UU */ + public void setC_ProjectType_UU (String C_ProjectType_UU); + + /** Get C_ProjectType_UU */ + public String getC_ProjectType_UU(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Project_Acct.java b/org.adempiere.base/src/org/compiere/model/I_C_Project_Acct.java index 43d86d3cb6..ccf48ab357 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Project_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Project_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Project_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Project_Acct { @@ -31,7 +31,7 @@ public interface I_C_Project_Acct public static final String Table_Name = "C_Project_Acct"; /** AD_Table_ID=204 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 204; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,16 @@ public interface I_C_Project_Acct */ public int getC_AcctSchema_ID(); - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + + /** Column name C_Project_Acct_UU */ + public static final String COLUMNNAME_C_Project_Acct_UU = "C_Project_Acct_UU"; + + /** Set C_Project_Acct_UU */ + public void setC_Project_Acct_UU (String C_Project_Acct_UU); + + /** Get C_Project_Acct_UU */ + public String getC_Project_Acct_UU(); /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -90,7 +99,7 @@ public interface I_C_Project_Acct */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Recurring.java b/org.adempiere.base/src/org/compiere/model/I_C_Recurring.java index 100514c098..d160ac908e 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Recurring.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Recurring.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Recurring - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Recurring { @@ -31,7 +31,7 @@ public interface I_C_Recurring public static final String Table_Name = "C_Recurring"; /** AD_Table_ID=574 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 574; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_Recurring */ public int getC_Invoice_ID(); - public I_C_Invoice getC_Invoice() throws RuntimeException; + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException; /** Column name C_Order_ID */ public static final String COLUMNNAME_C_Order_ID = "C_Order_ID"; @@ -90,7 +90,7 @@ public interface I_C_Recurring */ public int getC_Order_ID(); - public I_C_Order getC_Order() throws RuntimeException; + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException; /** Column name C_Payment_ID */ public static final String COLUMNNAME_C_Payment_ID = "C_Payment_ID"; @@ -105,7 +105,7 @@ public interface I_C_Recurring */ public int getC_Payment_ID(); - public I_C_Payment getC_Payment() throws RuntimeException; + public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException; /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -120,7 +120,7 @@ public interface I_C_Recurring */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -151,6 +151,15 @@ public interface I_C_Recurring */ public int getC_Recurring_ID(); + /** Column name C_Recurring_UU */ + public static final String COLUMNNAME_C_Recurring_UU = "C_Recurring_UU"; + + /** Set C_Recurring_UU */ + public void setC_Recurring_UU (String C_Recurring_UU); + + /** Get C_Recurring_UU */ + public String getC_Recurring_UU(); + /** Column name DateLastRun */ public static final String COLUMNNAME_DateLastRun = "DateLastRun"; @@ -229,7 +238,7 @@ public interface I_C_Recurring */ public int getGL_JournalBatch_ID(); - public I_GL_JournalBatch getGL_JournalBatch() throws RuntimeException; + public org.compiere.model.I_GL_JournalBatch getGL_JournalBatch() throws RuntimeException; /** Column name Help */ public static final String COLUMNNAME_Help = "Help"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Recurring_Run.java b/org.adempiere.base/src/org/compiere/model/I_C_Recurring_Run.java index 965544f73d..657ad5fb0e 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Recurring_Run.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Recurring_Run.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Recurring_Run - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Recurring_Run { @@ -31,7 +31,7 @@ public interface I_C_Recurring_Run public static final String Table_Name = "C_Recurring_Run"; /** AD_Table_ID=573 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 573; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_Recurring_Run */ public int getC_Invoice_ID(); - public I_C_Invoice getC_Invoice() throws RuntimeException; + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException; /** Column name C_Order_ID */ public static final String COLUMNNAME_C_Order_ID = "C_Order_ID"; @@ -90,7 +90,7 @@ public interface I_C_Recurring_Run */ public int getC_Order_ID(); - public I_C_Order getC_Order() throws RuntimeException; + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException; /** Column name C_Payment_ID */ public static final String COLUMNNAME_C_Payment_ID = "C_Payment_ID"; @@ -105,7 +105,7 @@ public interface I_C_Recurring_Run */ public int getC_Payment_ID(); - public I_C_Payment getC_Payment() throws RuntimeException; + public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException; /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -120,7 +120,7 @@ public interface I_C_Recurring_Run */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -151,7 +151,7 @@ public interface I_C_Recurring_Run */ public int getC_Recurring_ID(); - public I_C_Recurring getC_Recurring() throws RuntimeException; + public org.compiere.model.I_C_Recurring getC_Recurring() throws RuntimeException; /** Column name C_Recurring_Run_ID */ public static final String COLUMNNAME_C_Recurring_Run_ID = "C_Recurring_Run_ID"; @@ -166,6 +166,15 @@ public interface I_C_Recurring_Run */ public int getC_Recurring_Run_ID(); + /** Column name C_Recurring_Run_UU */ + public static final String COLUMNNAME_C_Recurring_Run_UU = "C_Recurring_Run_UU"; + + /** Set C_Recurring_Run_UU */ + public void setC_Recurring_Run_UU (String C_Recurring_Run_UU); + + /** Get C_Recurring_Run_UU */ + public String getC_Recurring_Run_UU(); + /** Column name DateDoc */ public static final String COLUMNNAME_DateDoc = "DateDoc"; @@ -192,7 +201,7 @@ public interface I_C_Recurring_Run */ public int getGL_JournalBatch_ID(); - public I_GL_JournalBatch getGL_JournalBatch() throws RuntimeException; + public org.compiere.model.I_GL_JournalBatch getGL_JournalBatch() throws RuntimeException; /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Region.java b/org.adempiere.base/src/org/compiere/model/I_C_Region.java index 7172b45e71..509c175974 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Region.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Region.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Region - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Region { @@ -31,7 +31,7 @@ public interface I_C_Region public static final String Table_Name = "C_Region"; /** AD_Table_ID=164 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 164; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_Region */ public int getC_Country_ID(); - public I_C_Country getC_Country() throws RuntimeException; + public org.compiere.model.I_C_Country getC_Country() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -106,6 +106,15 @@ public interface I_C_Region */ public int getC_Region_ID(); + /** Column name C_Region_UU */ + public static final String COLUMNNAME_C_Region_UU = "C_Region_UU"; + + /** Set C_Region_UU */ + public void setC_Region_UU (String C_Region_UU); + + /** Get C_Region_UU */ + public String getC_Region_UU(); + /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Remuneration.java b/org.adempiere.base/src/org/compiere/model/I_C_Remuneration.java index 129007872f..e6e2a59d6b 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Remuneration.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Remuneration.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Remuneration - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Remuneration { @@ -31,7 +31,7 @@ public interface I_C_Remuneration public static final String Table_Name = "C_Remuneration"; /** AD_Table_ID=792 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 792; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -91,6 +91,15 @@ public interface I_C_Remuneration */ public int getC_Remuneration_ID(); + /** Column name C_Remuneration_UU */ + public static final String COLUMNNAME_C_Remuneration_UU = "C_Remuneration_UU"; + + /** Set C_Remuneration_UU */ + public void setC_Remuneration_UU (String C_Remuneration_UU); + + /** Get C_Remuneration_UU */ + public String getC_Remuneration_UU(); + /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_RevenueRecognition.java b/org.adempiere.base/src/org/compiere/model/I_C_RevenueRecognition.java index 4e4427c0e6..104cba1643 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_RevenueRecognition.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_RevenueRecognition.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_RevenueRecognition - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_RevenueRecognition { @@ -31,7 +31,7 @@ public interface I_C_RevenueRecognition public static final String Table_Name = "C_RevenueRecognition"; /** AD_Table_ID=336 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 336; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -91,6 +91,15 @@ public interface I_C_RevenueRecognition */ public int getC_RevenueRecognition_ID(); + /** Column name C_RevenueRecognition_UU */ + public static final String COLUMNNAME_C_RevenueRecognition_UU = "C_RevenueRecognition_UU"; + + /** Set C_RevenueRecognition_UU */ + public void setC_RevenueRecognition_UU (String C_RevenueRecognition_UU); + + /** Get C_RevenueRecognition_UU */ + public String getC_RevenueRecognition_UU(); + /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_RevenueRecognition_Plan.java b/org.adempiere.base/src/org/compiere/model/I_C_RevenueRecognition_Plan.java index 997a3fa48c..734c0e0c54 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_RevenueRecognition_Plan.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_RevenueRecognition_Plan.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_RevenueRecognition_Plan - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_RevenueRecognition_Plan { @@ -31,7 +31,7 @@ public interface I_C_RevenueRecognition_Plan public static final String Table_Name = "C_RevenueRecognition_Plan"; /** AD_Table_ID=443 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 443; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_RevenueRecognition_Plan */ public int getC_AcctSchema_ID(); - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -90,7 +90,7 @@ public interface I_C_RevenueRecognition_Plan */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name C_InvoiceLine_ID */ public static final String COLUMNNAME_C_InvoiceLine_ID = "C_InvoiceLine_ID"; @@ -105,7 +105,7 @@ public interface I_C_RevenueRecognition_Plan */ public int getC_InvoiceLine_ID(); - public I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException; + public org.compiere.model.I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -136,7 +136,7 @@ public interface I_C_RevenueRecognition_Plan */ public int getC_RevenueRecognition_ID(); - public I_C_RevenueRecognition getC_RevenueRecognition() throws RuntimeException; + public org.compiere.model.I_C_RevenueRecognition getC_RevenueRecognition() throws RuntimeException; /** Column name C_RevenueRecognition_Plan_ID */ public static final String COLUMNNAME_C_RevenueRecognition_Plan_ID = "C_RevenueRecognition_Plan_ID"; @@ -151,6 +151,15 @@ public interface I_C_RevenueRecognition_Plan */ public int getC_RevenueRecognition_Plan_ID(); + /** Column name C_RevenueRecognition_Plan_UU */ + public static final String COLUMNNAME_C_RevenueRecognition_Plan_UU = "C_RevenueRecognition_Plan_UU"; + + /** Set C_RevenueRecognition_Plan_UU */ + public void setC_RevenueRecognition_Plan_UU (String C_RevenueRecognition_Plan_UU); + + /** Get C_RevenueRecognition_Plan_UU */ + public String getC_RevenueRecognition_Plan_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_RevenueRecognition_Run.java b/org.adempiere.base/src/org/compiere/model/I_C_RevenueRecognition_Run.java index b4428e1137..f96245cd76 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_RevenueRecognition_Run.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_RevenueRecognition_Run.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_RevenueRecognition_Run - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_RevenueRecognition_Run { @@ -31,7 +31,7 @@ public interface I_C_RevenueRecognition_Run public static final String Table_Name = "C_RevenueRecognition_Run"; /** AD_Table_ID=444 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 444; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -91,7 +91,7 @@ public interface I_C_RevenueRecognition_Run */ public int getC_RevenueRecognition_Plan_ID(); - public I_C_RevenueRecognition_Plan getC_RevenueRecognition_Plan() throws RuntimeException; + public org.compiere.model.I_C_RevenueRecognition_Plan getC_RevenueRecognition_Plan() throws RuntimeException; /** Column name C_RevenueRecognition_Run_ID */ public static final String COLUMNNAME_C_RevenueRecognition_Run_ID = "C_RevenueRecognition_Run_ID"; @@ -106,6 +106,15 @@ public interface I_C_RevenueRecognition_Run */ public int getC_RevenueRecognition_Run_ID(); + /** Column name C_RevenueRecognition_Run_UU */ + public static final String COLUMNNAME_C_RevenueRecognition_Run_UU = "C_RevenueRecognition_Run_UU"; + + /** Set C_RevenueRecognition_Run_UU */ + public void setC_RevenueRecognition_Run_UU (String C_RevenueRecognition_Run_UU); + + /** Get C_RevenueRecognition_Run_UU */ + public String getC_RevenueRecognition_Run_UU(); + /** Column name GL_Journal_ID */ public static final String COLUMNNAME_GL_Journal_ID = "GL_Journal_ID"; @@ -119,7 +128,7 @@ public interface I_C_RevenueRecognition_Run */ public int getGL_Journal_ID(); - public I_GL_Journal getGL_Journal() throws RuntimeException; + public org.compiere.model.I_GL_Journal getGL_Journal() throws RuntimeException; /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_RfQ.java b/org.adempiere.base/src/org/compiere/model/I_C_RfQ.java index 97ec3d732f..336be8519d 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_RfQ.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_RfQ.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_RfQ - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_RfQ { @@ -31,7 +31,7 @@ public interface I_C_RfQ public static final String Table_Name = "C_RfQ"; /** AD_Table_ID=677 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 677; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_RfQ */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -90,7 +90,7 @@ public interface I_C_RfQ */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_BPartner_Location_ID */ public static final String COLUMNNAME_C_BPartner_Location_ID = "C_BPartner_Location_ID"; @@ -105,7 +105,7 @@ public interface I_C_RfQ */ public int getC_BPartner_Location_ID(); - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -120,7 +120,7 @@ public interface I_C_RfQ */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name CopyLines */ public static final String COLUMNNAME_CopyLines = "CopyLines"; @@ -144,7 +144,7 @@ public interface I_C_RfQ */ public int getC_Order_ID(); - public I_C_Order getC_Order() throws RuntimeException; + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -210,7 +210,16 @@ public interface I_C_RfQ */ public int getC_RfQ_Topic_ID(); - public I_C_RfQ_Topic getC_RfQ_Topic() throws RuntimeException; + public org.compiere.model.I_C_RfQ_Topic getC_RfQ_Topic() throws RuntimeException; + + /** Column name C_RfQ_UU */ + public static final String COLUMNNAME_C_RfQ_UU = "C_RfQ_UU"; + + /** Set C_RfQ_UU */ + public void setC_RfQ_UU (String C_RfQ_UU); + + /** Get C_RfQ_UU */ + public String getC_RfQ_UU(); /** Column name DateResponse */ public static final String COLUMNNAME_DateResponse = "DateResponse"; @@ -473,7 +482,7 @@ public interface I_C_RfQ */ public int getSalesRep_ID(); - public I_AD_User getSalesRep() throws RuntimeException; + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_RfQLine.java b/org.adempiere.base/src/org/compiere/model/I_C_RfQLine.java index 28e14b9d54..c5cba8b186 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_RfQLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_RfQLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_RfQLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_RfQLine { @@ -31,7 +31,7 @@ public interface I_C_RfQLine public static final String Table_Name = "C_RfQLine"; /** AD_Table_ID=676 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 676; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -91,7 +91,7 @@ public interface I_C_RfQLine */ public int getC_RfQ_ID(); - public I_C_RfQ getC_RfQ() throws RuntimeException; + public org.compiere.model.I_C_RfQ getC_RfQ() throws RuntimeException; /** Column name C_RfQLine_ID */ public static final String COLUMNNAME_C_RfQLine_ID = "C_RfQLine_ID"; @@ -106,6 +106,15 @@ public interface I_C_RfQLine */ public int getC_RfQLine_ID(); + /** Column name C_RfQLine_UU */ + public static final String COLUMNNAME_C_RfQLine_UU = "C_RfQLine_UU"; + + /** Set C_RfQLine_UU */ + public void setC_RfQLine_UU (String C_RfQLine_UU); + + /** Get C_RfQLine_UU */ + public String getC_RfQLine_UU(); + /** Column name DateWorkComplete */ public static final String COLUMNNAME_DateWorkComplete = "DateWorkComplete"; @@ -225,7 +234,7 @@ public interface I_C_RfQLine */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_RfQLineQty.java b/org.adempiere.base/src/org/compiere/model/I_C_RfQLineQty.java index 4f07e8cbce..82d31fea1c 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_RfQLineQty.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_RfQLineQty.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_RfQLineQty - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_RfQLineQty { @@ -31,7 +31,7 @@ public interface I_C_RfQLineQty public static final String Table_Name = "C_RfQLineQty"; /** AD_Table_ID=675 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 675; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -117,7 +117,7 @@ public interface I_C_RfQLineQty */ public int getC_RfQLine_ID(); - public I_C_RfQLine getC_RfQLine() throws RuntimeException; + public org.compiere.model.I_C_RfQLine getC_RfQLine() throws RuntimeException; /** Column name C_RfQLineQty_ID */ public static final String COLUMNNAME_C_RfQLineQty_ID = "C_RfQLineQty_ID"; @@ -132,6 +132,15 @@ public interface I_C_RfQLineQty */ public int getC_RfQLineQty_ID(); + /** Column name C_RfQLineQty_UU */ + public static final String COLUMNNAME_C_RfQLineQty_UU = "C_RfQLineQty_UU"; + + /** Set C_RfQLineQty_UU */ + public void setC_RfQLineQty_UU (String C_RfQLineQty_UU); + + /** Get C_RfQLineQty_UU */ + public String getC_RfQLineQty_UU(); + /** Column name C_UOM_ID */ public static final String COLUMNNAME_C_UOM_ID = "C_UOM_ID"; @@ -145,7 +154,7 @@ public interface I_C_RfQLineQty */ public int getC_UOM_ID(); - public I_C_UOM getC_UOM() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException; /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_RfQResponse.java b/org.adempiere.base/src/org/compiere/model/I_C_RfQResponse.java index 04c549988b..e50342c3cf 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_RfQResponse.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_RfQResponse.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_RfQResponse - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_RfQResponse { @@ -31,7 +31,7 @@ public interface I_C_RfQResponse public static final String Table_Name = "C_RfQResponse"; /** AD_Table_ID=674 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 674; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_RfQResponse */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -90,7 +90,7 @@ public interface I_C_RfQResponse */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_BPartner_Location_ID */ public static final String COLUMNNAME_C_BPartner_Location_ID = "C_BPartner_Location_ID"; @@ -105,7 +105,7 @@ public interface I_C_RfQResponse */ public int getC_BPartner_Location_ID(); - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -120,7 +120,7 @@ public interface I_C_RfQResponse */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name CheckComplete */ public static final String COLUMNNAME_CheckComplete = "CheckComplete"; @@ -144,7 +144,7 @@ public interface I_C_RfQResponse */ public int getC_Order_ID(); - public I_C_Order getC_Order() throws RuntimeException; + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -175,7 +175,7 @@ public interface I_C_RfQResponse */ public int getC_RfQ_ID(); - public I_C_RfQ getC_RfQ() throws RuntimeException; + public org.compiere.model.I_C_RfQ getC_RfQ() throws RuntimeException; /** Column name C_RfQResponse_ID */ public static final String COLUMNNAME_C_RfQResponse_ID = "C_RfQResponse_ID"; @@ -190,6 +190,15 @@ public interface I_C_RfQResponse */ public int getC_RfQResponse_ID(); + /** Column name C_RfQResponse_UU */ + public static final String COLUMNNAME_C_RfQResponse_UU = "C_RfQResponse_UU"; + + /** Set C_RfQResponse_UU */ + public void setC_RfQResponse_UU (String C_RfQResponse_UU); + + /** Get C_RfQResponse_UU */ + public String getC_RfQResponse_UU(); + /** Column name DateInvited */ public static final String COLUMNNAME_DateInvited = "DateInvited"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_RfQResponseLine.java b/org.adempiere.base/src/org/compiere/model/I_C_RfQResponseLine.java index 4361321266..238118ad33 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_RfQResponseLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_RfQResponseLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_RfQResponseLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_RfQResponseLine { @@ -31,7 +31,7 @@ public interface I_C_RfQResponseLine public static final String Table_Name = "C_RfQResponseLine"; /** AD_Table_ID=673 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 673; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -91,7 +91,7 @@ public interface I_C_RfQResponseLine */ public int getC_RfQLine_ID(); - public I_C_RfQLine getC_RfQLine() throws RuntimeException; + public org.compiere.model.I_C_RfQLine getC_RfQLine() throws RuntimeException; /** Column name C_RfQResponse_ID */ public static final String COLUMNNAME_C_RfQResponse_ID = "C_RfQResponse_ID"; @@ -106,7 +106,7 @@ public interface I_C_RfQResponseLine */ public int getC_RfQResponse_ID(); - public I_C_RfQResponse getC_RfQResponse() throws RuntimeException; + public org.compiere.model.I_C_RfQResponse getC_RfQResponse() throws RuntimeException; /** Column name C_RfQResponseLine_ID */ public static final String COLUMNNAME_C_RfQResponseLine_ID = "C_RfQResponseLine_ID"; @@ -121,6 +121,15 @@ public interface I_C_RfQResponseLine */ public int getC_RfQResponseLine_ID(); + /** Column name C_RfQResponseLine_UU */ + public static final String COLUMNNAME_C_RfQResponseLine_UU = "C_RfQResponseLine_UU"; + + /** Set C_RfQResponseLine_UU */ + public void setC_RfQResponseLine_UU (String C_RfQResponseLine_UU); + + /** Get C_RfQResponseLine_UU */ + public String getC_RfQResponseLine_UU(); + /** Column name DateWorkComplete */ public static final String COLUMNNAME_DateWorkComplete = "DateWorkComplete"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_RfQResponseLineQty.java b/org.adempiere.base/src/org/compiere/model/I_C_RfQResponseLineQty.java index 7be3c51ac4..359663e7df 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_RfQResponseLineQty.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_RfQResponseLineQty.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_RfQResponseLineQty - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_RfQResponseLineQty { @@ -31,7 +31,7 @@ public interface I_C_RfQResponseLineQty public static final String Table_Name = "C_RfQResponseLineQty"; /** AD_Table_ID=672 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 672; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -91,7 +91,7 @@ public interface I_C_RfQResponseLineQty */ public int getC_RfQLineQty_ID(); - public I_C_RfQLineQty getC_RfQLineQty() throws RuntimeException; + public org.compiere.model.I_C_RfQLineQty getC_RfQLineQty() throws RuntimeException; /** Column name C_RfQResponseLine_ID */ public static final String COLUMNNAME_C_RfQResponseLine_ID = "C_RfQResponseLine_ID"; @@ -106,7 +106,7 @@ public interface I_C_RfQResponseLineQty */ public int getC_RfQResponseLine_ID(); - public I_C_RfQResponseLine getC_RfQResponseLine() throws RuntimeException; + public org.compiere.model.I_C_RfQResponseLine getC_RfQResponseLine() throws RuntimeException; /** Column name C_RfQResponseLineQty_ID */ public static final String COLUMNNAME_C_RfQResponseLineQty_ID = "C_RfQResponseLineQty_ID"; @@ -121,6 +121,15 @@ public interface I_C_RfQResponseLineQty */ public int getC_RfQResponseLineQty_ID(); + /** Column name C_RfQResponseLineQty_UU */ + public static final String COLUMNNAME_C_RfQResponseLineQty_UU = "C_RfQResponseLineQty_UU"; + + /** Set C_RfQResponseLineQty_UU */ + public void setC_RfQResponseLineQty_UU (String C_RfQResponseLineQty_UU); + + /** Get C_RfQResponseLineQty_UU */ + public String getC_RfQResponseLineQty_UU(); + /** Column name Discount */ public static final String COLUMNNAME_Discount = "Discount"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_RfQ_Topic.java b/org.adempiere.base/src/org/compiere/model/I_C_RfQ_Topic.java index 84cbafcc3f..768ed6c20b 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_RfQ_Topic.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_RfQ_Topic.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_RfQ_Topic - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_RfQ_Topic { @@ -31,7 +31,7 @@ public interface I_C_RfQ_Topic public static final String Table_Name = "C_RfQ_Topic"; /** AD_Table_ID=671 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 671; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_RfQ_Topic */ public int getAD_PrintFormat_ID(); - public I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException; + public org.compiere.model.I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -106,6 +106,15 @@ public interface I_C_RfQ_Topic */ public int getC_RfQ_Topic_ID(); + /** Column name C_RfQ_Topic_UU */ + public static final String COLUMNNAME_C_RfQ_Topic_UU = "C_RfQ_Topic_UU"; + + /** Set C_RfQ_Topic_UU */ + public void setC_RfQ_Topic_UU (String C_RfQ_Topic_UU); + + /** Get C_RfQ_Topic_UU */ + public String getC_RfQ_Topic_UU(); + /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_RfQ_TopicSubscriber.java b/org.adempiere.base/src/org/compiere/model/I_C_RfQ_TopicSubscriber.java index 4086db9c4c..d01e7829cb 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_RfQ_TopicSubscriber.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_RfQ_TopicSubscriber.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_RfQ_TopicSubscriber - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_RfQ_TopicSubscriber { @@ -31,7 +31,7 @@ public interface I_C_RfQ_TopicSubscriber public static final String Table_Name = "C_RfQ_TopicSubscriber"; /** AD_Table_ID=670 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 670; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_RfQ_TopicSubscriber */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -90,7 +90,7 @@ public interface I_C_RfQ_TopicSubscriber */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_BPartner_Location_ID */ public static final String COLUMNNAME_C_BPartner_Location_ID = "C_BPartner_Location_ID"; @@ -105,7 +105,7 @@ public interface I_C_RfQ_TopicSubscriber */ public int getC_BPartner_Location_ID(); - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -136,7 +136,7 @@ public interface I_C_RfQ_TopicSubscriber */ public int getC_RfQ_Topic_ID(); - public I_C_RfQ_Topic getC_RfQ_Topic() throws RuntimeException; + public org.compiere.model.I_C_RfQ_Topic getC_RfQ_Topic() throws RuntimeException; /** Column name C_RfQ_TopicSubscriber_ID */ public static final String COLUMNNAME_C_RfQ_TopicSubscriber_ID = "C_RfQ_TopicSubscriber_ID"; @@ -151,6 +151,15 @@ public interface I_C_RfQ_TopicSubscriber */ public int getC_RfQ_TopicSubscriber_ID(); + /** Column name C_RfQ_TopicSubscriber_UU */ + public static final String COLUMNNAME_C_RfQ_TopicSubscriber_UU = "C_RfQ_TopicSubscriber_UU"; + + /** Set C_RfQ_TopicSubscriber_UU */ + public void setC_RfQ_TopicSubscriber_UU (String C_RfQ_TopicSubscriber_UU); + + /** Get C_RfQ_TopicSubscriber_UU */ + public String getC_RfQ_TopicSubscriber_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_RfQ_TopicSubscriberOnly.java b/org.adempiere.base/src/org/compiere/model/I_C_RfQ_TopicSubscriberOnly.java index 9d367e9a88..9ef37e0625 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_RfQ_TopicSubscriberOnly.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_RfQ_TopicSubscriberOnly.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_RfQ_TopicSubscriberOnly - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_RfQ_TopicSubscriberOnly { @@ -31,7 +31,7 @@ public interface I_C_RfQ_TopicSubscriberOnly public static final String Table_Name = "C_RfQ_TopicSubscriberOnly"; /** AD_Table_ID=747 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 747; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -91,7 +91,7 @@ public interface I_C_RfQ_TopicSubscriberOnly */ public int getC_RfQ_TopicSubscriber_ID(); - public I_C_RfQ_TopicSubscriber getC_RfQ_TopicSubscriber() throws RuntimeException; + public org.compiere.model.I_C_RfQ_TopicSubscriber getC_RfQ_TopicSubscriber() throws RuntimeException; /** Column name C_RfQ_TopicSubscriberOnly_ID */ public static final String COLUMNNAME_C_RfQ_TopicSubscriberOnly_ID = "C_RfQ_TopicSubscriberOnly_ID"; @@ -106,6 +106,15 @@ public interface I_C_RfQ_TopicSubscriberOnly */ public int getC_RfQ_TopicSubscriberOnly_ID(); + /** Column name C_RfQ_TopicSubscriberOnly_UU */ + public static final String COLUMNNAME_C_RfQ_TopicSubscriberOnly_UU = "C_RfQ_TopicSubscriberOnly_UU"; + + /** Set C_RfQ_TopicSubscriberOnly_UU */ + public void setC_RfQ_TopicSubscriberOnly_UU (String C_RfQ_TopicSubscriberOnly_UU); + + /** Get C_RfQ_TopicSubscriberOnly_UU */ + public String getC_RfQ_TopicSubscriberOnly_UU(); + /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; @@ -145,7 +154,7 @@ public interface I_C_RfQ_TopicSubscriberOnly */ public int getM_Product_Category_ID(); - public I_M_Product_Category getM_Product_Category() throws RuntimeException; + public org.compiere.model.I_M_Product_Category getM_Product_Category() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -160,7 +169,7 @@ public interface I_C_RfQ_TopicSubscriberOnly */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_SalesRegion.java b/org.adempiere.base/src/org/compiere/model/I_C_SalesRegion.java index 5fd6460438..2b85f4d781 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_SalesRegion.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_SalesRegion.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_SalesRegion - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_SalesRegion { @@ -31,7 +31,7 @@ public interface I_C_SalesRegion public static final String Table_Name = "C_SalesRegion"; /** AD_Table_ID=230 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 230; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -91,6 +91,15 @@ public interface I_C_SalesRegion */ public int getC_SalesRegion_ID(); + /** Column name C_SalesRegion_UU */ + public static final String COLUMNNAME_C_SalesRegion_UU = "C_SalesRegion_UU"; + + /** Set C_SalesRegion_UU */ + public void setC_SalesRegion_UU (String C_SalesRegion_UU); + + /** Get C_SalesRegion_UU */ + public String getC_SalesRegion_UU(); + /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; @@ -169,7 +178,7 @@ public interface I_C_SalesRegion */ public int getSalesRep_ID(); - public I_AD_User getSalesRep() throws RuntimeException; + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_ServiceLevel.java b/org.adempiere.base/src/org/compiere/model/I_C_ServiceLevel.java index 6cd2bf6037..be3dfe2595 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_ServiceLevel.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_ServiceLevel.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_ServiceLevel - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_ServiceLevel { @@ -31,7 +31,7 @@ public interface I_C_ServiceLevel public static final String Table_Name = "C_ServiceLevel"; /** AD_Table_ID=337 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 337; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -91,7 +91,7 @@ public interface I_C_ServiceLevel */ public int getC_RevenueRecognition_Plan_ID(); - public I_C_RevenueRecognition_Plan getC_RevenueRecognition_Plan() throws RuntimeException; + public org.compiere.model.I_C_RevenueRecognition_Plan getC_RevenueRecognition_Plan() throws RuntimeException; /** Column name C_ServiceLevel_ID */ public static final String COLUMNNAME_C_ServiceLevel_ID = "C_ServiceLevel_ID"; @@ -106,6 +106,15 @@ public interface I_C_ServiceLevel */ public int getC_ServiceLevel_ID(); + /** Column name C_ServiceLevel_UU */ + public static final String COLUMNNAME_C_ServiceLevel_UU = "C_ServiceLevel_UU"; + + /** Set C_ServiceLevel_UU */ + public void setC_ServiceLevel_UU (String C_ServiceLevel_UU); + + /** Get C_ServiceLevel_UU */ + public String getC_ServiceLevel_UU(); + /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; @@ -145,7 +154,7 @@ public interface I_C_ServiceLevel */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Processed */ public static final String COLUMNNAME_Processed = "Processed"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_ServiceLevelLine.java b/org.adempiere.base/src/org/compiere/model/I_C_ServiceLevelLine.java index f340a9f44b..6b7302b899 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_ServiceLevelLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_ServiceLevelLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_ServiceLevelLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_ServiceLevelLine { @@ -31,7 +31,7 @@ public interface I_C_ServiceLevelLine public static final String Table_Name = "C_ServiceLevelLine"; /** AD_Table_ID=338 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 338; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -91,7 +91,7 @@ public interface I_C_ServiceLevelLine */ public int getC_ServiceLevel_ID(); - public I_C_ServiceLevel getC_ServiceLevel() throws RuntimeException; + public org.compiere.model.I_C_ServiceLevel getC_ServiceLevel() throws RuntimeException; /** Column name C_ServiceLevelLine_ID */ public static final String COLUMNNAME_C_ServiceLevelLine_ID = "C_ServiceLevelLine_ID"; @@ -106,6 +106,15 @@ public interface I_C_ServiceLevelLine */ public int getC_ServiceLevelLine_ID(); + /** Column name C_ServiceLevelLine_UU */ + public static final String COLUMNNAME_C_ServiceLevelLine_UU = "C_ServiceLevelLine_UU"; + + /** Set C_ServiceLevelLine_UU */ + public void setC_ServiceLevelLine_UU (String C_ServiceLevelLine_UU); + + /** Get C_ServiceLevelLine_UU */ + public String getC_ServiceLevelLine_UU(); + /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_SubAcct.java b/org.adempiere.base/src/org/compiere/model/I_C_SubAcct.java index fa1b163fc2..9bd997dab0 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_SubAcct.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_SubAcct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_SubAcct - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_SubAcct { @@ -31,7 +31,7 @@ public interface I_C_SubAcct public static final String Table_Name = "C_SubAcct"; /** AD_Table_ID=825 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 825; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_SubAcct */ public int getC_ElementValue_ID(); - public I_C_ElementValue getC_ElementValue() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getC_ElementValue() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -106,6 +106,15 @@ public interface I_C_SubAcct */ public int getC_SubAcct_ID(); + /** Column name C_SubAcct_UU */ + public static final String COLUMNNAME_C_SubAcct_UU = "C_SubAcct_UU"; + + /** Set C_SubAcct_UU */ + public void setC_SubAcct_UU (String C_SubAcct_UU); + + /** Get C_SubAcct_UU */ + public String getC_SubAcct_UU(); + /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Subscription.java b/org.adempiere.base/src/org/compiere/model/I_C_Subscription.java index abaf7faa30..90e05277a9 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Subscription.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Subscription.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Subscription - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Subscription { @@ -31,7 +31,7 @@ public interface I_C_Subscription public static final String Table_Name = "C_Subscription"; /** AD_Table_ID=669 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 669; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_Subscription */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -119,7 +119,16 @@ public interface I_C_Subscription */ public int getC_SubscriptionType_ID(); - public I_C_SubscriptionType getC_SubscriptionType() throws RuntimeException; + public org.compiere.model.I_C_SubscriptionType getC_SubscriptionType() throws RuntimeException; + + /** Column name C_Subscription_UU */ + public static final String COLUMNNAME_C_Subscription_UU = "C_Subscription_UU"; + + /** Set C_Subscription_UU */ + public void setC_Subscription_UU (String C_Subscription_UU); + + /** Get C_Subscription_UU */ + public String getC_Subscription_UU(); /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; @@ -160,7 +169,7 @@ public interface I_C_Subscription */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_SubscriptionType.java b/org.adempiere.base/src/org/compiere/model/I_C_SubscriptionType.java index d183a01379..56900ddeb2 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_SubscriptionType.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_SubscriptionType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_SubscriptionType - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_SubscriptionType { @@ -31,7 +31,7 @@ public interface I_C_SubscriptionType public static final String Table_Name = "C_SubscriptionType"; /** AD_Table_ID=668 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 668; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -91,6 +91,15 @@ public interface I_C_SubscriptionType */ public int getC_SubscriptionType_ID(); + /** Column name C_SubscriptionType_UU */ + public static final String COLUMNNAME_C_SubscriptionType_UU = "C_SubscriptionType_UU"; + + /** Set C_SubscriptionType_UU */ + public void setC_SubscriptionType_UU (String C_SubscriptionType_UU); + + /** Get C_SubscriptionType_UU */ + public String getC_SubscriptionType_UU(); + /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Subscription_Delivery.java b/org.adempiere.base/src/org/compiere/model/I_C_Subscription_Delivery.java index 35e2fc177d..0d0d3caef0 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Subscription_Delivery.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Subscription_Delivery.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Subscription_Delivery - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Subscription_Delivery { @@ -31,7 +31,7 @@ public interface I_C_Subscription_Delivery public static final String Table_Name = "C_Subscription_Delivery"; /** AD_Table_ID=667 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 667; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -91,6 +91,15 @@ public interface I_C_Subscription_Delivery */ public int getC_Subscription_Delivery_ID(); + /** Column name C_Subscription_Delivery_UU */ + public static final String COLUMNNAME_C_Subscription_Delivery_UU = "C_Subscription_Delivery_UU"; + + /** Set C_Subscription_Delivery_UU */ + public void setC_Subscription_Delivery_UU (String C_Subscription_Delivery_UU); + + /** Get C_Subscription_Delivery_UU */ + public String getC_Subscription_Delivery_UU(); + /** Column name C_Subscription_ID */ public static final String COLUMNNAME_C_Subscription_ID = "C_Subscription_ID"; @@ -104,7 +113,7 @@ public interface I_C_Subscription_Delivery */ public int getC_Subscription_ID(); - public I_C_Subscription getC_Subscription() throws RuntimeException; + public org.compiere.model.I_C_Subscription getC_Subscription() throws RuntimeException; /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Task.java b/org.adempiere.base/src/org/compiere/model/I_C_Task.java index 849bc3f0cc..dae59fb3e5 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Task.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Task.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Task - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Task { @@ -31,7 +31,7 @@ public interface I_C_Task public static final String Table_Name = "C_Task"; /** AD_Table_ID=583 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 583; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_Task */ public int getC_Phase_ID(); - public I_C_Phase getC_Phase() throws RuntimeException; + public org.compiere.model.I_C_Phase getC_Phase() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -106,6 +106,15 @@ public interface I_C_Task */ public int getC_Task_ID(); + /** Column name C_Task_UU */ + public static final String COLUMNNAME_C_Task_UU = "C_Task_UU"; + + /** Set C_Task_UU */ + public void setC_Task_UU (String C_Task_UU); + + /** Get C_Task_UU */ + public String getC_Task_UU(); + /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; @@ -158,7 +167,7 @@ public interface I_C_Task */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Tax.java b/org.adempiere.base/src/org/compiere/model/I_C_Tax.java index 577446da64..c20b62efc0 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Tax.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Tax.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Tax - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Tax { @@ -31,7 +31,7 @@ public interface I_C_Tax public static final String Table_Name = "C_Tax"; /** AD_Table_ID=261 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 261; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -71,7 +71,7 @@ public interface I_C_Tax /** Get Rule */ public int getAD_Rule_ID(); - public I_AD_Rule getAD_Rule() throws RuntimeException; + public org.compiere.model.I_AD_Rule getAD_Rule() throws RuntimeException; /** Column name C_Country_ID */ public static final String COLUMNNAME_C_Country_ID = "C_Country_ID"; @@ -115,7 +115,7 @@ public interface I_C_Tax */ public int getC_Region_ID(); - public I_C_Region getC_Region() throws RuntimeException; + public org.compiere.model.I_C_Region getC_Region() throws RuntimeException; /** Column name C_TaxCategory_ID */ public static final String COLUMNNAME_C_TaxCategory_ID = "C_TaxCategory_ID"; @@ -130,7 +130,7 @@ public interface I_C_Tax */ public int getC_TaxCategory_ID(); - public I_C_TaxCategory getC_TaxCategory() throws RuntimeException; + public org.compiere.model.I_C_TaxCategory getC_TaxCategory() throws RuntimeException; /** Column name C_Tax_ID */ public static final String COLUMNNAME_C_Tax_ID = "C_Tax_ID"; @@ -145,6 +145,15 @@ public interface I_C_Tax */ public int getC_Tax_ID(); + /** Column name C_Tax_UU */ + public static final String COLUMNNAME_C_Tax_UU = "C_Tax_UU"; + + /** Set C_Tax_UU */ + public void setC_Tax_UU (String C_Tax_UU); + + /** Get C_Tax_UU */ + public String getC_Tax_UU(); + /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; @@ -262,7 +271,7 @@ public interface I_C_Tax */ public int getParent_Tax_ID(); - public I_C_Tax getParent_Tax() throws RuntimeException; + public org.compiere.model.I_C_Tax getParent_Tax() throws RuntimeException; /** Column name Rate */ public static final String COLUMNNAME_Rate = "Rate"; @@ -342,7 +351,7 @@ public interface I_C_Tax */ public int getTo_Region_ID(); - public I_C_Region getTo_Region() throws RuntimeException; + public org.compiere.model.I_C_Region getTo_Region() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_TaxCategory.java b/org.adempiere.base/src/org/compiere/model/I_C_TaxCategory.java index b0e363dd3e..98a48370a6 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_TaxCategory.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_TaxCategory.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_TaxCategory - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_TaxCategory { @@ -31,7 +31,7 @@ public interface I_C_TaxCategory public static final String Table_Name = "C_TaxCategory"; /** AD_Table_ID=252 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 252; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -104,6 +104,15 @@ public interface I_C_TaxCategory */ public int getC_TaxCategory_ID(); + /** Column name C_TaxCategory_UU */ + public static final String COLUMNNAME_C_TaxCategory_UU = "C_TaxCategory_UU"; + + /** Set C_TaxCategory_UU */ + public void setC_TaxCategory_UU (String C_TaxCategory_UU); + + /** Get C_TaxCategory_UU */ + public String getC_TaxCategory_UU(); + /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_TaxDeclaration.java b/org.adempiere.base/src/org/compiere/model/I_C_TaxDeclaration.java index 10ceea5fb5..842d19207a 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_TaxDeclaration.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_TaxDeclaration.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_TaxDeclaration - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_TaxDeclaration { @@ -31,7 +31,7 @@ public interface I_C_TaxDeclaration public static final String Table_Name = "C_TaxDeclaration"; /** AD_Table_ID=818 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 818; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -91,6 +91,15 @@ public interface I_C_TaxDeclaration */ public int getC_TaxDeclaration_ID(); + /** Column name C_TaxDeclaration_UU */ + public static final String COLUMNNAME_C_TaxDeclaration_UU = "C_TaxDeclaration_UU"; + + /** Set C_TaxDeclaration_UU */ + public void setC_TaxDeclaration_UU (String C_TaxDeclaration_UU); + + /** Get C_TaxDeclaration_UU */ + public String getC_TaxDeclaration_UU(); + /** Column name DateFrom */ public static final String COLUMNNAME_DateFrom = "DateFrom"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_TaxDeclarationAcct.java b/org.adempiere.base/src/org/compiere/model/I_C_TaxDeclarationAcct.java index 1bae616ee9..f01e7b6d67 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_TaxDeclarationAcct.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_TaxDeclarationAcct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_TaxDeclarationAcct - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_TaxDeclarationAcct { @@ -31,7 +31,7 @@ public interface I_C_TaxDeclarationAcct public static final String Table_Name = "C_TaxDeclarationAcct"; /** AD_Table_ID=820 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 820; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -54,7 +54,7 @@ public interface I_C_TaxDeclarationAcct */ public int getAccount_ID(); - public I_C_ElementValue getAccount() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getAccount() throws RuntimeException; /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; @@ -142,7 +142,7 @@ public interface I_C_TaxDeclarationAcct */ public int getC_AcctSchema_ID(); - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -157,7 +157,7 @@ public interface I_C_TaxDeclarationAcct */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -172,7 +172,7 @@ public interface I_C_TaxDeclarationAcct */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -203,6 +203,15 @@ public interface I_C_TaxDeclarationAcct */ public int getC_TaxDeclarationAcct_ID(); + /** Column name C_TaxDeclarationAcct_UU */ + public static final String COLUMNNAME_C_TaxDeclarationAcct_UU = "C_TaxDeclarationAcct_UU"; + + /** Set C_TaxDeclarationAcct_UU */ + public void setC_TaxDeclarationAcct_UU (String C_TaxDeclarationAcct_UU); + + /** Get C_TaxDeclarationAcct_UU */ + public String getC_TaxDeclarationAcct_UU(); + /** Column name C_TaxDeclaration_ID */ public static final String COLUMNNAME_C_TaxDeclaration_ID = "C_TaxDeclaration_ID"; @@ -216,7 +225,7 @@ public interface I_C_TaxDeclarationAcct */ public int getC_TaxDeclaration_ID(); - public I_C_TaxDeclaration getC_TaxDeclaration() throws RuntimeException; + public org.compiere.model.I_C_TaxDeclaration getC_TaxDeclaration() throws RuntimeException; /** Column name C_Tax_ID */ public static final String COLUMNNAME_C_Tax_ID = "C_Tax_ID"; @@ -231,7 +240,7 @@ public interface I_C_TaxDeclarationAcct */ public int getC_Tax_ID(); - public I_C_Tax getC_Tax() throws RuntimeException; + public org.compiere.model.I_C_Tax getC_Tax() throws RuntimeException; /** Column name DateAcct */ public static final String COLUMNNAME_DateAcct = "DateAcct"; @@ -268,7 +277,7 @@ public interface I_C_TaxDeclarationAcct /** Get Accounting Fact */ public int getFact_Acct_ID(); - public I_Fact_Acct getFact_Acct() throws RuntimeException; + public org.compiere.model.I_Fact_Acct getFact_Acct() throws RuntimeException; /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_TaxDeclarationLine.java b/org.adempiere.base/src/org/compiere/model/I_C_TaxDeclarationLine.java index b47d8bd98e..e282927ebc 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_TaxDeclarationLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_TaxDeclarationLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_TaxDeclarationLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_TaxDeclarationLine { @@ -31,7 +31,7 @@ public interface I_C_TaxDeclarationLine public static final String Table_Name = "C_TaxDeclarationLine"; /** AD_Table_ID=819 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 819; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_TaxDeclarationLine */ public int getC_AllocationLine_ID(); - public I_C_AllocationLine getC_AllocationLine() throws RuntimeException; + public org.compiere.model.I_C_AllocationLine getC_AllocationLine() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -90,7 +90,7 @@ public interface I_C_TaxDeclarationLine */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -105,7 +105,7 @@ public interface I_C_TaxDeclarationLine */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name C_Invoice_ID */ public static final String COLUMNNAME_C_Invoice_ID = "C_Invoice_ID"; @@ -120,7 +120,7 @@ public interface I_C_TaxDeclarationLine */ public int getC_Invoice_ID(); - public I_C_Invoice getC_Invoice() throws RuntimeException; + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException; /** Column name C_InvoiceLine_ID */ public static final String COLUMNNAME_C_InvoiceLine_ID = "C_InvoiceLine_ID"; @@ -135,7 +135,7 @@ public interface I_C_TaxDeclarationLine */ public int getC_InvoiceLine_ID(); - public I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException; + public org.compiere.model.I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -166,7 +166,7 @@ public interface I_C_TaxDeclarationLine */ public int getC_TaxDeclaration_ID(); - public I_C_TaxDeclaration getC_TaxDeclaration() throws RuntimeException; + public org.compiere.model.I_C_TaxDeclaration getC_TaxDeclaration() throws RuntimeException; /** Column name C_TaxDeclarationLine_ID */ public static final String COLUMNNAME_C_TaxDeclarationLine_ID = "C_TaxDeclarationLine_ID"; @@ -181,6 +181,15 @@ public interface I_C_TaxDeclarationLine */ public int getC_TaxDeclarationLine_ID(); + /** Column name C_TaxDeclarationLine_UU */ + public static final String COLUMNNAME_C_TaxDeclarationLine_UU = "C_TaxDeclarationLine_UU"; + + /** Set C_TaxDeclarationLine_UU */ + public void setC_TaxDeclarationLine_UU (String C_TaxDeclarationLine_UU); + + /** Get C_TaxDeclarationLine_UU */ + public String getC_TaxDeclarationLine_UU(); + /** Column name C_Tax_ID */ public static final String COLUMNNAME_C_Tax_ID = "C_Tax_ID"; @@ -194,7 +203,7 @@ public interface I_C_TaxDeclarationLine */ public int getC_Tax_ID(); - public I_C_Tax getC_Tax() throws RuntimeException; + public org.compiere.model.I_C_Tax getC_Tax() throws RuntimeException; /** Column name DateAcct */ public static final String COLUMNNAME_DateAcct = "DateAcct"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_TaxPostal.java b/org.adempiere.base/src/org/compiere/model/I_C_TaxPostal.java index 31ff84c8c0..b0d03ff503 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_TaxPostal.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_TaxPostal.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_TaxPostal - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_TaxPostal { @@ -31,7 +31,7 @@ public interface I_C_TaxPostal public static final String Table_Name = "C_TaxPostal"; /** AD_Table_ID=701 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 701; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -91,7 +91,7 @@ public interface I_C_TaxPostal */ public int getC_Tax_ID(); - public I_C_Tax getC_Tax() throws RuntimeException; + public org.compiere.model.I_C_Tax getC_Tax() throws RuntimeException; /** Column name C_TaxPostal_ID */ public static final String COLUMNNAME_C_TaxPostal_ID = "C_TaxPostal_ID"; @@ -106,6 +106,15 @@ public interface I_C_TaxPostal */ public int getC_TaxPostal_ID(); + /** Column name C_TaxPostal_UU */ + public static final String COLUMNNAME_C_TaxPostal_UU = "C_TaxPostal_UU"; + + /** Set C_TaxPostal_UU */ + public void setC_TaxPostal_UU (String C_TaxPostal_UU); + + /** Get C_TaxPostal_UU */ + public String getC_TaxPostal_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Tax_Acct.java b/org.adempiere.base/src/org/compiere/model/I_C_Tax_Acct.java index fe731ac0b7..731194e8c3 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Tax_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Tax_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Tax_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Tax_Acct { @@ -35,7 +35,7 @@ public interface I_C_Tax_Acct KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); - /** AccessLevel = - Client - Org + /** AccessLevel = 3 - Client - Org */ BigDecimal accessLevel = BigDecimal.valueOf(3); diff --git a/org.adempiere.base/src/org/compiere/model/I_C_UOM.java b/org.adempiere.base/src/org/compiere/model/I_C_UOM.java index 9537004743..c7b5920141 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_UOM.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_UOM.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_UOM - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_UOM { @@ -31,7 +31,7 @@ public interface I_C_UOM public static final String Table_Name = "C_UOM"; /** AD_Table_ID=146 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 146; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -104,6 +104,15 @@ public interface I_C_UOM */ public int getC_UOM_ID(); + /** Column name C_UOM_UU */ + public static final String COLUMNNAME_C_UOM_UU = "C_UOM_UU"; + + /** Set C_UOM_UU */ + public void setC_UOM_UU (String C_UOM_UU); + + /** Get C_UOM_UU */ + public String getC_UOM_UU(); + /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_UOM_Conversion.java b/org.adempiere.base/src/org/compiere/model/I_C_UOM_Conversion.java index 001ce77f08..4edcd88f17 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_UOM_Conversion.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_UOM_Conversion.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_UOM_Conversion - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_UOM_Conversion { @@ -31,7 +31,7 @@ public interface I_C_UOM_Conversion public static final String Table_Name = "C_UOM_Conversion"; /** AD_Table_ID=175 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 175; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -91,6 +91,15 @@ public interface I_C_UOM_Conversion */ public int getC_UOM_Conversion_ID(); + /** Column name C_UOM_Conversion_UU */ + public static final String COLUMNNAME_C_UOM_Conversion_UU = "C_UOM_Conversion_UU"; + + /** Set C_UOM_Conversion_UU */ + public void setC_UOM_Conversion_UU (String C_UOM_Conversion_UU); + + /** Get C_UOM_Conversion_UU */ + public String getC_UOM_Conversion_UU(); + /** Column name C_UOM_ID */ public static final String COLUMNNAME_C_UOM_ID = "C_UOM_ID"; @@ -104,7 +113,7 @@ public interface I_C_UOM_Conversion */ public int getC_UOM_ID(); - public I_C_UOM getC_UOM() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException; /** Column name C_UOM_To_ID */ public static final String COLUMNNAME_C_UOM_To_ID = "C_UOM_To_ID"; @@ -119,7 +128,7 @@ public interface I_C_UOM_Conversion */ public int getC_UOM_To_ID(); - public I_C_UOM getC_UOM_To() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM_To() throws RuntimeException; /** Column name DivideRate */ public static final String COLUMNNAME_DivideRate = "DivideRate"; @@ -160,7 +169,7 @@ public interface I_C_UOM_Conversion */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name MultiplyRate */ public static final String COLUMNNAME_MultiplyRate = "MultiplyRate"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_UserRemuneration.java b/org.adempiere.base/src/org/compiere/model/I_C_UserRemuneration.java index ea79b8b289..1fc2a6ef2a 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_UserRemuneration.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_UserRemuneration.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_UserRemuneration - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_UserRemuneration { @@ -31,7 +31,7 @@ public interface I_C_UserRemuneration public static final String Table_Name = "C_UserRemuneration"; /** AD_Table_ID=794 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 794; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_UserRemuneration */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -106,7 +106,7 @@ public interface I_C_UserRemuneration */ public int getC_Remuneration_ID(); - public I_C_Remuneration getC_Remuneration() throws RuntimeException; + public org.compiere.model.I_C_Remuneration getC_Remuneration() throws RuntimeException; /** Column name C_UserRemuneration_ID */ public static final String COLUMNNAME_C_UserRemuneration_ID = "C_UserRemuneration_ID"; @@ -121,6 +121,15 @@ public interface I_C_UserRemuneration */ public int getC_UserRemuneration_ID(); + /** Column name C_UserRemuneration_UU */ + public static final String COLUMNNAME_C_UserRemuneration_UU = "C_UserRemuneration_UU"; + + /** Set C_UserRemuneration_UU */ + public void setC_UserRemuneration_UU (String C_UserRemuneration_UU); + + /** Get C_UserRemuneration_UU */ + public String getC_UserRemuneration_UU(); + /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_ValidCombination.java b/org.adempiere.base/src/org/compiere/model/I_C_ValidCombination.java index 1b1699db06..d093371821 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_ValidCombination.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_ValidCombination.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_ValidCombination - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_ValidCombination { @@ -31,7 +31,7 @@ public interface I_C_ValidCombination public static final String Table_Name = "C_ValidCombination"; /** AD_Table_ID=176 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 176; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -54,7 +54,7 @@ public interface I_C_ValidCombination */ public int getAccount_ID(); - public I_C_ElementValue getAccount() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getAccount() throws RuntimeException; /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; @@ -116,7 +116,7 @@ public interface I_C_ValidCombination */ public int getC_AcctSchema_ID(); - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException; /** Column name C_Activity_ID */ public static final String COLUMNNAME_C_Activity_ID = "C_Activity_ID"; @@ -131,7 +131,7 @@ public interface I_C_ValidCombination */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -146,7 +146,7 @@ public interface I_C_ValidCombination */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -161,7 +161,7 @@ public interface I_C_ValidCombination */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_LocFrom_ID */ public static final String COLUMNNAME_C_LocFrom_ID = "C_LocFrom_ID"; @@ -176,7 +176,7 @@ public interface I_C_ValidCombination */ public int getC_LocFrom_ID(); - public I_C_Location getC_LocFrom() throws RuntimeException; + public org.compiere.model.I_C_Location getC_LocFrom() throws RuntimeException; /** Column name C_LocTo_ID */ public static final String COLUMNNAME_C_LocTo_ID = "C_LocTo_ID"; @@ -191,7 +191,7 @@ public interface I_C_ValidCombination */ public int getC_LocTo_ID(); - public I_C_Location getC_LocTo() throws RuntimeException; + public org.compiere.model.I_C_Location getC_LocTo() throws RuntimeException; /** Column name Combination */ public static final String COLUMNNAME_Combination = "Combination"; @@ -219,7 +219,7 @@ public interface I_C_ValidCombination */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -250,7 +250,7 @@ public interface I_C_ValidCombination */ public int getC_SalesRegion_ID(); - public I_C_SalesRegion getC_SalesRegion() throws RuntimeException; + public org.compiere.model.I_C_SalesRegion getC_SalesRegion() throws RuntimeException; /** Column name C_SubAcct_ID */ public static final String COLUMNNAME_C_SubAcct_ID = "C_SubAcct_ID"; @@ -265,7 +265,7 @@ public interface I_C_ValidCombination */ public int getC_SubAcct_ID(); - public I_C_SubAcct getC_SubAcct() throws RuntimeException; + public org.compiere.model.I_C_SubAcct getC_SubAcct() throws RuntimeException; /** Column name C_ValidCombination_ID */ public static final String COLUMNNAME_C_ValidCombination_ID = "C_ValidCombination_ID"; @@ -280,6 +280,15 @@ public interface I_C_ValidCombination */ public int getC_ValidCombination_ID(); + /** Column name C_ValidCombination_UU */ + public static final String COLUMNNAME_C_ValidCombination_UU = "C_ValidCombination_UU"; + + /** Set C_ValidCombination_UU */ + public void setC_ValidCombination_UU (String C_ValidCombination_UU); + + /** Get C_ValidCombination_UU */ + public String getC_ValidCombination_UU(); + /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; @@ -332,7 +341,7 @@ public interface I_C_ValidCombination */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; @@ -363,7 +372,7 @@ public interface I_C_ValidCombination */ public int getUser1_ID(); - public I_C_ElementValue getUser1() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException; /** Column name User2_ID */ public static final String COLUMNNAME_User2_ID = "User2_ID"; @@ -378,7 +387,7 @@ public interface I_C_ValidCombination */ public int getUser2_ID(); - public I_C_ElementValue getUser2() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException; /** Column name UserElement1_ID */ public static final String COLUMNNAME_UserElement1_ID = "UserElement1_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Withholding.java b/org.adempiere.base/src/org/compiere/model/I_C_Withholding.java index a24b060f48..7a44375a4e 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Withholding.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Withholding.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Withholding - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Withholding { @@ -31,7 +31,7 @@ public interface I_C_Withholding public static final String Table_Name = "C_Withholding"; /** AD_Table_ID=304 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 304; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_Withholding */ public int getBeneficiary(); - public I_C_BPartner getBenefici() throws RuntimeException; + public org.compiere.model.I_C_BPartner getBenefici() throws RuntimeException; /** Column name C_PaymentTerm_ID */ public static final String COLUMNNAME_C_PaymentTerm_ID = "C_PaymentTerm_ID"; @@ -90,7 +90,7 @@ public interface I_C_Withholding */ public int getC_PaymentTerm_ID(); - public I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException; + public org.compiere.model.I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -121,6 +121,15 @@ public interface I_C_Withholding */ public int getC_Withholding_ID(); + /** Column name C_Withholding_UU */ + public static final String COLUMNNAME_C_Withholding_UU = "C_Withholding_UU"; + + /** Set C_Withholding_UU */ + public void setC_Withholding_UU (String C_Withholding_UU); + + /** Get C_Withholding_UU */ + public String getC_Withholding_UU(); + /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Withholding_Acct.java b/org.adempiere.base/src/org/compiere/model/I_C_Withholding_Acct.java index d1e1bfe05b..e1bf20e054 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Withholding_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Withholding_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Withholding_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Withholding_Acct { @@ -31,7 +31,7 @@ public interface I_C_Withholding_Acct public static final String Table_Name = "C_Withholding_Acct"; /** AD_Table_ID=400 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 400; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_Withholding_Acct */ public int getC_AcctSchema_ID(); - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -93,6 +93,15 @@ public interface I_C_Withholding_Acct */ public int getCreatedBy(); + /** Column name C_Withholding_Acct_UU */ + public static final String COLUMNNAME_C_Withholding_Acct_UU = "C_Withholding_Acct_UU"; + + /** Set C_Withholding_Acct_UU */ + public void setC_Withholding_Acct_UU (String C_Withholding_Acct_UU); + + /** Get C_Withholding_Acct_UU */ + public String getC_Withholding_Acct_UU(); + /** Column name C_Withholding_ID */ public static final String COLUMNNAME_C_Withholding_ID = "C_Withholding_ID"; @@ -106,7 +115,7 @@ public interface I_C_Withholding_Acct */ public int getC_Withholding_ID(); - public I_C_Withholding getC_Withholding() throws RuntimeException; + public org.compiere.model.I_C_Withholding getC_Withholding() throws RuntimeException; /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/compiere/model/I_C_Year.java b/org.adempiere.base/src/org/compiere/model/I_C_Year.java index 0106c896dd..c499186f39 100644 --- a/org.adempiere.base/src/org/compiere/model/I_C_Year.java +++ b/org.adempiere.base/src/org/compiere/model/I_C_Year.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for C_Year - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_Year { @@ -31,7 +31,7 @@ public interface I_C_Year public static final String Table_Name = "C_Year"; /** AD_Table_ID=177 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 177; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_C_Year */ public int getC_Calendar_ID(); - public I_C_Calendar getC_Calendar() throws RuntimeException; + public org.compiere.model.I_C_Calendar getC_Calendar() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -106,6 +106,15 @@ public interface I_C_Year */ public int getC_Year_ID(); + /** Column name C_Year_UU */ + public static final String COLUMNNAME_C_Year_UU = "C_Year_UU"; + + /** Set C_Year_UU */ + public void setC_Year_UU (String C_Year_UU); + + /** Get C_Year_UU */ + public String getC_Year_UU(); + /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; diff --git a/org.adempiere.base/src/org/compiere/model/I_EXP_Format.java b/org.adempiere.base/src/org/compiere/model/I_EXP_Format.java index 62987a388e..c748b1a635 100644 --- a/org.adempiere.base/src/org/compiere/model/I_EXP_Format.java +++ b/org.adempiere.base/src/org/compiere/model/I_EXP_Format.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for EXP_Format - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_EXP_Format { @@ -31,7 +31,7 @@ public interface I_EXP_Format public static final String Table_Name = "EXP_Format"; /** AD_Table_ID=53072 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53072; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_EXP_Format */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -115,6 +115,15 @@ public interface I_EXP_Format /** Get Export Format */ public int getEXP_Format_ID(); + /** Column name EXP_Format_UU */ + public static final String COLUMNNAME_EXP_Format_UU = "EXP_Format_UU"; + + /** Set EXP_Format_UU */ + public void setEXP_Format_UU (String EXP_Format_UU); + + /** Get EXP_Format_UU */ + public String getEXP_Format_UU(); + /** Column name Help */ public static final String COLUMNNAME_Help = "Help"; diff --git a/org.adempiere.base/src/org/compiere/model/I_EXP_FormatLine.java b/org.adempiere.base/src/org/compiere/model/I_EXP_FormatLine.java index e2598dcee3..0f97023374 100644 --- a/org.adempiere.base/src/org/compiere/model/I_EXP_FormatLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_EXP_FormatLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for EXP_FormatLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_EXP_FormatLine { @@ -31,7 +31,7 @@ public interface I_EXP_FormatLine public static final String Table_Name = "EXP_FormatLine"; /** AD_Table_ID=53073 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53073; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -62,7 +62,7 @@ public interface I_EXP_FormatLine */ public int getAD_Column_ID(); - public I_AD_Column getAD_Column() throws RuntimeException; + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -90,7 +90,7 @@ public interface I_EXP_FormatLine */ public int getAD_Reference_ID(); - public I_AD_Reference getAD_Reference() throws RuntimeException; + public org.compiere.model.I_AD_Reference getAD_Reference() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -165,6 +165,15 @@ public interface I_EXP_FormatLine /** Get Format Line */ public int getEXP_FormatLine_ID(); + /** Column name EXP_FormatLine_UU */ + public static final String COLUMNNAME_EXP_FormatLine_UU = "EXP_FormatLine_UU"; + + /** Set EXP_FormatLine_UU */ + public void setEXP_FormatLine_UU (String EXP_FormatLine_UU); + + /** Get EXP_FormatLine_UU */ + public String getEXP_FormatLine_UU(); + /** Column name Help */ public static final String COLUMNNAME_Help = "Help"; diff --git a/org.adempiere.base/src/org/compiere/model/I_EXP_Processor.java b/org.adempiere.base/src/org/compiere/model/I_EXP_Processor.java index 9c1d848802..bf49c36785 100644 --- a/org.adempiere.base/src/org/compiere/model/I_EXP_Processor.java +++ b/org.adempiere.base/src/org/compiere/model/I_EXP_Processor.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for EXP_Processor - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_EXP_Processor { @@ -31,7 +31,7 @@ public interface I_EXP_Processor public static final String Table_Name = "EXP_Processor"; /** AD_Table_ID=53074 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53074; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -120,6 +120,15 @@ public interface I_EXP_Processor public org.compiere.model.I_EXP_Processor_Type getEXP_Processor_Type() throws RuntimeException; + /** Column name EXP_Processor_UU */ + public static final String COLUMNNAME_EXP_Processor_UU = "EXP_Processor_UU"; + + /** Set EXP_Processor_UU */ + public void setEXP_Processor_UU (String EXP_Processor_UU); + + /** Get EXP_Processor_UU */ + public String getEXP_Processor_UU(); + /** Column name Help */ public static final String COLUMNNAME_Help = "Help"; diff --git a/org.adempiere.base/src/org/compiere/model/I_EXP_ProcessorParameter.java b/org.adempiere.base/src/org/compiere/model/I_EXP_ProcessorParameter.java index d42eabaea7..eb4f5007a1 100644 --- a/org.adempiere.base/src/org/compiere/model/I_EXP_ProcessorParameter.java +++ b/org.adempiere.base/src/org/compiere/model/I_EXP_ProcessorParameter.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for EXP_ProcessorParameter - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_EXP_ProcessorParameter { @@ -31,7 +31,7 @@ public interface I_EXP_ProcessorParameter public static final String Table_Name = "EXP_ProcessorParameter"; /** AD_Table_ID=53075 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53075; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -111,6 +111,15 @@ public interface I_EXP_ProcessorParameter /** Get Processor Parameter */ public int getEXP_ProcessorParameter_ID(); + /** Column name EXP_ProcessorParameter_UU */ + public static final String COLUMNNAME_EXP_ProcessorParameter_UU = "EXP_ProcessorParameter_UU"; + + /** Set EXP_ProcessorParameter_UU */ + public void setEXP_ProcessorParameter_UU (String EXP_ProcessorParameter_UU); + + /** Get EXP_ProcessorParameter_UU */ + public String getEXP_ProcessorParameter_UU(); + /** Column name Help */ public static final String COLUMNNAME_Help = "Help"; diff --git a/org.adempiere.base/src/org/compiere/model/I_EXP_Processor_Type.java b/org.adempiere.base/src/org/compiere/model/I_EXP_Processor_Type.java index 88dc62b7a2..08d86be662 100644 --- a/org.adempiere.base/src/org/compiere/model/I_EXP_Processor_Type.java +++ b/org.adempiere.base/src/org/compiere/model/I_EXP_Processor_Type.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for EXP_Processor_Type - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_EXP_Processor_Type { @@ -31,7 +31,7 @@ public interface I_EXP_Processor_Type public static final String Table_Name = "EXP_Processor_Type"; /** AD_Table_ID=53076 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53076; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -100,6 +100,15 @@ public interface I_EXP_Processor_Type /** Get Export Processor Type */ public int getEXP_Processor_Type_ID(); + /** Column name EXP_Processor_Type_UU */ + public static final String COLUMNNAME_EXP_Processor_Type_UU = "EXP_Processor_Type_UU"; + + /** Set EXP_Processor_Type_UU */ + public void setEXP_Processor_Type_UU (String EXP_Processor_Type_UU); + + /** Get EXP_Processor_Type_UU */ + public String getEXP_Processor_Type_UU(); + /** Column name Help */ public static final String COLUMNNAME_Help = "Help"; diff --git a/org.adempiere.base/src/org/compiere/model/I_Fact_Acct.java b/org.adempiere.base/src/org/compiere/model/I_Fact_Acct.java index c8a47ed57e..3521bd5f8d 100644 --- a/org.adempiere.base/src/org/compiere/model/I_Fact_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/I_Fact_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for Fact_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_Fact_Acct { @@ -31,7 +31,7 @@ public interface I_Fact_Acct public static final String Table_Name = "Fact_Acct"; /** AD_Table_ID=270 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 270; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -114,7 +114,7 @@ public interface I_Fact_Acct */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name AmtAcctCr */ public static final String COLUMNNAME_AmtAcctCr = "AmtAcctCr"; @@ -181,7 +181,7 @@ public interface I_Fact_Acct */ public int getC_AcctSchema_ID(); - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException; /** Column name C_Activity_ID */ public static final String COLUMNNAME_C_Activity_ID = "C_Activity_ID"; @@ -196,7 +196,7 @@ public interface I_Fact_Acct */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -211,7 +211,7 @@ public interface I_Fact_Acct */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -226,7 +226,7 @@ public interface I_Fact_Acct */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -241,7 +241,7 @@ public interface I_Fact_Acct */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name C_LocFrom_ID */ public static final String COLUMNNAME_C_LocFrom_ID = "C_LocFrom_ID"; @@ -256,7 +256,7 @@ public interface I_Fact_Acct */ public int getC_LocFrom_ID(); - public I_C_Location getC_LocFrom() throws RuntimeException; + public org.compiere.model.I_C_Location getC_LocFrom() throws RuntimeException; /** Column name C_LocTo_ID */ public static final String COLUMNNAME_C_LocTo_ID = "C_LocTo_ID"; @@ -271,7 +271,7 @@ public interface I_Fact_Acct */ public int getC_LocTo_ID(); - public I_C_Location getC_LocTo() throws RuntimeException; + public org.compiere.model.I_C_Location getC_LocTo() throws RuntimeException; /** Column name C_Period_ID */ public static final String COLUMNNAME_C_Period_ID = "C_Period_ID"; @@ -286,7 +286,7 @@ public interface I_Fact_Acct */ public int getC_Period_ID(); - public I_C_Period getC_Period() throws RuntimeException; + public org.compiere.model.I_C_Period getC_Period() throws RuntimeException; /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -301,7 +301,7 @@ public interface I_Fact_Acct */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name C_ProjectPhase_ID */ public static final String COLUMNNAME_C_ProjectPhase_ID = "C_ProjectPhase_ID"; @@ -316,7 +316,7 @@ public interface I_Fact_Acct */ public int getC_ProjectPhase_ID(); - public I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException; + public org.compiere.model.I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException; /** Column name C_ProjectTask_ID */ public static final String COLUMNNAME_C_ProjectTask_ID = "C_ProjectTask_ID"; @@ -331,7 +331,7 @@ public interface I_Fact_Acct */ public int getC_ProjectTask_ID(); - public I_C_ProjectTask getC_ProjectTask() throws RuntimeException; + public org.compiere.model.I_C_ProjectTask getC_ProjectTask() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -362,7 +362,7 @@ public interface I_Fact_Acct */ public int getC_SalesRegion_ID(); - public I_C_SalesRegion getC_SalesRegion() throws RuntimeException; + public org.compiere.model.I_C_SalesRegion getC_SalesRegion() throws RuntimeException; /** Column name C_SubAcct_ID */ public static final String COLUMNNAME_C_SubAcct_ID = "C_SubAcct_ID"; @@ -377,7 +377,7 @@ public interface I_Fact_Acct */ public int getC_SubAcct_ID(); - public I_C_SubAcct getC_SubAcct() throws RuntimeException; + public org.compiere.model.I_C_SubAcct getC_SubAcct() throws RuntimeException; /** Column name C_Tax_ID */ public static final String COLUMNNAME_C_Tax_ID = "C_Tax_ID"; @@ -392,7 +392,7 @@ public interface I_Fact_Acct */ public int getC_Tax_ID(); - public I_C_Tax getC_Tax() throws RuntimeException; + public org.compiere.model.I_C_Tax getC_Tax() throws RuntimeException; /** Column name C_UOM_ID */ public static final String COLUMNNAME_C_UOM_ID = "C_UOM_ID"; @@ -407,7 +407,7 @@ public interface I_Fact_Acct */ public int getC_UOM_ID(); - public I_C_UOM getC_UOM() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException; /** Column name DateAcct */ public static final String COLUMNNAME_DateAcct = "DateAcct"; @@ -457,6 +457,15 @@ public interface I_Fact_Acct /** Get Accounting Fact */ public int getFact_Acct_ID(); + /** Column name Fact_Acct_UU */ + public static final String COLUMNNAME_Fact_Acct_UU = "Fact_Acct_UU"; + + /** Set Fact_Acct_UU */ + public void setFact_Acct_UU (String Fact_Acct_UU); + + /** Get Fact_Acct_UU */ + public String getFact_Acct_UU(); + /** Column name GL_Budget_ID */ public static final String COLUMNNAME_GL_Budget_ID = "GL_Budget_ID"; @@ -470,7 +479,7 @@ public interface I_Fact_Acct */ public int getGL_Budget_ID(); - public I_GL_Budget getGL_Budget() throws RuntimeException; + public org.compiere.model.I_GL_Budget getGL_Budget() throws RuntimeException; /** Column name GL_Category_ID */ public static final String COLUMNNAME_GL_Category_ID = "GL_Category_ID"; @@ -485,7 +494,7 @@ public interface I_Fact_Acct */ public int getGL_Category_ID(); - public I_GL_Category getGL_Category() throws RuntimeException; + public org.compiere.model.I_GL_Category getGL_Category() throws RuntimeException; /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; @@ -526,7 +535,7 @@ public interface I_Fact_Acct */ public int getM_Locator_ID(); - public I_M_Locator getM_Locator() throws RuntimeException; + public org.compiere.model.I_M_Locator getM_Locator() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -541,7 +550,7 @@ public interface I_Fact_Acct */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name PostingType */ public static final String COLUMNNAME_PostingType = "PostingType"; @@ -611,7 +620,7 @@ public interface I_Fact_Acct */ public int getUser1_ID(); - public I_C_ElementValue getUser1() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException; /** Column name User2_ID */ public static final String COLUMNNAME_User2_ID = "User2_ID"; @@ -626,7 +635,7 @@ public interface I_Fact_Acct */ public int getUser2_ID(); - public I_C_ElementValue getUser2() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException; /** Column name UserElement1_ID */ public static final String COLUMNNAME_UserElement1_ID = "UserElement1_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_Fact_Acct_Summary.java b/org.adempiere.base/src/org/compiere/model/I_Fact_Acct_Summary.java index c13121cbf6..ad26bdf608 100644 --- a/org.adempiere.base/src/org/compiere/model/I_Fact_Acct_Summary.java +++ b/org.adempiere.base/src/org/compiere/model/I_Fact_Acct_Summary.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for Fact_Acct_Summary - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_Fact_Acct_Summary { @@ -31,7 +31,7 @@ public interface I_Fact_Acct_Summary public static final String Table_Name = "Fact_Acct_Summary"; /** AD_Table_ID=53203 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53203; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -54,7 +54,7 @@ public interface I_Fact_Acct_Summary */ public int getAccount_ID(); - public I_C_ElementValue getAccount() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getAccount() throws RuntimeException; /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; @@ -90,7 +90,7 @@ public interface I_Fact_Acct_Summary */ public int getAD_OrgTrx_ID(); - public I_AD_Org getAD_OrgTrx() throws RuntimeException; + public org.compiere.model.I_AD_Org getAD_OrgTrx() throws RuntimeException; /** Column name AmtAcctCr */ public static final String COLUMNNAME_AmtAcctCr = "AmtAcctCr"; @@ -131,7 +131,7 @@ public interface I_Fact_Acct_Summary */ public int getC_AcctSchema_ID(); - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException; /** Column name C_Activity_ID */ public static final String COLUMNNAME_C_Activity_ID = "C_Activity_ID"; @@ -146,7 +146,7 @@ public interface I_Fact_Acct_Summary */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -161,7 +161,7 @@ public interface I_Fact_Acct_Summary */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -176,7 +176,7 @@ public interface I_Fact_Acct_Summary */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_LocFrom_ID */ public static final String COLUMNNAME_C_LocFrom_ID = "C_LocFrom_ID"; @@ -191,7 +191,7 @@ public interface I_Fact_Acct_Summary */ public int getC_LocFrom_ID(); - public I_C_Location getC_LocFrom() throws RuntimeException; + public org.compiere.model.I_C_Location getC_LocFrom() throws RuntimeException; /** Column name C_LocTo_ID */ public static final String COLUMNNAME_C_LocTo_ID = "C_LocTo_ID"; @@ -206,7 +206,7 @@ public interface I_Fact_Acct_Summary */ public int getC_LocTo_ID(); - public I_C_Location getC_LocTo() throws RuntimeException; + public org.compiere.model.I_C_Location getC_LocTo() throws RuntimeException; /** Column name C_Period_ID */ public static final String COLUMNNAME_C_Period_ID = "C_Period_ID"; @@ -221,7 +221,7 @@ public interface I_Fact_Acct_Summary */ public int getC_Period_ID(); - public I_C_Period getC_Period() throws RuntimeException; + public org.compiere.model.I_C_Period getC_Period() throws RuntimeException; /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -236,7 +236,7 @@ public interface I_Fact_Acct_Summary */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name C_ProjectPhase_ID */ public static final String COLUMNNAME_C_ProjectPhase_ID = "C_ProjectPhase_ID"; @@ -251,7 +251,7 @@ public interface I_Fact_Acct_Summary */ public int getC_ProjectPhase_ID(); - public I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException; + public org.compiere.model.I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException; /** Column name C_ProjectTask_ID */ public static final String COLUMNNAME_C_ProjectTask_ID = "C_ProjectTask_ID"; @@ -266,7 +266,7 @@ public interface I_Fact_Acct_Summary */ public int getC_ProjectTask_ID(); - public I_C_ProjectTask getC_ProjectTask() throws RuntimeException; + public org.compiere.model.I_C_ProjectTask getC_ProjectTask() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -297,7 +297,7 @@ public interface I_Fact_Acct_Summary */ public int getC_SalesRegion_ID(); - public I_C_SalesRegion getC_SalesRegion() throws RuntimeException; + public org.compiere.model.I_C_SalesRegion getC_SalesRegion() throws RuntimeException; /** Column name C_SubAcct_ID */ public static final String COLUMNNAME_C_SubAcct_ID = "C_SubAcct_ID"; @@ -312,7 +312,7 @@ public interface I_Fact_Acct_Summary */ public int getC_SubAcct_ID(); - public I_C_SubAcct getC_SubAcct() throws RuntimeException; + public org.compiere.model.I_C_SubAcct getC_SubAcct() throws RuntimeException; /** Column name DateAcct */ public static final String COLUMNNAME_DateAcct = "DateAcct"; @@ -327,6 +327,15 @@ public interface I_Fact_Acct_Summary */ public Timestamp getDateAcct(); + /** Column name Fact_Acct_Summary_UU */ + public static final String COLUMNNAME_Fact_Acct_Summary_UU = "Fact_Acct_Summary_UU"; + + /** Set Fact_Acct_Summary_UU */ + public void setFact_Acct_Summary_UU (String Fact_Acct_Summary_UU); + + /** Get Fact_Acct_Summary_UU */ + public String getFact_Acct_Summary_UU(); + /** Column name GL_Budget_ID */ public static final String COLUMNNAME_GL_Budget_ID = "GL_Budget_ID"; @@ -340,7 +349,7 @@ public interface I_Fact_Acct_Summary */ public int getGL_Budget_ID(); - public I_GL_Budget getGL_Budget() throws RuntimeException; + public org.compiere.model.I_GL_Budget getGL_Budget() throws RuntimeException; /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; @@ -368,7 +377,7 @@ public interface I_Fact_Acct_Summary */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name PA_ReportCube_ID */ public static final String COLUMNNAME_PA_ReportCube_ID = "PA_ReportCube_ID"; @@ -383,7 +392,7 @@ public interface I_Fact_Acct_Summary */ public int getPA_ReportCube_ID(); - public I_PA_ReportCube getPA_ReportCube() throws RuntimeException; + public org.compiere.model.I_PA_ReportCube getPA_ReportCube() throws RuntimeException; /** Column name PostingType */ public static final String COLUMNNAME_PostingType = "PostingType"; @@ -440,7 +449,7 @@ public interface I_Fact_Acct_Summary */ public int getUser1_ID(); - public I_C_ElementValue getUser1() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException; /** Column name User2_ID */ public static final String COLUMNNAME_User2_ID = "User2_ID"; @@ -455,7 +464,7 @@ public interface I_Fact_Acct_Summary */ public int getUser2_ID(); - public I_C_ElementValue getUser2() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException; /** Column name UserElement1_ID */ public static final String COLUMNNAME_UserElement1_ID = "UserElement1_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_Fact_Reconciliation.java b/org.adempiere.base/src/org/compiere/model/I_Fact_Reconciliation.java index 47918c3d7b..74211296ea 100644 --- a/org.adempiere.base/src/org/compiere/model/I_Fact_Reconciliation.java +++ b/org.adempiere.base/src/org/compiere/model/I_Fact_Reconciliation.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for Fact_Reconciliation - * @author Adempiere (generated) - * @version 360LTS.015 + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_Fact_Reconciliation { @@ -31,7 +31,7 @@ public interface I_Fact_Reconciliation public static final String Table_Name = "Fact_Reconciliation"; /** AD_Table_ID=53286 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53286; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -54,7 +54,7 @@ public interface I_Fact_Reconciliation */ public int getAccount_ID(); - public I_C_ElementValue getAccount() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getAccount() throws RuntimeException; /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; @@ -103,7 +103,7 @@ public interface I_Fact_Reconciliation */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -143,7 +143,7 @@ public interface I_Fact_Reconciliation /** Get Accounting Fact */ public int getFact_Acct_ID(); - public I_Fact_Acct getFact_Acct() throws RuntimeException; + public org.compiere.model.I_Fact_Acct getFact_Acct() throws RuntimeException; /** Column name Fact_Reconciliation_ID */ public static final String COLUMNNAME_Fact_Reconciliation_ID = "Fact_Reconciliation_ID"; @@ -154,6 +154,15 @@ public interface I_Fact_Reconciliation /** Get Accounting Fact Reconciliation */ public int getFact_Reconciliation_ID(); + /** Column name Fact_Reconciliation_UU */ + public static final String COLUMNNAME_Fact_Reconciliation_UU = "Fact_Reconciliation_UU"; + + /** Set Fact_Reconciliation_UU */ + public void setFact_Reconciliation_UU (String Fact_Reconciliation_UU); + + /** Get Fact_Reconciliation_UU */ + public String getFact_Reconciliation_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/compiere/model/I_GL_Budget.java b/org.adempiere.base/src/org/compiere/model/I_GL_Budget.java index 60375276a2..33f7ab4639 100644 --- a/org.adempiere.base/src/org/compiere/model/I_GL_Budget.java +++ b/org.adempiere.base/src/org/compiere/model/I_GL_Budget.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for GL_Budget - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_GL_Budget { @@ -31,7 +31,7 @@ public interface I_GL_Budget public static final String Table_Name = "GL_Budget"; /** AD_Table_ID=271 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 271; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -117,6 +117,15 @@ public interface I_GL_Budget */ public int getGL_Budget_ID(); + /** Column name GL_Budget_UU */ + public static final String COLUMNNAME_GL_Budget_UU = "GL_Budget_UU"; + + /** Set GL_Budget_UU */ + public void setGL_Budget_UU (String GL_Budget_UU); + + /** Get GL_Budget_UU */ + public String getGL_Budget_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/compiere/model/I_GL_BudgetControl.java b/org.adempiere.base/src/org/compiere/model/I_GL_BudgetControl.java index a7058c87a7..2fd3a5fc99 100644 --- a/org.adempiere.base/src/org/compiere/model/I_GL_BudgetControl.java +++ b/org.adempiere.base/src/org/compiere/model/I_GL_BudgetControl.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for GL_BudgetControl - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_GL_BudgetControl { @@ -31,7 +31,7 @@ public interface I_GL_BudgetControl public static final String Table_Name = "GL_BudgetControl"; /** AD_Table_ID=822 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 822; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_GL_BudgetControl */ public int getC_AcctSchema_ID(); - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException; /** Column name CommitmentType */ public static final String COLUMNNAME_CommitmentType = "CommitmentType"; @@ -145,6 +145,15 @@ public interface I_GL_BudgetControl */ public int getGL_BudgetControl_ID(); + /** Column name GL_BudgetControl_UU */ + public static final String COLUMNNAME_GL_BudgetControl_UU = "GL_BudgetControl_UU"; + + /** Set GL_BudgetControl_UU */ + public void setGL_BudgetControl_UU (String GL_BudgetControl_UU); + + /** Get GL_BudgetControl_UU */ + public String getGL_BudgetControl_UU(); + /** Column name GL_Budget_ID */ public static final String COLUMNNAME_GL_Budget_ID = "GL_Budget_ID"; @@ -158,7 +167,7 @@ public interface I_GL_BudgetControl */ public int getGL_Budget_ID(); - public I_GL_Budget getGL_Budget() throws RuntimeException; + public org.compiere.model.I_GL_Budget getGL_Budget() throws RuntimeException; /** Column name Help */ public static final String COLUMNNAME_Help = "Help"; diff --git a/org.adempiere.base/src/org/compiere/model/I_GL_Category.java b/org.adempiere.base/src/org/compiere/model/I_GL_Category.java index b776439740..db698d4c67 100644 --- a/org.adempiere.base/src/org/compiere/model/I_GL_Category.java +++ b/org.adempiere.base/src/org/compiere/model/I_GL_Category.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for GL_Category - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_GL_Category { @@ -31,7 +31,7 @@ public interface I_GL_Category public static final String Table_Name = "GL_Category"; /** AD_Table_ID=218 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 218; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -117,6 +117,15 @@ public interface I_GL_Category */ public int getGL_Category_ID(); + /** Column name GL_Category_UU */ + public static final String COLUMNNAME_GL_Category_UU = "GL_Category_UU"; + + /** Set GL_Category_UU */ + public void setGL_Category_UU (String GL_Category_UU); + + /** Get GL_Category_UU */ + public String getGL_Category_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/compiere/model/I_GL_Distribution.java b/org.adempiere.base/src/org/compiere/model/I_GL_Distribution.java index fe7130ed6d..a9f4b63b4c 100644 --- a/org.adempiere.base/src/org/compiere/model/I_GL_Distribution.java +++ b/org.adempiere.base/src/org/compiere/model/I_GL_Distribution.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for GL_Distribution - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_GL_Distribution { @@ -31,7 +31,7 @@ public interface I_GL_Distribution public static final String Table_Name = "GL_Distribution"; /** AD_Table_ID=708 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 708; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -54,7 +54,7 @@ public interface I_GL_Distribution */ public int getAccount_ID(); - public I_C_ElementValue getAccount() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getAccount() throws RuntimeException; /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; @@ -272,7 +272,7 @@ public interface I_GL_Distribution */ public int getC_AcctSchema_ID(); - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException; /** Column name C_Activity_ID */ public static final String COLUMNNAME_C_Activity_ID = "C_Activity_ID"; @@ -287,7 +287,7 @@ public interface I_GL_Distribution */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -302,7 +302,7 @@ public interface I_GL_Distribution */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -317,7 +317,7 @@ public interface I_GL_Distribution */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_DocType_ID */ public static final String COLUMNNAME_C_DocType_ID = "C_DocType_ID"; @@ -332,7 +332,7 @@ public interface I_GL_Distribution */ public int getC_DocType_ID(); - public I_C_DocType getC_DocType() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException; /** Column name C_LocFrom_ID */ public static final String COLUMNNAME_C_LocFrom_ID = "C_LocFrom_ID"; @@ -347,7 +347,7 @@ public interface I_GL_Distribution */ public int getC_LocFrom_ID(); - public I_C_Location getC_LocFrom() throws RuntimeException; + public org.compiere.model.I_C_Location getC_LocFrom() throws RuntimeException; /** Column name C_LocTo_ID */ public static final String COLUMNNAME_C_LocTo_ID = "C_LocTo_ID"; @@ -362,7 +362,7 @@ public interface I_GL_Distribution */ public int getC_LocTo_ID(); - public I_C_Location getC_LocTo() throws RuntimeException; + public org.compiere.model.I_C_Location getC_LocTo() throws RuntimeException; /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -377,7 +377,7 @@ public interface I_GL_Distribution */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -408,7 +408,7 @@ public interface I_GL_Distribution */ public int getC_SalesRegion_ID(); - public I_C_SalesRegion getC_SalesRegion() throws RuntimeException; + public org.compiere.model.I_C_SalesRegion getC_SalesRegion() throws RuntimeException; /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; @@ -436,6 +436,15 @@ public interface I_GL_Distribution */ public int getGL_Distribution_ID(); + /** Column name GL_Distribution_UU */ + public static final String COLUMNNAME_GL_Distribution_UU = "GL_Distribution_UU"; + + /** Set GL_Distribution_UU */ + public void setGL_Distribution_UU (String GL_Distribution_UU); + + /** Get GL_Distribution_UU */ + public String getGL_Distribution_UU(); + /** Column name Help */ public static final String COLUMNNAME_Help = "Help"; @@ -501,7 +510,7 @@ public interface I_GL_Distribution */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; @@ -593,7 +602,7 @@ public interface I_GL_Distribution */ public int getUser1_ID(); - public I_C_ElementValue getUser1() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException; /** Column name User2_ID */ public static final String COLUMNNAME_User2_ID = "User2_ID"; @@ -608,5 +617,5 @@ public interface I_GL_Distribution */ public int getUser2_ID(); - public I_C_ElementValue getUser2() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException; } diff --git a/org.adempiere.base/src/org/compiere/model/I_GL_DistributionLine.java b/org.adempiere.base/src/org/compiere/model/I_GL_DistributionLine.java index 13146b88af..f8f79a1ffb 100644 --- a/org.adempiere.base/src/org/compiere/model/I_GL_DistributionLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_GL_DistributionLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for GL_DistributionLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_GL_DistributionLine { @@ -31,7 +31,7 @@ public interface I_GL_DistributionLine public static final String Table_Name = "GL_DistributionLine"; /** AD_Table_ID=707 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 707; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -101,7 +101,7 @@ public interface I_GL_DistributionLine */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -116,7 +116,7 @@ public interface I_GL_DistributionLine */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -131,7 +131,7 @@ public interface I_GL_DistributionLine */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_LocFrom_ID */ public static final String COLUMNNAME_C_LocFrom_ID = "C_LocFrom_ID"; @@ -146,7 +146,7 @@ public interface I_GL_DistributionLine */ public int getC_LocFrom_ID(); - public I_C_Location getC_LocFrom() throws RuntimeException; + public org.compiere.model.I_C_Location getC_LocFrom() throws RuntimeException; /** Column name C_LocTo_ID */ public static final String COLUMNNAME_C_LocTo_ID = "C_LocTo_ID"; @@ -161,7 +161,7 @@ public interface I_GL_DistributionLine */ public int getC_LocTo_ID(); - public I_C_Location getC_LocTo() throws RuntimeException; + public org.compiere.model.I_C_Location getC_LocTo() throws RuntimeException; /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -176,7 +176,7 @@ public interface I_GL_DistributionLine */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -207,7 +207,7 @@ public interface I_GL_DistributionLine */ public int getC_SalesRegion_ID(); - public I_C_SalesRegion getC_SalesRegion() throws RuntimeException; + public org.compiere.model.I_C_SalesRegion getC_SalesRegion() throws RuntimeException; /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; @@ -235,7 +235,7 @@ public interface I_GL_DistributionLine */ public int getGL_Distribution_ID(); - public I_GL_Distribution getGL_Distribution() throws RuntimeException; + public org.compiere.model.I_GL_Distribution getGL_Distribution() throws RuntimeException; /** Column name GL_DistributionLine_ID */ public static final String COLUMNNAME_GL_DistributionLine_ID = "GL_DistributionLine_ID"; @@ -250,6 +250,15 @@ public interface I_GL_DistributionLine */ public int getGL_DistributionLine_ID(); + /** Column name GL_DistributionLine_UU */ + public static final String COLUMNNAME_GL_DistributionLine_UU = "GL_DistributionLine_UU"; + + /** Set GL_DistributionLine_UU */ + public void setGL_DistributionLine_UU (String GL_DistributionLine_UU); + + /** Get GL_DistributionLine_UU */ + public String getGL_DistributionLine_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; @@ -289,7 +298,7 @@ public interface I_GL_DistributionLine */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Org_ID */ public static final String COLUMNNAME_Org_ID = "Org_ID"; @@ -515,7 +524,7 @@ public interface I_GL_DistributionLine */ public int getUser1_ID(); - public I_C_ElementValue getUser1() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException; /** Column name User2_ID */ public static final String COLUMNNAME_User2_ID = "User2_ID"; @@ -530,5 +539,5 @@ public interface I_GL_DistributionLine */ public int getUser2_ID(); - public I_C_ElementValue getUser2() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException; } diff --git a/org.adempiere.base/src/org/compiere/model/I_GL_Fund.java b/org.adempiere.base/src/org/compiere/model/I_GL_Fund.java index 39c6600f1f..ae6c531978 100644 --- a/org.adempiere.base/src/org/compiere/model/I_GL_Fund.java +++ b/org.adempiere.base/src/org/compiere/model/I_GL_Fund.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for GL_Fund - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_GL_Fund { @@ -31,7 +31,7 @@ public interface I_GL_Fund public static final String Table_Name = "GL_Fund"; /** AD_Table_ID=823 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 823; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_GL_Fund */ public int getC_AcctSchema_ID(); - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -158,6 +158,15 @@ public interface I_GL_Fund */ public int getGL_Fund_ID(); + /** Column name GL_Fund_UU */ + public static final String COLUMNNAME_GL_Fund_UU = "GL_Fund_UU"; + + /** Set GL_Fund_UU */ + public void setGL_Fund_UU (String GL_Fund_UU); + + /** Get GL_Fund_UU */ + public String getGL_Fund_UU(); + /** Column name Help */ public static final String COLUMNNAME_Help = "Help"; diff --git a/org.adempiere.base/src/org/compiere/model/I_GL_FundRestriction.java b/org.adempiere.base/src/org/compiere/model/I_GL_FundRestriction.java index 52de4b2d35..f52f46af93 100644 --- a/org.adempiere.base/src/org/compiere/model/I_GL_FundRestriction.java +++ b/org.adempiere.base/src/org/compiere/model/I_GL_FundRestriction.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for GL_FundRestriction - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_GL_FundRestriction { @@ -31,7 +31,7 @@ public interface I_GL_FundRestriction public static final String Table_Name = "GL_FundRestriction"; /** AD_Table_ID=824 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 824; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_GL_FundRestriction */ public int getC_ElementValue_ID(); - public I_C_ElementValue getC_ElementValue() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getC_ElementValue() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -119,7 +119,7 @@ public interface I_GL_FundRestriction */ public int getGL_Fund_ID(); - public I_GL_Fund getGL_Fund() throws RuntimeException; + public org.compiere.model.I_GL_Fund getGL_Fund() throws RuntimeException; /** Column name GL_FundRestriction_ID */ public static final String COLUMNNAME_GL_FundRestriction_ID = "GL_FundRestriction_ID"; @@ -134,6 +134,15 @@ public interface I_GL_FundRestriction */ public int getGL_FundRestriction_ID(); + /** Column name GL_FundRestriction_UU */ + public static final String COLUMNNAME_GL_FundRestriction_UU = "GL_FundRestriction_UU"; + + /** Set GL_FundRestriction_UU */ + public void setGL_FundRestriction_UU (String GL_FundRestriction_UU); + + /** Get GL_FundRestriction_UU */ + public String getGL_FundRestriction_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/compiere/model/I_GL_Journal.java b/org.adempiere.base/src/org/compiere/model/I_GL_Journal.java index 52600bcacf..c2f216139d 100644 --- a/org.adempiere.base/src/org/compiere/model/I_GL_Journal.java +++ b/org.adempiere.base/src/org/compiere/model/I_GL_Journal.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for GL_Journal - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_GL_Journal { @@ -31,7 +31,7 @@ public interface I_GL_Journal public static final String Table_Name = "GL_Journal"; /** AD_Table_ID=224 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 224; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_GL_Journal */ public int getC_AcctSchema_ID(); - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException; /** Column name C_ConversionType_ID */ public static final String COLUMNNAME_C_ConversionType_ID = "C_ConversionType_ID"; @@ -90,7 +90,7 @@ public interface I_GL_Journal */ public int getC_ConversionType_ID(); - public I_C_ConversionType getC_ConversionType() throws RuntimeException; + public org.compiere.model.I_C_ConversionType getC_ConversionType() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -105,7 +105,7 @@ public interface I_GL_Journal */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name C_DocType_ID */ public static final String COLUMNNAME_C_DocType_ID = "C_DocType_ID"; @@ -120,7 +120,7 @@ public interface I_GL_Journal */ public int getC_DocType_ID(); - public I_C_DocType getC_DocType() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException; /** Column name ControlAmt */ public static final String COLUMNNAME_ControlAmt = "ControlAmt"; @@ -135,6 +135,19 @@ public interface I_GL_Journal */ public BigDecimal getControlAmt(); + /** Column name CopyFrom */ + public static final String COLUMNNAME_CopyFrom = "CopyFrom"; + + /** Set Copy From. + * Copy From Record + */ + public void setCopyFrom (String CopyFrom); + + /** Get Copy From. + * Copy From Record + */ + public String getCopyFrom(); + /** Column name C_Period_ID */ public static final String COLUMNNAME_C_Period_ID = "C_Period_ID"; @@ -148,7 +161,7 @@ public interface I_GL_Journal */ public int getC_Period_ID(); - public I_C_Period getC_Period() throws RuntimeException; + public org.compiere.model.I_C_Period getC_Period() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -270,7 +283,7 @@ public interface I_GL_Journal */ public int getGL_Budget_ID(); - public I_GL_Budget getGL_Budget() throws RuntimeException; + public org.compiere.model.I_GL_Budget getGL_Budget() throws RuntimeException; /** Column name GL_Category_ID */ public static final String COLUMNNAME_GL_Category_ID = "GL_Category_ID"; @@ -285,7 +298,7 @@ public interface I_GL_Journal */ public int getGL_Category_ID(); - public I_GL_Category getGL_Category() throws RuntimeException; + public org.compiere.model.I_GL_Category getGL_Category() throws RuntimeException; /** Column name GL_JournalBatch_ID */ public static final String COLUMNNAME_GL_JournalBatch_ID = "GL_JournalBatch_ID"; @@ -300,7 +313,7 @@ public interface I_GL_Journal */ public int getGL_JournalBatch_ID(); - public I_GL_JournalBatch getGL_JournalBatch() throws RuntimeException; + public org.compiere.model.I_GL_JournalBatch getGL_JournalBatch() throws RuntimeException; /** Column name GL_Journal_ID */ public static final String COLUMNNAME_GL_Journal_ID = "GL_Journal_ID"; @@ -315,6 +328,15 @@ public interface I_GL_Journal */ public int getGL_Journal_ID(); + /** Column name GL_Journal_UU */ + public static final String COLUMNNAME_GL_Journal_UU = "GL_Journal_UU"; + + /** Set GL_Journal_UU */ + public void setGL_Journal_UU (String GL_Journal_UU); + + /** Get GL_Journal_UU */ + public String getGL_Journal_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; @@ -428,7 +450,7 @@ public interface I_GL_Journal */ public int getReversal_ID(); - public I_GL_Journal getReversal() throws RuntimeException; + public org.compiere.model.I_GL_Journal getReversal() throws RuntimeException; /** Column name TotalCr */ public static final String COLUMNNAME_TotalCr = "TotalCr"; diff --git a/org.adempiere.base/src/org/compiere/model/I_GL_JournalBatch.java b/org.adempiere.base/src/org/compiere/model/I_GL_JournalBatch.java index 00c9f6ca45..e6f94b33cd 100644 --- a/org.adempiere.base/src/org/compiere/model/I_GL_JournalBatch.java +++ b/org.adempiere.base/src/org/compiere/model/I_GL_JournalBatch.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for GL_JournalBatch - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_GL_JournalBatch { @@ -31,7 +31,7 @@ public interface I_GL_JournalBatch public static final String Table_Name = "GL_JournalBatch"; /** AD_Table_ID=225 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 225; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_GL_JournalBatch */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name C_DocType_ID */ public static final String COLUMNNAME_C_DocType_ID = "C_DocType_ID"; @@ -90,7 +90,7 @@ public interface I_GL_JournalBatch */ public int getC_DocType_ID(); - public I_C_DocType getC_DocType() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException; /** Column name ControlAmt */ public static final String COLUMNNAME_ControlAmt = "ControlAmt"; @@ -131,7 +131,7 @@ public interface I_GL_JournalBatch */ public int getC_Period_ID(); - public I_C_Period getC_Period() throws RuntimeException; + public org.compiere.model.I_C_Period getC_Period() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -240,7 +240,7 @@ public interface I_GL_JournalBatch */ public int getGL_Category_ID(); - public I_GL_Category getGL_Category() throws RuntimeException; + public org.compiere.model.I_GL_Category getGL_Category() throws RuntimeException; /** Column name GL_JournalBatch_ID */ public static final String COLUMNNAME_GL_JournalBatch_ID = "GL_JournalBatch_ID"; @@ -255,6 +255,15 @@ public interface I_GL_JournalBatch */ public int getGL_JournalBatch_ID(); + /** Column name GL_JournalBatch_UU */ + public static final String COLUMNNAME_GL_JournalBatch_UU = "GL_JournalBatch_UU"; + + /** Set GL_JournalBatch_UU */ + public void setGL_JournalBatch_UU (String GL_JournalBatch_UU); + + /** Get GL_JournalBatch_UU */ + public String getGL_JournalBatch_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; @@ -329,7 +338,7 @@ public interface I_GL_JournalBatch */ public int getReversal_ID(); - public I_GL_JournalBatch getReversal() throws RuntimeException; + public org.compiere.model.I_GL_JournalBatch getReversal() throws RuntimeException; /** Column name TotalCr */ public static final String COLUMNNAME_TotalCr = "TotalCr"; diff --git a/org.adempiere.base/src/org/compiere/model/I_GL_JournalGenerator.java b/org.adempiere.base/src/org/compiere/model/I_GL_JournalGenerator.java index 5821f3623d..d34f8586de 100644 --- a/org.adempiere.base/src/org/compiere/model/I_GL_JournalGenerator.java +++ b/org.adempiere.base/src/org/compiere/model/I_GL_JournalGenerator.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for GL_JournalGenerator - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_GL_JournalGenerator { @@ -35,7 +35,7 @@ public interface I_GL_JournalGenerator KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); - /** AccessLevel = - Client - Org + /** AccessLevel = 3 - Client - Org */ BigDecimal accessLevel = BigDecimal.valueOf(3); diff --git a/org.adempiere.base/src/org/compiere/model/I_GL_JournalGeneratorLine.java b/org.adempiere.base/src/org/compiere/model/I_GL_JournalGeneratorLine.java index 5eed4b775e..85a972a12e 100644 --- a/org.adempiere.base/src/org/compiere/model/I_GL_JournalGeneratorLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_GL_JournalGeneratorLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for GL_JournalGeneratorLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_GL_JournalGeneratorLine { @@ -35,7 +35,7 @@ public interface I_GL_JournalGeneratorLine KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); - /** AccessLevel = - Client - Org + /** AccessLevel = 3 - Client - Org */ BigDecimal accessLevel = BigDecimal.valueOf(3); diff --git a/org.adempiere.base/src/org/compiere/model/I_GL_JournalGeneratorSource.java b/org.adempiere.base/src/org/compiere/model/I_GL_JournalGeneratorSource.java index f71ff03230..944149c144 100644 --- a/org.adempiere.base/src/org/compiere/model/I_GL_JournalGeneratorSource.java +++ b/org.adempiere.base/src/org/compiere/model/I_GL_JournalGeneratorSource.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for GL_JournalGeneratorSource - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_GL_JournalGeneratorSource { @@ -35,7 +35,7 @@ public interface I_GL_JournalGeneratorSource KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); - /** AccessLevel = - Client - Org + /** AccessLevel = 3 - Client - Org */ BigDecimal accessLevel = BigDecimal.valueOf(3); diff --git a/org.adempiere.base/src/org/compiere/model/I_GL_JournalLine.java b/org.adempiere.base/src/org/compiere/model/I_GL_JournalLine.java index 7b41df595a..087648c21f 100644 --- a/org.adempiere.base/src/org/compiere/model/I_GL_JournalLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_GL_JournalLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for GL_JournalLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_GL_JournalLine { @@ -89,10 +89,10 @@ public interface I_GL_JournalLine /** Column name A_CreateAsset */ public static final String COLUMNNAME_A_CreateAsset = "A_CreateAsset"; - /** Set Asset Related? */ + /** Set Create Asset */ public void setA_CreateAsset (boolean A_CreateAsset); - /** Get Asset Related? */ + /** Get Create Asset */ public boolean isA_CreateAsset(); /** Column name AD_Client_ID */ diff --git a/org.adempiere.base/src/org/compiere/model/I_IMP_Processor.java b/org.adempiere.base/src/org/compiere/model/I_IMP_Processor.java index 0708dd1198..c3d4999fe9 100644 --- a/org.adempiere.base/src/org/compiere/model/I_IMP_Processor.java +++ b/org.adempiere.base/src/org/compiere/model/I_IMP_Processor.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for IMP_Processor - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_IMP_Processor { @@ -31,7 +31,7 @@ public interface I_IMP_Processor public static final String Table_Name = "IMP_Processor"; /** AD_Table_ID=53077 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53077; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -194,6 +194,15 @@ public interface I_IMP_Processor public org.compiere.model.I_IMP_Processor_Type getIMP_Processor_Type() throws RuntimeException; + /** Column name IMP_Processor_UU */ + public static final String COLUMNNAME_IMP_Processor_UU = "IMP_Processor_UU"; + + /** Set IMP_Processor_UU */ + public void setIMP_Processor_UU (String IMP_Processor_UU); + + /** Get IMP_Processor_UU */ + public String getIMP_Processor_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/compiere/model/I_IMP_ProcessorLog.java b/org.adempiere.base/src/org/compiere/model/I_IMP_ProcessorLog.java index 985dfc42e8..909af8928e 100644 --- a/org.adempiere.base/src/org/compiere/model/I_IMP_ProcessorLog.java +++ b/org.adempiere.base/src/org/compiere/model/I_IMP_ProcessorLog.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for IMP_ProcessorLog - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_IMP_ProcessorLog { @@ -31,7 +31,7 @@ public interface I_IMP_ProcessorLog public static final String Table_Name = "IMP_ProcessorLog"; /** AD_Table_ID=53079 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53079; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -137,6 +137,15 @@ public interface I_IMP_ProcessorLog /** Get Import Processor Log */ public int getIMP_ProcessorLog_ID(); + /** Column name IMP_ProcessorLog_UU */ + public static final String COLUMNNAME_IMP_ProcessorLog_UU = "IMP_ProcessorLog_UU"; + + /** Set IMP_ProcessorLog_UU */ + public void setIMP_ProcessorLog_UU (String IMP_ProcessorLog_UU); + + /** Get IMP_ProcessorLog_UU */ + public String getIMP_ProcessorLog_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/compiere/model/I_IMP_ProcessorParameter.java b/org.adempiere.base/src/org/compiere/model/I_IMP_ProcessorParameter.java index 293042a65a..5063d44fd2 100644 --- a/org.adempiere.base/src/org/compiere/model/I_IMP_ProcessorParameter.java +++ b/org.adempiere.base/src/org/compiere/model/I_IMP_ProcessorParameter.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for IMP_ProcessorParameter - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_IMP_ProcessorParameter { @@ -31,7 +31,7 @@ public interface I_IMP_ProcessorParameter public static final String Table_Name = "IMP_ProcessorParameter"; /** AD_Table_ID=53078 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53078; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -124,6 +124,15 @@ public interface I_IMP_ProcessorParameter /** Get Import Processor Parameter */ public int getIMP_ProcessorParameter_ID(); + /** Column name IMP_ProcessorParameter_UU */ + public static final String COLUMNNAME_IMP_ProcessorParameter_UU = "IMP_ProcessorParameter_UU"; + + /** Set IMP_ProcessorParameter_UU */ + public void setIMP_ProcessorParameter_UU (String IMP_ProcessorParameter_UU); + + /** Get IMP_ProcessorParameter_UU */ + public String getIMP_ProcessorParameter_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/compiere/model/I_IMP_Processor_Type.java b/org.adempiere.base/src/org/compiere/model/I_IMP_Processor_Type.java index 8fb741e76e..3f0b586985 100644 --- a/org.adempiere.base/src/org/compiere/model/I_IMP_Processor_Type.java +++ b/org.adempiere.base/src/org/compiere/model/I_IMP_Processor_Type.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for IMP_Processor_Type - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_IMP_Processor_Type { @@ -31,7 +31,7 @@ public interface I_IMP_Processor_Type public static final String Table_Name = "IMP_Processor_Type"; /** AD_Table_ID=53080 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53080; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -113,6 +113,15 @@ public interface I_IMP_Processor_Type /** Get Import Processor Type */ public int getIMP_Processor_Type_ID(); + /** Column name IMP_Processor_Type_UU */ + public static final String COLUMNNAME_IMP_Processor_Type_UU = "IMP_Processor_Type_UU"; + + /** Set IMP_Processor_Type_UU */ + public void setIMP_Processor_Type_UU (String IMP_Processor_Type_UU); + + /** Get IMP_Processor_Type_UU */ + public String getIMP_Processor_Type_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/compiere/model/I_I_Asset.java b/org.adempiere.base/src/org/compiere/model/I_I_Asset.java index c32aae9225..d1d511ed52 100644 --- a/org.adempiere.base/src/org/compiere/model/I_I_Asset.java +++ b/org.adempiere.base/src/org/compiere/model/I_I_Asset.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for I_Asset - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_I_Asset { diff --git a/org.adempiere.base/src/org/compiere/model/I_I_BPartner.java b/org.adempiere.base/src/org/compiere/model/I_I_BPartner.java index 45939a0c46..8e81878694 100644 --- a/org.adempiere.base/src/org/compiere/model/I_I_BPartner.java +++ b/org.adempiere.base/src/org/compiere/model/I_I_BPartner.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for I_BPartner - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_I_BPartner { @@ -31,7 +31,7 @@ public interface I_I_BPartner public static final String Table_Name = "I_BPartner"; /** AD_Table_ID=533 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 533; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -101,7 +101,7 @@ public interface I_I_BPartner */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name Birthday */ public static final String COLUMNNAME_Birthday = "Birthday"; @@ -142,7 +142,7 @@ public interface I_I_BPartner */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_BPartner_Location_ID */ public static final String COLUMNNAME_C_BPartner_Location_ID = "C_BPartner_Location_ID"; @@ -157,7 +157,7 @@ public interface I_I_BPartner */ public int getC_BPartner_Location_ID(); - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; /** Column name C_BP_Group_ID */ public static final String COLUMNNAME_C_BP_Group_ID = "C_BP_Group_ID"; @@ -172,7 +172,7 @@ public interface I_I_BPartner */ public int getC_BP_Group_ID(); - public I_C_BP_Group getC_BP_Group() throws RuntimeException; + public org.compiere.model.I_C_BP_Group getC_BP_Group() throws RuntimeException; /** Column name C_Country_ID */ public static final String COLUMNNAME_C_Country_ID = "C_Country_ID"; @@ -187,7 +187,7 @@ public interface I_I_BPartner */ public int getC_Country_ID(); - public I_C_Country getC_Country() throws RuntimeException; + public org.compiere.model.I_C_Country getC_Country() throws RuntimeException; /** Column name C_Greeting_ID */ public static final String COLUMNNAME_C_Greeting_ID = "C_Greeting_ID"; @@ -202,7 +202,7 @@ public interface I_I_BPartner */ public int getC_Greeting_ID(); - public I_C_Greeting getC_Greeting() throws RuntimeException; + public org.compiere.model.I_C_Greeting getC_Greeting() throws RuntimeException; /** Column name City */ public static final String COLUMNNAME_City = "City"; @@ -298,7 +298,7 @@ public interface I_I_BPartner */ public int getC_Region_ID(); - public I_C_Region getC_Region() throws RuntimeException; + public org.compiere.model.I_C_Region getC_Region() throws RuntimeException; /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; @@ -374,6 +374,15 @@ public interface I_I_BPartner /** Get Import Business Partner */ public int getI_BPartner_ID(); + /** Column name I_BPartner_UU */ + public static final String COLUMNNAME_I_BPartner_UU = "I_BPartner_UU"; + + /** Set I_BPartner_UU */ + public void setI_BPartner_UU (String I_BPartner_UU); + + /** Get I_BPartner_UU */ + public String getI_BPartner_UU(); + /** Column name I_ErrorMsg */ public static final String COLUMNNAME_I_ErrorMsg = "I_ErrorMsg"; @@ -617,7 +626,7 @@ public interface I_I_BPartner */ public int getR_InterestArea_ID(); - public I_R_InterestArea getR_InterestArea() throws RuntimeException; + public org.compiere.model.I_R_InterestArea getR_InterestArea() throws RuntimeException; /** Column name TaxID */ public static final String COLUMNNAME_TaxID = "TaxID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_I_BankStatement.java b/org.adempiere.base/src/org/compiere/model/I_I_BankStatement.java index d8bfc0fe1b..4f2947e5ec 100644 --- a/org.adempiere.base/src/org/compiere/model/I_I_BankStatement.java +++ b/org.adempiere.base/src/org/compiere/model/I_I_BankStatement.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for I_BankStatement - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_I_BankStatement { @@ -31,7 +31,7 @@ public interface I_I_BankStatement public static final String Table_Name = "I_BankStatement"; /** AD_Table_ID=600 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 600; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -101,7 +101,7 @@ public interface I_I_BankStatement */ public int getC_BankAccount_ID(); - public I_C_BankAccount getC_BankAccount() throws RuntimeException; + public org.compiere.model.I_C_BankAccount getC_BankAccount() throws RuntimeException; /** Column name C_BankStatement_ID */ public static final String COLUMNNAME_C_BankStatement_ID = "C_BankStatement_ID"; @@ -116,7 +116,7 @@ public interface I_I_BankStatement */ public int getC_BankStatement_ID(); - public I_C_BankStatement getC_BankStatement() throws RuntimeException; + public org.compiere.model.I_C_BankStatement getC_BankStatement() throws RuntimeException; /** Column name C_BankStatementLine_ID */ public static final String COLUMNNAME_C_BankStatementLine_ID = "C_BankStatementLine_ID"; @@ -131,7 +131,7 @@ public interface I_I_BankStatement */ public int getC_BankStatementLine_ID(); - public I_C_BankStatementLine getC_BankStatementLine() throws RuntimeException; + public org.compiere.model.I_C_BankStatementLine getC_BankStatementLine() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -146,7 +146,7 @@ public interface I_I_BankStatement */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Charge_ID */ public static final String COLUMNNAME_C_Charge_ID = "C_Charge_ID"; @@ -161,7 +161,7 @@ public interface I_I_BankStatement */ public int getC_Charge_ID(); - public I_C_Charge getC_Charge() throws RuntimeException; + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -176,7 +176,7 @@ public interface I_I_BankStatement */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name ChargeAmt */ public static final String COLUMNNAME_ChargeAmt = "ChargeAmt"; @@ -217,7 +217,7 @@ public interface I_I_BankStatement */ public int getC_Invoice_ID(); - public I_C_Invoice getC_Invoice() throws RuntimeException; + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException; /** Column name C_Payment_ID */ public static final String COLUMNNAME_C_Payment_ID = "C_Payment_ID"; @@ -232,7 +232,7 @@ public interface I_I_BankStatement */ public int getC_Payment_ID(); - public I_C_Payment getC_Payment() throws RuntimeException; + public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -467,6 +467,15 @@ public interface I_I_BankStatement */ public int getI_BankStatement_ID(); + /** Column name I_BankStatement_UU */ + public static final String COLUMNNAME_I_BankStatement_UU = "I_BankStatement_UU"; + + /** Set I_BankStatement_UU */ + public void setI_BankStatement_UU (String I_BankStatement_UU); + + /** Get I_BankStatement_UU */ + public String getI_BankStatement_UU(); + /** Column name I_ErrorMsg */ public static final String COLUMNNAME_I_ErrorMsg = "I_ErrorMsg"; diff --git a/org.adempiere.base/src/org/compiere/model/I_I_Conversion_Rate.java b/org.adempiere.base/src/org/compiere/model/I_I_Conversion_Rate.java index 1a2e4839dc..6f3ec65ab1 100644 --- a/org.adempiere.base/src/org/compiere/model/I_I_Conversion_Rate.java +++ b/org.adempiere.base/src/org/compiere/model/I_I_Conversion_Rate.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for I_Conversion_Rate - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_I_Conversion_Rate { @@ -31,7 +31,7 @@ public interface I_I_Conversion_Rate public static final String Table_Name = "I_Conversion_Rate"; /** AD_Table_ID=641 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 641; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_I_Conversion_Rate */ public int getC_Conversion_Rate_ID(); - public I_C_Conversion_Rate getC_Conversion_Rate() throws RuntimeException; + public org.compiere.model.I_C_Conversion_Rate getC_Conversion_Rate() throws RuntimeException; /** Column name C_ConversionType_ID */ public static final String COLUMNNAME_C_ConversionType_ID = "C_ConversionType_ID"; @@ -90,7 +90,7 @@ public interface I_I_Conversion_Rate */ public int getC_ConversionType_ID(); - public I_C_ConversionType getC_ConversionType() throws RuntimeException; + public org.compiere.model.I_C_ConversionType getC_ConversionType() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -105,7 +105,7 @@ public interface I_I_Conversion_Rate */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name C_Currency_ID_To */ public static final String COLUMNNAME_C_Currency_ID_To = "C_Currency_ID_To"; @@ -120,7 +120,7 @@ public interface I_I_Conversion_Rate */ public int getC_Currency_ID_To(); - public I_C_Currency getC_Currency_To() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency_To() throws RuntimeException; /** Column name ConversionTypeValue */ public static final String COLUMNNAME_ConversionTypeValue = "ConversionTypeValue"; @@ -190,6 +190,15 @@ public interface I_I_Conversion_Rate */ public int getI_Conversion_Rate_ID(); + /** Column name I_Conversion_Rate_UU */ + public static final String COLUMNNAME_I_Conversion_Rate_UU = "I_Conversion_Rate_UU"; + + /** Set I_Conversion_Rate_UU */ + public void setI_Conversion_Rate_UU (String I_Conversion_Rate_UU); + + /** Get I_Conversion_Rate_UU */ + public String getI_Conversion_Rate_UU(); + /** Column name I_ErrorMsg */ public static final String COLUMNNAME_I_ErrorMsg = "I_ErrorMsg"; diff --git a/org.adempiere.base/src/org/compiere/model/I_I_ElementValue.java b/org.adempiere.base/src/org/compiere/model/I_I_ElementValue.java index 64594ca76f..55c7a232ac 100644 --- a/org.adempiere.base/src/org/compiere/model/I_I_ElementValue.java +++ b/org.adempiere.base/src/org/compiere/model/I_I_ElementValue.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for I_ElementValue - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_I_ElementValue { @@ -31,7 +31,7 @@ public interface I_I_ElementValue public static final String Table_Name = "I_ElementValue"; /** AD_Table_ID=534 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 534; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_I_ElementValue */ public int getAD_Column_ID(); - public I_AD_Column getAD_Column() throws RuntimeException; + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -116,7 +116,7 @@ public interface I_I_ElementValue */ public int getC_Element_ID(); - public I_C_Element getC_Element() throws RuntimeException; + public org.compiere.model.I_C_Element getC_Element() throws RuntimeException; /** Column name C_ElementValue_ID */ public static final String COLUMNNAME_C_ElementValue_ID = "C_ElementValue_ID"; @@ -131,7 +131,7 @@ public interface I_I_ElementValue */ public int getC_ElementValue_ID(); - public I_C_ElementValue getC_ElementValue() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getC_ElementValue() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -201,6 +201,15 @@ public interface I_I_ElementValue */ public int getI_ElementValue_ID(); + /** Column name I_ElementValue_UU */ + public static final String COLUMNNAME_I_ElementValue_UU = "I_ElementValue_UU"; + + /** Set I_ElementValue_UU */ + public void setI_ElementValue_UU (String I_ElementValue_UU); + + /** Get I_ElementValue_UU */ + public String getI_ElementValue_UU(); + /** Column name I_ErrorMsg */ public static final String COLUMNNAME_I_ErrorMsg = "I_ErrorMsg"; @@ -292,7 +301,7 @@ public interface I_I_ElementValue */ public int getParentElementValue_ID(); - public I_C_ElementValue getParentElementValue() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getParentElementValue() throws RuntimeException; /** Column name ParentValue */ public static final String COLUMNNAME_ParentValue = "ParentValue"; diff --git a/org.adempiere.base/src/org/compiere/model/I_I_FAJournal.java b/org.adempiere.base/src/org/compiere/model/I_I_FAJournal.java index 533d7259db..677ed85b5a 100644 --- a/org.adempiere.base/src/org/compiere/model/I_I_FAJournal.java +++ b/org.adempiere.base/src/org/compiere/model/I_I_FAJournal.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for I_FAJournal - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_I_FAJournal { diff --git a/org.adempiere.base/src/org/compiere/model/I_I_FixedAsset.java b/org.adempiere.base/src/org/compiere/model/I_I_FixedAsset.java index c81c4d4811..d6a158b5f1 100644 --- a/org.adempiere.base/src/org/compiere/model/I_I_FixedAsset.java +++ b/org.adempiere.base/src/org/compiere/model/I_I_FixedAsset.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for I_FixedAsset - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_I_FixedAsset { @@ -378,6 +378,15 @@ public interface I_I_FixedAsset /** Get Imported Fixed Asset */ public int getI_FixedAsset_ID(); + /** Column name I_FixedAsset_UU */ + public static final String COLUMNNAME_I_FixedAsset_UU = "I_FixedAsset_UU"; + + /** Set I_FixedAsset_UU */ + public void setI_FixedAsset_UU (String I_FixedAsset_UU); + + /** Get I_FixedAsset_UU */ + public String getI_FixedAsset_UU(); + /** Column name I_IsImported */ public static final String COLUMNNAME_I_IsImported = "I_IsImported"; diff --git a/org.adempiere.base/src/org/compiere/model/I_I_GLJournal.java b/org.adempiere.base/src/org/compiere/model/I_I_GLJournal.java index 6e70dea5c2..931455f4d8 100644 --- a/org.adempiere.base/src/org/compiere/model/I_I_GLJournal.java +++ b/org.adempiere.base/src/org/compiere/model/I_I_GLJournal.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for I_GLJournal - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_I_GLJournal { @@ -31,7 +31,7 @@ public interface I_I_GLJournal public static final String Table_Name = "I_GLJournal"; /** AD_Table_ID=599 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 599; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -54,7 +54,7 @@ public interface I_I_GLJournal */ public int getAccount_ID(); - public I_C_ElementValue getAccount() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getAccount() throws RuntimeException; /** Column name AccountValue */ public static final String COLUMNNAME_AccountValue = "AccountValue"; @@ -233,7 +233,7 @@ public interface I_I_GLJournal */ public int getC_AcctSchema_ID(); - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException; /** Column name C_Activity_ID */ public static final String COLUMNNAME_C_Activity_ID = "C_Activity_ID"; @@ -248,7 +248,7 @@ public interface I_I_GLJournal */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name CategoryName */ public static final String COLUMNNAME_CategoryName = "CategoryName"; @@ -276,7 +276,7 @@ public interface I_I_GLJournal */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -291,7 +291,7 @@ public interface I_I_GLJournal */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_ConversionType_ID */ public static final String COLUMNNAME_C_ConversionType_ID = "C_ConversionType_ID"; @@ -306,7 +306,7 @@ public interface I_I_GLJournal */ public int getC_ConversionType_ID(); - public I_C_ConversionType getC_ConversionType() throws RuntimeException; + public org.compiere.model.I_C_ConversionType getC_ConversionType() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -321,7 +321,7 @@ public interface I_I_GLJournal */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name C_DocType_ID */ public static final String COLUMNNAME_C_DocType_ID = "C_DocType_ID"; @@ -336,7 +336,7 @@ public interface I_I_GLJournal */ public int getC_DocType_ID(); - public I_C_DocType getC_DocType() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException; /** Column name ClientValue */ public static final String COLUMNNAME_ClientValue = "ClientValue"; @@ -364,7 +364,7 @@ public interface I_I_GLJournal */ public int getC_LocFrom_ID(); - public I_C_Location getC_LocFrom() throws RuntimeException; + public org.compiere.model.I_C_Location getC_LocFrom() throws RuntimeException; /** Column name C_LocTo_ID */ public static final String COLUMNNAME_C_LocTo_ID = "C_LocTo_ID"; @@ -379,7 +379,7 @@ public interface I_I_GLJournal */ public int getC_LocTo_ID(); - public I_C_Location getC_LocTo() throws RuntimeException; + public org.compiere.model.I_C_Location getC_LocTo() throws RuntimeException; /** Column name ConversionTypeValue */ public static final String COLUMNNAME_ConversionTypeValue = "ConversionTypeValue"; @@ -407,7 +407,7 @@ public interface I_I_GLJournal */ public int getC_Period_ID(); - public I_C_Period getC_Period() throws RuntimeException; + public org.compiere.model.I_C_Period getC_Period() throws RuntimeException; /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -422,7 +422,7 @@ public interface I_I_GLJournal */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -453,7 +453,7 @@ public interface I_I_GLJournal */ public int getC_SalesRegion_ID(); - public I_C_SalesRegion getC_SalesRegion() throws RuntimeException; + public org.compiere.model.I_C_SalesRegion getC_SalesRegion() throws RuntimeException; /** Column name C_UOM_ID */ public static final String COLUMNNAME_C_UOM_ID = "C_UOM_ID"; @@ -468,7 +468,7 @@ public interface I_I_GLJournal */ public int getC_UOM_ID(); - public I_C_UOM getC_UOM() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException; /** Column name CurrencyRate */ public static final String COLUMNNAME_CurrencyRate = "CurrencyRate"; @@ -496,7 +496,7 @@ public interface I_I_GLJournal */ public int getC_ValidCombination_ID(); - public I_C_ValidCombination getC_ValidCombination() throws RuntimeException; + public org.compiere.model.I_C_ValidCombination getC_ValidCombination() throws RuntimeException; /** Column name DateAcct */ public static final String COLUMNNAME_DateAcct = "DateAcct"; @@ -550,7 +550,7 @@ public interface I_I_GLJournal */ public int getGL_Budget_ID(); - public I_GL_Budget getGL_Budget() throws RuntimeException; + public org.compiere.model.I_GL_Budget getGL_Budget() throws RuntimeException; /** Column name GL_Category_ID */ public static final String COLUMNNAME_GL_Category_ID = "GL_Category_ID"; @@ -565,7 +565,7 @@ public interface I_I_GLJournal */ public int getGL_Category_ID(); - public I_GL_Category getGL_Category() throws RuntimeException; + public org.compiere.model.I_GL_Category getGL_Category() throws RuntimeException; /** Column name GL_JournalBatch_ID */ public static final String COLUMNNAME_GL_JournalBatch_ID = "GL_JournalBatch_ID"; @@ -580,7 +580,7 @@ public interface I_I_GLJournal */ public int getGL_JournalBatch_ID(); - public I_GL_JournalBatch getGL_JournalBatch() throws RuntimeException; + public org.compiere.model.I_GL_JournalBatch getGL_JournalBatch() throws RuntimeException; /** Column name GL_Journal_ID */ public static final String COLUMNNAME_GL_Journal_ID = "GL_Journal_ID"; @@ -595,7 +595,7 @@ public interface I_I_GLJournal */ public int getGL_Journal_ID(); - public I_GL_Journal getGL_Journal() throws RuntimeException; + public org.compiere.model.I_GL_Journal getGL_Journal() throws RuntimeException; /** Column name GL_JournalLine_ID */ public static final String COLUMNNAME_GL_JournalLine_ID = "GL_JournalLine_ID"; @@ -610,7 +610,7 @@ public interface I_I_GLJournal */ public int getGL_JournalLine_ID(); - public I_GL_JournalLine getGL_JournalLine() throws RuntimeException; + public org.compiere.model.I_GL_JournalLine getGL_JournalLine() throws RuntimeException; /** Column name I_ErrorMsg */ public static final String COLUMNNAME_I_ErrorMsg = "I_ErrorMsg"; @@ -638,6 +638,15 @@ public interface I_I_GLJournal */ public int getI_GLJournal_ID(); + /** Column name I_GLJournal_UU */ + public static final String COLUMNNAME_I_GLJournal_UU = "I_GLJournal_UU"; + + /** Set I_GLJournal_UU */ + public void setI_GLJournal_UU (String I_GLJournal_UU); + + /** Get I_GLJournal_UU */ + public String getI_GLJournal_UU(); + /** Column name I_IsImported */ public static final String COLUMNNAME_I_IsImported = "I_IsImported"; @@ -742,7 +751,7 @@ public interface I_I_GLJournal */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name OrgTrxValue */ public static final String COLUMNNAME_OrgTrxValue = "OrgTrxValue"; @@ -899,7 +908,7 @@ public interface I_I_GLJournal */ public int getUser1_ID(); - public I_C_ElementValue getUser1() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException; /** Column name User2_ID */ public static final String COLUMNNAME_User2_ID = "User2_ID"; @@ -914,5 +923,5 @@ public interface I_I_GLJournal */ public int getUser2_ID(); - public I_C_ElementValue getUser2() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException; } diff --git a/org.adempiere.base/src/org/compiere/model/I_I_InOutLineConfirm.java b/org.adempiere.base/src/org/compiere/model/I_I_InOutLineConfirm.java index 9807793f3d..888436143f 100644 --- a/org.adempiere.base/src/org/compiere/model/I_I_InOutLineConfirm.java +++ b/org.adempiere.base/src/org/compiere/model/I_I_InOutLineConfirm.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for I_InOutLineConfirm - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_I_InOutLineConfirm { @@ -31,7 +31,7 @@ public interface I_I_InOutLineConfirm public static final String Table_Name = "I_InOutLineConfirm"; /** AD_Table_ID=740 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 740; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -156,6 +156,15 @@ public interface I_I_InOutLineConfirm */ public int getI_InOutLineConfirm_ID(); + /** Column name I_InOutLineConfirm_UU */ + public static final String COLUMNNAME_I_InOutLineConfirm_UU = "I_InOutLineConfirm_UU"; + + /** Set I_InOutLineConfirm_UU */ + public void setI_InOutLineConfirm_UU (String I_InOutLineConfirm_UU); + + /** Get I_InOutLineConfirm_UU */ + public String getI_InOutLineConfirm_UU(); + /** Column name I_IsImported */ public static final String COLUMNNAME_I_IsImported = "I_IsImported"; @@ -195,7 +204,7 @@ public interface I_I_InOutLineConfirm */ public int getM_InOutLineConfirm_ID(); - public I_M_InOutLineConfirm getM_InOutLineConfirm() throws RuntimeException; + public org.compiere.model.I_M_InOutLineConfirm getM_InOutLineConfirm() throws RuntimeException; /** Column name Processed */ public static final String COLUMNNAME_Processed = "Processed"; diff --git a/org.adempiere.base/src/org/compiere/model/I_I_Inventory.java b/org.adempiere.base/src/org/compiere/model/I_I_Inventory.java index 6ef1d2911f..9bd738c8ec 100644 --- a/org.adempiere.base/src/org/compiere/model/I_I_Inventory.java +++ b/org.adempiere.base/src/org/compiere/model/I_I_Inventory.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for I_Inventory - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_I_Inventory { diff --git a/org.adempiere.base/src/org/compiere/model/I_I_Invoice.java b/org.adempiere.base/src/org/compiere/model/I_I_Invoice.java index d196c9ef22..b91375478c 100644 --- a/org.adempiere.base/src/org/compiere/model/I_I_Invoice.java +++ b/org.adempiere.base/src/org/compiere/model/I_I_Invoice.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for I_Invoice - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_I_Invoice { @@ -31,7 +31,7 @@ public interface I_I_Invoice public static final String Table_Name = "I_Invoice"; /** AD_Table_ID=598 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 598; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -123,7 +123,7 @@ public interface I_I_Invoice */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name BPartnerValue */ public static final String COLUMNNAME_BPartnerValue = "BPartnerValue"; @@ -151,7 +151,7 @@ public interface I_I_Invoice */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -166,7 +166,7 @@ public interface I_I_Invoice */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_BPartner_Location_ID */ public static final String COLUMNNAME_C_BPartner_Location_ID = "C_BPartner_Location_ID"; @@ -181,7 +181,7 @@ public interface I_I_Invoice */ public int getC_BPartner_Location_ID(); - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -196,7 +196,7 @@ public interface I_I_Invoice */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_Charge_ID */ public static final String COLUMNNAME_C_Charge_ID = "C_Charge_ID"; @@ -211,7 +211,7 @@ public interface I_I_Invoice */ public int getC_Charge_ID(); - public I_C_Charge getC_Charge() throws RuntimeException; + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException; /** Column name C_Country_ID */ public static final String COLUMNNAME_C_Country_ID = "C_Country_ID"; @@ -226,7 +226,7 @@ public interface I_I_Invoice */ public int getC_Country_ID(); - public I_C_Country getC_Country() throws RuntimeException; + public org.compiere.model.I_C_Country getC_Country() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -241,7 +241,7 @@ public interface I_I_Invoice */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name C_DocType_ID */ public static final String COLUMNNAME_C_DocType_ID = "C_DocType_ID"; @@ -256,7 +256,7 @@ public interface I_I_Invoice */ public int getC_DocType_ID(); - public I_C_DocType getC_DocType() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException; /** Column name ChargeName */ public static final String COLUMNNAME_ChargeName = "ChargeName"; @@ -284,7 +284,7 @@ public interface I_I_Invoice */ public int getC_Invoice_ID(); - public I_C_Invoice getC_Invoice() throws RuntimeException; + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException; /** Column name C_InvoiceLine_ID */ public static final String COLUMNNAME_C_InvoiceLine_ID = "C_InvoiceLine_ID"; @@ -299,7 +299,7 @@ public interface I_I_Invoice */ public int getC_InvoiceLine_ID(); - public I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException; + public org.compiere.model.I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException; /** Column name City */ public static final String COLUMNNAME_City = "City"; @@ -327,7 +327,7 @@ public interface I_I_Invoice */ public int getC_Location_ID(); - public I_C_Location getC_Location() throws RuntimeException; + public org.compiere.model.I_C_Location getC_Location() throws RuntimeException; /** Column name ContactName */ public static final String COLUMNNAME_ContactName = "ContactName"; @@ -368,7 +368,7 @@ public interface I_I_Invoice */ public int getC_PaymentTerm_ID(); - public I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException; + public org.compiere.model.I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException; /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -383,7 +383,7 @@ public interface I_I_Invoice */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -414,7 +414,7 @@ public interface I_I_Invoice */ public int getC_Region_ID(); - public I_C_Region getC_Region() throws RuntimeException; + public org.compiere.model.I_C_Region getC_Region() throws RuntimeException; /** Column name C_Tax_ID */ public static final String COLUMNNAME_C_Tax_ID = "C_Tax_ID"; @@ -429,7 +429,7 @@ public interface I_I_Invoice */ public int getC_Tax_ID(); - public I_C_Tax getC_Tax() throws RuntimeException; + public org.compiere.model.I_C_Tax getC_Tax() throws RuntimeException; /** Column name DateAcct */ public static final String COLUMNNAME_DateAcct = "DateAcct"; @@ -535,6 +535,15 @@ public interface I_I_Invoice */ public int getI_Invoice_ID(); + /** Column name I_Invoice_UU */ + public static final String COLUMNNAME_I_Invoice_UU = "I_Invoice_UU"; + + /** Set I_Invoice_UU */ + public void setI_Invoice_UU (String I_Invoice_UU); + + /** Get I_Invoice_UU */ + public String getI_Invoice_UU(); + /** Column name I_IsImported */ public static final String COLUMNNAME_I_IsImported = "I_IsImported"; @@ -600,7 +609,7 @@ public interface I_I_Invoice */ public int getM_PriceList_ID(); - public I_M_PriceList getM_PriceList() throws RuntimeException; + public org.compiere.model.I_M_PriceList getM_PriceList() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -615,7 +624,7 @@ public interface I_I_Invoice */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; @@ -769,7 +778,7 @@ public interface I_I_Invoice */ public int getSalesRep_ID(); - public I_AD_User getSalesRep() throws RuntimeException; + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException; /** Column name SKU */ public static final String COLUMNNAME_SKU = "SKU"; diff --git a/org.adempiere.base/src/org/compiere/model/I_I_Order.java b/org.adempiere.base/src/org/compiere/model/I_I_Order.java index 822b71be3e..3d3e1bf87e 100644 --- a/org.adempiere.base/src/org/compiere/model/I_I_Order.java +++ b/org.adempiere.base/src/org/compiere/model/I_I_Order.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for I_Order - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_I_Order { @@ -31,7 +31,7 @@ public interface I_I_Order public static final String Table_Name = "I_Order"; /** AD_Table_ID=591 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 591; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -114,7 +114,7 @@ public interface I_I_Order */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name BillTo_ID */ public static final String COLUMNNAME_BillTo_ID = "BillTo_ID"; @@ -129,7 +129,7 @@ public interface I_I_Order */ public int getBillTo_ID(); - public I_C_BPartner_Location getBillTo() throws RuntimeException; + public org.compiere.model.I_C_BPartner_Location getBillTo() throws RuntimeException; /** Column name BPartnerValue */ public static final String COLUMNNAME_BPartnerValue = "BPartnerValue"; @@ -157,7 +157,7 @@ public interface I_I_Order */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -172,7 +172,7 @@ public interface I_I_Order */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_BPartner_Location_ID */ public static final String COLUMNNAME_C_BPartner_Location_ID = "C_BPartner_Location_ID"; @@ -187,7 +187,7 @@ public interface I_I_Order */ public int getC_BPartner_Location_ID(); - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -202,7 +202,7 @@ public interface I_I_Order */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_Charge_ID */ public static final String COLUMNNAME_C_Charge_ID = "C_Charge_ID"; @@ -217,7 +217,7 @@ public interface I_I_Order */ public int getC_Charge_ID(); - public I_C_Charge getC_Charge() throws RuntimeException; + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException; /** Column name C_Country_ID */ public static final String COLUMNNAME_C_Country_ID = "C_Country_ID"; @@ -232,7 +232,7 @@ public interface I_I_Order */ public int getC_Country_ID(); - public I_C_Country getC_Country() throws RuntimeException; + public org.compiere.model.I_C_Country getC_Country() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -247,7 +247,7 @@ public interface I_I_Order */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name C_DocType_ID */ public static final String COLUMNNAME_C_DocType_ID = "C_DocType_ID"; @@ -262,7 +262,7 @@ public interface I_I_Order */ public int getC_DocType_ID(); - public I_C_DocType getC_DocType() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException; /** Column name ChargeName */ public static final String COLUMNNAME_ChargeName = "ChargeName"; @@ -303,7 +303,7 @@ public interface I_I_Order */ public int getC_Location_ID(); - public I_C_Location getC_Location() throws RuntimeException; + public org.compiere.model.I_C_Location getC_Location() throws RuntimeException; /** Column name ContactName */ public static final String COLUMNNAME_ContactName = "ContactName"; @@ -331,7 +331,7 @@ public interface I_I_Order */ public int getC_Order_ID(); - public I_C_Order getC_Order() throws RuntimeException; + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException; /** Column name C_OrderLine_ID */ public static final String COLUMNNAME_C_OrderLine_ID = "C_OrderLine_ID"; @@ -346,7 +346,7 @@ public interface I_I_Order */ public int getC_OrderLine_ID(); - public I_C_OrderLine getC_OrderLine() throws RuntimeException; + public org.compiere.model.I_C_OrderLine getC_OrderLine() throws RuntimeException; /** Column name C_OrderSource_ID */ public static final String COLUMNNAME_C_OrderSource_ID = "C_OrderSource_ID"; @@ -357,7 +357,7 @@ public interface I_I_Order /** Get Order Source */ public int getC_OrderSource_ID(); - public I_C_OrderSource getC_OrderSource() throws RuntimeException; + public org.compiere.model.I_C_OrderSource getC_OrderSource() throws RuntimeException; /** Column name C_OrderSourceValue */ public static final String COLUMNNAME_C_OrderSourceValue = "C_OrderSourceValue"; @@ -394,7 +394,7 @@ public interface I_I_Order */ public int getC_PaymentTerm_ID(); - public I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException; + public org.compiere.model.I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException; /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -409,7 +409,7 @@ public interface I_I_Order */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -440,7 +440,7 @@ public interface I_I_Order */ public int getC_Region_ID(); - public I_C_Region getC_Region() throws RuntimeException; + public org.compiere.model.I_C_Region getC_Region() throws RuntimeException; /** Column name C_Tax_ID */ public static final String COLUMNNAME_C_Tax_ID = "C_Tax_ID"; @@ -455,7 +455,7 @@ public interface I_I_Order */ public int getC_Tax_ID(); - public I_C_Tax getC_Tax() throws RuntimeException; + public org.compiere.model.I_C_Tax getC_Tax() throws RuntimeException; /** Column name C_UOM_ID */ public static final String COLUMNNAME_C_UOM_ID = "C_UOM_ID"; @@ -470,7 +470,7 @@ public interface I_I_Order */ public int getC_UOM_ID(); - public I_C_UOM getC_UOM() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException; /** Column name DateAcct */ public static final String COLUMNNAME_DateAcct = "DateAcct"; @@ -615,6 +615,15 @@ public interface I_I_Order */ public int getI_Order_ID(); + /** Column name I_Order_UU */ + public static final String COLUMNNAME_I_Order_UU = "I_Order_UU"; + + /** Set I_Order_UU */ + public void setI_Order_UU (String I_Order_UU); + + /** Get I_Order_UU */ + public String getI_Order_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; @@ -667,7 +676,7 @@ public interface I_I_Order */ public int getM_PriceList_ID(); - public I_M_PriceList getM_PriceList() throws RuntimeException; + public org.compiere.model.I_M_PriceList getM_PriceList() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -682,7 +691,7 @@ public interface I_I_Order */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name M_Shipper_ID */ public static final String COLUMNNAME_M_Shipper_ID = "M_Shipper_ID"; @@ -697,7 +706,7 @@ public interface I_I_Order */ public int getM_Shipper_ID(); - public I_M_Shipper getM_Shipper() throws RuntimeException; + public org.compiere.model.I_M_Shipper getM_Shipper() throws RuntimeException; /** Column name M_Warehouse_ID */ public static final String COLUMNNAME_M_Warehouse_ID = "M_Warehouse_ID"; @@ -712,7 +721,7 @@ public interface I_I_Order */ public int getM_Warehouse_ID(); - public I_M_Warehouse getM_Warehouse() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; @@ -853,7 +862,7 @@ public interface I_I_Order */ public int getSalesRep_ID(); - public I_AD_User getSalesRep() throws RuntimeException; + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException; /** Column name SKU */ public static final String COLUMNNAME_SKU = "SKU"; diff --git a/org.adempiere.base/src/org/compiere/model/I_I_Payment.java b/org.adempiere.base/src/org/compiere/model/I_I_Payment.java index 9c5ad455a8..847f45643d 100644 --- a/org.adempiere.base/src/org/compiere/model/I_I_Payment.java +++ b/org.adempiere.base/src/org/compiere/model/I_I_Payment.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for I_Payment - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_I_Payment { @@ -31,7 +31,7 @@ public interface I_I_Payment public static final String Table_Name = "I_Payment"; /** AD_Table_ID=597 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 597; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -231,7 +231,7 @@ public interface I_I_Payment */ public int getC_BankAccount_ID(); - public I_C_BankAccount getC_BankAccount() throws RuntimeException; + public org.compiere.model.I_C_BankAccount getC_BankAccount() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -246,7 +246,7 @@ public interface I_I_Payment */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Charge_ID */ public static final String COLUMNNAME_C_Charge_ID = "C_Charge_ID"; @@ -261,7 +261,7 @@ public interface I_I_Payment */ public int getC_Charge_ID(); - public I_C_Charge getC_Charge() throws RuntimeException; + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -276,7 +276,7 @@ public interface I_I_Payment */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name C_DocType_ID */ public static final String COLUMNNAME_C_DocType_ID = "C_DocType_ID"; @@ -291,7 +291,7 @@ public interface I_I_Payment */ public int getC_DocType_ID(); - public I_C_DocType getC_DocType() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException; /** Column name ChargeAmt */ public static final String COLUMNNAME_ChargeAmt = "ChargeAmt"; @@ -345,7 +345,7 @@ public interface I_I_Payment */ public int getC_Invoice_ID(); - public I_C_Invoice getC_Invoice() throws RuntimeException; + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException; /** Column name C_Payment_ID */ public static final String COLUMNNAME_C_Payment_ID = "C_Payment_ID"; @@ -360,7 +360,7 @@ public interface I_I_Payment */ public int getC_Payment_ID(); - public I_C_Payment getC_Payment() throws RuntimeException; + public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -560,6 +560,15 @@ public interface I_I_Payment */ public int getI_Payment_ID(); + /** Column name I_Payment_UU */ + public static final String COLUMNNAME_I_Payment_UU = "I_Payment_UU"; + + /** Set I_Payment_UU */ + public void setI_Payment_UU (String I_Payment_UU); + + /** Get I_Payment_UU */ + public String getI_Payment_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/compiere/model/I_I_PriceList.java b/org.adempiere.base/src/org/compiere/model/I_I_PriceList.java index 463ce4ddef..4b0d338a12 100644 --- a/org.adempiere.base/src/org/compiere/model/I_I_PriceList.java +++ b/org.adempiere.base/src/org/compiere/model/I_I_PriceList.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for I_PriceList - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_I_PriceList { @@ -31,7 +31,7 @@ public interface I_I_PriceList public static final String Table_Name = "I_PriceList"; /** AD_Table_ID=53173 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53173; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -101,7 +101,7 @@ public interface I_I_PriceList */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -116,7 +116,7 @@ public interface I_I_PriceList */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -147,7 +147,7 @@ public interface I_I_PriceList */ public int getC_UOM_ID(); - public I_C_UOM getC_UOM() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException; /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; @@ -210,6 +210,15 @@ public interface I_I_PriceList /** Get Import Price List */ public int getI_PriceList_ID(); + /** Column name I_PriceList_UU */ + public static final String COLUMNNAME_I_PriceList_UU = "I_PriceList_UU"; + + /** Set I_PriceList_UU */ + public void setI_PriceList_UU (String I_PriceList_UU); + + /** Get I_PriceList_UU */ + public String getI_PriceList_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; @@ -275,7 +284,7 @@ public interface I_I_PriceList */ public int getM_PriceList_ID(); - public I_M_PriceList getM_PriceList() throws RuntimeException; + public org.compiere.model.I_M_PriceList getM_PriceList() throws RuntimeException; /** Column name M_PriceList_Version_ID */ public static final String COLUMNNAME_M_PriceList_Version_ID = "M_PriceList_Version_ID"; @@ -290,7 +299,7 @@ public interface I_I_PriceList */ public int getM_PriceList_Version_ID(); - public I_M_PriceList_Version getM_PriceList_Version() throws RuntimeException; + public org.compiere.model.I_M_PriceList_Version getM_PriceList_Version() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -305,7 +314,7 @@ public interface I_I_PriceList */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_I_Product.java b/org.adempiere.base/src/org/compiere/model/I_I_Product.java index 68c98e4816..6225c38fb1 100644 --- a/org.adempiere.base/src/org/compiere/model/I_I_Product.java +++ b/org.adempiere.base/src/org/compiere/model/I_I_Product.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for I_Product - * @author Adempiere (generated) - * @version 360LTS.015 + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_I_Product { @@ -31,7 +31,7 @@ public interface I_I_Product public static final String Table_Name = "I_Product"; /** AD_Table_ID=532 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 532; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_I_Product */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -103,7 +103,7 @@ public interface I_I_Product */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name Classification */ public static final String COLUMNNAME_Classification = "Classification"; @@ -160,7 +160,7 @@ public interface I_I_Product */ public int getC_UOM_ID(); - public I_C_UOM getC_UOM() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException; /** Column name DeliveryTime_Promised */ public static final String COLUMNNAME_DeliveryTime_Promised = "DeliveryTime_Promised"; @@ -305,6 +305,15 @@ public interface I_I_Product */ public int getI_Product_ID(); + /** Column name I_Product_UU */ + public static final String COLUMNNAME_I_Product_UU = "I_Product_UU"; + + /** Set I_Product_UU */ + public void setI_Product_UU (String I_Product_UU); + + /** Get I_Product_UU */ + public String getI_Product_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; @@ -357,7 +366,7 @@ public interface I_I_Product */ public int getM_Product_Category_ID(); - public I_M_Product_Category getM_Product_Category() throws RuntimeException; + public org.compiere.model.I_M_Product_Category getM_Product_Category() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -372,7 +381,7 @@ public interface I_I_Product */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_I_ReportLine.java b/org.adempiere.base/src/org/compiere/model/I_I_ReportLine.java index 1f7d5dea0a..3a039c1e98 100644 --- a/org.adempiere.base/src/org/compiere/model/I_I_ReportLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_I_ReportLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for I_ReportLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_I_ReportLine { @@ -31,7 +31,7 @@ public interface I_I_ReportLine public static final String Table_Name = "I_ReportLine"; /** AD_Table_ID=535 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 535; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -84,7 +84,7 @@ public interface I_I_ReportLine */ public int getC_ElementValue_ID(); - public I_C_ElementValue getC_ElementValue() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getC_ElementValue() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -167,6 +167,15 @@ public interface I_I_ReportLine */ public int getI_ReportLine_ID(); + /** Column name I_ReportLine_UU */ + public static final String COLUMNNAME_I_ReportLine_UU = "I_ReportLine_UU"; + + /** Set I_ReportLine_UU */ + public void setI_ReportLine_UU (String I_ReportLine_UU); + + /** Get I_ReportLine_UU */ + public String getI_ReportLine_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; @@ -263,7 +272,7 @@ public interface I_I_ReportLine /** Get Report Line */ public int getPA_ReportLine_ID(); - public I_PA_ReportLine getPA_ReportLine() throws RuntimeException; + public org.compiere.model.I_PA_ReportLine getPA_ReportLine() throws RuntimeException; /** Column name PA_ReportLineSet_ID */ public static final String COLUMNNAME_PA_ReportLineSet_ID = "PA_ReportLineSet_ID"; @@ -274,7 +283,7 @@ public interface I_I_ReportLine /** Get Report Line Set */ public int getPA_ReportLineSet_ID(); - public I_PA_ReportLineSet getPA_ReportLineSet() throws RuntimeException; + public org.compiere.model.I_PA_ReportLineSet getPA_ReportLineSet() throws RuntimeException; /** Column name PA_ReportSource_ID */ public static final String COLUMNNAME_PA_ReportSource_ID = "PA_ReportSource_ID"; @@ -289,7 +298,7 @@ public interface I_I_ReportLine */ public int getPA_ReportSource_ID(); - public I_PA_ReportSource getPA_ReportSource() throws RuntimeException; + public org.compiere.model.I_PA_ReportSource getPA_ReportSource() throws RuntimeException; /** Column name PostingType */ public static final String COLUMNNAME_PostingType = "PostingType"; diff --git a/org.adempiere.base/src/org/compiere/model/I_K_Category.java b/org.adempiere.base/src/org/compiere/model/I_K_Category.java index 568bba80e4..65f2dbb9fd 100644 --- a/org.adempiere.base/src/org/compiere/model/I_K_Category.java +++ b/org.adempiere.base/src/org/compiere/model/I_K_Category.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for K_Category - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_K_Category { @@ -31,7 +31,7 @@ public interface I_K_Category public static final String Table_Name = "K_Category"; /** AD_Table_ID=615 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 615; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -130,6 +130,15 @@ public interface I_K_Category */ public int getK_Category_ID(); + /** Column name K_Category_UU */ + public static final String COLUMNNAME_K_Category_UU = "K_Category_UU"; + + /** Set K_Category_UU */ + public void setK_Category_UU (String K_Category_UU); + + /** Get K_Category_UU */ + public String getK_Category_UU(); + /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_K_CategoryValue.java b/org.adempiere.base/src/org/compiere/model/I_K_CategoryValue.java index d22c051739..cfbcc464d1 100644 --- a/org.adempiere.base/src/org/compiere/model/I_K_CategoryValue.java +++ b/org.adempiere.base/src/org/compiere/model/I_K_CategoryValue.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for K_CategoryValue - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_K_CategoryValue { @@ -31,7 +31,7 @@ public interface I_K_CategoryValue public static final String Table_Name = "K_CategoryValue"; /** AD_Table_ID=614 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 614; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -117,7 +117,7 @@ public interface I_K_CategoryValue */ public int getK_Category_ID(); - public I_K_Category getK_Category() throws RuntimeException; + public org.compiere.model.I_K_Category getK_Category() throws RuntimeException; /** Column name K_CategoryValue_ID */ public static final String COLUMNNAME_K_CategoryValue_ID = "K_CategoryValue_ID"; @@ -132,6 +132,15 @@ public interface I_K_CategoryValue */ public int getK_CategoryValue_ID(); + /** Column name K_CategoryValue_UU */ + public static final String COLUMNNAME_K_CategoryValue_UU = "K_CategoryValue_UU"; + + /** Set K_CategoryValue_UU */ + public void setK_CategoryValue_UU (String K_CategoryValue_UU); + + /** Get K_CategoryValue_UU */ + public String getK_CategoryValue_UU(); + /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_K_Comment.java b/org.adempiere.base/src/org/compiere/model/I_K_Comment.java index c75ac50a04..18af5b15d0 100644 --- a/org.adempiere.base/src/org/compiere/model/I_K_Comment.java +++ b/org.adempiere.base/src/org/compiere/model/I_K_Comment.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for K_Comment - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_K_Comment { @@ -31,7 +31,7 @@ public interface I_K_Comment public static final String Table_Name = "K_Comment"; /** AD_Table_ID=613 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 613; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_K_Comment */ public int getAD_Session_ID(); - public I_AD_Session getAD_Session() throws RuntimeException; + public org.compiere.model.I_AD_Session getAD_Session() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -132,6 +132,15 @@ public interface I_K_Comment */ public int getK_Comment_ID(); + /** Column name K_Comment_UU */ + public static final String COLUMNNAME_K_Comment_UU = "K_Comment_UU"; + + /** Set K_Comment_UU */ + public void setK_Comment_UU (String K_Comment_UU); + + /** Get K_Comment_UU */ + public String getK_Comment_UU(); + /** Column name K_Entry_ID */ public static final String COLUMNNAME_K_Entry_ID = "K_Entry_ID"; @@ -145,7 +154,7 @@ public interface I_K_Comment */ public int getK_Entry_ID(); - public I_K_Entry getK_Entry() throws RuntimeException; + public org.compiere.model.I_K_Entry getK_Entry() throws RuntimeException; /** Column name Rating */ public static final String COLUMNNAME_Rating = "Rating"; diff --git a/org.adempiere.base/src/org/compiere/model/I_K_Entry.java b/org.adempiere.base/src/org/compiere/model/I_K_Entry.java index 0f638dcfcf..ab12accbf6 100644 --- a/org.adempiere.base/src/org/compiere/model/I_K_Entry.java +++ b/org.adempiere.base/src/org/compiere/model/I_K_Entry.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for K_Entry - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_K_Entry { @@ -31,7 +31,7 @@ public interface I_K_Entry public static final String Table_Name = "K_Entry"; /** AD_Table_ID=612 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 612; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_K_Entry */ public int getAD_Session_ID(); - public I_AD_Session getAD_Session() throws RuntimeException; + public org.compiere.model.I_AD_Session getAD_Session() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -145,6 +145,15 @@ public interface I_K_Entry */ public int getK_Entry_ID(); + /** Column name K_Entry_UU */ + public static final String COLUMNNAME_K_Entry_UU = "K_Entry_UU"; + + /** Set K_Entry_UU */ + public void setK_Entry_UU (String K_Entry_UU); + + /** Get K_Entry_UU */ + public String getK_Entry_UU(); + /** Column name Keywords */ public static final String COLUMNNAME_Keywords = "Keywords"; @@ -171,7 +180,7 @@ public interface I_K_Entry */ public int getK_Source_ID(); - public I_K_Source getK_Source() throws RuntimeException; + public org.compiere.model.I_K_Source getK_Source() throws RuntimeException; /** Column name K_Topic_ID */ public static final String COLUMNNAME_K_Topic_ID = "K_Topic_ID"; @@ -186,7 +195,7 @@ public interface I_K_Entry */ public int getK_Topic_ID(); - public I_K_Topic getK_Topic() throws RuntimeException; + public org.compiere.model.I_K_Topic getK_Topic() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_K_EntryCategory.java b/org.adempiere.base/src/org/compiere/model/I_K_EntryCategory.java index accffbce9a..7bc193f6fd 100644 --- a/org.adempiere.base/src/org/compiere/model/I_K_EntryCategory.java +++ b/org.adempiere.base/src/org/compiere/model/I_K_EntryCategory.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for K_EntryCategory - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_K_EntryCategory { @@ -31,7 +31,7 @@ public interface I_K_EntryCategory public static final String Table_Name = "K_EntryCategory"; /** AD_Table_ID=611 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 611; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -104,7 +104,7 @@ public interface I_K_EntryCategory */ public int getK_Category_ID(); - public I_K_Category getK_Category() throws RuntimeException; + public org.compiere.model.I_K_Category getK_Category() throws RuntimeException; /** Column name K_CategoryValue_ID */ public static final String COLUMNNAME_K_CategoryValue_ID = "K_CategoryValue_ID"; @@ -119,7 +119,16 @@ public interface I_K_EntryCategory */ public int getK_CategoryValue_ID(); - public I_K_CategoryValue getK_CategoryValue() throws RuntimeException; + public org.compiere.model.I_K_CategoryValue getK_CategoryValue() throws RuntimeException; + + /** Column name K_EntryCategory_UU */ + public static final String COLUMNNAME_K_EntryCategory_UU = "K_EntryCategory_UU"; + + /** Set K_EntryCategory_UU */ + public void setK_EntryCategory_UU (String K_EntryCategory_UU); + + /** Get K_EntryCategory_UU */ + public String getK_EntryCategory_UU(); /** Column name K_Entry_ID */ public static final String COLUMNNAME_K_Entry_ID = "K_Entry_ID"; @@ -134,7 +143,7 @@ public interface I_K_EntryCategory */ public int getK_Entry_ID(); - public I_K_Entry getK_Entry() throws RuntimeException; + public org.compiere.model.I_K_Entry getK_Entry() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_K_EntryRelated.java b/org.adempiere.base/src/org/compiere/model/I_K_EntryRelated.java index 9ff452e5e8..ef3aa92906 100644 --- a/org.adempiere.base/src/org/compiere/model/I_K_EntryRelated.java +++ b/org.adempiere.base/src/org/compiere/model/I_K_EntryRelated.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for K_EntryRelated - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_K_EntryRelated { @@ -31,7 +31,7 @@ public interface I_K_EntryRelated public static final String Table_Name = "K_EntryRelated"; /** AD_Table_ID=610 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 610; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -104,7 +104,7 @@ public interface I_K_EntryRelated */ public int getK_Entry_ID(); - public I_K_Entry getK_Entry() throws RuntimeException; + public org.compiere.model.I_K_Entry getK_Entry() throws RuntimeException; /** Column name K_EntryRelated_ID */ public static final String COLUMNNAME_K_EntryRelated_ID = "K_EntryRelated_ID"; @@ -119,6 +119,15 @@ public interface I_K_EntryRelated */ public int getK_EntryRelated_ID(); + /** Column name K_EntryRelated_UU */ + public static final String COLUMNNAME_K_EntryRelated_UU = "K_EntryRelated_UU"; + + /** Set K_EntryRelated_UU */ + public void setK_EntryRelated_UU (String K_EntryRelated_UU); + + /** Get K_EntryRelated_UU */ + public String getK_EntryRelated_UU(); + /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_K_Index.java b/org.adempiere.base/src/org/compiere/model/I_K_Index.java index cc0d12dbda..46e9c9cdc5 100644 --- a/org.adempiere.base/src/org/compiere/model/I_K_Index.java +++ b/org.adempiere.base/src/org/compiere/model/I_K_Index.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for K_Index - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_K_Index { @@ -31,7 +31,7 @@ public interface I_K_Index public static final String Table_Name = "K_Index"; /** AD_Table_ID=900 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 900; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_K_Index */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name C_DocType_ID */ public static final String COLUMNNAME_C_DocType_ID = "C_DocType_ID"; @@ -90,7 +90,7 @@ public interface I_K_Index */ public int getC_DocType_ID(); - public I_C_DocType getC_DocType() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException; /** Column name CM_WebProject_ID */ public static final String COLUMNNAME_CM_WebProject_ID = "CM_WebProject_ID"; @@ -105,7 +105,7 @@ public interface I_K_Index */ public int getCM_WebProject_ID(); - public I_CM_WebProject getCM_WebProject() throws RuntimeException; + public org.compiere.model.I_CM_WebProject getCM_WebProject() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -175,6 +175,15 @@ public interface I_K_Index */ public int getK_INDEX_ID(); + /** Column name K_Index_UU */ + public static final String COLUMNNAME_K_Index_UU = "K_Index_UU"; + + /** Set K_Index_UU */ + public void setK_Index_UU (String K_Index_UU); + + /** Get K_Index_UU */ + public String getK_Index_UU(); + /** Column name Record_ID */ public static final String COLUMNNAME_Record_ID = "Record_ID"; @@ -201,7 +210,7 @@ public interface I_K_Index */ public int getR_RequestType_ID(); - public I_R_RequestType getR_RequestType() throws RuntimeException; + public org.compiere.model.I_R_RequestType getR_RequestType() throws RuntimeException; /** Column name SourceUpdated */ public static final String COLUMNNAME_SourceUpdated = "SourceUpdated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_K_IndexLog.java b/org.adempiere.base/src/org/compiere/model/I_K_IndexLog.java index f41984b1bc..70726bd688 100644 --- a/org.adempiere.base/src/org/compiere/model/I_K_IndexLog.java +++ b/org.adempiere.base/src/org/compiere/model/I_K_IndexLog.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for K_IndexLog - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_K_IndexLog { @@ -31,7 +31,7 @@ public interface I_K_IndexLog public static final String Table_Name = "K_IndexLog"; /** AD_Table_ID=899 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 899; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -130,6 +130,15 @@ public interface I_K_IndexLog */ public int getK_IndexLog_ID(); + /** Column name K_IndexLog_UU */ + public static final String COLUMNNAME_K_IndexLog_UU = "K_IndexLog_UU"; + + /** Set K_IndexLog_UU */ + public void setK_IndexLog_UU (String K_IndexLog_UU); + + /** Get K_IndexLog_UU */ + public String getK_IndexLog_UU(); + /** Column name QuerySource */ public static final String COLUMNNAME_QuerySource = "QuerySource"; diff --git a/org.adempiere.base/src/org/compiere/model/I_K_IndexStop.java b/org.adempiere.base/src/org/compiere/model/I_K_IndexStop.java index 9857e071fb..0caa0e4287 100644 --- a/org.adempiere.base/src/org/compiere/model/I_K_IndexStop.java +++ b/org.adempiere.base/src/org/compiere/model/I_K_IndexStop.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for K_IndexStop - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_K_IndexStop { @@ -31,7 +31,7 @@ public interface I_K_IndexStop public static final String Table_Name = "K_IndexStop"; /** AD_Table_ID=901 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 901; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_K_IndexStop */ public int getC_DocType_ID(); - public I_C_DocType getC_DocType() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException; /** Column name CM_WebProject_ID */ public static final String COLUMNNAME_CM_WebProject_ID = "CM_WebProject_ID"; @@ -90,7 +90,7 @@ public interface I_K_IndexStop */ public int getCM_WebProject_ID(); - public I_CM_WebProject getCM_WebProject() throws RuntimeException; + public org.compiere.model.I_CM_WebProject getCM_WebProject() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -160,6 +160,15 @@ public interface I_K_IndexStop */ public int getK_IndexStop_ID(); + /** Column name K_IndexStop_UU */ + public static final String COLUMNNAME_K_IndexStop_UU = "K_IndexStop_UU"; + + /** Set K_IndexStop_UU */ + public void setK_IndexStop_UU (String K_IndexStop_UU); + + /** Get K_IndexStop_UU */ + public String getK_IndexStop_UU(); + /** Column name R_RequestType_ID */ public static final String COLUMNNAME_R_RequestType_ID = "R_RequestType_ID"; @@ -173,7 +182,7 @@ public interface I_K_IndexStop */ public int getR_RequestType_ID(); - public I_R_RequestType getR_RequestType() throws RuntimeException; + public org.compiere.model.I_R_RequestType getR_RequestType() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_K_Source.java b/org.adempiere.base/src/org/compiere/model/I_K_Source.java index 67bb927c7b..b6bef58384 100644 --- a/org.adempiere.base/src/org/compiere/model/I_K_Source.java +++ b/org.adempiere.base/src/org/compiere/model/I_K_Source.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for K_Source - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_K_Source { @@ -31,7 +31,7 @@ public interface I_K_Source public static final String Table_Name = "K_Source"; /** AD_Table_ID=609 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 609; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -117,6 +117,15 @@ public interface I_K_Source */ public int getK_Source_ID(); + /** Column name K_Source_UU */ + public static final String COLUMNNAME_K_Source_UU = "K_Source_UU"; + + /** Set K_Source_UU */ + public void setK_Source_UU (String K_Source_UU); + + /** Get K_Source_UU */ + public String getK_Source_UU(); + /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_K_Synonym.java b/org.adempiere.base/src/org/compiere/model/I_K_Synonym.java index 27b85e499d..cd8530ce49 100644 --- a/org.adempiere.base/src/org/compiere/model/I_K_Synonym.java +++ b/org.adempiere.base/src/org/compiere/model/I_K_Synonym.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for K_Synonym - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_K_Synonym { @@ -31,7 +31,7 @@ public interface I_K_Synonym public static final String Table_Name = "K_Synonym"; /** AD_Table_ID=608 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 608; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -117,6 +117,15 @@ public interface I_K_Synonym */ public int getK_Synonym_ID(); + /** Column name K_Synonym_UU */ + public static final String COLUMNNAME_K_Synonym_UU = "K_Synonym_UU"; + + /** Set K_Synonym_UU */ + public void setK_Synonym_UU (String K_Synonym_UU); + + /** Get K_Synonym_UU */ + public String getK_Synonym_UU(); + /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_K_Topic.java b/org.adempiere.base/src/org/compiere/model/I_K_Topic.java index fe85e781fd..d93cf705d0 100644 --- a/org.adempiere.base/src/org/compiere/model/I_K_Topic.java +++ b/org.adempiere.base/src/org/compiere/model/I_K_Topic.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for K_Topic - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_K_Topic { @@ -31,7 +31,7 @@ public interface I_K_Topic public static final String Table_Name = "K_Topic"; /** AD_Table_ID=607 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 607; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -156,6 +156,15 @@ public interface I_K_Topic */ public int getK_Topic_ID(); + /** Column name K_Topic_UU */ + public static final String COLUMNNAME_K_Topic_UU = "K_Topic_UU"; + + /** Set K_Topic_UU */ + public void setK_Topic_UU (String K_Topic_UU); + + /** Get K_Topic_UU */ + public String getK_Topic_UU(); + /** Column name K_Type_ID */ public static final String COLUMNNAME_K_Type_ID = "K_Type_ID"; @@ -169,7 +178,7 @@ public interface I_K_Topic */ public int getK_Type_ID(); - public I_K_Type getK_Type() throws RuntimeException; + public org.compiere.model.I_K_Type getK_Type() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_K_Type.java b/org.adempiere.base/src/org/compiere/model/I_K_Type.java index a6b342647d..64b2ae5636 100644 --- a/org.adempiere.base/src/org/compiere/model/I_K_Type.java +++ b/org.adempiere.base/src/org/compiere/model/I_K_Type.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for K_Type - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_K_Type { @@ -31,7 +31,7 @@ public interface I_K_Type public static final String Table_Name = "K_Type"; /** AD_Table_ID=606 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 606; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -156,6 +156,15 @@ public interface I_K_Type */ public int getK_Type_ID(); + /** Column name K_Type_UU */ + public static final String COLUMNNAME_K_Type_UU = "K_Type_UU"; + + /** Set K_Type_UU */ + public void setK_Type_UU (String K_Type_UU); + + /** Get K_Type_UU */ + public String getK_Type_UU(); + /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_Attribute.java b/org.adempiere.base/src/org/compiere/model/I_M_Attribute.java index 2f9225fd07..2e89536bfb 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_Attribute.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_Attribute.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_Attribute - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_Attribute { @@ -31,7 +31,7 @@ public interface I_M_Attribute public static final String Table_Name = "M_Attribute"; /** AD_Table_ID=562 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 562; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -169,7 +169,16 @@ public interface I_M_Attribute */ public int getM_AttributeSearch_ID(); - public I_M_AttributeSearch getM_AttributeSearch() throws RuntimeException; + public org.compiere.model.I_M_AttributeSearch getM_AttributeSearch() throws RuntimeException; + + /** Column name M_Attribute_UU */ + public static final String COLUMNNAME_M_Attribute_UU = "M_Attribute_UU"; + + /** Set M_Attribute_UU */ + public void setM_Attribute_UU (String M_Attribute_UU); + + /** Get M_Attribute_UU */ + public String getM_Attribute_UU(); /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_AttributeInstance.java b/org.adempiere.base/src/org/compiere/model/I_M_AttributeInstance.java index b008420872..17f761978a 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_AttributeInstance.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_AttributeInstance.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_AttributeInstance - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_AttributeInstance { @@ -31,7 +31,7 @@ public interface I_M_AttributeInstance public static final String Table_Name = "M_AttributeInstance"; /** AD_Table_ID=561 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 561; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -104,7 +104,16 @@ public interface I_M_AttributeInstance */ public int getM_Attribute_ID(); - public I_M_Attribute getM_Attribute() throws RuntimeException; + public org.compiere.model.I_M_Attribute getM_Attribute() throws RuntimeException; + + /** Column name M_AttributeInstance_UU */ + public static final String COLUMNNAME_M_AttributeInstance_UU = "M_AttributeInstance_UU"; + + /** Set M_AttributeInstance_UU */ + public void setM_AttributeInstance_UU (String M_AttributeInstance_UU); + + /** Get M_AttributeInstance_UU */ + public String getM_AttributeInstance_UU(); /** Column name M_AttributeSetInstance_ID */ public static final String COLUMNNAME_M_AttributeSetInstance_ID = "M_AttributeSetInstance_ID"; @@ -134,7 +143,7 @@ public interface I_M_AttributeInstance */ public int getM_AttributeValue_ID(); - public I_M_AttributeValue getM_AttributeValue() throws RuntimeException; + public org.compiere.model.I_M_AttributeValue getM_AttributeValue() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_AttributeSearch.java b/org.adempiere.base/src/org/compiere/model/I_M_AttributeSearch.java index 9e814d7fad..1c79f79de5 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_AttributeSearch.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_AttributeSearch.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_AttributeSearch - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_AttributeSearch { @@ -31,7 +31,7 @@ public interface I_M_AttributeSearch public static final String Table_Name = "M_AttributeSearch"; /** AD_Table_ID=564 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 564; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -117,6 +117,15 @@ public interface I_M_AttributeSearch */ public int getM_AttributeSearch_ID(); + /** Column name M_AttributeSearch_UU */ + public static final String COLUMNNAME_M_AttributeSearch_UU = "M_AttributeSearch_UU"; + + /** Set M_AttributeSearch_UU */ + public void setM_AttributeSearch_UU (String M_AttributeSearch_UU); + + /** Get M_AttributeSearch_UU */ + public String getM_AttributeSearch_UU(); + /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_AttributeSet.java b/org.adempiere.base/src/org/compiere/model/I_M_AttributeSet.java index 82d7a324a9..425775e05c 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_AttributeSet.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_AttributeSet.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_AttributeSet - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_AttributeSet { @@ -31,7 +31,7 @@ public interface I_M_AttributeSet public static final String Table_Name = "M_AttributeSet"; /** AD_Table_ID=560 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 560; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -260,6 +260,15 @@ public interface I_M_AttributeSet */ public int getM_AttributeSet_ID(); + /** Column name M_AttributeSet_UU */ + public static final String COLUMNNAME_M_AttributeSet_UU = "M_AttributeSet_UU"; + + /** Set M_AttributeSet_UU */ + public void setM_AttributeSet_UU (String M_AttributeSet_UU); + + /** Get M_AttributeSet_UU */ + public String getM_AttributeSet_UU(); + /** Column name M_LotCtl_ID */ public static final String COLUMNNAME_M_LotCtl_ID = "M_LotCtl_ID"; @@ -273,7 +282,7 @@ public interface I_M_AttributeSet */ public int getM_LotCtl_ID(); - public I_M_LotCtl getM_LotCtl() throws RuntimeException; + public org.compiere.model.I_M_LotCtl getM_LotCtl() throws RuntimeException; /** Column name M_SerNoCtl_ID */ public static final String COLUMNNAME_M_SerNoCtl_ID = "M_SerNoCtl_ID"; @@ -288,7 +297,7 @@ public interface I_M_AttributeSet */ public int getM_SerNoCtl_ID(); - public I_M_SerNoCtl getM_SerNoCtl() throws RuntimeException; + public org.compiere.model.I_M_SerNoCtl getM_SerNoCtl() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_AttributeSetExclude.java b/org.adempiere.base/src/org/compiere/model/I_M_AttributeSetExclude.java index 54b50deaed..c8572fff3d 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_AttributeSetExclude.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_AttributeSetExclude.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_AttributeSetExclude - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_AttributeSetExclude { @@ -31,7 +31,7 @@ public interface I_M_AttributeSetExclude public static final String Table_Name = "M_AttributeSetExclude"; /** AD_Table_ID=809 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 809; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_M_AttributeSetExclude */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -132,6 +132,15 @@ public interface I_M_AttributeSetExclude */ public int getM_AttributeSetExclude_ID(); + /** Column name M_AttributeSetExclude_UU */ + public static final String COLUMNNAME_M_AttributeSetExclude_UU = "M_AttributeSetExclude_UU"; + + /** Set M_AttributeSetExclude_UU */ + public void setM_AttributeSetExclude_UU (String M_AttributeSetExclude_UU); + + /** Get M_AttributeSetExclude_UU */ + public String getM_AttributeSetExclude_UU(); + /** Column name M_AttributeSet_ID */ public static final String COLUMNNAME_M_AttributeSet_ID = "M_AttributeSet_ID"; @@ -145,7 +154,7 @@ public interface I_M_AttributeSetExclude */ public int getM_AttributeSet_ID(); - public I_M_AttributeSet getM_AttributeSet() throws RuntimeException; + public org.compiere.model.I_M_AttributeSet getM_AttributeSet() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_AttributeSetInstance.java b/org.adempiere.base/src/org/compiere/model/I_M_AttributeSetInstance.java index 27bab6cdcf..f6ac4ceee1 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_AttributeSetInstance.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_AttributeSetInstance.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_AttributeSetInstance - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_AttributeSetInstance { @@ -31,7 +31,7 @@ public interface I_M_AttributeSetInstance public static final String Table_Name = "M_AttributeSetInstance"; /** AD_Table_ID=559 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 559; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -143,7 +143,7 @@ public interface I_M_AttributeSetInstance */ public int getM_AttributeSet_ID(); - public I_M_AttributeSet getM_AttributeSet() throws RuntimeException; + public org.compiere.model.I_M_AttributeSet getM_AttributeSet() throws RuntimeException; /** Column name M_AttributeSetInstance_ID */ public static final String COLUMNNAME_M_AttributeSetInstance_ID = "M_AttributeSetInstance_ID"; @@ -158,6 +158,15 @@ public interface I_M_AttributeSetInstance */ public int getM_AttributeSetInstance_ID(); + /** Column name M_AttributeSetInstance_UU */ + public static final String COLUMNNAME_M_AttributeSetInstance_UU = "M_AttributeSetInstance_UU"; + + /** Set M_AttributeSetInstance_UU */ + public void setM_AttributeSetInstance_UU (String M_AttributeSetInstance_UU); + + /** Get M_AttributeSetInstance_UU */ + public String getM_AttributeSetInstance_UU(); + /** Column name M_Lot_ID */ public static final String COLUMNNAME_M_Lot_ID = "M_Lot_ID"; @@ -171,7 +180,7 @@ public interface I_M_AttributeSetInstance */ public int getM_Lot_ID(); - public I_M_Lot getM_Lot() throws RuntimeException; + public org.compiere.model.I_M_Lot getM_Lot() throws RuntimeException; /** Column name SerNo */ public static final String COLUMNNAME_SerNo = "SerNo"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_AttributeUse.java b/org.adempiere.base/src/org/compiere/model/I_M_AttributeUse.java index 4dbec4dc78..901dbb8f41 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_AttributeUse.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_AttributeUse.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_AttributeUse - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_AttributeUse { @@ -31,7 +31,7 @@ public interface I_M_AttributeUse public static final String Table_Name = "M_AttributeUse"; /** AD_Table_ID=563 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 563; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -104,7 +104,7 @@ public interface I_M_AttributeUse */ public int getM_Attribute_ID(); - public I_M_Attribute getM_Attribute() throws RuntimeException; + public org.compiere.model.I_M_Attribute getM_Attribute() throws RuntimeException; /** Column name M_AttributeSet_ID */ public static final String COLUMNNAME_M_AttributeSet_ID = "M_AttributeSet_ID"; @@ -119,7 +119,16 @@ public interface I_M_AttributeUse */ public int getM_AttributeSet_ID(); - public I_M_AttributeSet getM_AttributeSet() throws RuntimeException; + public org.compiere.model.I_M_AttributeSet getM_AttributeSet() throws RuntimeException; + + /** Column name M_AttributeUse_UU */ + public static final String COLUMNNAME_M_AttributeUse_UU = "M_AttributeUse_UU"; + + /** Set M_AttributeUse_UU */ + public void setM_AttributeUse_UU (String M_AttributeUse_UU); + + /** Get M_AttributeUse_UU */ + public String getM_AttributeUse_UU(); /** Column name SeqNo */ public static final String COLUMNNAME_SeqNo = "SeqNo"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_AttributeValue.java b/org.adempiere.base/src/org/compiere/model/I_M_AttributeValue.java index e9b6dd9457..df180f4814 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_AttributeValue.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_AttributeValue.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_AttributeValue - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_AttributeValue { @@ -31,7 +31,7 @@ public interface I_M_AttributeValue public static final String Table_Name = "M_AttributeValue"; /** AD_Table_ID=558 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 558; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -117,7 +117,7 @@ public interface I_M_AttributeValue */ public int getM_Attribute_ID(); - public I_M_Attribute getM_Attribute() throws RuntimeException; + public org.compiere.model.I_M_Attribute getM_Attribute() throws RuntimeException; /** Column name M_AttributeValue_ID */ public static final String COLUMNNAME_M_AttributeValue_ID = "M_AttributeValue_ID"; @@ -132,6 +132,15 @@ public interface I_M_AttributeValue */ public int getM_AttributeValue_ID(); + /** Column name M_AttributeValue_UU */ + public static final String COLUMNNAME_M_AttributeValue_UU = "M_AttributeValue_UU"; + + /** Set M_AttributeValue_UU */ + public void setM_AttributeValue_UU (String M_AttributeValue_UU); + + /** Get M_AttributeValue_UU */ + public String getM_AttributeValue_UU(); + /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_BOM.java b/org.adempiere.base/src/org/compiere/model/I_M_BOM.java index a2e3f64a04..573b5cf864 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_BOM.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_BOM.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_BOM - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_BOM { @@ -31,7 +31,7 @@ public interface I_M_BOM public static final String Table_Name = "M_BOM"; /** AD_Table_ID=798 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 798; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -156,6 +156,15 @@ public interface I_M_BOM */ public int getM_BOM_ID(); + /** Column name M_BOM_UU */ + public static final String COLUMNNAME_M_BOM_UU = "M_BOM_UU"; + + /** Set M_BOM_UU */ + public void setM_BOM_UU (String M_BOM_UU); + + /** Get M_BOM_UU */ + public String getM_BOM_UU(); + /** Column name M_ChangeNotice_ID */ public static final String COLUMNNAME_M_ChangeNotice_ID = "M_ChangeNotice_ID"; @@ -169,7 +178,7 @@ public interface I_M_BOM */ public int getM_ChangeNotice_ID(); - public I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException; + public org.compiere.model.I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -184,7 +193,7 @@ public interface I_M_BOM */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_BOMAlternative.java b/org.adempiere.base/src/org/compiere/model/I_M_BOMAlternative.java index 15d8975966..e4b4a0d773 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_BOMAlternative.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_BOMAlternative.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_BOMAlternative - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_BOMAlternative { @@ -31,7 +31,7 @@ public interface I_M_BOMAlternative public static final String Table_Name = "M_BOMAlternative"; /** AD_Table_ID=795 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 795; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -117,6 +117,15 @@ public interface I_M_BOMAlternative */ public int getM_BOMAlternative_ID(); + /** Column name M_BOMAlternative_UU */ + public static final String COLUMNNAME_M_BOMAlternative_UU = "M_BOMAlternative_UU"; + + /** Set M_BOMAlternative_UU */ + public void setM_BOMAlternative_UU (String M_BOMAlternative_UU); + + /** Get M_BOMAlternative_UU */ + public String getM_BOMAlternative_UU(); + /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -130,7 +139,7 @@ public interface I_M_BOMAlternative */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_BOMProduct.java b/org.adempiere.base/src/org/compiere/model/I_M_BOMProduct.java index a4149f8e21..f52aa65211 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_BOMProduct.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_BOMProduct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_BOMProduct - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_BOMProduct { @@ -31,7 +31,7 @@ public interface I_M_BOMProduct public static final String Table_Name = "M_BOMProduct"; /** AD_Table_ID=801 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 801; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -210,7 +210,7 @@ public interface I_M_BOMProduct */ public int getM_BOMAlternative_ID(); - public I_M_BOMAlternative getM_BOMAlternative() throws RuntimeException; + public org.compiere.model.I_M_BOMAlternative getM_BOMAlternative() throws RuntimeException; /** Column name M_BOM_ID */ public static final String COLUMNNAME_M_BOM_ID = "M_BOM_ID"; @@ -225,7 +225,7 @@ public interface I_M_BOMProduct */ public int getM_BOM_ID(); - public I_M_BOM getM_BOM() throws RuntimeException; + public org.compiere.model.I_M_BOM getM_BOM() throws RuntimeException; /** Column name M_BOMProduct_ID */ public static final String COLUMNNAME_M_BOMProduct_ID = "M_BOMProduct_ID"; @@ -240,6 +240,15 @@ public interface I_M_BOMProduct */ public int getM_BOMProduct_ID(); + /** Column name M_BOMProduct_UU */ + public static final String COLUMNNAME_M_BOMProduct_UU = "M_BOMProduct_UU"; + + /** Set M_BOMProduct_UU */ + public void setM_BOMProduct_UU (String M_BOMProduct_UU); + + /** Get M_BOMProduct_UU */ + public String getM_BOMProduct_UU(); + /** Column name M_ChangeNotice_ID */ public static final String COLUMNNAME_M_ChangeNotice_ID = "M_ChangeNotice_ID"; @@ -253,7 +262,7 @@ public interface I_M_BOMProduct */ public int getM_ChangeNotice_ID(); - public I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException; + public org.compiere.model.I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException; /** Column name M_ProductBOM_ID */ public static final String COLUMNNAME_M_ProductBOM_ID = "M_ProductBOM_ID"; @@ -268,7 +277,7 @@ public interface I_M_BOMProduct */ public int getM_ProductBOM_ID(); - public I_M_Product getM_ProductBOM() throws RuntimeException; + public org.compiere.model.I_M_Product getM_ProductBOM() throws RuntimeException; /** Column name M_ProductOperation_ID */ public static final String COLUMNNAME_M_ProductOperation_ID = "M_ProductOperation_ID"; @@ -283,7 +292,7 @@ public interface I_M_BOMProduct */ public int getM_ProductOperation_ID(); - public I_M_ProductOperation getM_ProductOperation() throws RuntimeException; + public org.compiere.model.I_M_ProductOperation getM_ProductOperation() throws RuntimeException; /** Column name SeqNo */ public static final String COLUMNNAME_SeqNo = "SeqNo"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_ChangeNotice.java b/org.adempiere.base/src/org/compiere/model/I_M_ChangeNotice.java index 21146beefd..04f5d706b4 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_ChangeNotice.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_ChangeNotice.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_ChangeNotice - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_ChangeNotice { @@ -31,7 +31,7 @@ public interface I_M_ChangeNotice public static final String Table_Name = "M_ChangeNotice"; /** AD_Table_ID=799 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 799; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -156,6 +156,15 @@ public interface I_M_ChangeNotice */ public int getM_ChangeNotice_ID(); + /** Column name M_ChangeNotice_UU */ + public static final String COLUMNNAME_M_ChangeNotice_UU = "M_ChangeNotice_UU"; + + /** Set M_ChangeNotice_UU */ + public void setM_ChangeNotice_UU (String M_ChangeNotice_UU); + + /** Get M_ChangeNotice_UU */ + public String getM_ChangeNotice_UU(); + /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_ChangeRequest.java b/org.adempiere.base/src/org/compiere/model/I_M_ChangeRequest.java index e5c7856609..3f2ae57418 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_ChangeRequest.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_ChangeRequest.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_ChangeRequest - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_ChangeRequest { @@ -31,7 +31,7 @@ public interface I_M_ChangeRequest public static final String Table_Name = "M_ChangeRequest"; /** AD_Table_ID=800 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 800; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -169,7 +169,7 @@ public interface I_M_ChangeRequest */ public int getM_ChangeNotice_ID(); - public I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException; + public org.compiere.model.I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException; /** Column name M_ChangeRequest_ID */ public static final String COLUMNNAME_M_ChangeRequest_ID = "M_ChangeRequest_ID"; @@ -184,6 +184,15 @@ public interface I_M_ChangeRequest */ public int getM_ChangeRequest_ID(); + /** Column name M_ChangeRequest_UU */ + public static final String COLUMNNAME_M_ChangeRequest_UU = "M_ChangeRequest_UU"; + + /** Set M_ChangeRequest_UU */ + public void setM_ChangeRequest_UU (String M_ChangeRequest_UU); + + /** Get M_ChangeRequest_UU */ + public String getM_ChangeRequest_UU(); + /** Column name M_FixChangeNotice_ID */ public static final String COLUMNNAME_M_FixChangeNotice_ID = "M_FixChangeNotice_ID"; @@ -197,7 +206,7 @@ public interface I_M_ChangeRequest */ public int getM_FixChangeNotice_ID(); - public I_M_ChangeNotice getM_FixChangeNotice() throws RuntimeException; + public org.compiere.model.I_M_ChangeNotice getM_FixChangeNotice() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_Cost.java b/org.adempiere.base/src/org/compiere/model/I_M_Cost.java index a7de1b410b..3febf4ade8 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_Cost.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_Cost.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_Cost - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_Cost { @@ -31,7 +31,7 @@ public interface I_M_Cost public static final String Table_Name = "M_Cost"; /** AD_Table_ID=771 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 771; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_M_Cost */ public int getC_AcctSchema_ID(); - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException; /** Column name CostingMethod */ public static final String COLUMNNAME_CostingMethod = "CostingMethod"; @@ -256,7 +256,7 @@ public interface I_M_Cost */ public int getM_CostElement_ID(); - public I_M_CostElement getM_CostElement() throws RuntimeException; + public org.compiere.model.I_M_CostElement getM_CostElement() throws RuntimeException; /** Column name M_CostType_ID */ public static final String COLUMNNAME_M_CostType_ID = "M_CostType_ID"; @@ -271,7 +271,16 @@ public interface I_M_Cost */ public int getM_CostType_ID(); - public I_M_CostType getM_CostType() throws RuntimeException; + public org.compiere.model.I_M_CostType getM_CostType() throws RuntimeException; + + /** Column name M_Cost_UU */ + public static final String COLUMNNAME_M_Cost_UU = "M_Cost_UU"; + + /** Set M_Cost_UU */ + public void setM_Cost_UU (String M_Cost_UU); + + /** Get M_Cost_UU */ + public String getM_Cost_UU(); /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -286,7 +295,7 @@ public interface I_M_Cost */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Percent */ public static final String COLUMNNAME_Percent = "Percent"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_CostDetail.java b/org.adempiere.base/src/org/compiere/model/I_M_CostDetail.java index c27c1be9ab..9df969aa01 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_CostDetail.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_CostDetail.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_CostDetail - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_CostDetail { @@ -31,7 +31,7 @@ public interface I_M_CostDetail public static final String Table_Name = "M_CostDetail"; /** AD_Table_ID=808 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 808; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_M_CostDetail */ public int getC_AcctSchema_ID(); - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException; /** Column name C_InvoiceLine_ID */ public static final String COLUMNNAME_C_InvoiceLine_ID = "C_InvoiceLine_ID"; @@ -103,7 +103,7 @@ public interface I_M_CostDetail */ public int getC_InvoiceLine_ID(); - public I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException; + public org.compiere.model.I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException; /** Column name C_OrderLine_ID */ public static final String COLUMNNAME_C_OrderLine_ID = "C_OrderLine_ID"; @@ -118,7 +118,7 @@ public interface I_M_CostDetail */ public int getC_OrderLine_ID(); - public I_C_OrderLine getC_OrderLine() throws RuntimeException; + public org.compiere.model.I_C_OrderLine getC_OrderLine() throws RuntimeException; /** Column name C_ProjectIssue_ID */ public static final String COLUMNNAME_C_ProjectIssue_ID = "C_ProjectIssue_ID"; @@ -133,7 +133,7 @@ public interface I_M_CostDetail */ public int getC_ProjectIssue_ID(); - public I_C_ProjectIssue getC_ProjectIssue() throws RuntimeException; + public org.compiere.model.I_C_ProjectIssue getC_ProjectIssue() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -296,6 +296,15 @@ public interface I_M_CostDetail */ public int getM_CostDetail_ID(); + /** Column name M_CostDetail_UU */ + public static final String COLUMNNAME_M_CostDetail_UU = "M_CostDetail_UU"; + + /** Set M_CostDetail_UU */ + public void setM_CostDetail_UU (String M_CostDetail_UU); + + /** Get M_CostDetail_UU */ + public String getM_CostDetail_UU(); + /** Column name M_CostElement_ID */ public static final String COLUMNNAME_M_CostElement_ID = "M_CostElement_ID"; @@ -309,7 +318,7 @@ public interface I_M_CostDetail */ public int getM_CostElement_ID(); - public I_M_CostElement getM_CostElement() throws RuntimeException; + public org.compiere.model.I_M_CostElement getM_CostElement() throws RuntimeException; /** Column name M_InOutLine_ID */ public static final String COLUMNNAME_M_InOutLine_ID = "M_InOutLine_ID"; @@ -324,7 +333,7 @@ public interface I_M_CostDetail */ public int getM_InOutLine_ID(); - public I_M_InOutLine getM_InOutLine() throws RuntimeException; + public org.compiere.model.I_M_InOutLine getM_InOutLine() throws RuntimeException; /** Column name M_InventoryLine_ID */ public static final String COLUMNNAME_M_InventoryLine_ID = "M_InventoryLine_ID"; @@ -339,7 +348,7 @@ public interface I_M_CostDetail */ public int getM_InventoryLine_ID(); - public I_M_InventoryLine getM_InventoryLine() throws RuntimeException; + public org.compiere.model.I_M_InventoryLine getM_InventoryLine() throws RuntimeException; /** Column name M_MovementLine_ID */ public static final String COLUMNNAME_M_MovementLine_ID = "M_MovementLine_ID"; @@ -354,7 +363,7 @@ public interface I_M_CostDetail */ public int getM_MovementLine_ID(); - public I_M_MovementLine getM_MovementLine() throws RuntimeException; + public org.compiere.model.I_M_MovementLine getM_MovementLine() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -369,7 +378,7 @@ public interface I_M_CostDetail */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name M_ProductionLine_ID */ public static final String COLUMNNAME_M_ProductionLine_ID = "M_ProductionLine_ID"; @@ -384,7 +393,7 @@ public interface I_M_CostDetail */ public int getM_ProductionLine_ID(); - public I_M_ProductionLine getM_ProductionLine() throws RuntimeException; + public org.compiere.model.I_M_ProductionLine getM_ProductionLine() throws RuntimeException; /** Column name PP_Cost_Collector_ID */ public static final String COLUMNNAME_PP_Cost_Collector_ID = "PP_Cost_Collector_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_CostElement.java b/org.adempiere.base/src/org/compiere/model/I_M_CostElement.java index 387e20a624..8aedb7ecff 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_CostElement.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_CostElement.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_CostElement - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_CostElement { @@ -31,7 +31,7 @@ public interface I_M_CostElement public static final String Table_Name = "M_CostElement"; /** AD_Table_ID=770 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 770; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -156,6 +156,15 @@ public interface I_M_CostElement */ public int getM_CostElement_ID(); + /** Column name M_CostElement_UU */ + public static final String COLUMNNAME_M_CostElement_UU = "M_CostElement_UU"; + + /** Set M_CostElement_UU */ + public void setM_CostElement_UU (String M_CostElement_UU); + + /** Get M_CostElement_UU */ + public String getM_CostElement_UU(); + /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_CostHistory.java b/org.adempiere.base/src/org/compiere/model/I_M_CostHistory.java index 5ff875fa73..a1721e40de 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_CostHistory.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_CostHistory.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_CostHistory - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_CostHistory { diff --git a/org.adempiere.base/src/org/compiere/model/I_M_CostQueue.java b/org.adempiere.base/src/org/compiere/model/I_M_CostQueue.java index 1eea0b0b7e..9f0ecc9bf9 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_CostQueue.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_CostQueue.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_CostQueue - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_CostQueue { @@ -31,7 +31,7 @@ public interface I_M_CostQueue public static final String Table_Name = "M_CostQueue"; /** AD_Table_ID=817 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 817; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_M_CostQueue */ public int getC_AcctSchema_ID(); - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -160,7 +160,7 @@ public interface I_M_CostQueue */ public int getM_CostElement_ID(); - public I_M_CostElement getM_CostElement() throws RuntimeException; + public org.compiere.model.I_M_CostElement getM_CostElement() throws RuntimeException; /** Column name M_CostQueue_ID */ public static final String COLUMNNAME_M_CostQueue_ID = "M_CostQueue_ID"; @@ -175,6 +175,15 @@ public interface I_M_CostQueue */ public int getM_CostQueue_ID(); + /** Column name M_CostQueue_UU */ + public static final String COLUMNNAME_M_CostQueue_UU = "M_CostQueue_UU"; + + /** Set M_CostQueue_UU */ + public void setM_CostQueue_UU (String M_CostQueue_UU); + + /** Get M_CostQueue_UU */ + public String getM_CostQueue_UU(); + /** Column name M_CostType_ID */ public static final String COLUMNNAME_M_CostType_ID = "M_CostType_ID"; @@ -188,7 +197,7 @@ public interface I_M_CostQueue */ public int getM_CostType_ID(); - public I_M_CostType getM_CostType() throws RuntimeException; + public org.compiere.model.I_M_CostType getM_CostType() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -203,7 +212,7 @@ public interface I_M_CostQueue */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_CostType.java b/org.adempiere.base/src/org/compiere/model/I_M_CostType.java index ee9acfc39c..7bcf3f1157 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_CostType.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_CostType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_CostType - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_CostType { @@ -31,7 +31,7 @@ public interface I_M_CostType public static final String Table_Name = "M_CostType"; /** AD_Table_ID=586 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 586; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -130,6 +130,15 @@ public interface I_M_CostType */ public int getM_CostType_ID(); + /** Column name M_CostType_UU */ + public static final String COLUMNNAME_M_CostType_UU = "M_CostType_UU"; + + /** Set M_CostType_UU */ + public void setM_CostType_UU (String M_CostType_UU); + + /** Get M_CostType_UU */ + public String getM_CostType_UU(); + /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_Demand.java b/org.adempiere.base/src/org/compiere/model/I_M_Demand.java index c65d710ecd..e733c549c2 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_Demand.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_Demand.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_Demand - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_Demand { @@ -31,7 +31,7 @@ public interface I_M_Demand public static final String Table_Name = "M_Demand"; /** AD_Table_ID=723 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 723; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_M_Demand */ public int getC_Calendar_ID(); - public I_C_Calendar getC_Calendar() throws RuntimeException; + public org.compiere.model.I_C_Calendar getC_Calendar() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -106,7 +106,7 @@ public interface I_M_Demand */ public int getC_Year_ID(); - public I_C_Year getC_Year() throws RuntimeException; + public org.compiere.model.I_C_Year getC_Year() throws RuntimeException; /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; @@ -173,6 +173,15 @@ public interface I_M_Demand */ public int getM_Demand_ID(); + /** Column name M_Demand_UU */ + public static final String COLUMNNAME_M_Demand_UU = "M_Demand_UU"; + + /** Set M_Demand_UU */ + public void setM_Demand_UU (String M_Demand_UU); + + /** Get M_Demand_UU */ + public String getM_Demand_UU(); + /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_DemandDetail.java b/org.adempiere.base/src/org/compiere/model/I_M_DemandDetail.java index 497ab94bb8..af1088e9ff 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_DemandDetail.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_DemandDetail.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_DemandDetail - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_DemandDetail { @@ -31,7 +31,7 @@ public interface I_M_DemandDetail public static final String Table_Name = "M_DemandDetail"; /** AD_Table_ID=721 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 721; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_M_DemandDetail */ public int getC_OrderLine_ID(); - public I_C_OrderLine getC_OrderLine() throws RuntimeException; + public org.compiere.model.I_C_OrderLine getC_OrderLine() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -119,6 +119,15 @@ public interface I_M_DemandDetail */ public int getM_DemandDetail_ID(); + /** Column name M_DemandDetail_UU */ + public static final String COLUMNNAME_M_DemandDetail_UU = "M_DemandDetail_UU"; + + /** Set M_DemandDetail_UU */ + public void setM_DemandDetail_UU (String M_DemandDetail_UU); + + /** Get M_DemandDetail_UU */ + public String getM_DemandDetail_UU(); + /** Column name M_DemandLine_ID */ public static final String COLUMNNAME_M_DemandLine_ID = "M_DemandLine_ID"; @@ -132,7 +141,7 @@ public interface I_M_DemandDetail */ public int getM_DemandLine_ID(); - public I_M_DemandLine getM_DemandLine() throws RuntimeException; + public org.compiere.model.I_M_DemandLine getM_DemandLine() throws RuntimeException; /** Column name M_ForecastLine_ID */ public static final String COLUMNNAME_M_ForecastLine_ID = "M_ForecastLine_ID"; @@ -147,7 +156,7 @@ public interface I_M_DemandDetail */ public int getM_ForecastLine_ID(); - public I_M_ForecastLine getM_ForecastLine() throws RuntimeException; + public org.compiere.model.I_M_ForecastLine getM_ForecastLine() throws RuntimeException; /** Column name M_RequisitionLine_ID */ public static final String COLUMNNAME_M_RequisitionLine_ID = "M_RequisitionLine_ID"; @@ -162,7 +171,7 @@ public interface I_M_DemandDetail */ public int getM_RequisitionLine_ID(); - public I_M_RequisitionLine getM_RequisitionLine() throws RuntimeException; + public org.compiere.model.I_M_RequisitionLine getM_RequisitionLine() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_DemandLine.java b/org.adempiere.base/src/org/compiere/model/I_M_DemandLine.java index d67c967579..6d40ca138e 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_DemandLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_DemandLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_DemandLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_DemandLine { @@ -31,7 +31,7 @@ public interface I_M_DemandLine public static final String Table_Name = "M_DemandLine"; /** AD_Table_ID=719 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 719; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_M_DemandLine */ public int getC_Period_ID(); - public I_C_Period getC_Period() throws RuntimeException; + public org.compiere.model.I_C_Period getC_Period() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -119,7 +119,7 @@ public interface I_M_DemandLine */ public int getM_Demand_ID(); - public I_M_Demand getM_Demand() throws RuntimeException; + public org.compiere.model.I_M_Demand getM_Demand() throws RuntimeException; /** Column name M_DemandLine_ID */ public static final String COLUMNNAME_M_DemandLine_ID = "M_DemandLine_ID"; @@ -134,6 +134,15 @@ public interface I_M_DemandLine */ public int getM_DemandLine_ID(); + /** Column name M_DemandLine_UU */ + public static final String COLUMNNAME_M_DemandLine_UU = "M_DemandLine_UU"; + + /** Set M_DemandLine_UU */ + public void setM_DemandLine_UU (String M_DemandLine_UU); + + /** Get M_DemandLine_UU */ + public String getM_DemandLine_UU(); + /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -147,7 +156,7 @@ public interface I_M_DemandLine */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Qty */ public static final String COLUMNNAME_Qty = "Qty"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_DiscountSchema.java b/org.adempiere.base/src/org/compiere/model/I_M_DiscountSchema.java index 1ef5f38499..d1e8eaddca 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_DiscountSchema.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_DiscountSchema.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_DiscountSchema - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_DiscountSchema { @@ -31,7 +31,7 @@ public interface I_M_DiscountSchema public static final String Table_Name = "M_DiscountSchema"; /** AD_Table_ID=475 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 475; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -182,6 +182,15 @@ public interface I_M_DiscountSchema */ public int getM_DiscountSchema_ID(); + /** Column name M_DiscountSchema_UU */ + public static final String COLUMNNAME_M_DiscountSchema_UU = "M_DiscountSchema_UU"; + + /** Set M_DiscountSchema_UU */ + public void setM_DiscountSchema_UU (String M_DiscountSchema_UU); + + /** Get M_DiscountSchema_UU */ + public String getM_DiscountSchema_UU(); + /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_DiscountSchemaBreak.java b/org.adempiere.base/src/org/compiere/model/I_M_DiscountSchemaBreak.java index 5589a712cf..c3be923374 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_DiscountSchemaBreak.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_DiscountSchemaBreak.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_DiscountSchemaBreak - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_DiscountSchemaBreak { @@ -31,7 +31,7 @@ public interface I_M_DiscountSchemaBreak public static final String Table_Name = "M_DiscountSchemaBreak"; /** AD_Table_ID=476 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 476; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -143,6 +143,15 @@ public interface I_M_DiscountSchemaBreak */ public int getM_DiscountSchemaBreak_ID(); + /** Column name M_DiscountSchemaBreak_UU */ + public static final String COLUMNNAME_M_DiscountSchemaBreak_UU = "M_DiscountSchemaBreak_UU"; + + /** Set M_DiscountSchemaBreak_UU */ + public void setM_DiscountSchemaBreak_UU (String M_DiscountSchemaBreak_UU); + + /** Get M_DiscountSchemaBreak_UU */ + public String getM_DiscountSchemaBreak_UU(); + /** Column name M_DiscountSchema_ID */ public static final String COLUMNNAME_M_DiscountSchema_ID = "M_DiscountSchema_ID"; @@ -156,7 +165,7 @@ public interface I_M_DiscountSchemaBreak */ public int getM_DiscountSchema_ID(); - public I_M_DiscountSchema getM_DiscountSchema() throws RuntimeException; + public org.compiere.model.I_M_DiscountSchema getM_DiscountSchema() throws RuntimeException; /** Column name M_Product_Category_ID */ public static final String COLUMNNAME_M_Product_Category_ID = "M_Product_Category_ID"; @@ -171,7 +180,7 @@ public interface I_M_DiscountSchemaBreak */ public int getM_Product_Category_ID(); - public I_M_Product_Category getM_Product_Category() throws RuntimeException; + public org.compiere.model.I_M_Product_Category getM_Product_Category() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -186,7 +195,7 @@ public interface I_M_DiscountSchemaBreak */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name SeqNo */ public static final String COLUMNNAME_SeqNo = "SeqNo"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_DiscountSchemaLine.java b/org.adempiere.base/src/org/compiere/model/I_M_DiscountSchemaLine.java index a805401b85..4b95249712 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_DiscountSchemaLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_DiscountSchemaLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_DiscountSchemaLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_DiscountSchemaLine { @@ -31,7 +31,7 @@ public interface I_M_DiscountSchemaLine public static final String Table_Name = "M_DiscountSchemaLine"; /** AD_Table_ID=477 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 477; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_M_DiscountSchemaLine */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_ConversionType_ID */ public static final String COLUMNNAME_C_ConversionType_ID = "C_ConversionType_ID"; @@ -90,7 +90,7 @@ public interface I_M_DiscountSchemaLine */ public int getC_ConversionType_ID(); - public I_C_ConversionType getC_ConversionType() throws RuntimeException; + public org.compiere.model.I_C_ConversionType getC_ConversionType() throws RuntimeException; /** Column name Classification */ public static final String COLUMNNAME_Classification = "Classification"; @@ -364,7 +364,7 @@ public interface I_M_DiscountSchemaLine */ public int getM_DiscountSchema_ID(); - public I_M_DiscountSchema getM_DiscountSchema() throws RuntimeException; + public org.compiere.model.I_M_DiscountSchema getM_DiscountSchema() throws RuntimeException; /** Column name M_DiscountSchemaLine_ID */ public static final String COLUMNNAME_M_DiscountSchemaLine_ID = "M_DiscountSchemaLine_ID"; @@ -379,6 +379,15 @@ public interface I_M_DiscountSchemaLine */ public int getM_DiscountSchemaLine_ID(); + /** Column name M_DiscountSchemaLine_UU */ + public static final String COLUMNNAME_M_DiscountSchemaLine_UU = "M_DiscountSchemaLine_UU"; + + /** Set M_DiscountSchemaLine_UU */ + public void setM_DiscountSchemaLine_UU (String M_DiscountSchemaLine_UU); + + /** Get M_DiscountSchemaLine_UU */ + public String getM_DiscountSchemaLine_UU(); + /** Column name M_Product_Category_ID */ public static final String COLUMNNAME_M_Product_Category_ID = "M_Product_Category_ID"; @@ -392,7 +401,7 @@ public interface I_M_DiscountSchemaLine */ public int getM_Product_Category_ID(); - public I_M_Product_Category getM_Product_Category() throws RuntimeException; + public org.compiere.model.I_M_Product_Category getM_Product_Category() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -407,7 +416,7 @@ public interface I_M_DiscountSchemaLine */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name SeqNo */ public static final String COLUMNNAME_SeqNo = "SeqNo"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_DistributionList.java b/org.adempiere.base/src/org/compiere/model/I_M_DistributionList.java index 084ed04c29..aacd2429de 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_DistributionList.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_DistributionList.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_DistributionList - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_DistributionList { @@ -31,7 +31,7 @@ public interface I_M_DistributionList public static final String Table_Name = "M_DistributionList"; /** AD_Table_ID=666 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 666; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -130,6 +130,15 @@ public interface I_M_DistributionList */ public int getM_DistributionList_ID(); + /** Column name M_DistributionList_UU */ + public static final String COLUMNNAME_M_DistributionList_UU = "M_DistributionList_UU"; + + /** Set M_DistributionList_UU */ + public void setM_DistributionList_UU (String M_DistributionList_UU); + + /** Get M_DistributionList_UU */ + public String getM_DistributionList_UU(); + /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_DistributionListLine.java b/org.adempiere.base/src/org/compiere/model/I_M_DistributionListLine.java index 95914235cb..10416cb281 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_DistributionListLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_DistributionListLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_DistributionListLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_DistributionListLine { @@ -31,7 +31,7 @@ public interface I_M_DistributionListLine public static final String Table_Name = "M_DistributionListLine"; /** AD_Table_ID=665 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 665; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_M_DistributionListLine */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_BPartner_Location_ID */ public static final String COLUMNNAME_C_BPartner_Location_ID = "C_BPartner_Location_ID"; @@ -90,7 +90,7 @@ public interface I_M_DistributionListLine */ public int getC_BPartner_Location_ID(); - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -147,7 +147,7 @@ public interface I_M_DistributionListLine */ public int getM_DistributionList_ID(); - public I_M_DistributionList getM_DistributionList() throws RuntimeException; + public org.compiere.model.I_M_DistributionList getM_DistributionList() throws RuntimeException; /** Column name M_DistributionListLine_ID */ public static final String COLUMNNAME_M_DistributionListLine_ID = "M_DistributionListLine_ID"; @@ -162,6 +162,15 @@ public interface I_M_DistributionListLine */ public int getM_DistributionListLine_ID(); + /** Column name M_DistributionListLine_UU */ + public static final String COLUMNNAME_M_DistributionListLine_UU = "M_DistributionListLine_UU"; + + /** Set M_DistributionListLine_UU */ + public void setM_DistributionListLine_UU (String M_DistributionListLine_UU); + + /** Get M_DistributionListLine_UU */ + public String getM_DistributionListLine_UU(); + /** Column name MinQty */ public static final String COLUMNNAME_MinQty = "MinQty"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_DistributionRun.java b/org.adempiere.base/src/org/compiere/model/I_M_DistributionRun.java index 44cf4e0c58..d58a613516 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_DistributionRun.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_DistributionRun.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_DistributionRun - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_DistributionRun { @@ -31,7 +31,7 @@ public interface I_M_DistributionRun public static final String Table_Name = "M_DistributionRun"; /** AD_Table_ID=712 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 712; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_M_DistributionRun */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_BPartner_Location_ID */ public static final String COLUMNNAME_C_BPartner_Location_ID = "C_BPartner_Location_ID"; @@ -90,7 +90,7 @@ public interface I_M_DistributionRun */ public int getC_BPartner_Location_ID(); - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -160,6 +160,15 @@ public interface I_M_DistributionRun */ public int getM_DistributionRun_ID(); + /** Column name M_DistributionRun_UU */ + public static final String COLUMNNAME_M_DistributionRun_UU = "M_DistributionRun_UU"; + + /** Set M_DistributionRun_UU */ + public void setM_DistributionRun_UU (String M_DistributionRun_UU); + + /** Get M_DistributionRun_UU */ + public String getM_DistributionRun_UU(); + /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_DistributionRunLine.java b/org.adempiere.base/src/org/compiere/model/I_M_DistributionRunLine.java index 22983a37cb..96f9e80d85 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_DistributionRunLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_DistributionRunLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_DistributionRunLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_DistributionRunLine { @@ -31,7 +31,7 @@ public interface I_M_DistributionRunLine public static final String Table_Name = "M_DistributionRunLine"; /** AD_Table_ID=713 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 713; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -130,7 +130,7 @@ public interface I_M_DistributionRunLine */ public int getM_DistributionList_ID(); - public I_M_DistributionList getM_DistributionList() throws RuntimeException; + public org.compiere.model.I_M_DistributionList getM_DistributionList() throws RuntimeException; /** Column name M_DistributionRun_ID */ public static final String COLUMNNAME_M_DistributionRun_ID = "M_DistributionRun_ID"; @@ -145,7 +145,7 @@ public interface I_M_DistributionRunLine */ public int getM_DistributionRun_ID(); - public I_M_DistributionRun getM_DistributionRun() throws RuntimeException; + public org.compiere.model.I_M_DistributionRun getM_DistributionRun() throws RuntimeException; /** Column name M_DistributionRunLine_ID */ public static final String COLUMNNAME_M_DistributionRunLine_ID = "M_DistributionRunLine_ID"; @@ -160,6 +160,15 @@ public interface I_M_DistributionRunLine */ public int getM_DistributionRunLine_ID(); + /** Column name M_DistributionRunLine_UU */ + public static final String COLUMNNAME_M_DistributionRunLine_UU = "M_DistributionRunLine_UU"; + + /** Set M_DistributionRunLine_UU */ + public void setM_DistributionRunLine_UU (String M_DistributionRunLine_UU); + + /** Get M_DistributionRunLine_UU */ + public String getM_DistributionRunLine_UU(); + /** Column name MinQty */ public static final String COLUMNNAME_MinQty = "MinQty"; @@ -186,7 +195,7 @@ public interface I_M_DistributionRunLine */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name TotalQty */ public static final String COLUMNNAME_TotalQty = "TotalQty"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_Forecast.java b/org.adempiere.base/src/org/compiere/model/I_M_Forecast.java index 95590bcc5d..217ddcf871 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_Forecast.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_Forecast.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_Forecast - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_Forecast { @@ -31,7 +31,7 @@ public interface I_M_Forecast public static final String Table_Name = "M_Forecast"; /** AD_Table_ID=720 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 720; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_M_Forecast */ public int getC_Calendar_ID(); - public I_C_Calendar getC_Calendar() throws RuntimeException; + public org.compiere.model.I_C_Calendar getC_Calendar() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -106,7 +106,7 @@ public interface I_M_Forecast */ public int getC_Year_ID(); - public I_C_Year getC_Year() throws RuntimeException; + public org.compiere.model.I_C_Year getC_Year() throws RuntimeException; /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; @@ -173,6 +173,15 @@ public interface I_M_Forecast */ public int getM_Forecast_ID(); + /** Column name M_Forecast_UU */ + public static final String COLUMNNAME_M_Forecast_UU = "M_Forecast_UU"; + + /** Set M_Forecast_UU */ + public void setM_Forecast_UU (String M_Forecast_UU); + + /** Get M_Forecast_UU */ + public String getM_Forecast_UU(); + /** Column name M_PriceList_ID */ public static final String COLUMNNAME_M_PriceList_ID = "M_PriceList_ID"; @@ -186,7 +195,7 @@ public interface I_M_Forecast */ public int getM_PriceList_ID(); - public I_M_PriceList getM_PriceList() throws RuntimeException; + public org.compiere.model.I_M_PriceList getM_PriceList() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_ForecastLine.java b/org.adempiere.base/src/org/compiere/model/I_M_ForecastLine.java index 646e0c2ae7..6139a5dc56 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_ForecastLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_ForecastLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_ForecastLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_ForecastLine { @@ -31,7 +31,7 @@ public interface I_M_ForecastLine public static final String Table_Name = "M_ForecastLine"; /** AD_Table_ID=722 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 722; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_M_ForecastLine */ public int getC_Period_ID(); - public I_C_Period getC_Period() throws RuntimeException; + public org.compiere.model.I_C_Period getC_Period() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -132,7 +132,7 @@ public interface I_M_ForecastLine */ public int getM_Forecast_ID(); - public I_M_Forecast getM_Forecast() throws RuntimeException; + public org.compiere.model.I_M_Forecast getM_Forecast() throws RuntimeException; /** Column name M_ForecastLine_ID */ public static final String COLUMNNAME_M_ForecastLine_ID = "M_ForecastLine_ID"; @@ -147,6 +147,15 @@ public interface I_M_ForecastLine */ public int getM_ForecastLine_ID(); + /** Column name M_ForecastLine_UU */ + public static final String COLUMNNAME_M_ForecastLine_UU = "M_ForecastLine_UU"; + + /** Set M_ForecastLine_UU */ + public void setM_ForecastLine_UU (String M_ForecastLine_UU); + + /** Get M_ForecastLine_UU */ + public String getM_ForecastLine_UU(); + /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -160,7 +169,7 @@ public interface I_M_ForecastLine */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name M_Warehouse_ID */ public static final String COLUMNNAME_M_Warehouse_ID = "M_Warehouse_ID"; @@ -175,7 +184,7 @@ public interface I_M_ForecastLine */ public int getM_Warehouse_ID(); - public I_M_Warehouse getM_Warehouse() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException; /** Column name Qty */ public static final String COLUMNNAME_Qty = "Qty"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_Freight.java b/org.adempiere.base/src/org/compiere/model/I_M_Freight.java index 0a83188755..fbe92ed65c 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_Freight.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_Freight.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_Freight - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_Freight { @@ -31,7 +31,7 @@ public interface I_M_Freight public static final String Table_Name = "M_Freight"; /** AD_Table_ID=596 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 596; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_M_Freight */ public int getC_Country_ID(); - public I_C_Country getC_Country() throws RuntimeException; + public org.compiere.model.I_C_Country getC_Country() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -90,7 +90,7 @@ public interface I_M_Freight */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -121,7 +121,7 @@ public interface I_M_Freight */ public int getC_Region_ID(); - public I_C_Region getC_Region() throws RuntimeException; + public org.compiere.model.I_C_Region getC_Region() throws RuntimeException; /** Column name FreightAmt */ public static final String COLUMNNAME_FreightAmt = "FreightAmt"; @@ -162,7 +162,7 @@ public interface I_M_Freight */ public int getM_FreightCategory_ID(); - public I_M_FreightCategory getM_FreightCategory() throws RuntimeException; + public org.compiere.model.I_M_FreightCategory getM_FreightCategory() throws RuntimeException; /** Column name M_Freight_ID */ public static final String COLUMNNAME_M_Freight_ID = "M_Freight_ID"; @@ -177,6 +177,15 @@ public interface I_M_Freight */ public int getM_Freight_ID(); + /** Column name M_Freight_UU */ + public static final String COLUMNNAME_M_Freight_UU = "M_Freight_UU"; + + /** Set M_Freight_UU */ + public void setM_Freight_UU (String M_Freight_UU); + + /** Get M_Freight_UU */ + public String getM_Freight_UU(); + /** Column name M_Shipper_ID */ public static final String COLUMNNAME_M_Shipper_ID = "M_Shipper_ID"; @@ -190,7 +199,7 @@ public interface I_M_Freight */ public int getM_Shipper_ID(); - public I_M_Shipper getM_Shipper() throws RuntimeException; + public org.compiere.model.I_M_Shipper getM_Shipper() throws RuntimeException; /** Column name To_Country_ID */ public static final String COLUMNNAME_To_Country_ID = "To_Country_ID"; @@ -218,7 +227,7 @@ public interface I_M_Freight */ public int getTo_Region_ID(); - public I_C_Region getTo_Region() throws RuntimeException; + public org.compiere.model.I_C_Region getTo_Region() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_FreightCategory.java b/org.adempiere.base/src/org/compiere/model/I_M_FreightCategory.java index 558d56e624..aebed4e723 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_FreightCategory.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_FreightCategory.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_FreightCategory - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_FreightCategory { @@ -31,7 +31,7 @@ public interface I_M_FreightCategory public static final String Table_Name = "M_FreightCategory"; /** AD_Table_ID=595 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 595; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -130,6 +130,15 @@ public interface I_M_FreightCategory */ public int getM_FreightCategory_ID(); + /** Column name M_FreightCategory_UU */ + public static final String COLUMNNAME_M_FreightCategory_UU = "M_FreightCategory_UU"; + + /** Set M_FreightCategory_UU */ + public void setM_FreightCategory_UU (String M_FreightCategory_UU); + + /** Get M_FreightCategory_UU */ + public String getM_FreightCategory_UU(); + /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_InOut.java b/org.adempiere.base/src/org/compiere/model/I_M_InOut.java index 291575ed50..403658d88d 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_InOut.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_InOut.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_InOut - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_InOut { @@ -31,7 +31,7 @@ public interface I_M_InOut public static final String Table_Name = "M_InOut"; /** AD_Table_ID=319 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 319; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_M_InOut */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name C_Activity_ID */ public static final String COLUMNNAME_C_Activity_ID = "C_Activity_ID"; @@ -103,7 +103,7 @@ public interface I_M_InOut */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -118,7 +118,7 @@ public interface I_M_InOut */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_BPartner_Location_ID */ public static final String COLUMNNAME_C_BPartner_Location_ID = "C_BPartner_Location_ID"; @@ -133,7 +133,7 @@ public interface I_M_InOut */ public int getC_BPartner_Location_ID(); - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -148,7 +148,7 @@ public interface I_M_InOut */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_Charge_ID */ public static final String COLUMNNAME_C_Charge_ID = "C_Charge_ID"; @@ -163,7 +163,7 @@ public interface I_M_InOut */ public int getC_Charge_ID(); - public I_C_Charge getC_Charge() throws RuntimeException; + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException; /** Column name C_DocType_ID */ public static final String COLUMNNAME_C_DocType_ID = "C_DocType_ID"; @@ -178,7 +178,7 @@ public interface I_M_InOut */ public int getC_DocType_ID(); - public I_C_DocType getC_DocType() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException; /** Column name ChargeAmt */ public static final String COLUMNNAME_ChargeAmt = "ChargeAmt"; @@ -206,7 +206,7 @@ public interface I_M_InOut */ public int getC_Invoice_ID(); - public I_C_Invoice getC_Invoice() throws RuntimeException; + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException; /** Column name C_Order_ID */ public static final String COLUMNNAME_C_Order_ID = "C_Order_ID"; @@ -221,7 +221,7 @@ public interface I_M_InOut */ public int getC_Order_ID(); - public I_C_Order getC_Order() throws RuntimeException; + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException; /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -236,7 +236,7 @@ public interface I_M_InOut */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name CreateConfirm */ public static final String COLUMNNAME_CreateConfirm = "CreateConfirm"; @@ -428,7 +428,7 @@ public interface I_M_InOut */ public int getDropShip_BPartner_ID(); - public I_C_BPartner getDropShip_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getDropShip_BPartner() throws RuntimeException; /** Column name DropShip_Location_ID */ public static final String COLUMNNAME_DropShip_Location_ID = "DropShip_Location_ID"; @@ -443,7 +443,7 @@ public interface I_M_InOut */ public int getDropShip_Location_ID(); - public I_C_BPartner_Location getDropShip_Location() throws RuntimeException; + public org.compiere.model.I_C_BPartner_Location getDropShip_Location() throws RuntimeException; /** Column name DropShip_User_ID */ public static final String COLUMNNAME_DropShip_User_ID = "DropShip_User_ID"; @@ -458,7 +458,7 @@ public interface I_M_InOut */ public int getDropShip_User_ID(); - public I_AD_User getDropShip_User() throws RuntimeException; + public org.compiere.model.I_AD_User getDropShip_User() throws RuntimeException; /** Column name FreightAmt */ public static final String COLUMNNAME_FreightAmt = "FreightAmt"; @@ -603,6 +603,15 @@ public interface I_M_InOut */ public int getM_InOut_ID(); + /** Column name M_InOut_UU */ + public static final String COLUMNNAME_M_InOut_UU = "M_InOut_UU"; + + /** Set M_InOut_UU */ + public void setM_InOut_UU (String M_InOut_UU); + + /** Get M_InOut_UU */ + public String getM_InOut_UU(); + /** Column name MovementDate */ public static final String COLUMNNAME_MovementDate = "MovementDate"; @@ -642,7 +651,7 @@ public interface I_M_InOut */ public int getM_RMA_ID(); - public I_M_RMA getM_RMA() throws RuntimeException; + public org.compiere.model.I_M_RMA getM_RMA() throws RuntimeException; /** Column name M_Shipper_ID */ public static final String COLUMNNAME_M_Shipper_ID = "M_Shipper_ID"; @@ -657,7 +666,7 @@ public interface I_M_InOut */ public int getM_Shipper_ID(); - public I_M_Shipper getM_Shipper() throws RuntimeException; + public org.compiere.model.I_M_Shipper getM_Shipper() throws RuntimeException; /** Column name M_Warehouse_ID */ public static final String COLUMNNAME_M_Warehouse_ID = "M_Warehouse_ID"; @@ -672,7 +681,7 @@ public interface I_M_InOut */ public int getM_Warehouse_ID(); - public I_M_Warehouse getM_Warehouse() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException; /** Column name NoPackages */ public static final String COLUMNNAME_NoPackages = "NoPackages"; @@ -796,7 +805,7 @@ public interface I_M_InOut */ public int getReversal_ID(); - public I_M_InOut getReversal() throws RuntimeException; + public org.compiere.model.I_M_InOut getReversal() throws RuntimeException; /** Column name SalesRep_ID */ public static final String COLUMNNAME_SalesRep_ID = "SalesRep_ID"; @@ -811,7 +820,7 @@ public interface I_M_InOut */ public int getSalesRep_ID(); - public I_AD_User getSalesRep() throws RuntimeException; + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException; /** Column name SendEMail */ public static final String COLUMNNAME_SendEMail = "SendEMail"; @@ -881,7 +890,7 @@ public interface I_M_InOut */ public int getUser1_ID(); - public I_C_ElementValue getUser1() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException; /** Column name User2_ID */ public static final String COLUMNNAME_User2_ID = "User2_ID"; @@ -896,7 +905,7 @@ public interface I_M_InOut */ public int getUser2_ID(); - public I_C_ElementValue getUser2() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException; /** Column name Volume */ public static final String COLUMNNAME_Volume = "Volume"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_InOutConfirm.java b/org.adempiere.base/src/org/compiere/model/I_M_InOutConfirm.java index a2c9a2f13a..8b521f47b0 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_InOutConfirm.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_InOutConfirm.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_InOutConfirm - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_InOutConfirm { @@ -31,7 +31,7 @@ public interface I_M_InOutConfirm public static final String Table_Name = "M_InOutConfirm"; /** AD_Table_ID=727 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 727; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_M_InOutConfirm */ public int getC_Invoice_ID(); - public I_C_Invoice getC_Invoice() throws RuntimeException; + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException; /** Column name ConfirmationNo */ public static final String COLUMNNAME_ConfirmationNo = "ConfirmationNo"; @@ -258,6 +258,15 @@ public interface I_M_InOutConfirm */ public int getM_InOutConfirm_ID(); + /** Column name M_InOutConfirm_UU */ + public static final String COLUMNNAME_M_InOutConfirm_UU = "M_InOutConfirm_UU"; + + /** Set M_InOutConfirm_UU */ + public void setM_InOutConfirm_UU (String M_InOutConfirm_UU); + + /** Get M_InOutConfirm_UU */ + public String getM_InOutConfirm_UU(); + /** Column name M_InOut_ID */ public static final String COLUMNNAME_M_InOut_ID = "M_InOut_ID"; @@ -271,7 +280,7 @@ public interface I_M_InOutConfirm */ public int getM_InOut_ID(); - public I_M_InOut getM_InOut() throws RuntimeException; + public org.compiere.model.I_M_InOut getM_InOut() throws RuntimeException; /** Column name M_Inventory_ID */ public static final String COLUMNNAME_M_Inventory_ID = "M_Inventory_ID"; @@ -286,7 +295,7 @@ public interface I_M_InOutConfirm */ public int getM_Inventory_ID(); - public I_M_Inventory getM_Inventory() throws RuntimeException; + public org.compiere.model.I_M_Inventory getM_Inventory() throws RuntimeException; /** Column name Processed */ public static final String COLUMNNAME_Processed = "Processed"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_InOutLine.java b/org.adempiere.base/src/org/compiere/model/I_M_InOutLine.java index 5a35092ab1..aaf8e1e206 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_InOutLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_InOutLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_InOutLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_InOutLine { @@ -31,7 +31,7 @@ public interface I_M_InOutLine public static final String Table_Name = "M_InOutLine"; /** AD_Table_ID=320 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 320; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_M_InOutLine */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -103,7 +103,7 @@ public interface I_M_InOutLine */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_Charge_ID */ public static final String COLUMNNAME_C_Charge_ID = "C_Charge_ID"; @@ -118,7 +118,7 @@ public interface I_M_InOutLine */ public int getC_Charge_ID(); - public I_C_Charge getC_Charge() throws RuntimeException; + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException; /** Column name ConfirmedQty */ public static final String COLUMNNAME_ConfirmedQty = "ConfirmedQty"; @@ -146,7 +146,7 @@ public interface I_M_InOutLine */ public int getC_OrderLine_ID(); - public I_C_OrderLine getC_OrderLine() throws RuntimeException; + public org.compiere.model.I_C_OrderLine getC_OrderLine() throws RuntimeException; /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -161,7 +161,7 @@ public interface I_M_InOutLine */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name C_ProjectPhase_ID */ public static final String COLUMNNAME_C_ProjectPhase_ID = "C_ProjectPhase_ID"; @@ -176,7 +176,7 @@ public interface I_M_InOutLine */ public int getC_ProjectPhase_ID(); - public I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException; + public org.compiere.model.I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException; /** Column name C_ProjectTask_ID */ public static final String COLUMNNAME_C_ProjectTask_ID = "C_ProjectTask_ID"; @@ -191,7 +191,7 @@ public interface I_M_InOutLine */ public int getC_ProjectTask_ID(); - public I_C_ProjectTask getC_ProjectTask() throws RuntimeException; + public org.compiere.model.I_C_ProjectTask getC_ProjectTask() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -222,7 +222,7 @@ public interface I_M_InOutLine */ public int getC_UOM_ID(); - public I_C_UOM getC_UOM() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException; /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; @@ -317,7 +317,7 @@ public interface I_M_InOutLine */ public int getM_InOut_ID(); - public I_M_InOut getM_InOut() throws RuntimeException; + public org.compiere.model.I_M_InOut getM_InOut() throws RuntimeException; /** Column name M_InOutLine_ID */ public static final String COLUMNNAME_M_InOutLine_ID = "M_InOutLine_ID"; @@ -332,6 +332,15 @@ public interface I_M_InOutLine */ public int getM_InOutLine_ID(); + /** Column name M_InOutLine_UU */ + public static final String COLUMNNAME_M_InOutLine_UU = "M_InOutLine_UU"; + + /** Set M_InOutLine_UU */ + public void setM_InOutLine_UU (String M_InOutLine_UU); + + /** Get M_InOutLine_UU */ + public String getM_InOutLine_UU(); + /** Column name M_Locator_ID */ public static final String COLUMNNAME_M_Locator_ID = "M_Locator_ID"; @@ -373,7 +382,7 @@ public interface I_M_InOutLine */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name M_RMALine_ID */ public static final String COLUMNNAME_M_RMALine_ID = "M_RMALine_ID"; @@ -388,7 +397,7 @@ public interface I_M_InOutLine */ public int getM_RMALine_ID(); - public I_M_RMALine getM_RMALine() throws RuntimeException; + public org.compiere.model.I_M_RMALine getM_RMALine() throws RuntimeException; /** Column name PickedQty */ public static final String COLUMNNAME_PickedQty = "PickedQty"; @@ -447,7 +456,7 @@ public interface I_M_InOutLine */ public int getReversalLine_ID(); - public I_M_InOutLine getReversalLine() throws RuntimeException; + public org.compiere.model.I_M_InOutLine getReversalLine() throws RuntimeException; /** Column name ScrappedQty */ public static final String COLUMNNAME_ScrappedQty = "ScrappedQty"; @@ -504,7 +513,7 @@ public interface I_M_InOutLine */ public int getUser1_ID(); - public I_C_ElementValue getUser1() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException; /** Column name User2_ID */ public static final String COLUMNNAME_User2_ID = "User2_ID"; @@ -519,5 +528,5 @@ public interface I_M_InOutLine */ public int getUser2_ID(); - public I_C_ElementValue getUser2() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException; } diff --git a/org.adempiere.base/src/org/compiere/model/I_M_InOutLineConfirm.java b/org.adempiere.base/src/org/compiere/model/I_M_InOutLineConfirm.java index 9eadda703b..f1e0c378ab 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_InOutLineConfirm.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_InOutLineConfirm.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_InOutLineConfirm - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_InOutLineConfirm { @@ -31,7 +31,7 @@ public interface I_M_InOutLineConfirm public static final String Table_Name = "M_InOutLineConfirm"; /** AD_Table_ID=728 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 728; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_M_InOutLineConfirm */ public int getC_InvoiceLine_ID(); - public I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException; + public org.compiere.model.I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException; /** Column name ConfirmationNo */ public static final String COLUMNNAME_ConfirmationNo = "ConfirmationNo"; @@ -171,7 +171,7 @@ public interface I_M_InOutLineConfirm */ public int getM_InOutConfirm_ID(); - public I_M_InOutConfirm getM_InOutConfirm() throws RuntimeException; + public org.compiere.model.I_M_InOutConfirm getM_InOutConfirm() throws RuntimeException; /** Column name M_InOutLineConfirm_ID */ public static final String COLUMNNAME_M_InOutLineConfirm_ID = "M_InOutLineConfirm_ID"; @@ -186,6 +186,15 @@ public interface I_M_InOutLineConfirm */ public int getM_InOutLineConfirm_ID(); + /** Column name M_InOutLineConfirm_UU */ + public static final String COLUMNNAME_M_InOutLineConfirm_UU = "M_InOutLineConfirm_UU"; + + /** Set M_InOutLineConfirm_UU */ + public void setM_InOutLineConfirm_UU (String M_InOutLineConfirm_UU); + + /** Get M_InOutLineConfirm_UU */ + public String getM_InOutLineConfirm_UU(); + /** Column name M_InOutLine_ID */ public static final String COLUMNNAME_M_InOutLine_ID = "M_InOutLine_ID"; @@ -199,7 +208,7 @@ public interface I_M_InOutLineConfirm */ public int getM_InOutLine_ID(); - public I_M_InOutLine getM_InOutLine() throws RuntimeException; + public org.compiere.model.I_M_InOutLine getM_InOutLine() throws RuntimeException; /** Column name M_InventoryLine_ID */ public static final String COLUMNNAME_M_InventoryLine_ID = "M_InventoryLine_ID"; @@ -214,7 +223,7 @@ public interface I_M_InOutLineConfirm */ public int getM_InventoryLine_ID(); - public I_M_InventoryLine getM_InventoryLine() throws RuntimeException; + public org.compiere.model.I_M_InventoryLine getM_InventoryLine() throws RuntimeException; /** Column name Processed */ public static final String COLUMNNAME_Processed = "Processed"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_InOutLineMA.java b/org.adempiere.base/src/org/compiere/model/I_M_InOutLineMA.java index ddaab26992..7c88a1fa33 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_InOutLineMA.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_InOutLineMA.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_InOutLineMA - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_InOutLineMA { @@ -31,7 +31,7 @@ public interface I_M_InOutLineMA public static final String Table_Name = "M_InOutLineMA"; /** AD_Table_ID=762 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 762; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -119,7 +119,16 @@ public interface I_M_InOutLineMA */ public int getM_InOutLine_ID(); - public I_M_InOutLine getM_InOutLine() throws RuntimeException; + public org.compiere.model.I_M_InOutLine getM_InOutLine() throws RuntimeException; + + /** Column name M_InOutLineMA_UU */ + public static final String COLUMNNAME_M_InOutLineMA_UU = "M_InOutLineMA_UU"; + + /** Set M_InOutLineMA_UU */ + public void setM_InOutLineMA_UU (String M_InOutLineMA_UU); + + /** Get M_InOutLineMA_UU */ + public String getM_InOutLineMA_UU(); /** Column name MovementQty */ public static final String COLUMNNAME_MovementQty = "MovementQty"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_Inventory.java b/org.adempiere.base/src/org/compiere/model/I_M_Inventory.java index 335eebcb75..2cd05640a1 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_Inventory.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_Inventory.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_Inventory - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_Inventory { @@ -31,7 +31,7 @@ public interface I_M_Inventory public static final String Table_Name = "M_Inventory"; /** AD_Table_ID=321 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 321; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -101,7 +101,7 @@ public interface I_M_Inventory */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -116,7 +116,7 @@ public interface I_M_Inventory */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_DocType_ID */ public static final String COLUMNNAME_C_DocType_ID = "C_DocType_ID"; @@ -131,7 +131,7 @@ public interface I_M_Inventory */ public int getC_DocType_ID(); - public I_C_DocType getC_DocType() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException; /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -146,7 +146,7 @@ public interface I_M_Inventory */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -268,6 +268,15 @@ public interface I_M_Inventory */ public int getM_Inventory_ID(); + /** Column name M_Inventory_UU */ + public static final String COLUMNNAME_M_Inventory_UU = "M_Inventory_UU"; + + /** Set M_Inventory_UU */ + public void setM_Inventory_UU (String M_Inventory_UU); + + /** Get M_Inventory_UU */ + public String getM_Inventory_UU(); + /** Column name MovementDate */ public static final String COLUMNNAME_MovementDate = "MovementDate"; @@ -294,7 +303,7 @@ public interface I_M_Inventory */ public int getM_PerpetualInv_ID(); - public I_M_PerpetualInv getM_PerpetualInv() throws RuntimeException; + public org.compiere.model.I_M_PerpetualInv getM_PerpetualInv() throws RuntimeException; /** Column name M_Warehouse_ID */ public static final String COLUMNNAME_M_Warehouse_ID = "M_Warehouse_ID"; @@ -309,7 +318,7 @@ public interface I_M_Inventory */ public int getM_Warehouse_ID(); - public I_M_Warehouse getM_Warehouse() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException; /** Column name Posted */ public static final String COLUMNNAME_Posted = "Posted"; @@ -372,7 +381,7 @@ public interface I_M_Inventory */ public int getReversal_ID(); - public I_M_Inventory getReversal() throws RuntimeException; + public org.compiere.model.I_M_Inventory getReversal() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; @@ -412,7 +421,7 @@ public interface I_M_Inventory */ public int getUser1_ID(); - public I_C_ElementValue getUser1() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException; /** Column name User2_ID */ public static final String COLUMNNAME_User2_ID = "User2_ID"; @@ -427,5 +436,5 @@ public interface I_M_Inventory */ public int getUser2_ID(); - public I_C_ElementValue getUser2() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException; } diff --git a/org.adempiere.base/src/org/compiere/model/I_M_InventoryLine.java b/org.adempiere.base/src/org/compiere/model/I_M_InventoryLine.java index d12f10d10c..cdea080632 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_InventoryLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_InventoryLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_InventoryLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_InventoryLine { @@ -31,7 +31,7 @@ public interface I_M_InventoryLine public static final String Table_Name = "M_InventoryLine"; /** AD_Table_ID=322 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 322; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_M_InventoryLine */ public int getC_Charge_ID(); - public I_C_Charge getC_Charge() throws RuntimeException; + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -173,7 +173,7 @@ public interface I_M_InventoryLine */ public int getM_Inventory_ID(); - public I_M_Inventory getM_Inventory() throws RuntimeException; + public org.compiere.model.I_M_Inventory getM_Inventory() throws RuntimeException; /** Column name M_InventoryLine_ID */ public static final String COLUMNNAME_M_InventoryLine_ID = "M_InventoryLine_ID"; @@ -188,6 +188,15 @@ public interface I_M_InventoryLine */ public int getM_InventoryLine_ID(); + /** Column name M_InventoryLine_UU */ + public static final String COLUMNNAME_M_InventoryLine_UU = "M_InventoryLine_UU"; + + /** Set M_InventoryLine_UU */ + public void setM_InventoryLine_UU (String M_InventoryLine_UU); + + /** Get M_InventoryLine_UU */ + public String getM_InventoryLine_UU(); + /** Column name M_Locator_ID */ public static final String COLUMNNAME_M_Locator_ID = "M_Locator_ID"; @@ -216,7 +225,7 @@ public interface I_M_InventoryLine */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Processed */ public static final String COLUMNNAME_Processed = "Processed"; @@ -292,7 +301,7 @@ public interface I_M_InventoryLine */ public int getReversalLine_ID(); - public I_M_InventoryLine getReversalLine() throws RuntimeException; + public org.compiere.model.I_M_InventoryLine getReversalLine() throws RuntimeException; /** Column name UPC */ public static final String COLUMNNAME_UPC = "UPC"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_InventoryLineMA.java b/org.adempiere.base/src/org/compiere/model/I_M_InventoryLineMA.java index e994a68c39..12f20789df 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_InventoryLineMA.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_InventoryLineMA.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_InventoryLineMA - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_InventoryLineMA { @@ -31,7 +31,7 @@ public interface I_M_InventoryLineMA public static final String Table_Name = "M_InventoryLineMA"; /** AD_Table_ID=763 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 763; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -119,7 +119,16 @@ public interface I_M_InventoryLineMA */ public int getM_InventoryLine_ID(); - public I_M_InventoryLine getM_InventoryLine() throws RuntimeException; + public org.compiere.model.I_M_InventoryLine getM_InventoryLine() throws RuntimeException; + + /** Column name M_InventoryLineMA_UU */ + public static final String COLUMNNAME_M_InventoryLineMA_UU = "M_InventoryLineMA_UU"; + + /** Set M_InventoryLineMA_UU */ + public void setM_InventoryLineMA_UU (String M_InventoryLineMA_UU); + + /** Get M_InventoryLineMA_UU */ + public String getM_InventoryLineMA_UU(); /** Column name MovementQty */ public static final String COLUMNNAME_MovementQty = "MovementQty"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_Locator.java b/org.adempiere.base/src/org/compiere/model/I_M_Locator.java index d5915729c2..bf9f74c6d9 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_Locator.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_Locator.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_Locator - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_Locator { @@ -31,7 +31,7 @@ public interface I_M_Locator public static final String Table_Name = "M_Locator"; /** AD_Table_ID=207 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 207; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -117,6 +117,15 @@ public interface I_M_Locator */ public int getM_Locator_ID(); + /** Column name M_Locator_UU */ + public static final String COLUMNNAME_M_Locator_UU = "M_Locator_UU"; + + /** Set M_Locator_UU */ + public void setM_Locator_UU (String M_Locator_UU); + + /** Get M_Locator_UU */ + public String getM_Locator_UU(); + /** Column name M_Warehouse_ID */ public static final String COLUMNNAME_M_Warehouse_ID = "M_Warehouse_ID"; @@ -130,7 +139,7 @@ public interface I_M_Locator */ public int getM_Warehouse_ID(); - public I_M_Warehouse getM_Warehouse() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException; /** Column name PriorityNo */ public static final String COLUMNNAME_PriorityNo = "PriorityNo"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_Lot.java b/org.adempiere.base/src/org/compiere/model/I_M_Lot.java index 39044674d6..2804b2aab6 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_Lot.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_Lot.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_Lot - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_Lot { @@ -31,7 +31,7 @@ public interface I_M_Lot public static final String Table_Name = "M_Lot"; /** AD_Table_ID=557 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 557; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -156,7 +156,7 @@ public interface I_M_Lot */ public int getM_LotCtl_ID(); - public I_M_LotCtl getM_LotCtl() throws RuntimeException; + public org.compiere.model.I_M_LotCtl getM_LotCtl() throws RuntimeException; /** Column name M_Lot_ID */ public static final String COLUMNNAME_M_Lot_ID = "M_Lot_ID"; @@ -171,6 +171,15 @@ public interface I_M_Lot */ public int getM_Lot_ID(); + /** Column name M_Lot_UU */ + public static final String COLUMNNAME_M_Lot_UU = "M_Lot_UU"; + + /** Set M_Lot_UU */ + public void setM_Lot_UU (String M_Lot_UU); + + /** Get M_Lot_UU */ + public String getM_Lot_UU(); + /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -184,7 +193,7 @@ public interface I_M_Lot */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_LotCtl.java b/org.adempiere.base/src/org/compiere/model/I_M_LotCtl.java index e85c32ce3e..589107650b 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_LotCtl.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_LotCtl.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_LotCtl - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_LotCtl { @@ -31,7 +31,7 @@ public interface I_M_LotCtl public static final String Table_Name = "M_LotCtl"; /** AD_Table_ID=556 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 556; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -143,6 +143,15 @@ public interface I_M_LotCtl */ public int getM_LotCtl_ID(); + /** Column name M_LotCtl_UU */ + public static final String COLUMNNAME_M_LotCtl_UU = "M_LotCtl_UU"; + + /** Set M_LotCtl_UU */ + public void setM_LotCtl_UU (String M_LotCtl_UU); + + /** Get M_LotCtl_UU */ + public String getM_LotCtl_UU(); + /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_LotCtlExclude.java b/org.adempiere.base/src/org/compiere/model/I_M_LotCtlExclude.java index 7d0a5433c8..95f2475962 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_LotCtlExclude.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_LotCtlExclude.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_LotCtlExclude - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_LotCtlExclude { @@ -31,7 +31,7 @@ public interface I_M_LotCtlExclude public static final String Table_Name = "M_LotCtlExclude"; /** AD_Table_ID=810 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 810; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_M_LotCtlExclude */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -132,6 +132,15 @@ public interface I_M_LotCtlExclude */ public int getM_LotCtlExclude_ID(); + /** Column name M_LotCtlExclude_UU */ + public static final String COLUMNNAME_M_LotCtlExclude_UU = "M_LotCtlExclude_UU"; + + /** Set M_LotCtlExclude_UU */ + public void setM_LotCtlExclude_UU (String M_LotCtlExclude_UU); + + /** Get M_LotCtlExclude_UU */ + public String getM_LotCtlExclude_UU(); + /** Column name M_LotCtl_ID */ public static final String COLUMNNAME_M_LotCtl_ID = "M_LotCtl_ID"; @@ -145,7 +154,7 @@ public interface I_M_LotCtlExclude */ public int getM_LotCtl_ID(); - public I_M_LotCtl getM_LotCtl() throws RuntimeException; + public org.compiere.model.I_M_LotCtl getM_LotCtl() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_MatchInv.java b/org.adempiere.base/src/org/compiere/model/I_M_MatchInv.java index 8779c4634d..36d98bb433 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_MatchInv.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_MatchInv.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_MatchInv - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_MatchInv { @@ -31,7 +31,7 @@ public interface I_M_MatchInv public static final String Table_Name = "M_MatchInv"; /** AD_Table_ID=472 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 472; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_M_MatchInv */ public int getC_InvoiceLine_ID(); - public I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException; + public org.compiere.model.I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -186,7 +186,7 @@ public interface I_M_MatchInv */ public int getM_InOutLine_ID(); - public I_M_InOutLine getM_InOutLine() throws RuntimeException; + public org.compiere.model.I_M_InOutLine getM_InOutLine() throws RuntimeException; /** Column name M_MatchInv_ID */ public static final String COLUMNNAME_M_MatchInv_ID = "M_MatchInv_ID"; @@ -201,6 +201,15 @@ public interface I_M_MatchInv */ public int getM_MatchInv_ID(); + /** Column name M_MatchInv_UU */ + public static final String COLUMNNAME_M_MatchInv_UU = "M_MatchInv_UU"; + + /** Set M_MatchInv_UU */ + public void setM_MatchInv_UU (String M_MatchInv_UU); + + /** Get M_MatchInv_UU */ + public String getM_MatchInv_UU(); + /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -214,7 +223,7 @@ public interface I_M_MatchInv */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Posted */ public static final String COLUMNNAME_Posted = "Posted"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_MatchPO.java b/org.adempiere.base/src/org/compiere/model/I_M_MatchPO.java index 223d742865..08d47e32cf 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_MatchPO.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_MatchPO.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_MatchPO - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_MatchPO { @@ -31,7 +31,7 @@ public interface I_M_MatchPO public static final String Table_Name = "M_MatchPO"; /** AD_Table_ID=473 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 473; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_M_MatchPO */ public int getC_InvoiceLine_ID(); - public I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException; + public org.compiere.model.I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException; /** Column name C_OrderLine_ID */ public static final String COLUMNNAME_C_OrderLine_ID = "C_OrderLine_ID"; @@ -90,7 +90,7 @@ public interface I_M_MatchPO */ public int getC_OrderLine_ID(); - public I_C_OrderLine getC_OrderLine() throws RuntimeException; + public org.compiere.model.I_C_OrderLine getC_OrderLine() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -214,7 +214,7 @@ public interface I_M_MatchPO */ public int getM_InOutLine_ID(); - public I_M_InOutLine getM_InOutLine() throws RuntimeException; + public org.compiere.model.I_M_InOutLine getM_InOutLine() throws RuntimeException; /** Column name M_MatchPO_ID */ public static final String COLUMNNAME_M_MatchPO_ID = "M_MatchPO_ID"; @@ -229,6 +229,15 @@ public interface I_M_MatchPO */ public int getM_MatchPO_ID(); + /** Column name M_MatchPO_UU */ + public static final String COLUMNNAME_M_MatchPO_UU = "M_MatchPO_UU"; + + /** Set M_MatchPO_UU */ + public void setM_MatchPO_UU (String M_MatchPO_UU); + + /** Get M_MatchPO_UU */ + public String getM_MatchPO_UU(); + /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -242,7 +251,7 @@ public interface I_M_MatchPO */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Posted */ public static final String COLUMNNAME_Posted = "Posted"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_Movement.java b/org.adempiere.base/src/org/compiere/model/I_M_Movement.java index 4dcdc0477a..ff0c15a0f4 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_Movement.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_Movement.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_Movement - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_Movement { @@ -31,7 +31,7 @@ public interface I_M_Movement public static final String Table_Name = "M_Movement"; /** AD_Table_ID=323 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 323; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_M_Movement */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name ApprovalAmt */ public static final String COLUMNNAME_ApprovalAmt = "ApprovalAmt"; @@ -116,7 +116,7 @@ public interface I_M_Movement */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -131,7 +131,7 @@ public interface I_M_Movement */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_BPartner_Location_ID */ public static final String COLUMNNAME_C_BPartner_Location_ID = "C_BPartner_Location_ID"; @@ -161,7 +161,7 @@ public interface I_M_Movement */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_Charge_ID */ public static final String COLUMNNAME_C_Charge_ID = "C_Charge_ID"; @@ -176,7 +176,7 @@ public interface I_M_Movement */ public int getC_Charge_ID(); - public I_C_Charge getC_Charge() throws RuntimeException; + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException; /** Column name C_DocType_ID */ public static final String COLUMNNAME_C_DocType_ID = "C_DocType_ID"; @@ -191,7 +191,7 @@ public interface I_M_Movement */ public int getC_DocType_ID(); - public I_C_DocType getC_DocType() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException; /** Column name ChargeAmt */ public static final String COLUMNNAME_ChargeAmt = "ChargeAmt"; @@ -219,7 +219,7 @@ public interface I_M_Movement */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -430,6 +430,15 @@ public interface I_M_Movement */ public int getM_Movement_ID(); + /** Column name M_Movement_UU */ + public static final String COLUMNNAME_M_Movement_UU = "M_Movement_UU"; + + /** Set M_Movement_UU */ + public void setM_Movement_UU (String M_Movement_UU); + + /** Get M_Movement_UU */ + public String getM_Movement_UU(); + /** Column name MovementDate */ public static final String COLUMNNAME_MovementDate = "MovementDate"; @@ -456,7 +465,7 @@ public interface I_M_Movement */ public int getM_Shipper_ID(); - public I_M_Shipper getM_Shipper() throws RuntimeException; + public org.compiere.model.I_M_Shipper getM_Shipper() throws RuntimeException; /** Column name POReference */ public static final String COLUMNNAME_POReference = "POReference"; @@ -545,7 +554,7 @@ public interface I_M_Movement */ public int getReversal_ID(); - public I_M_Movement getReversal() throws RuntimeException; + public org.compiere.model.I_M_Movement getReversal() throws RuntimeException; /** Column name SalesRep_ID */ public static final String COLUMNNAME_SalesRep_ID = "SalesRep_ID"; @@ -560,7 +569,7 @@ public interface I_M_Movement */ public int getSalesRep_ID(); - public I_AD_User getSalesRep() throws RuntimeException; + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; @@ -591,7 +600,7 @@ public interface I_M_Movement */ public int getUser1_ID(); - public I_C_ElementValue getUser1() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException; /** Column name User2_ID */ public static final String COLUMNNAME_User2_ID = "User2_ID"; @@ -606,5 +615,5 @@ public interface I_M_Movement */ public int getUser2_ID(); - public I_C_ElementValue getUser2() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException; } diff --git a/org.adempiere.base/src/org/compiere/model/I_M_MovementConfirm.java b/org.adempiere.base/src/org/compiere/model/I_M_MovementConfirm.java index 065d11ab63..cbd25150d2 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_MovementConfirm.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_MovementConfirm.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_MovementConfirm - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_MovementConfirm { @@ -31,7 +31,7 @@ public interface I_M_MovementConfirm public static final String Table_Name = "M_MovementConfirm"; /** AD_Table_ID=738 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 738; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -182,7 +182,7 @@ public interface I_M_MovementConfirm */ public int getM_Inventory_ID(); - public I_M_Inventory getM_Inventory() throws RuntimeException; + public org.compiere.model.I_M_Inventory getM_Inventory() throws RuntimeException; /** Column name M_MovementConfirm_ID */ public static final String COLUMNNAME_M_MovementConfirm_ID = "M_MovementConfirm_ID"; @@ -197,6 +197,15 @@ public interface I_M_MovementConfirm */ public int getM_MovementConfirm_ID(); + /** Column name M_MovementConfirm_UU */ + public static final String COLUMNNAME_M_MovementConfirm_UU = "M_MovementConfirm_UU"; + + /** Set M_MovementConfirm_UU */ + public void setM_MovementConfirm_UU (String M_MovementConfirm_UU); + + /** Get M_MovementConfirm_UU */ + public String getM_MovementConfirm_UU(); + /** Column name M_Movement_ID */ public static final String COLUMNNAME_M_Movement_ID = "M_Movement_ID"; @@ -210,7 +219,7 @@ public interface I_M_MovementConfirm */ public int getM_Movement_ID(); - public I_M_Movement getM_Movement() throws RuntimeException; + public org.compiere.model.I_M_Movement getM_Movement() throws RuntimeException; /** Column name Processed */ public static final String COLUMNNAME_Processed = "Processed"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_MovementLine.java b/org.adempiere.base/src/org/compiere/model/I_M_MovementLine.java index 654df674d2..3cb7bacba1 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_MovementLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_MovementLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_MovementLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_MovementLine { @@ -31,7 +31,7 @@ public interface I_M_MovementLine public static final String Table_Name = "M_MovementLine"; /** AD_Table_ID=324 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 324; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -214,7 +214,7 @@ public interface I_M_MovementLine */ public int getM_Movement_ID(); - public I_M_Movement getM_Movement() throws RuntimeException; + public org.compiere.model.I_M_Movement getM_Movement() throws RuntimeException; /** Column name M_MovementLine_ID */ public static final String COLUMNNAME_M_MovementLine_ID = "M_MovementLine_ID"; @@ -229,6 +229,15 @@ public interface I_M_MovementLine */ public int getM_MovementLine_ID(); + /** Column name M_MovementLine_UU */ + public static final String COLUMNNAME_M_MovementLine_UU = "M_MovementLine_UU"; + + /** Set M_MovementLine_UU */ + public void setM_MovementLine_UU (String M_MovementLine_UU); + + /** Get M_MovementLine_UU */ + public String getM_MovementLine_UU(); + /** Column name MovementQty */ public static final String COLUMNNAME_MovementQty = "MovementQty"; @@ -255,7 +264,7 @@ public interface I_M_MovementLine */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Processed */ public static final String COLUMNNAME_Processed = "Processed"; @@ -283,7 +292,7 @@ public interface I_M_MovementLine */ public int getReversalLine_ID(); - public I_M_MovementLine getReversalLine() throws RuntimeException; + public org.compiere.model.I_M_MovementLine getReversalLine() throws RuntimeException; /** Column name ScrappedQty */ public static final String COLUMNNAME_ScrappedQty = "ScrappedQty"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_MovementLineConfirm.java b/org.adempiere.base/src/org/compiere/model/I_M_MovementLineConfirm.java index bcb3b66416..6fba8ab0dd 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_MovementLineConfirm.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_MovementLineConfirm.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_MovementLineConfirm - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_MovementLineConfirm { @@ -31,7 +31,7 @@ public interface I_M_MovementLineConfirm public static final String Table_Name = "M_MovementLineConfirm"; /** AD_Table_ID=737 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 737; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -143,7 +143,7 @@ public interface I_M_MovementLineConfirm */ public int getM_InventoryLine_ID(); - public I_M_InventoryLine getM_InventoryLine() throws RuntimeException; + public org.compiere.model.I_M_InventoryLine getM_InventoryLine() throws RuntimeException; /** Column name M_MovementConfirm_ID */ public static final String COLUMNNAME_M_MovementConfirm_ID = "M_MovementConfirm_ID"; @@ -158,7 +158,7 @@ public interface I_M_MovementLineConfirm */ public int getM_MovementConfirm_ID(); - public I_M_MovementConfirm getM_MovementConfirm() throws RuntimeException; + public org.compiere.model.I_M_MovementConfirm getM_MovementConfirm() throws RuntimeException; /** Column name M_MovementLineConfirm_ID */ public static final String COLUMNNAME_M_MovementLineConfirm_ID = "M_MovementLineConfirm_ID"; @@ -173,6 +173,15 @@ public interface I_M_MovementLineConfirm */ public int getM_MovementLineConfirm_ID(); + /** Column name M_MovementLineConfirm_UU */ + public static final String COLUMNNAME_M_MovementLineConfirm_UU = "M_MovementLineConfirm_UU"; + + /** Set M_MovementLineConfirm_UU */ + public void setM_MovementLineConfirm_UU (String M_MovementLineConfirm_UU); + + /** Get M_MovementLineConfirm_UU */ + public String getM_MovementLineConfirm_UU(); + /** Column name M_MovementLine_ID */ public static final String COLUMNNAME_M_MovementLine_ID = "M_MovementLine_ID"; @@ -186,7 +195,7 @@ public interface I_M_MovementLineConfirm */ public int getM_MovementLine_ID(); - public I_M_MovementLine getM_MovementLine() throws RuntimeException; + public org.compiere.model.I_M_MovementLine getM_MovementLine() throws RuntimeException; /** Column name Processed */ public static final String COLUMNNAME_Processed = "Processed"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_MovementLineMA.java b/org.adempiere.base/src/org/compiere/model/I_M_MovementLineMA.java index 669e49b77c..d80ef7148c 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_MovementLineMA.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_MovementLineMA.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_MovementLineMA - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_MovementLineMA { @@ -31,7 +31,7 @@ public interface I_M_MovementLineMA public static final String Table_Name = "M_MovementLineMA"; /** AD_Table_ID=764 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 764; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -119,7 +119,16 @@ public interface I_M_MovementLineMA */ public int getM_MovementLine_ID(); - public I_M_MovementLine getM_MovementLine() throws RuntimeException; + public org.compiere.model.I_M_MovementLine getM_MovementLine() throws RuntimeException; + + /** Column name M_MovementLineMA_UU */ + public static final String COLUMNNAME_M_MovementLineMA_UU = "M_MovementLineMA_UU"; + + /** Set M_MovementLineMA_UU */ + public void setM_MovementLineMA_UU (String M_MovementLineMA_UU); + + /** Get M_MovementLineMA_UU */ + public String getM_MovementLineMA_UU(); /** Column name MovementQty */ public static final String COLUMNNAME_MovementQty = "MovementQty"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_OperationResource.java b/org.adempiere.base/src/org/compiere/model/I_M_OperationResource.java index 64b775d72e..af4b519c0b 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_OperationResource.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_OperationResource.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_OperationResource - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_OperationResource { @@ -31,7 +31,7 @@ public interface I_M_OperationResource public static final String Table_Name = "M_OperationResource"; /** AD_Table_ID=797 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 797; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -54,7 +54,7 @@ public interface I_M_OperationResource */ public int getA_Asset_ID(); - public I_A_Asset getA_Asset() throws RuntimeException; + public org.compiere.model.I_A_Asset getA_Asset() throws RuntimeException; /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; @@ -90,7 +90,7 @@ public interface I_M_OperationResource */ public int getC_Job_ID(); - public I_C_Job getC_Job() throws RuntimeException; + public org.compiere.model.I_C_Job getC_Job() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -160,6 +160,15 @@ public interface I_M_OperationResource */ public int getM_OperationResource_ID(); + /** Column name M_OperationResource_UU */ + public static final String COLUMNNAME_M_OperationResource_UU = "M_OperationResource_UU"; + + /** Set M_OperationResource_UU */ + public void setM_OperationResource_UU (String M_OperationResource_UU); + + /** Get M_OperationResource_UU */ + public String getM_OperationResource_UU(); + /** Column name M_ProductOperation_ID */ public static final String COLUMNNAME_M_ProductOperation_ID = "M_ProductOperation_ID"; @@ -173,7 +182,7 @@ public interface I_M_OperationResource */ public int getM_ProductOperation_ID(); - public I_M_ProductOperation getM_ProductOperation() throws RuntimeException; + public org.compiere.model.I_M_ProductOperation getM_ProductOperation() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_Package.java b/org.adempiere.base/src/org/compiere/model/I_M_Package.java index 14afe3cc6b..db5202156c 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_Package.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_Package.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_Package - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_Package { @@ -31,7 +31,7 @@ public interface I_M_Package public static final String Table_Name = "M_Package"; /** AD_Table_ID=664 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 664; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -143,7 +143,7 @@ public interface I_M_Package */ public int getM_InOut_ID(); - public I_M_InOut getM_InOut() throws RuntimeException; + public org.compiere.model.I_M_InOut getM_InOut() throws RuntimeException; /** Column name M_Package_ID */ public static final String COLUMNNAME_M_Package_ID = "M_Package_ID"; @@ -158,6 +158,15 @@ public interface I_M_Package */ public int getM_Package_ID(); + /** Column name M_Package_UU */ + public static final String COLUMNNAME_M_Package_UU = "M_Package_UU"; + + /** Set M_Package_UU */ + public void setM_Package_UU (String M_Package_UU); + + /** Get M_Package_UU */ + public String getM_Package_UU(); + /** Column name M_Shipper_ID */ public static final String COLUMNNAME_M_Shipper_ID = "M_Shipper_ID"; @@ -171,7 +180,7 @@ public interface I_M_Package */ public int getM_Shipper_ID(); - public I_M_Shipper getM_Shipper() throws RuntimeException; + public org.compiere.model.I_M_Shipper getM_Shipper() throws RuntimeException; /** Column name ReceivedInfo */ public static final String COLUMNNAME_ReceivedInfo = "ReceivedInfo"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_PackageLine.java b/org.adempiere.base/src/org/compiere/model/I_M_PackageLine.java index b8d34f46dd..df01cf461f 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_PackageLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_PackageLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_PackageLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_PackageLine { @@ -31,7 +31,7 @@ public interface I_M_PackageLine public static final String Table_Name = "M_PackageLine"; /** AD_Table_ID=663 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 663; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -117,7 +117,7 @@ public interface I_M_PackageLine */ public int getM_InOutLine_ID(); - public I_M_InOutLine getM_InOutLine() throws RuntimeException; + public org.compiere.model.I_M_InOutLine getM_InOutLine() throws RuntimeException; /** Column name M_Package_ID */ public static final String COLUMNNAME_M_Package_ID = "M_Package_ID"; @@ -132,7 +132,7 @@ public interface I_M_PackageLine */ public int getM_Package_ID(); - public I_M_Package getM_Package() throws RuntimeException; + public org.compiere.model.I_M_Package getM_Package() throws RuntimeException; /** Column name M_PackageLine_ID */ public static final String COLUMNNAME_M_PackageLine_ID = "M_PackageLine_ID"; @@ -147,6 +147,15 @@ public interface I_M_PackageLine */ public int getM_PackageLine_ID(); + /** Column name M_PackageLine_UU */ + public static final String COLUMNNAME_M_PackageLine_UU = "M_PackageLine_UU"; + + /** Set M_PackageLine_UU */ + public void setM_PackageLine_UU (String M_PackageLine_UU); + + /** Get M_PackageLine_UU */ + public String getM_PackageLine_UU(); + /** Column name Qty */ public static final String COLUMNNAME_Qty = "Qty"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_PartType.java b/org.adempiere.base/src/org/compiere/model/I_M_PartType.java index 9ef6406627..659a126477 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_PartType.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_PartType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_PartType - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_PartType { @@ -113,6 +113,15 @@ public interface I_M_PartType /** Get Part Type */ public int getM_PartType_ID(); + /** Column name M_PartType_UU */ + public static final String COLUMNNAME_M_PartType_UU = "M_PartType_UU"; + + /** Set M_PartType_UU */ + public void setM_PartType_UU (String M_PartType_UU); + + /** Get M_PartType_UU */ + public String getM_PartType_UU(); + /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_PerpetualInv.java b/org.adempiere.base/src/org/compiere/model/I_M_PerpetualInv.java index 7c6d2d1535..7278522d8a 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_PerpetualInv.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_PerpetualInv.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_PerpetualInv - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_PerpetualInv { @@ -31,7 +31,7 @@ public interface I_M_PerpetualInv public static final String Table_Name = "M_PerpetualInv"; /** AD_Table_ID=342 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 342; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -156,6 +156,15 @@ public interface I_M_PerpetualInv */ public int getM_PerpetualInv_ID(); + /** Column name M_PerpetualInv_UU */ + public static final String COLUMNNAME_M_PerpetualInv_UU = "M_PerpetualInv_UU"; + + /** Set M_PerpetualInv_UU */ + public void setM_PerpetualInv_UU (String M_PerpetualInv_UU); + + /** Get M_PerpetualInv_UU */ + public String getM_PerpetualInv_UU(); + /** Column name M_Product_Category_ID */ public static final String COLUMNNAME_M_Product_Category_ID = "M_Product_Category_ID"; @@ -169,7 +178,7 @@ public interface I_M_PerpetualInv */ public int getM_Product_Category_ID(); - public I_M_Product_Category getM_Product_Category() throws RuntimeException; + public org.compiere.model.I_M_Product_Category getM_Product_Category() throws RuntimeException; /** Column name M_Warehouse_ID */ public static final String COLUMNNAME_M_Warehouse_ID = "M_Warehouse_ID"; @@ -184,7 +193,7 @@ public interface I_M_PerpetualInv */ public int getM_Warehouse_ID(); - public I_M_Warehouse getM_Warehouse() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_PriceList.java b/org.adempiere.base/src/org/compiere/model/I_M_PriceList.java index 362181ea35..edc2a259a1 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_PriceList.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_PriceList.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_PriceList - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_PriceList { @@ -31,7 +31,7 @@ public interface I_M_PriceList public static final String Table_Name = "M_PriceList"; /** AD_Table_ID=255 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 255; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_M_PriceList */ public int getBasePriceList_ID(); - public I_M_PriceList getBasePriceList() throws RuntimeException; + public org.compiere.model.I_M_PriceList getBasePriceList() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -90,7 +90,7 @@ public interface I_M_PriceList */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -221,6 +221,15 @@ public interface I_M_PriceList */ public int getM_PriceList_ID(); + /** Column name M_PriceList_UU */ + public static final String COLUMNNAME_M_PriceList_UU = "M_PriceList_UU"; + + /** Set M_PriceList_UU */ + public void setM_PriceList_UU (String M_PriceList_UU); + + /** Get M_PriceList_UU */ + public String getM_PriceList_UU(); + /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_PriceList_Version.java b/org.adempiere.base/src/org/compiere/model/I_M_PriceList_Version.java index 9b1a80a846..48c37f6850 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_PriceList_Version.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_PriceList_Version.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_PriceList_Version - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_PriceList_Version { @@ -31,7 +31,7 @@ public interface I_M_PriceList_Version public static final String Table_Name = "M_PriceList_Version"; /** AD_Table_ID=295 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 295; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -117,7 +117,7 @@ public interface I_M_PriceList_Version */ public int getM_DiscountSchema_ID(); - public I_M_DiscountSchema getM_DiscountSchema() throws RuntimeException; + public org.compiere.model.I_M_DiscountSchema getM_DiscountSchema() throws RuntimeException; /** Column name M_PriceList_ID */ public static final String COLUMNNAME_M_PriceList_ID = "M_PriceList_ID"; @@ -132,7 +132,7 @@ public interface I_M_PriceList_Version */ public int getM_PriceList_ID(); - public I_M_PriceList getM_PriceList() throws RuntimeException; + public org.compiere.model.I_M_PriceList getM_PriceList() throws RuntimeException; /** Column name M_Pricelist_Version_Base_ID */ public static final String COLUMNNAME_M_Pricelist_Version_Base_ID = "M_Pricelist_Version_Base_ID"; @@ -147,7 +147,7 @@ public interface I_M_PriceList_Version */ public int getM_Pricelist_Version_Base_ID(); - public I_M_PriceList_Version getM_Pricelist_Version_Base() throws RuntimeException; + public org.compiere.model.I_M_PriceList_Version getM_Pricelist_Version_Base() throws RuntimeException; /** Column name M_PriceList_Version_ID */ public static final String COLUMNNAME_M_PriceList_Version_ID = "M_PriceList_Version_ID"; @@ -162,6 +162,15 @@ public interface I_M_PriceList_Version */ public int getM_PriceList_Version_ID(); + /** Column name M_PriceList_Version_UU */ + public static final String COLUMNNAME_M_PriceList_Version_UU = "M_PriceList_Version_UU"; + + /** Set M_PriceList_Version_UU */ + public void setM_PriceList_Version_UU (String M_PriceList_Version_UU); + + /** Get M_PriceList_Version_UU */ + public String getM_PriceList_Version_UU(); + /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_Product.java b/org.adempiere.base/src/org/compiere/model/I_M_Product.java index 42f146445b..48cd0b6292 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_Product.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_Product.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_Product - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_Product { @@ -602,7 +602,7 @@ public interface I_M_Product /** Get Part Type */ public int getM_PartType_ID(); - public I_M_PartType getM_PartType() throws RuntimeException; + public org.compiere.model.I_M_PartType getM_PartType() throws RuntimeException; /** Column name M_Product_Category_ID */ public static final String COLUMNNAME_M_Product_Category_ID = "M_Product_Category_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_ProductDownload.java b/org.adempiere.base/src/org/compiere/model/I_M_ProductDownload.java index bce0b84131..1d87d0ee2d 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_ProductDownload.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_ProductDownload.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_ProductDownload - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_ProductDownload { @@ -31,7 +31,7 @@ public interface I_M_ProductDownload public static final String Table_Name = "M_ProductDownload"; /** AD_Table_ID=777 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 777; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -117,6 +117,15 @@ public interface I_M_ProductDownload */ public int getM_ProductDownload_ID(); + /** Column name M_ProductDownload_UU */ + public static final String COLUMNNAME_M_ProductDownload_UU = "M_ProductDownload_UU"; + + /** Set M_ProductDownload_UU */ + public void setM_ProductDownload_UU (String M_ProductDownload_UU); + + /** Get M_ProductDownload_UU */ + public String getM_ProductDownload_UU(); + /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -130,7 +139,7 @@ public interface I_M_ProductDownload */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_ProductOperation.java b/org.adempiere.base/src/org/compiere/model/I_M_ProductOperation.java index 0ec476eded..e2d7799238 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_ProductOperation.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_ProductOperation.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_ProductOperation - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_ProductOperation { @@ -31,7 +31,7 @@ public interface I_M_ProductOperation public static final String Table_Name = "M_ProductOperation"; /** AD_Table_ID=796 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 796; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -130,7 +130,7 @@ public interface I_M_ProductOperation */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name M_ProductOperation_ID */ public static final String COLUMNNAME_M_ProductOperation_ID = "M_ProductOperation_ID"; @@ -145,6 +145,15 @@ public interface I_M_ProductOperation */ public int getM_ProductOperation_ID(); + /** Column name M_ProductOperation_UU */ + public static final String COLUMNNAME_M_ProductOperation_UU = "M_ProductOperation_UU"; + + /** Set M_ProductOperation_UU */ + public void setM_ProductOperation_UU (String M_ProductOperation_UU); + + /** Get M_ProductOperation_UU */ + public String getM_ProductOperation_UU(); + /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_ProductPrice.java b/org.adempiere.base/src/org/compiere/model/I_M_ProductPrice.java index b7e13f7348..91a617954e 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_ProductPrice.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_ProductPrice.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_ProductPrice - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_ProductPrice { @@ -31,7 +31,7 @@ public interface I_M_ProductPrice public static final String Table_Name = "M_ProductPrice"; /** AD_Table_ID=251 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 251; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -104,7 +104,7 @@ public interface I_M_ProductPrice */ public int getM_PriceList_Version_ID(); - public I_M_PriceList_Version getM_PriceList_Version() throws RuntimeException; + public org.compiere.model.I_M_PriceList_Version getM_PriceList_Version() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -119,7 +119,16 @@ public interface I_M_ProductPrice */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; + + /** Column name M_ProductPrice_UU */ + public static final String COLUMNNAME_M_ProductPrice_UU = "M_ProductPrice_UU"; + + /** Set M_ProductPrice_UU */ + public void setM_ProductPrice_UU (String M_ProductPrice_UU); + + /** Get M_ProductPrice_UU */ + public String getM_ProductPrice_UU(); /** Column name PriceLimit */ public static final String COLUMNNAME_PriceLimit = "PriceLimit"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_ProductPriceVendorBreak.java b/org.adempiere.base/src/org/compiere/model/I_M_ProductPriceVendorBreak.java index f167b67c3a..5336517857 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_ProductPriceVendorBreak.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_ProductPriceVendorBreak.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_ProductPriceVendorBreak - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_ProductPriceVendorBreak { @@ -31,7 +31,7 @@ public interface I_M_ProductPriceVendorBreak public static final String Table_Name = "M_ProductPriceVendorBreak"; /** AD_Table_ID=53172 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53172; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_M_ProductPriceVendorBreak */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -132,7 +132,7 @@ public interface I_M_ProductPriceVendorBreak */ public int getM_PriceList_Version_ID(); - public I_M_PriceList_Version getM_PriceList_Version() throws RuntimeException; + public org.compiere.model.I_M_PriceList_Version getM_PriceList_Version() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -147,17 +147,26 @@ public interface I_M_ProductPriceVendorBreak */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name M_ProductPriceVendorBreak_ID */ public static final String COLUMNNAME_M_ProductPriceVendorBreak_ID = "M_ProductPriceVendorBreak_ID"; - /** Set Product Price Vendor Break */ + /** Set Product Price Break */ public void setM_ProductPriceVendorBreak_ID (int M_ProductPriceVendorBreak_ID); - /** Get Product Price Vendor Break */ + /** Get Product Price Break */ public int getM_ProductPriceVendorBreak_ID(); + /** Column name M_ProductPriceVendorBreak_UU */ + public static final String COLUMNNAME_M_ProductPriceVendorBreak_UU = "M_ProductPriceVendorBreak_UU"; + + /** Set M_ProductPriceVendorBreak_UU */ + public void setM_ProductPriceVendorBreak_UU (String M_ProductPriceVendorBreak_UU); + + /** Get M_ProductPriceVendorBreak_UU */ + public String getM_ProductPriceVendorBreak_UU(); + /** Column name PriceLimit */ public static final String COLUMNNAME_PriceLimit = "PriceLimit"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_Product_Acct.java b/org.adempiere.base/src/org/compiere/model/I_M_Product_Acct.java index affb5e75e1..13db63d637 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_Product_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_Product_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_Product_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_Product_Acct { @@ -35,7 +35,7 @@ public interface I_M_Product_Acct KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); - /** AccessLevel = - Client - Org + /** AccessLevel = 3 - Client - Org */ BigDecimal accessLevel = BigDecimal.valueOf(3); diff --git a/org.adempiere.base/src/org/compiere/model/I_M_Product_BOM.java b/org.adempiere.base/src/org/compiere/model/I_M_Product_BOM.java index 0c0262bc9d..e87b18836d 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_Product_BOM.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_Product_BOM.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_Product_BOM - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_Product_BOM { @@ -31,7 +31,7 @@ public interface I_M_Product_BOM public static final String Table_Name = "M_Product_BOM"; /** AD_Table_ID=383 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 383; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,6 +88,32 @@ public interface I_M_Product_BOM */ public String getBOMType(); + /** Column name CostStandard */ + public static final String COLUMNNAME_CostStandard = "CostStandard"; + + /** Set Standard Cost. + * Standard Costs + */ + public void setCostStandard (BigDecimal CostStandard); + + /** Get Standard Cost. + * Standard Costs + */ + public BigDecimal getCostStandard(); + + /** Column name CostStandardCumAmt */ + public static final String COLUMNNAME_CostStandardCumAmt = "CostStandardCumAmt"; + + /** Set Std Cost Amount Sum. + * Standard Cost Invoice Amount Sum (internal) + */ + public void setCostStandardCumAmt (BigDecimal CostStandardCumAmt); + + /** Get Std Cost Amount Sum. + * Standard Cost Invoice Amount Sum (internal) + */ + public BigDecimal getCostStandardCumAmt(); + /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -130,6 +156,19 @@ public interface I_M_Product_BOM */ public boolean isActive(); + /** Column name IsBillOfMaterial */ + public static final String COLUMNNAME_IsBillOfMaterial = "IsBillOfMaterial"; + + /** Set Bill of Materials. + * Bill of Materials + */ + public void setIsBillOfMaterial (boolean IsBillOfMaterial); + + /** Get Bill of Materials. + * Bill of Materials + */ + public boolean isBillOfMaterial(); + /** Column name Line */ public static final String COLUMNNAME_Line = "Line"; @@ -143,6 +182,17 @@ public interface I_M_Product_BOM */ public int getLine(); + /** Column name M_PartType_ID */ + public static final String COLUMNNAME_M_PartType_ID = "M_PartType_ID"; + + /** Set Part Type */ + public void setM_PartType_ID (int M_PartType_ID); + + /** Get Part Type */ + public int getM_PartType_ID(); + + public org.compiere.model.I_M_PartType getM_PartType() throws RuntimeException; + /** Column name M_Product_BOM_ID */ public static final String COLUMNNAME_M_Product_BOM_ID = "M_Product_BOM_ID"; @@ -165,7 +215,16 @@ public interface I_M_Product_BOM */ public int getM_ProductBOM_ID(); - public I_M_Product getM_ProductBOM() throws RuntimeException; + public org.compiere.model.I_M_Product getM_ProductBOM() throws RuntimeException; + + /** Column name M_Product_BOM_UU */ + public static final String COLUMNNAME_M_Product_BOM_UU = "M_Product_BOM_UU"; + + /** Set M_Product_BOM_UU */ + public void setM_Product_BOM_UU (String M_Product_BOM_UU); + + /** Get M_Product_BOM_UU */ + public String getM_Product_BOM_UU(); /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -180,7 +239,7 @@ public interface I_M_Product_BOM */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; @@ -197,4 +256,17 @@ public interface I_M_Product_BOM * User who updated this records */ public int getUpdatedBy(); + + /** Column name Value */ + public static final String COLUMNNAME_Value = "Value"; + + /** Set Search Key. + * Search key for the record in the format required - must be unique + */ + public void setValue (String Value); + + /** Get Search Key. + * Search key for the record in the format required - must be unique + */ + public String getValue(); } diff --git a/org.adempiere.base/src/org/compiere/model/I_M_Product_Category.java b/org.adempiere.base/src/org/compiere/model/I_M_Product_Category.java index e894fe80c8..b4cc5e722b 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_Product_Category.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_Product_Category.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_Product_Category - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_Product_Category { @@ -31,7 +31,7 @@ public interface I_M_Product_Category public static final String Table_Name = "M_Product_Category"; /** AD_Table_ID=209 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 209; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -54,7 +54,7 @@ public interface I_M_Product_Category */ public int getA_Asset_Group_ID(); - public I_A_Asset_Group getA_Asset_Group() throws RuntimeException; + public org.compiere.model.I_A_Asset_Group getA_Asset_Group() throws RuntimeException; /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; @@ -90,7 +90,7 @@ public interface I_M_Product_Category */ public int getAD_PrintColor_ID(); - public I_AD_PrintColor getAD_PrintColor() throws RuntimeException; + public org.compiere.model.I_AD_PrintColor getAD_PrintColor() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -195,7 +195,16 @@ public interface I_M_Product_Category /** Get Parent Product Category */ public int getM_Product_Category_Parent_ID(); - public I_M_Product_Category getM_Product_Category_Parent() throws RuntimeException; + public org.compiere.model.I_M_Product_Category getM_Product_Category_Parent() throws RuntimeException; + + /** Column name M_Product_Category_UU */ + public static final String COLUMNNAME_M_Product_Category_UU = "M_Product_Category_UU"; + + /** Set M_Product_Category_UU */ + public void setM_Product_Category_UU (String M_Product_Category_UU); + + /** Get M_Product_Category_UU */ + public String getM_Product_Category_UU(); /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_Product_Category_Acct.java b/org.adempiere.base/src/org/compiere/model/I_M_Product_Category_Acct.java index 37bf89c489..a0682d1ca5 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_Product_Category_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_Product_Category_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_Product_Category_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_Product_Category_Acct { @@ -35,7 +35,7 @@ public interface I_M_Product_Category_Acct KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); - /** AccessLevel = - Client - Org + /** AccessLevel = 3 - Client - Org */ BigDecimal accessLevel = BigDecimal.valueOf(3); diff --git a/org.adempiere.base/src/org/compiere/model/I_M_Product_PO.java b/org.adempiere.base/src/org/compiere/model/I_M_Product_PO.java index 1f880e02d6..9b99728cdb 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_Product_PO.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_Product_PO.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_Product_PO - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_Product_PO { @@ -31,7 +31,7 @@ public interface I_M_Product_PO public static final String Table_Name = "M_Product_PO"; /** AD_Table_ID=210 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 210; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_M_Product_PO */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -90,7 +90,7 @@ public interface I_M_Product_PO */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name CostPerOrder */ public static final String COLUMNNAME_CostPerOrder = "CostPerOrder"; @@ -134,7 +134,7 @@ public interface I_M_Product_PO */ public int getC_UOM_ID(); - public I_C_UOM getC_UOM() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException; /** Column name DeliveryTime_Actual */ public static final String COLUMNNAME_DeliveryTime_Actual = "DeliveryTime_Actual"; @@ -240,7 +240,16 @@ public interface I_M_Product_PO */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; + + /** Column name M_Product_PO_UU */ + public static final String COLUMNNAME_M_Product_PO_UU = "M_Product_PO_UU"; + + /** Set M_Product_PO_UU */ + public void setM_Product_PO_UU (String M_Product_PO_UU); + + /** Get M_Product_PO_UU */ + public String getM_Product_PO_UU(); /** Column name Order_Min */ public static final String COLUMNNAME_Order_Min = "Order_Min"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_Product_QualityTest.java b/org.adempiere.base/src/org/compiere/model/I_M_Product_QualityTest.java new file mode 100644 index 0000000000..e4c7ab197a --- /dev/null +++ b/org.adempiere.base/src/org/compiere/model/I_M_Product_QualityTest.java @@ -0,0 +1,162 @@ +/****************************************************************************** + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * + * This program is free software, you can redistribute it and/or modify it * + * under the terms version 2 of the GNU General Public License as published * + * by the Free Software Foundation. This program is distributed in the hope * + * that it will be useful, but WITHOUT ANY WARRANTY, without even the implied * + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * + * See the GNU General Public License for more details. * + * You should have received a copy of the GNU General Public License along * + * with this program, if not, write to the Free Software Foundation, Inc., * + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * + * For the text or an alternative of this public license, you may reach us * + * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * + * or via info@compiere.org or http://www.compiere.org/license.html * + *****************************************************************************/ +package org.compiere.model; + +import java.math.BigDecimal; +import java.sql.Timestamp; +import org.compiere.util.KeyNamePair; + +/** Generated Interface for M_Product_QualityTest + * @author iDempiere (generated) + * @version Release 1.0a + */ +public interface I_M_Product_QualityTest +{ + + /** TableName=M_Product_QualityTest */ + public static final String Table_Name = "M_Product_QualityTest"; + + /** AD_Table_ID=53333 */ + public static final int Table_ID = 53333; + + KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); + + /** AccessLevel = 3 - Client - Org + */ + BigDecimal accessLevel = BigDecimal.valueOf(3); + + /** Load Meta Data */ + + /** Column name AD_Client_ID */ + public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; + + /** Get Client. + * Client/Tenant for this installation. + */ + public int getAD_Client_ID(); + + /** Column name AD_Org_ID */ + public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; + + /** Set Organization. + * Organizational entity within client + */ + public void setAD_Org_ID (int AD_Org_ID); + + /** Get Organization. + * Organizational entity within client + */ + public int getAD_Org_ID(); + + /** Column name Created */ + public static final String COLUMNNAME_Created = "Created"; + + /** Get Created. + * Date this record was created + */ + public Timestamp getCreated(); + + /** Column name CreatedBy */ + public static final String COLUMNNAME_CreatedBy = "CreatedBy"; + + /** Get Created By. + * User who created this records + */ + public int getCreatedBy(); + + /** Column name ExpectedResult */ + public static final String COLUMNNAME_ExpectedResult = "ExpectedResult"; + + /** Set Expected Result */ + public void setExpectedResult (String ExpectedResult); + + /** Get Expected Result */ + public String getExpectedResult(); + + /** Column name IsActive */ + public static final String COLUMNNAME_IsActive = "IsActive"; + + /** Set Active. + * The record is active in the system + */ + public void setIsActive (boolean IsActive); + + /** Get Active. + * The record is active in the system + */ + public boolean isActive(); + + /** Column name M_Product_ID */ + public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; + + /** Set Product. + * Product, Service, Item + */ + public void setM_Product_ID (int M_Product_ID); + + /** Get Product. + * Product, Service, Item + */ + public int getM_Product_ID(); + + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; + + /** Column name M_Product_QualityTest_ID */ + public static final String COLUMNNAME_M_Product_QualityTest_ID = "M_Product_QualityTest_ID"; + + /** Set Product Quality Test */ + public void setM_Product_QualityTest_ID (int M_Product_QualityTest_ID); + + /** Get Product Quality Test */ + public int getM_Product_QualityTest_ID(); + + /** Column name M_Product_QualityTest_UU */ + public static final String COLUMNNAME_M_Product_QualityTest_UU = "M_Product_QualityTest_UU"; + + /** Set M_Product_QualityTest_UU */ + public void setM_Product_QualityTest_UU (String M_Product_QualityTest_UU); + + /** Get M_Product_QualityTest_UU */ + public String getM_Product_QualityTest_UU(); + + /** Column name M_QualityTest_ID */ + public static final String COLUMNNAME_M_QualityTest_ID = "M_QualityTest_ID"; + + /** Set Quality Test */ + public void setM_QualityTest_ID (int M_QualityTest_ID); + + /** Get Quality Test */ + public int getM_QualityTest_ID(); + + public org.compiere.model.I_M_QualityTest getM_QualityTest() throws RuntimeException; + + /** Column name Updated */ + public static final String COLUMNNAME_Updated = "Updated"; + + /** Get Updated. + * Date this record was updated + */ + public Timestamp getUpdated(); + + /** Column name UpdatedBy */ + public static final String COLUMNNAME_UpdatedBy = "UpdatedBy"; + + /** Get Updated By. + * User who updated this records + */ + public int getUpdatedBy(); +} diff --git a/org.adempiere.base/src/org/compiere/model/I_M_Production.java b/org.adempiere.base/src/org/compiere/model/I_M_Production.java index ffeab15838..86cc80e5f9 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_Production.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_Production.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_Production - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_Production { diff --git a/org.adempiere.base/src/org/compiere/model/I_M_ProductionLine.java b/org.adempiere.base/src/org/compiere/model/I_M_ProductionLine.java index 5badad40a6..211464bcc9 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_ProductionLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_ProductionLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_ProductionLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_ProductionLine { diff --git a/org.adempiere.base/src/org/compiere/model/I_M_ProductionLineMA.java b/org.adempiere.base/src/org/compiere/model/I_M_ProductionLineMA.java index 55fe6194c7..e10f5d20fb 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_ProductionLineMA.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_ProductionLineMA.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_ProductionLineMA - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_ProductionLineMA { diff --git a/org.adempiere.base/src/org/compiere/model/I_M_ProductionPlan.java b/org.adempiere.base/src/org/compiere/model/I_M_ProductionPlan.java index e12fcd9bd4..75d26d67a7 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_ProductionPlan.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_ProductionPlan.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_ProductionPlan - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_ProductionPlan { diff --git a/org.adempiere.base/src/org/compiere/model/I_M_Promotion.java b/org.adempiere.base/src/org/compiere/model/I_M_Promotion.java index 8986f6ff6b..e43a416c3c 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_Promotion.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_Promotion.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_Promotion - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_Promotion { @@ -31,7 +31,7 @@ public interface I_M_Promotion public static final String Table_Name = "M_Promotion"; /** AD_Table_ID=53178 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53178; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_M_Promotion */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -128,6 +128,15 @@ public interface I_M_Promotion /** Get Promotion */ public int getM_Promotion_ID(); + /** Column name M_Promotion_UU */ + public static final String COLUMNNAME_M_Promotion_UU = "M_Promotion_UU"; + + /** Set M_Promotion_UU */ + public void setM_Promotion_UU (String M_Promotion_UU); + + /** Get M_Promotion_UU */ + public String getM_Promotion_UU(); + /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_PromotionDistribution.java b/org.adempiere.base/src/org/compiere/model/I_M_PromotionDistribution.java index db71f41cfd..b23d44f9ef 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_PromotionDistribution.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_PromotionDistribution.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_PromotionDistribution - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_PromotionDistribution { @@ -31,7 +31,7 @@ public interface I_M_PromotionDistribution public static final String Table_Name = "M_PromotionDistribution"; /** AD_Table_ID=53181 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53181; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -126,6 +126,15 @@ public interface I_M_PromotionDistribution /** Get Promotion Distribution */ public int getM_PromotionDistribution_ID(); + /** Column name M_PromotionDistribution_UU */ + public static final String COLUMNNAME_M_PromotionDistribution_UU = "M_PromotionDistribution_UU"; + + /** Set M_PromotionDistribution_UU */ + public void setM_PromotionDistribution_UU (String M_PromotionDistribution_UU); + + /** Get M_PromotionDistribution_UU */ + public String getM_PromotionDistribution_UU(); + /** Column name M_Promotion_ID */ public static final String COLUMNNAME_M_Promotion_ID = "M_Promotion_ID"; @@ -135,7 +144,7 @@ public interface I_M_PromotionDistribution /** Get Promotion */ public int getM_Promotion_ID(); - public I_M_Promotion getM_Promotion() throws RuntimeException; + public org.compiere.model.I_M_Promotion getM_Promotion() throws RuntimeException; /** Column name M_PromotionLine_ID */ public static final String COLUMNNAME_M_PromotionLine_ID = "M_PromotionLine_ID"; @@ -146,7 +155,7 @@ public interface I_M_PromotionDistribution /** Get Promotion Line */ public int getM_PromotionLine_ID(); - public I_M_PromotionLine getM_PromotionLine() throws RuntimeException; + public org.compiere.model.I_M_PromotionLine getM_PromotionLine() throws RuntimeException; /** Column name Operation */ public static final String COLUMNNAME_Operation = "Operation"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_PromotionGroup.java b/org.adempiere.base/src/org/compiere/model/I_M_PromotionGroup.java index 021e633d80..488d03c245 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_PromotionGroup.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_PromotionGroup.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_PromotionGroup - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_PromotionGroup { @@ -31,7 +31,7 @@ public interface I_M_PromotionGroup public static final String Table_Name = "M_PromotionGroup"; /** AD_Table_ID=53176 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53176; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -113,6 +113,15 @@ public interface I_M_PromotionGroup /** Get Promotion Group */ public int getM_PromotionGroup_ID(); + /** Column name M_PromotionGroup_UU */ + public static final String COLUMNNAME_M_PromotionGroup_UU = "M_PromotionGroup_UU"; + + /** Set M_PromotionGroup_UU */ + public void setM_PromotionGroup_UU (String M_PromotionGroup_UU); + + /** Get M_PromotionGroup_UU */ + public String getM_PromotionGroup_UU(); + /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_PromotionGroupLine.java b/org.adempiere.base/src/org/compiere/model/I_M_PromotionGroupLine.java index 0481e7addc..dcead17180 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_PromotionGroupLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_PromotionGroupLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_PromotionGroupLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_PromotionGroupLine { @@ -31,7 +31,7 @@ public interface I_M_PromotionGroupLine public static final String Table_Name = "M_PromotionGroupLine"; /** AD_Table_ID=53177 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53177; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -104,7 +104,7 @@ public interface I_M_PromotionGroupLine */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name M_PromotionGroup_ID */ public static final String COLUMNNAME_M_PromotionGroup_ID = "M_PromotionGroup_ID"; @@ -115,7 +115,7 @@ public interface I_M_PromotionGroupLine /** Get Promotion Group */ public int getM_PromotionGroup_ID(); - public I_M_PromotionGroup getM_PromotionGroup() throws RuntimeException; + public org.compiere.model.I_M_PromotionGroup getM_PromotionGroup() throws RuntimeException; /** Column name M_PromotionGroupLine_ID */ public static final String COLUMNNAME_M_PromotionGroupLine_ID = "M_PromotionGroupLine_ID"; @@ -126,6 +126,15 @@ public interface I_M_PromotionGroupLine /** Get Promotion Group Line */ public int getM_PromotionGroupLine_ID(); + /** Column name M_PromotionGroupLine_UU */ + public static final String COLUMNNAME_M_PromotionGroupLine_UU = "M_PromotionGroupLine_UU"; + + /** Set M_PromotionGroupLine_UU */ + public void setM_PromotionGroupLine_UU (String M_PromotionGroupLine_UU); + + /** Get M_PromotionGroupLine_UU */ + public String getM_PromotionGroupLine_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_PromotionLine.java b/org.adempiere.base/src/org/compiere/model/I_M_PromotionLine.java index ab14e0b3d4..1d7369c999 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_PromotionLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_PromotionLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_PromotionLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_PromotionLine { @@ -31,7 +31,7 @@ public interface I_M_PromotionLine public static final String Table_Name = "M_PromotionLine"; /** AD_Table_ID=53179 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53179; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -126,7 +126,7 @@ public interface I_M_PromotionLine /** Get Promotion Group */ public int getM_PromotionGroup_ID(); - public I_M_PromotionGroup getM_PromotionGroup() throws RuntimeException; + public org.compiere.model.I_M_PromotionGroup getM_PromotionGroup() throws RuntimeException; /** Column name M_Promotion_ID */ public static final String COLUMNNAME_M_Promotion_ID = "M_Promotion_ID"; @@ -137,7 +137,7 @@ public interface I_M_PromotionLine /** Get Promotion */ public int getM_Promotion_ID(); - public I_M_Promotion getM_Promotion() throws RuntimeException; + public org.compiere.model.I_M_Promotion getM_Promotion() throws RuntimeException; /** Column name M_PromotionLine_ID */ public static final String COLUMNNAME_M_PromotionLine_ID = "M_PromotionLine_ID"; @@ -148,6 +148,15 @@ public interface I_M_PromotionLine /** Get Promotion Line */ public int getM_PromotionLine_ID(); + /** Column name M_PromotionLine_UU */ + public static final String COLUMNNAME_M_PromotionLine_UU = "M_PromotionLine_UU"; + + /** Set M_PromotionLine_UU */ + public void setM_PromotionLine_UU (String M_PromotionLine_UU); + + /** Get M_PromotionLine_UU */ + public String getM_PromotionLine_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_PromotionPreCondition.java b/org.adempiere.base/src/org/compiere/model/I_M_PromotionPreCondition.java index a374e38814..4bb949dfa0 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_PromotionPreCondition.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_PromotionPreCondition.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_PromotionPreCondition - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_PromotionPreCondition { @@ -31,7 +31,7 @@ public interface I_M_PromotionPreCondition public static final String Table_Name = "M_PromotionPreCondition"; /** AD_Table_ID=53180 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53180; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_M_PromotionPreCondition */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -90,7 +90,7 @@ public interface I_M_PromotionPreCondition */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_BP_Group_ID */ public static final String COLUMNNAME_C_BP_Group_ID = "C_BP_Group_ID"; @@ -105,7 +105,7 @@ public interface I_M_PromotionPreCondition */ public int getC_BP_Group_ID(); - public I_C_BP_Group getC_BP_Group() throws RuntimeException; + public org.compiere.model.I_C_BP_Group getC_BP_Group() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -162,7 +162,7 @@ public interface I_M_PromotionPreCondition */ public int getM_PriceList_ID(); - public I_M_PriceList getM_PriceList() throws RuntimeException; + public org.compiere.model.I_M_PriceList getM_PriceList() throws RuntimeException; /** Column name M_Promotion_ID */ public static final String COLUMNNAME_M_Promotion_ID = "M_Promotion_ID"; @@ -173,7 +173,7 @@ public interface I_M_PromotionPreCondition /** Get Promotion */ public int getM_Promotion_ID(); - public I_M_Promotion getM_Promotion() throws RuntimeException; + public org.compiere.model.I_M_Promotion getM_Promotion() throws RuntimeException; /** Column name M_PromotionPreCondition_ID */ public static final String COLUMNNAME_M_PromotionPreCondition_ID = "M_PromotionPreCondition_ID"; @@ -184,6 +184,15 @@ public interface I_M_PromotionPreCondition /** Get Promotion Pre Condition */ public int getM_PromotionPreCondition_ID(); + /** Column name M_PromotionPreCondition_UU */ + public static final String COLUMNNAME_M_PromotionPreCondition_UU = "M_PromotionPreCondition_UU"; + + /** Set M_PromotionPreCondition_UU */ + public void setM_PromotionPreCondition_UU (String M_PromotionPreCondition_UU); + + /** Get M_PromotionPreCondition_UU */ + public String getM_PromotionPreCondition_UU(); + /** Column name M_Warehouse_ID */ public static final String COLUMNNAME_M_Warehouse_ID = "M_Warehouse_ID"; @@ -197,7 +206,7 @@ public interface I_M_PromotionPreCondition */ public int getM_Warehouse_ID(); - public I_M_Warehouse getM_Warehouse() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException; /** Column name PromotionCode */ public static final String COLUMNNAME_PromotionCode = "PromotionCode"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_PromotionReward.java b/org.adempiere.base/src/org/compiere/model/I_M_PromotionReward.java index ce9b45d890..a0273387db 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_PromotionReward.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_PromotionReward.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_PromotionReward - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_PromotionReward { @@ -31,7 +31,7 @@ public interface I_M_PromotionReward public static final String Table_Name = "M_PromotionReward"; /** AD_Table_ID=53182 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53182; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_M_PromotionReward */ public int getC_Charge_ID(); - public I_C_Charge getC_Charge() throws RuntimeException; + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -167,7 +167,7 @@ public interface I_M_PromotionReward /** Get Promotion Distribution */ public int getM_PromotionDistribution_ID(); - public I_M_PromotionDistribution getM_PromotionDistribution() throws RuntimeException; + public org.compiere.model.I_M_PromotionDistribution getM_PromotionDistribution() throws RuntimeException; /** Column name M_Promotion_ID */ public static final String COLUMNNAME_M_Promotion_ID = "M_Promotion_ID"; @@ -178,7 +178,7 @@ public interface I_M_PromotionReward /** Get Promotion */ public int getM_Promotion_ID(); - public I_M_Promotion getM_Promotion() throws RuntimeException; + public org.compiere.model.I_M_Promotion getM_Promotion() throws RuntimeException; /** Column name M_PromotionReward_ID */ public static final String COLUMNNAME_M_PromotionReward_ID = "M_PromotionReward_ID"; @@ -189,6 +189,15 @@ public interface I_M_PromotionReward /** Get Promotion Reward */ public int getM_PromotionReward_ID(); + /** Column name M_PromotionReward_UU */ + public static final String COLUMNNAME_M_PromotionReward_UU = "M_PromotionReward_UU"; + + /** Set M_PromotionReward_UU */ + public void setM_PromotionReward_UU (String M_PromotionReward_UU); + + /** Get M_PromotionReward_UU */ + public String getM_PromotionReward_UU(); + /** Column name M_TargetDistribution_ID */ public static final String COLUMNNAME_M_TargetDistribution_ID = "M_TargetDistribution_ID"; @@ -202,7 +211,7 @@ public interface I_M_PromotionReward */ public int getM_TargetDistribution_ID(); - public I_M_PromotionDistribution getM_TargetDistribution() throws RuntimeException; + public org.compiere.model.I_M_PromotionDistribution getM_TargetDistribution() throws RuntimeException; /** Column name Qty */ public static final String COLUMNNAME_Qty = "Qty"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_QualityTest.java b/org.adempiere.base/src/org/compiere/model/I_M_QualityTest.java index d46b2300aa..aab87405b0 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_QualityTest.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_QualityTest.java @@ -1,157 +1,166 @@ -/****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * - * This program is free software, you can redistribute it and/or modify it * - * under the terms version 2 of the GNU General Public License as published * - * by the Free Software Foundation. This program is distributed in the hope * - * that it will be useful, but WITHOUT ANY WARRANTY, without even the implied * - * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * - * See the GNU General Public License for more details. * - * You should have received a copy of the GNU General Public License along * - * with this program, if not, write to the Free Software Foundation, Inc., * - * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * - * For the text or an alternative of this public license, you may reach us * - * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * - * or via info@compiere.org or http://www.compiere.org/license.html * - *****************************************************************************/ -package org.compiere.model; - -import java.math.BigDecimal; -import java.sql.Timestamp; -import org.compiere.util.KeyNamePair; - -/** Generated Interface for M_QualityTest - * @author Adempiere (generated) - * @version Release 3.6.0LTS - */ -public interface I_M_QualityTest -{ - - /** TableName=M_QualityTest */ - public static final String Table_Name = "M_QualityTest"; - - /** AD_Table_ID=1000004 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); - - KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); - - /** AccessLevel = 3 - Client - Org - */ - BigDecimal accessLevel = BigDecimal.valueOf(3); - - /** Load Meta Data */ - - /** Column name AD_Client_ID */ - public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; - - /** Get Client. - * Client/Tenant for this installation. - */ - public int getAD_Client_ID(); - - /** Column name AD_Org_ID */ - public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; - - /** Set Organisation. - * Organisational entity within client - */ - public void setAD_Org_ID (int AD_Org_ID); - - /** Get Organisation. - * Organisational entity within client - */ - public int getAD_Org_ID(); - - /** Column name Created */ - public static final String COLUMNNAME_Created = "Created"; - - /** Get Created. - * Date this record was created - */ - public Timestamp getCreated(); - - /** Column name CreatedBy */ - public static final String COLUMNNAME_CreatedBy = "CreatedBy"; - - /** Get Created By. - * User who created this records - */ - public int getCreatedBy(); - - /** Column name Description */ - public static final String COLUMNNAME_Description = "Description"; - - /** Set Description. - * Optional short description of the record - */ - public void setDescription (String Description); - - /** Get Description. - * Optional short description of the record - */ - public String getDescription(); - - /** Column name Help */ - public static final String COLUMNNAME_Help = "Help"; - - /** Set Comment/Help. - * Comment or Hint - */ - public void setHelp (String Help); - - /** Get Comment/Help. - * Comment or Hint - */ - public String getHelp(); - - /** Column name IsActive */ - public static final String COLUMNNAME_IsActive = "IsActive"; - - /** Set Active. - * The record is active in the system - */ - public void setIsActive (boolean IsActive); - - /** Get Active. - * The record is active in the system - */ - public boolean isActive(); - - /** Column name M_QualityTest_ID */ - public static final String COLUMNNAME_M_QualityTest_ID = "M_QualityTest_ID"; - - /** Set Quality Test */ - public void setM_QualityTest_ID (int M_QualityTest_ID); - - /** Get Quality Test */ - public int getM_QualityTest_ID(); - - /** Column name Name */ - public static final String COLUMNNAME_Name = "Name"; - - /** Set Name. - * Alphanumeric identifier of the entity - */ - public void setName (String Name); - - /** Get Name. - * Alphanumeric identifier of the entity - */ - public String getName(); - - /** Column name Updated */ - public static final String COLUMNNAME_Updated = "Updated"; - - /** Get Updated. - * Date this record was updated - */ - public Timestamp getUpdated(); - - /** Column name UpdatedBy */ - public static final String COLUMNNAME_UpdatedBy = "UpdatedBy"; - - /** Get Updated By. - * User who updated this records - */ - public int getUpdatedBy(); -} +/****************************************************************************** + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * + * This program is free software, you can redistribute it and/or modify it * + * under the terms version 2 of the GNU General Public License as published * + * by the Free Software Foundation. This program is distributed in the hope * + * that it will be useful, but WITHOUT ANY WARRANTY, without even the implied * + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * + * See the GNU General Public License for more details. * + * You should have received a copy of the GNU General Public License along * + * with this program, if not, write to the Free Software Foundation, Inc., * + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * + * For the text or an alternative of this public license, you may reach us * + * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * + * or via info@compiere.org or http://www.compiere.org/license.html * + *****************************************************************************/ +package org.compiere.model; + +import java.math.BigDecimal; +import java.sql.Timestamp; +import org.compiere.util.KeyNamePair; + +/** Generated Interface for M_QualityTest + * @author iDempiere (generated) + * @version Release 1.0a + */ +public interface I_M_QualityTest +{ + + /** TableName=M_QualityTest */ + public static final String Table_Name = "M_QualityTest"; + + /** AD_Table_ID=53332 */ + public static final int Table_ID = 53332; + + KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); + + /** AccessLevel = 3 - Client - Org + */ + BigDecimal accessLevel = BigDecimal.valueOf(3); + + /** Load Meta Data */ + + /** Column name AD_Client_ID */ + public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; + + /** Get Client. + * Client/Tenant for this installation. + */ + public int getAD_Client_ID(); + + /** Column name AD_Org_ID */ + public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; + + /** Set Organization. + * Organizational entity within client + */ + public void setAD_Org_ID (int AD_Org_ID); + + /** Get Organization. + * Organizational entity within client + */ + public int getAD_Org_ID(); + + /** Column name Created */ + public static final String COLUMNNAME_Created = "Created"; + + /** Get Created. + * Date this record was created + */ + public Timestamp getCreated(); + + /** Column name CreatedBy */ + public static final String COLUMNNAME_CreatedBy = "CreatedBy"; + + /** Get Created By. + * User who created this records + */ + public int getCreatedBy(); + + /** Column name Description */ + public static final String COLUMNNAME_Description = "Description"; + + /** Set Description. + * Optional short description of the record + */ + public void setDescription (String Description); + + /** Get Description. + * Optional short description of the record + */ + public String getDescription(); + + /** Column name Help */ + public static final String COLUMNNAME_Help = "Help"; + + /** Set Comment/Help. + * Comment or Hint + */ + public void setHelp (String Help); + + /** Get Comment/Help. + * Comment or Hint + */ + public String getHelp(); + + /** Column name IsActive */ + public static final String COLUMNNAME_IsActive = "IsActive"; + + /** Set Active. + * The record is active in the system + */ + public void setIsActive (boolean IsActive); + + /** Get Active. + * The record is active in the system + */ + public boolean isActive(); + + /** Column name M_QualityTest_ID */ + public static final String COLUMNNAME_M_QualityTest_ID = "M_QualityTest_ID"; + + /** Set Quality Test */ + public void setM_QualityTest_ID (int M_QualityTest_ID); + + /** Get Quality Test */ + public int getM_QualityTest_ID(); + + /** Column name M_QualityTest_UU */ + public static final String COLUMNNAME_M_QualityTest_UU = "M_QualityTest_UU"; + + /** Set M_QualityTest_UU */ + public void setM_QualityTest_UU (String M_QualityTest_UU); + + /** Get M_QualityTest_UU */ + public String getM_QualityTest_UU(); + + /** Column name Name */ + public static final String COLUMNNAME_Name = "Name"; + + /** Set Name. + * Alphanumeric identifier of the entity + */ + public void setName (String Name); + + /** Get Name. + * Alphanumeric identifier of the entity + */ + public String getName(); + + /** Column name Updated */ + public static final String COLUMNNAME_Updated = "Updated"; + + /** Get Updated. + * Date this record was updated + */ + public Timestamp getUpdated(); + + /** Column name UpdatedBy */ + public static final String COLUMNNAME_UpdatedBy = "UpdatedBy"; + + /** Get Updated By. + * User who updated this records + */ + public int getUpdatedBy(); +} diff --git a/org.adempiere.base/src/org/compiere/model/I_M_QualityTestResult.java b/org.adempiere.base/src/org/compiere/model/I_M_QualityTestResult.java index 6c4beab99f..586bce9cf6 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_QualityTestResult.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_QualityTestResult.java @@ -1,201 +1,210 @@ -/****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * - * This program is free software, you can redistribute it and/or modify it * - * under the terms version 2 of the GNU General Public License as published * - * by the Free Software Foundation. This program is distributed in the hope * - * that it will be useful, but WITHOUT ANY WARRANTY, without even the implied * - * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * - * See the GNU General Public License for more details. * - * You should have received a copy of the GNU General Public License along * - * with this program, if not, write to the Free Software Foundation, Inc., * - * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * - * For the text or an alternative of this public license, you may reach us * - * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * - * or via info@compiere.org or http://www.compiere.org/license.html * - *****************************************************************************/ -package org.compiere.model; - -import java.math.BigDecimal; -import java.sql.Timestamp; -import org.compiere.util.KeyNamePair; - -/** Generated Interface for M_QualityTestResult - * @author Adempiere (generated) - * @version Release 3.6.0LTS - */ -public interface I_M_QualityTestResult -{ - - /** TableName=M_QualityTestResult */ - public static final String Table_Name = "M_QualityTestResult"; - - /** AD_Table_ID=1000006 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); - - KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); - - /** AccessLevel = 3 - Client - Org - */ - BigDecimal accessLevel = BigDecimal.valueOf(3); - - /** Load Meta Data */ - - /** Column name AD_Client_ID */ - public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; - - /** Get Client. - * Client/Tenant for this installation. - */ - public int getAD_Client_ID(); - - /** Column name AD_Org_ID */ - public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; - - /** Set Organisation. - * Organisational entity within client - */ - public void setAD_Org_ID (int AD_Org_ID); - - /** Get Organisation. - * Organisational entity within client - */ - public int getAD_Org_ID(); - - /** Column name Created */ - public static final String COLUMNNAME_Created = "Created"; - - /** Get Created. - * Date this record was created - */ - public Timestamp getCreated(); - - /** Column name CreatedBy */ - public static final String COLUMNNAME_CreatedBy = "CreatedBy"; - - /** Get Created By. - * User who created this records - */ - public int getCreatedBy(); - - /** Column name Description */ - public static final String COLUMNNAME_Description = "Description"; - - /** Set Description. - * Optional short description of the record - */ - public void setDescription (String Description); - - /** Get Description. - * Optional short description of the record - */ - public String getDescription(); - - /** Column name ExpectedResult */ - public static final String COLUMNNAME_ExpectedResult = "ExpectedResult"; - - /** Set Expected Result */ - public void setExpectedResult (String ExpectedResult); - - /** Get Expected Result */ - public String getExpectedResult(); - - /** Column name IsActive */ - public static final String COLUMNNAME_IsActive = "IsActive"; - - /** Set Active. - * The record is active in the system - */ - public void setIsActive (boolean IsActive); - - /** Get Active. - * The record is active in the system - */ - public boolean isActive(); - - /** Column name IsQCPass */ - public static final String COLUMNNAME_IsQCPass = "IsQCPass"; - - /** Set QC Pass */ - public void setIsQCPass (boolean IsQCPass); - - /** Get QC Pass */ - public boolean isQCPass(); - - /** Column name M_AttributeSetInstance_ID */ - public static final String COLUMNNAME_M_AttributeSetInstance_ID = "M_AttributeSetInstance_ID"; - - /** Set Attribute Set Instance. - * Product Attribute Set Instance - */ - public void setM_AttributeSetInstance_ID (int M_AttributeSetInstance_ID); - - /** Get Attribute Set Instance. - * Product Attribute Set Instance - */ - public int getM_AttributeSetInstance_ID(); - - public I_M_AttributeSetInstance getM_AttributeSetInstance() throws RuntimeException; - - /** Column name M_QualityTest_ID */ - public static final String COLUMNNAME_M_QualityTest_ID = "M_QualityTest_ID"; - - /** Set Quality Test */ - public void setM_QualityTest_ID (int M_QualityTest_ID); - - /** Get Quality Test */ - public int getM_QualityTest_ID(); - - public I_M_QualityTest getM_QualityTest() throws RuntimeException; - - /** Column name M_QualityTestResult_ID */ - public static final String COLUMNNAME_M_QualityTestResult_ID = "M_QualityTestResult_ID"; - - /** Set Quality Test Result */ - public void setM_QualityTestResult_ID (int M_QualityTestResult_ID); - - /** Get Quality Test Result */ - public int getM_QualityTestResult_ID(); - - /** Column name Processed */ - public static final String COLUMNNAME_Processed = "Processed"; - - /** Set Processed. - * The document has been processed - */ - public void setProcessed (boolean Processed); - - /** Get Processed. - * The document has been processed - */ - public boolean isProcessed(); - - /** Column name Result */ - public static final String COLUMNNAME_Result = "Result"; - - /** Set Result. - * Result of the action taken - */ - public void setResult (String Result); - - /** Get Result. - * Result of the action taken - */ - public String getResult(); - - /** Column name Updated */ - public static final String COLUMNNAME_Updated = "Updated"; - - /** Get Updated. - * Date this record was updated - */ - public Timestamp getUpdated(); - - /** Column name UpdatedBy */ - public static final String COLUMNNAME_UpdatedBy = "UpdatedBy"; - - /** Get Updated By. - * User who updated this records - */ - public int getUpdatedBy(); -} +/****************************************************************************** + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * + * This program is free software, you can redistribute it and/or modify it * + * under the terms version 2 of the GNU General Public License as published * + * by the Free Software Foundation. This program is distributed in the hope * + * that it will be useful, but WITHOUT ANY WARRANTY, without even the implied * + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * + * See the GNU General Public License for more details. * + * You should have received a copy of the GNU General Public License along * + * with this program, if not, write to the Free Software Foundation, Inc., * + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * + * For the text or an alternative of this public license, you may reach us * + * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * + * or via info@compiere.org or http://www.compiere.org/license.html * + *****************************************************************************/ +package org.compiere.model; + +import java.math.BigDecimal; +import java.sql.Timestamp; +import org.compiere.util.KeyNamePair; + +/** Generated Interface for M_QualityTestResult + * @author iDempiere (generated) + * @version Release 1.0a + */ +public interface I_M_QualityTestResult +{ + + /** TableName=M_QualityTestResult */ + public static final String Table_Name = "M_QualityTestResult"; + + /** AD_Table_ID=53331 */ + public static final int Table_ID = 53331; + + KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); + + /** AccessLevel = 3 - Client - Org + */ + BigDecimal accessLevel = BigDecimal.valueOf(3); + + /** Load Meta Data */ + + /** Column name AD_Client_ID */ + public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; + + /** Get Client. + * Client/Tenant for this installation. + */ + public int getAD_Client_ID(); + + /** Column name AD_Org_ID */ + public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; + + /** Set Organization. + * Organizational entity within client + */ + public void setAD_Org_ID (int AD_Org_ID); + + /** Get Organization. + * Organizational entity within client + */ + public int getAD_Org_ID(); + + /** Column name Created */ + public static final String COLUMNNAME_Created = "Created"; + + /** Get Created. + * Date this record was created + */ + public Timestamp getCreated(); + + /** Column name CreatedBy */ + public static final String COLUMNNAME_CreatedBy = "CreatedBy"; + + /** Get Created By. + * User who created this records + */ + public int getCreatedBy(); + + /** Column name Description */ + public static final String COLUMNNAME_Description = "Description"; + + /** Set Description. + * Optional short description of the record + */ + public void setDescription (String Description); + + /** Get Description. + * Optional short description of the record + */ + public String getDescription(); + + /** Column name ExpectedResult */ + public static final String COLUMNNAME_ExpectedResult = "ExpectedResult"; + + /** Set Expected Result */ + public void setExpectedResult (String ExpectedResult); + + /** Get Expected Result */ + public String getExpectedResult(); + + /** Column name IsActive */ + public static final String COLUMNNAME_IsActive = "IsActive"; + + /** Set Active. + * The record is active in the system + */ + public void setIsActive (boolean IsActive); + + /** Get Active. + * The record is active in the system + */ + public boolean isActive(); + + /** Column name IsQCPass */ + public static final String COLUMNNAME_IsQCPass = "IsQCPass"; + + /** Set QC Pass */ + public void setIsQCPass (boolean IsQCPass); + + /** Get QC Pass */ + public boolean isQCPass(); + + /** Column name M_AttributeSetInstance_ID */ + public static final String COLUMNNAME_M_AttributeSetInstance_ID = "M_AttributeSetInstance_ID"; + + /** Set Attribute Set Instance. + * Product Attribute Set Instance + */ + public void setM_AttributeSetInstance_ID (int M_AttributeSetInstance_ID); + + /** Get Attribute Set Instance. + * Product Attribute Set Instance + */ + public int getM_AttributeSetInstance_ID(); + + public I_M_AttributeSetInstance getM_AttributeSetInstance() throws RuntimeException; + + /** Column name M_QualityTest_ID */ + public static final String COLUMNNAME_M_QualityTest_ID = "M_QualityTest_ID"; + + /** Set Quality Test */ + public void setM_QualityTest_ID (int M_QualityTest_ID); + + /** Get Quality Test */ + public int getM_QualityTest_ID(); + + public org.compiere.model.I_M_QualityTest getM_QualityTest() throws RuntimeException; + + /** Column name M_QualityTestResult_ID */ + public static final String COLUMNNAME_M_QualityTestResult_ID = "M_QualityTestResult_ID"; + + /** Set Quality Test Result */ + public void setM_QualityTestResult_ID (int M_QualityTestResult_ID); + + /** Get Quality Test Result */ + public int getM_QualityTestResult_ID(); + + /** Column name M_QualityTestResult_UU */ + public static final String COLUMNNAME_M_QualityTestResult_UU = "M_QualityTestResult_UU"; + + /** Set M_QualityTestResult_UU */ + public void setM_QualityTestResult_UU (String M_QualityTestResult_UU); + + /** Get M_QualityTestResult_UU */ + public String getM_QualityTestResult_UU(); + + /** Column name Processed */ + public static final String COLUMNNAME_Processed = "Processed"; + + /** Set Processed. + * The document has been processed + */ + public void setProcessed (boolean Processed); + + /** Get Processed. + * The document has been processed + */ + public boolean isProcessed(); + + /** Column name Result */ + public static final String COLUMNNAME_Result = "Result"; + + /** Set Result. + * Result of the action taken + */ + public void setResult (String Result); + + /** Get Result. + * Result of the action taken + */ + public String getResult(); + + /** Column name Updated */ + public static final String COLUMNNAME_Updated = "Updated"; + + /** Get Updated. + * Date this record was updated + */ + public Timestamp getUpdated(); + + /** Column name UpdatedBy */ + public static final String COLUMNNAME_UpdatedBy = "UpdatedBy"; + + /** Get Updated By. + * User who updated this records + */ + public int getUpdatedBy(); +} diff --git a/org.adempiere.base/src/org/compiere/model/I_M_RMA.java b/org.adempiere.base/src/org/compiere/model/I_M_RMA.java index 5c75e49cab..baa8ddcbf8 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_RMA.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_RMA.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_RMA - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_RMA { @@ -31,7 +31,7 @@ public interface I_M_RMA public static final String Table_Name = "M_RMA"; /** AD_Table_ID=661 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 661; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_M_RMA */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -103,7 +103,7 @@ public interface I_M_RMA */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name C_DocType_ID */ public static final String COLUMNNAME_C_DocType_ID = "C_DocType_ID"; @@ -118,7 +118,7 @@ public interface I_M_RMA */ public int getC_DocType_ID(); - public I_C_DocType getC_DocType() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException; /** Column name C_Order_ID */ public static final String COLUMNNAME_C_Order_ID = "C_Order_ID"; @@ -133,7 +133,7 @@ public interface I_M_RMA */ public int getC_Order_ID(); - public I_C_Order getC_Order() throws RuntimeException; + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -242,7 +242,7 @@ public interface I_M_RMA */ public int getInOut_ID(); - public I_M_InOut getInOut() throws RuntimeException; + public org.compiere.model.I_M_InOut getInOut() throws RuntimeException; /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; @@ -309,7 +309,16 @@ public interface I_M_RMA */ public int getM_RMAType_ID(); - public I_M_RMAType getM_RMAType() throws RuntimeException; + public org.compiere.model.I_M_RMAType getM_RMAType() throws RuntimeException; + + /** Column name M_RMA_UU */ + public static final String COLUMNNAME_M_RMA_UU = "M_RMA_UU"; + + /** Set M_RMA_UU */ + public void setM_RMA_UU (String M_RMA_UU); + + /** Get M_RMA_UU */ + public String getM_RMA_UU(); /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; @@ -355,7 +364,7 @@ public interface I_M_RMA /** Get Referenced RMA */ public int getRef_RMA_ID(); - public I_M_RMA getRef_RMA() throws RuntimeException; + public org.compiere.model.I_M_RMA getRef_RMA() throws RuntimeException; /** Column name SalesRep_ID */ public static final String COLUMNNAME_SalesRep_ID = "SalesRep_ID"; @@ -370,7 +379,7 @@ public interface I_M_RMA */ public int getSalesRep_ID(); - public I_AD_User getSalesRep() throws RuntimeException; + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_RMALine.java b/org.adempiere.base/src/org/compiere/model/I_M_RMALine.java index f05fccb716..596d1014b3 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_RMALine.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_RMALine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_RMALine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_RMALine { @@ -31,7 +31,7 @@ public interface I_M_RMALine public static final String Table_Name = "M_RMALine"; /** AD_Table_ID=660 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 660; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_M_RMALine */ public int getC_Charge_ID(); - public I_C_Charge getC_Charge() throws RuntimeException; + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -171,7 +171,7 @@ public interface I_M_RMALine */ public int getM_InOutLine_ID(); - public I_M_InOutLine getM_InOutLine() throws RuntimeException; + public org.compiere.model.I_M_InOutLine getM_InOutLine() throws RuntimeException; /** Column name M_RMA_ID */ public static final String COLUMNNAME_M_RMA_ID = "M_RMA_ID"; @@ -186,7 +186,7 @@ public interface I_M_RMALine */ public int getM_RMA_ID(); - public I_M_RMA getM_RMA() throws RuntimeException; + public org.compiere.model.I_M_RMA getM_RMA() throws RuntimeException; /** Column name M_RMALine_ID */ public static final String COLUMNNAME_M_RMALine_ID = "M_RMALine_ID"; @@ -201,6 +201,15 @@ public interface I_M_RMALine */ public int getM_RMALine_ID(); + /** Column name M_RMALine_UU */ + public static final String COLUMNNAME_M_RMALine_UU = "M_RMALine_UU"; + + /** Set M_RMALine_UU */ + public void setM_RMALine_UU (String M_RMALine_UU); + + /** Get M_RMALine_UU */ + public String getM_RMALine_UU(); + /** Column name Processed */ public static final String COLUMNNAME_Processed = "Processed"; @@ -262,7 +271,7 @@ public interface I_M_RMALine /** Get Referenced RMA Line */ public int getRef_RMALine_ID(); - public I_M_RMALine getRef_RMALine() throws RuntimeException; + public org.compiere.model.I_M_RMALine getRef_RMALine() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_RMAType.java b/org.adempiere.base/src/org/compiere/model/I_M_RMAType.java index 382b138e23..b33783da6c 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_RMAType.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_RMAType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_RMAType - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_RMAType { @@ -31,7 +31,7 @@ public interface I_M_RMAType public static final String Table_Name = "M_RMAType"; /** AD_Table_ID=729 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 729; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -130,6 +130,15 @@ public interface I_M_RMAType */ public int getM_RMAType_ID(); + /** Column name M_RMAType_UU */ + public static final String COLUMNNAME_M_RMAType_UU = "M_RMAType_UU"; + + /** Set M_RMAType_UU */ + public void setM_RMAType_UU (String M_RMAType_UU); + + /** Get M_RMAType_UU */ + public String getM_RMAType_UU(); + /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_RelatedProduct.java b/org.adempiere.base/src/org/compiere/model/I_M_RelatedProduct.java index b2c270b0e3..da86e9aaab 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_RelatedProduct.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_RelatedProduct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_RelatedProduct - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_RelatedProduct { @@ -31,7 +31,7 @@ public interface I_M_RelatedProduct public static final String Table_Name = "M_RelatedProduct"; /** AD_Table_ID=662 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 662; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -117,7 +117,16 @@ public interface I_M_RelatedProduct */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; + + /** Column name M_RelatedProduct_UU */ + public static final String COLUMNNAME_M_RelatedProduct_UU = "M_RelatedProduct_UU"; + + /** Set M_RelatedProduct_UU */ + public void setM_RelatedProduct_UU (String M_RelatedProduct_UU); + + /** Get M_RelatedProduct_UU */ + public String getM_RelatedProduct_UU(); /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; @@ -145,7 +154,7 @@ public interface I_M_RelatedProduct */ public int getRelatedProduct_ID(); - public I_M_Product getRelatedProduct() throws RuntimeException; + public org.compiere.model.I_M_Product getRelatedProduct() throws RuntimeException; /** Column name RelatedProductType */ public static final String COLUMNNAME_RelatedProductType = "RelatedProductType"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_Replenish.java b/org.adempiere.base/src/org/compiere/model/I_M_Replenish.java index 4e3e25d953..200ce578ae 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_Replenish.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_Replenish.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_Replenish - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_Replenish { diff --git a/org.adempiere.base/src/org/compiere/model/I_M_Requisition.java b/org.adempiere.base/src/org/compiere/model/I_M_Requisition.java index aa5bb4a363..a9d4a1b92f 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_Requisition.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_Requisition.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_Requisition - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_Requisition { @@ -31,7 +31,7 @@ public interface I_M_Requisition public static final String Table_Name = "M_Requisition"; /** AD_Table_ID=702 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 702; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_M_Requisition */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name C_DocType_ID */ public static final String COLUMNNAME_C_DocType_ID = "C_DocType_ID"; @@ -90,7 +90,7 @@ public interface I_M_Requisition */ public int getC_DocType_ID(); - public I_C_DocType getC_DocType() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -238,7 +238,7 @@ public interface I_M_Requisition */ public int getM_PriceList_ID(); - public I_M_PriceList getM_PriceList() throws RuntimeException; + public org.compiere.model.I_M_PriceList getM_PriceList() throws RuntimeException; /** Column name M_Requisition_ID */ public static final String COLUMNNAME_M_Requisition_ID = "M_Requisition_ID"; @@ -253,6 +253,15 @@ public interface I_M_Requisition */ public int getM_Requisition_ID(); + /** Column name M_Requisition_UU */ + public static final String COLUMNNAME_M_Requisition_UU = "M_Requisition_UU"; + + /** Set M_Requisition_UU */ + public void setM_Requisition_UU (String M_Requisition_UU); + + /** Get M_Requisition_UU */ + public String getM_Requisition_UU(); + /** Column name M_Warehouse_ID */ public static final String COLUMNNAME_M_Warehouse_ID = "M_Warehouse_ID"; @@ -266,7 +275,7 @@ public interface I_M_Requisition */ public int getM_Warehouse_ID(); - public I_M_Warehouse getM_Warehouse() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException; /** Column name Posted */ public static final String COLUMNNAME_Posted = "Posted"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_RequisitionLine.java b/org.adempiere.base/src/org/compiere/model/I_M_RequisitionLine.java index 3938a5ad92..44260fa325 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_RequisitionLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_RequisitionLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_RequisitionLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_RequisitionLine { @@ -31,7 +31,7 @@ public interface I_M_RequisitionLine public static final String Table_Name = "M_RequisitionLine"; /** AD_Table_ID=703 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 703; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_M_RequisitionLine */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Charge_ID */ public static final String COLUMNNAME_C_Charge_ID = "C_Charge_ID"; @@ -90,7 +90,7 @@ public interface I_M_RequisitionLine */ public int getC_Charge_ID(); - public I_C_Charge getC_Charge() throws RuntimeException; + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException; /** Column name C_OrderLine_ID */ public static final String COLUMNNAME_C_OrderLine_ID = "C_OrderLine_ID"; @@ -105,7 +105,7 @@ public interface I_M_RequisitionLine */ public int getC_OrderLine_ID(); - public I_C_OrderLine getC_OrderLine() throws RuntimeException; + public org.compiere.model.I_C_OrderLine getC_OrderLine() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -136,7 +136,7 @@ public interface I_M_RequisitionLine */ public int getC_UOM_ID(); - public I_C_UOM getC_UOM() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException; /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; @@ -218,7 +218,7 @@ public interface I_M_RequisitionLine */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name M_Requisition_ID */ public static final String COLUMNNAME_M_Requisition_ID = "M_Requisition_ID"; @@ -233,7 +233,7 @@ public interface I_M_RequisitionLine */ public int getM_Requisition_ID(); - public I_M_Requisition getM_Requisition() throws RuntimeException; + public org.compiere.model.I_M_Requisition getM_Requisition() throws RuntimeException; /** Column name M_RequisitionLine_ID */ public static final String COLUMNNAME_M_RequisitionLine_ID = "M_RequisitionLine_ID"; @@ -248,6 +248,15 @@ public interface I_M_RequisitionLine */ public int getM_RequisitionLine_ID(); + /** Column name M_RequisitionLine_UU */ + public static final String COLUMNNAME_M_RequisitionLine_UU = "M_RequisitionLine_UU"; + + /** Set M_RequisitionLine_UU */ + public void setM_RequisitionLine_UU (String M_RequisitionLine_UU); + + /** Get M_RequisitionLine_UU */ + public String getM_RequisitionLine_UU(); + /** Column name PriceActual */ public static final String COLUMNNAME_PriceActual = "PriceActual"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_SerNoCtl.java b/org.adempiere.base/src/org/compiere/model/I_M_SerNoCtl.java index 859fd42097..625628dc03 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_SerNoCtl.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_SerNoCtl.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_SerNoCtl - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_SerNoCtl { @@ -31,7 +31,7 @@ public interface I_M_SerNoCtl public static final String Table_Name = "M_SerNoCtl"; /** AD_Table_ID=555 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 555; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -143,6 +143,15 @@ public interface I_M_SerNoCtl */ public int getM_SerNoCtl_ID(); + /** Column name M_SerNoCtl_UU */ + public static final String COLUMNNAME_M_SerNoCtl_UU = "M_SerNoCtl_UU"; + + /** Set M_SerNoCtl_UU */ + public void setM_SerNoCtl_UU (String M_SerNoCtl_UU); + + /** Get M_SerNoCtl_UU */ + public String getM_SerNoCtl_UU(); + /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_SerNoCtlExclude.java b/org.adempiere.base/src/org/compiere/model/I_M_SerNoCtlExclude.java index 4e998b4667..768927ec10 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_SerNoCtlExclude.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_SerNoCtlExclude.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_SerNoCtlExclude - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_SerNoCtlExclude { @@ -31,7 +31,7 @@ public interface I_M_SerNoCtlExclude public static final String Table_Name = "M_SerNoCtlExclude"; /** AD_Table_ID=811 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 811; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_M_SerNoCtlExclude */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -132,6 +132,15 @@ public interface I_M_SerNoCtlExclude */ public int getM_SerNoCtlExclude_ID(); + /** Column name M_SerNoCtlExclude_UU */ + public static final String COLUMNNAME_M_SerNoCtlExclude_UU = "M_SerNoCtlExclude_UU"; + + /** Set M_SerNoCtlExclude_UU */ + public void setM_SerNoCtlExclude_UU (String M_SerNoCtlExclude_UU); + + /** Get M_SerNoCtlExclude_UU */ + public String getM_SerNoCtlExclude_UU(); + /** Column name M_SerNoCtl_ID */ public static final String COLUMNNAME_M_SerNoCtl_ID = "M_SerNoCtl_ID"; @@ -145,7 +154,7 @@ public interface I_M_SerNoCtlExclude */ public int getM_SerNoCtl_ID(); - public I_M_SerNoCtl getM_SerNoCtl() throws RuntimeException; + public org.compiere.model.I_M_SerNoCtl getM_SerNoCtl() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_Shipper.java b/org.adempiere.base/src/org/compiere/model/I_M_Shipper.java index e9a711afbe..fa32ad6328 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_Shipper.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_Shipper.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_Shipper - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_Shipper { @@ -31,7 +31,7 @@ public interface I_M_Shipper public static final String Table_Name = "M_Shipper"; /** AD_Table_ID=253 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 253; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_M_Shipper */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -132,6 +132,15 @@ public interface I_M_Shipper */ public int getM_Shipper_ID(); + /** Column name M_Shipper_UU */ + public static final String COLUMNNAME_M_Shipper_UU = "M_Shipper_UU"; + + /** Set M_Shipper_UU */ + public void setM_Shipper_UU (String M_Shipper_UU); + + /** Get M_Shipper_UU */ + public String getM_Shipper_UU(); + /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_Storage.java b/org.adempiere.base/src/org/compiere/model/I_M_Storage.java index 414c41c2fb..157518fd01 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_Storage.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_Storage.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_Storage - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_Storage { @@ -31,7 +31,7 @@ public interface I_M_Storage public static final String Table_Name = "M_Storage"; /** AD_Table_ID=250 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 250; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -147,7 +147,16 @@ public interface I_M_Storage */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; + + /** Column name M_Storage_UU */ + public static final String COLUMNNAME_M_Storage_UU = "M_Storage_UU"; + + /** Set M_Storage_UU */ + public void setM_Storage_UU (String M_Storage_UU); + + /** Get M_Storage_UU */ + public String getM_Storage_UU(); /** Column name QtyOnHand */ public static final String COLUMNNAME_QtyOnHand = "QtyOnHand"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_Substitute.java b/org.adempiere.base/src/org/compiere/model/I_M_Substitute.java index 8923bb12e7..7e74e97966 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_Substitute.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_Substitute.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_Substitute - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_Substitute { @@ -31,7 +31,7 @@ public interface I_M_Substitute public static final String Table_Name = "M_Substitute"; /** AD_Table_ID=213 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 213; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -117,7 +117,16 @@ public interface I_M_Substitute */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; + + /** Column name M_Substitute_UU */ + public static final String COLUMNNAME_M_Substitute_UU = "M_Substitute_UU"; + + /** Set M_Substitute_UU */ + public void setM_Substitute_UU (String M_Substitute_UU); + + /** Get M_Substitute_UU */ + public String getM_Substitute_UU(); /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; @@ -145,7 +154,7 @@ public interface I_M_Substitute */ public int getSubstitute_ID(); - public I_M_Product getSubstitute() throws RuntimeException; + public org.compiere.model.I_M_Product getSubstitute() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_Transaction.java b/org.adempiere.base/src/org/compiere/model/I_M_Transaction.java index 658ba911e9..7a5c257db6 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_Transaction.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_Transaction.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_Transaction - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_Transaction { @@ -31,7 +31,7 @@ public interface I_M_Transaction public static final String Table_Name = "M_Transaction"; /** AD_Table_ID=329 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 329; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_M_Transaction */ public int getC_ProjectIssue_ID(); - public I_C_ProjectIssue getC_ProjectIssue() throws RuntimeException; + public org.compiere.model.I_C_ProjectIssue getC_ProjectIssue() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -134,7 +134,7 @@ public interface I_M_Transaction */ public int getM_InOutLine_ID(); - public I_M_InOutLine getM_InOutLine() throws RuntimeException; + public org.compiere.model.I_M_InOutLine getM_InOutLine() throws RuntimeException; /** Column name M_InventoryLine_ID */ public static final String COLUMNNAME_M_InventoryLine_ID = "M_InventoryLine_ID"; @@ -149,7 +149,7 @@ public interface I_M_Transaction */ public int getM_InventoryLine_ID(); - public I_M_InventoryLine getM_InventoryLine() throws RuntimeException; + public org.compiere.model.I_M_InventoryLine getM_InventoryLine() throws RuntimeException; /** Column name M_Locator_ID */ public static final String COLUMNNAME_M_Locator_ID = "M_Locator_ID"; @@ -179,7 +179,7 @@ public interface I_M_Transaction */ public int getM_MovementLine_ID(); - public I_M_MovementLine getM_MovementLine() throws RuntimeException; + public org.compiere.model.I_M_MovementLine getM_MovementLine() throws RuntimeException; /** Column name MovementDate */ public static final String COLUMNNAME_MovementDate = "MovementDate"; @@ -233,7 +233,7 @@ public interface I_M_Transaction */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name M_ProductionLine_ID */ public static final String COLUMNNAME_M_ProductionLine_ID = "M_ProductionLine_ID"; @@ -248,7 +248,7 @@ public interface I_M_Transaction */ public int getM_ProductionLine_ID(); - public I_M_ProductionLine getM_ProductionLine() throws RuntimeException; + public org.compiere.model.I_M_ProductionLine getM_ProductionLine() throws RuntimeException; /** Column name M_Transaction_ID */ public static final String COLUMNNAME_M_Transaction_ID = "M_Transaction_ID"; @@ -259,6 +259,15 @@ public interface I_M_Transaction /** Get Inventory Transaction */ public int getM_Transaction_ID(); + /** Column name M_Transaction_UU */ + public static final String COLUMNNAME_M_Transaction_UU = "M_Transaction_UU"; + + /** Set M_Transaction_UU */ + public void setM_Transaction_UU (String M_Transaction_UU); + + /** Get M_Transaction_UU */ + public String getM_Transaction_UU(); + /** Column name PP_Cost_Collector_ID */ public static final String COLUMNNAME_PP_Cost_Collector_ID = "PP_Cost_Collector_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_TransactionAllocation.java b/org.adempiere.base/src/org/compiere/model/I_M_TransactionAllocation.java index 83a256963a..7ac580ad57 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_TransactionAllocation.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_TransactionAllocation.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_TransactionAllocation - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_TransactionAllocation { @@ -31,7 +31,7 @@ public interface I_M_TransactionAllocation public static final String Table_Name = "M_TransactionAllocation"; /** AD_Table_ID=636 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 636; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -158,7 +158,7 @@ public interface I_M_TransactionAllocation */ public int getM_InOutLine_ID(); - public I_M_InOutLine getM_InOutLine() throws RuntimeException; + public org.compiere.model.I_M_InOutLine getM_InOutLine() throws RuntimeException; /** Column name M_InventoryLine_ID */ public static final String COLUMNNAME_M_InventoryLine_ID = "M_InventoryLine_ID"; @@ -173,7 +173,7 @@ public interface I_M_TransactionAllocation */ public int getM_InventoryLine_ID(); - public I_M_InventoryLine getM_InventoryLine() throws RuntimeException; + public org.compiere.model.I_M_InventoryLine getM_InventoryLine() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -188,7 +188,7 @@ public interface I_M_TransactionAllocation */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name M_ProductionLine_ID */ public static final String COLUMNNAME_M_ProductionLine_ID = "M_ProductionLine_ID"; @@ -203,7 +203,16 @@ public interface I_M_TransactionAllocation */ public int getM_ProductionLine_ID(); - public I_M_ProductionLine getM_ProductionLine() throws RuntimeException; + public org.compiere.model.I_M_ProductionLine getM_ProductionLine() throws RuntimeException; + + /** Column name M_TransactionAllocation_UU */ + public static final String COLUMNNAME_M_TransactionAllocation_UU = "M_TransactionAllocation_UU"; + + /** Set M_TransactionAllocation_UU */ + public void setM_TransactionAllocation_UU (String M_TransactionAllocation_UU); + + /** Get M_TransactionAllocation_UU */ + public String getM_TransactionAllocation_UU(); /** Column name M_Transaction_ID */ public static final String COLUMNNAME_M_Transaction_ID = "M_Transaction_ID"; @@ -214,7 +223,7 @@ public interface I_M_TransactionAllocation /** Get Inventory Transaction */ public int getM_Transaction_ID(); - public I_M_Transaction getM_Transaction() throws RuntimeException; + public org.compiere.model.I_M_Transaction getM_Transaction() throws RuntimeException; /** Column name Out_M_InOutLine_ID */ public static final String COLUMNNAME_Out_M_InOutLine_ID = "Out_M_InOutLine_ID"; @@ -229,7 +238,7 @@ public interface I_M_TransactionAllocation */ public int getOut_M_InOutLine_ID(); - public I_M_InOutLine getOut_M_InOutLine() throws RuntimeException; + public org.compiere.model.I_M_InOutLine getOut_M_InOutLine() throws RuntimeException; /** Column name Out_M_InventoryLine_ID */ public static final String COLUMNNAME_Out_M_InventoryLine_ID = "Out_M_InventoryLine_ID"; @@ -244,7 +253,7 @@ public interface I_M_TransactionAllocation */ public int getOut_M_InventoryLine_ID(); - public I_M_InventoryLine getOut_M_InventoryLine() throws RuntimeException; + public org.compiere.model.I_M_InventoryLine getOut_M_InventoryLine() throws RuntimeException; /** Column name Out_M_ProductionLine_ID */ public static final String COLUMNNAME_Out_M_ProductionLine_ID = "Out_M_ProductionLine_ID"; @@ -259,7 +268,7 @@ public interface I_M_TransactionAllocation */ public int getOut_M_ProductionLine_ID(); - public I_M_ProductionLine getOut_M_ProductionLine() throws RuntimeException; + public org.compiere.model.I_M_ProductionLine getOut_M_ProductionLine() throws RuntimeException; /** Column name Out_M_Transaction_ID */ public static final String COLUMNNAME_Out_M_Transaction_ID = "Out_M_Transaction_ID"; @@ -274,7 +283,7 @@ public interface I_M_TransactionAllocation */ public int getOut_M_Transaction_ID(); - public I_M_Transaction getOut_M_Transaction() throws RuntimeException; + public org.compiere.model.I_M_Transaction getOut_M_Transaction() throws RuntimeException; /** Column name Qty */ public static final String COLUMNNAME_Qty = "Qty"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_Warehouse.java b/org.adempiere.base/src/org/compiere/model/I_M_Warehouse.java index 7d5f3d80b0..fa175a2df9 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_Warehouse.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_Warehouse.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_Warehouse - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_Warehouse { @@ -173,6 +173,15 @@ public interface I_M_Warehouse public org.compiere.model.I_M_Warehouse getM_WarehouseSource() throws RuntimeException; + /** Column name M_Warehouse_UU */ + public static final String COLUMNNAME_M_Warehouse_UU = "M_Warehouse_UU"; + + /** Set M_Warehouse_UU */ + public void setM_Warehouse_UU (String M_Warehouse_UU); + + /** Get M_Warehouse_UU */ + public String getM_Warehouse_UU(); + /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_M_Warehouse_Acct.java b/org.adempiere.base/src/org/compiere/model/I_M_Warehouse_Acct.java index 8e1daa9631..dde84ca2b3 100644 --- a/org.adempiere.base/src/org/compiere/model/I_M_Warehouse_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/I_M_Warehouse_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for M_Warehouse_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_M_Warehouse_Acct { @@ -35,7 +35,7 @@ public interface I_M_Warehouse_Acct KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); - /** AccessLevel = - Client - Org + /** AccessLevel = 3 - Client - Org */ BigDecimal accessLevel = BigDecimal.valueOf(3); diff --git a/org.adempiere.base/src/org/compiere/model/I_PA_Achievement.java b/org.adempiere.base/src/org/compiere/model/I_PA_Achievement.java index 4fd36fd983..ef3644db74 100644 --- a/org.adempiere.base/src/org/compiere/model/I_PA_Achievement.java +++ b/org.adempiere.base/src/org/compiere/model/I_PA_Achievement.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for PA_Achievement - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PA_Achievement { @@ -31,7 +31,7 @@ public interface I_PA_Achievement public static final String Table_Name = "PA_Achievement"; /** AD_Table_ID=438 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 438; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -182,6 +182,15 @@ public interface I_PA_Achievement */ public int getPA_Achievement_ID(); + /** Column name PA_Achievement_UU */ + public static final String COLUMNNAME_PA_Achievement_UU = "PA_Achievement_UU"; + + /** Set PA_Achievement_UU */ + public void setPA_Achievement_UU (String PA_Achievement_UU); + + /** Get PA_Achievement_UU */ + public String getPA_Achievement_UU(); + /** Column name PA_Measure_ID */ public static final String COLUMNNAME_PA_Measure_ID = "PA_Measure_ID"; @@ -195,7 +204,7 @@ public interface I_PA_Achievement */ public int getPA_Measure_ID(); - public I_PA_Measure getPA_Measure() throws RuntimeException; + public org.compiere.model.I_PA_Measure getPA_Measure() throws RuntimeException; /** Column name SeqNo */ public static final String COLUMNNAME_SeqNo = "SeqNo"; diff --git a/org.adempiere.base/src/org/compiere/model/I_PA_Benchmark.java b/org.adempiere.base/src/org/compiere/model/I_PA_Benchmark.java index 1b7c18380b..bb8534f29a 100644 --- a/org.adempiere.base/src/org/compiere/model/I_PA_Benchmark.java +++ b/org.adempiere.base/src/org/compiere/model/I_PA_Benchmark.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for PA_Benchmark - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PA_Benchmark { @@ -31,7 +31,7 @@ public interface I_PA_Benchmark public static final String Table_Name = "PA_Benchmark"; /** AD_Table_ID=833 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 833; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -156,6 +156,15 @@ public interface I_PA_Benchmark */ public int getPA_Benchmark_ID(); + /** Column name PA_Benchmark_UU */ + public static final String COLUMNNAME_PA_Benchmark_UU = "PA_Benchmark_UU"; + + /** Set PA_Benchmark_UU */ + public void setPA_Benchmark_UU (String PA_Benchmark_UU); + + /** Get PA_Benchmark_UU */ + public String getPA_Benchmark_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_PA_BenchmarkData.java b/org.adempiere.base/src/org/compiere/model/I_PA_BenchmarkData.java index d068c6170d..7f6f2d18cf 100644 --- a/org.adempiere.base/src/org/compiere/model/I_PA_BenchmarkData.java +++ b/org.adempiere.base/src/org/compiere/model/I_PA_BenchmarkData.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for PA_BenchmarkData - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PA_BenchmarkData { @@ -31,7 +31,7 @@ public interface I_PA_BenchmarkData public static final String Table_Name = "PA_BenchmarkData"; /** AD_Table_ID=834 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 834; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -156,6 +156,15 @@ public interface I_PA_BenchmarkData */ public int getPA_BenchmarkData_ID(); + /** Column name PA_BenchmarkData_UU */ + public static final String COLUMNNAME_PA_BenchmarkData_UU = "PA_BenchmarkData_UU"; + + /** Set PA_BenchmarkData_UU */ + public void setPA_BenchmarkData_UU (String PA_BenchmarkData_UU); + + /** Get PA_BenchmarkData_UU */ + public String getPA_BenchmarkData_UU(); + /** Column name PA_Benchmark_ID */ public static final String COLUMNNAME_PA_Benchmark_ID = "PA_Benchmark_ID"; @@ -169,7 +178,7 @@ public interface I_PA_BenchmarkData */ public int getPA_Benchmark_ID(); - public I_PA_Benchmark getPA_Benchmark() throws RuntimeException; + public org.compiere.model.I_PA_Benchmark getPA_Benchmark() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_PA_ColorSchema.java b/org.adempiere.base/src/org/compiere/model/I_PA_ColorSchema.java index 551bb5b5db..0ca8651060 100644 --- a/org.adempiere.base/src/org/compiere/model/I_PA_ColorSchema.java +++ b/org.adempiere.base/src/org/compiere/model/I_PA_ColorSchema.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for PA_ColorSchema - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PA_ColorSchema { @@ -31,7 +31,7 @@ public interface I_PA_ColorSchema public static final String Table_Name = "PA_ColorSchema"; /** AD_Table_ID=831 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 831; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_PA_ColorSchema */ public int getAD_PrintColor1_ID(); - public I_AD_PrintColor getAD_PrintColor1() throws RuntimeException; + public org.compiere.model.I_AD_PrintColor getAD_PrintColor1() throws RuntimeException; /** Column name AD_PrintColor2_ID */ public static final String COLUMNNAME_AD_PrintColor2_ID = "AD_PrintColor2_ID"; @@ -90,7 +90,7 @@ public interface I_PA_ColorSchema */ public int getAD_PrintColor2_ID(); - public I_AD_PrintColor getAD_PrintColor2() throws RuntimeException; + public org.compiere.model.I_AD_PrintColor getAD_PrintColor2() throws RuntimeException; /** Column name AD_PrintColor3_ID */ public static final String COLUMNNAME_AD_PrintColor3_ID = "AD_PrintColor3_ID"; @@ -105,7 +105,7 @@ public interface I_PA_ColorSchema */ public int getAD_PrintColor3_ID(); - public I_AD_PrintColor getAD_PrintColor3() throws RuntimeException; + public org.compiere.model.I_AD_PrintColor getAD_PrintColor3() throws RuntimeException; /** Column name AD_PrintColor4_ID */ public static final String COLUMNNAME_AD_PrintColor4_ID = "AD_PrintColor4_ID"; @@ -120,7 +120,7 @@ public interface I_PA_ColorSchema */ public int getAD_PrintColor4_ID(); - public I_AD_PrintColor getAD_PrintColor4() throws RuntimeException; + public org.compiere.model.I_AD_PrintColor getAD_PrintColor4() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -257,6 +257,15 @@ public interface I_PA_ColorSchema */ public int getPA_ColorSchema_ID(); + /** Column name PA_ColorSchema_UU */ + public static final String COLUMNNAME_PA_ColorSchema_UU = "PA_ColorSchema_UU"; + + /** Set PA_ColorSchema_UU */ + public void setPA_ColorSchema_UU (String PA_ColorSchema_UU); + + /** Get PA_ColorSchema_UU */ + public String getPA_ColorSchema_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_PA_DashboardContent.java b/org.adempiere.base/src/org/compiere/model/I_PA_DashboardContent.java index 7990ec66b1..fb35657552 100644 --- a/org.adempiere.base/src/org/compiere/model/I_PA_DashboardContent.java +++ b/org.adempiere.base/src/org/compiere/model/I_PA_DashboardContent.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for PA_DashboardContent - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PA_DashboardContent { @@ -31,7 +31,7 @@ public interface I_PA_DashboardContent public static final String Table_Name = "PA_DashboardContent"; /** AD_Table_ID=50010 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 50010; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); diff --git a/org.adempiere.base/src/org/compiere/model/I_PA_DashboardPreference.java b/org.adempiere.base/src/org/compiere/model/I_PA_DashboardPreference.java index 499179a5cc..0f8feed321 100644 --- a/org.adempiere.base/src/org/compiere/model/I_PA_DashboardPreference.java +++ b/org.adempiere.base/src/org/compiere/model/I_PA_DashboardPreference.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for PA_DashboardPreference - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PA_DashboardPreference { @@ -193,6 +193,15 @@ public interface I_PA_DashboardPreference /** Get Dashboard Preference */ public int getPA_DashboardPreference_ID(); + /** Column name PA_DashboardPreference_UU */ + public static final String COLUMNNAME_PA_DashboardPreference_UU = "PA_DashboardPreference_UU"; + + /** Set PA_DashboardPreference_UU */ + public void setPA_DashboardPreference_UU (String PA_DashboardPreference_UU); + + /** Get PA_DashboardPreference_UU */ + public String getPA_DashboardPreference_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_PA_Goal.java b/org.adempiere.base/src/org/compiere/model/I_PA_Goal.java index e5da1fba3a..c8112e6a5b 100644 --- a/org.adempiere.base/src/org/compiere/model/I_PA_Goal.java +++ b/org.adempiere.base/src/org/compiere/model/I_PA_Goal.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for PA_Goal - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PA_Goal { @@ -31,7 +31,7 @@ public interface I_PA_Goal public static final String Table_Name = "PA_Goal"; /** AD_Table_ID=440 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 440; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_PA_Goal */ public int getAD_Role_ID(); - public I_AD_Role getAD_Role() throws RuntimeException; + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException; /** Column name AD_User_ID */ public static final String COLUMNNAME_AD_User_ID = "AD_User_ID"; @@ -90,7 +90,7 @@ public interface I_PA_Goal */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name ChartType */ public static final String COLUMNNAME_ChartType = "ChartType"; @@ -303,7 +303,7 @@ public interface I_PA_Goal */ public int getPA_ColorSchema_ID(); - public I_PA_ColorSchema getPA_ColorSchema() throws RuntimeException; + public org.compiere.model.I_PA_ColorSchema getPA_ColorSchema() throws RuntimeException; /** Column name PA_Goal_ID */ public static final String COLUMNNAME_PA_Goal_ID = "PA_Goal_ID"; @@ -331,7 +331,16 @@ public interface I_PA_Goal */ public int getPA_GoalParent_ID(); - public I_PA_Goal getPA_GoalParent() throws RuntimeException; + public org.compiere.model.I_PA_Goal getPA_GoalParent() throws RuntimeException; + + /** Column name PA_Goal_UU */ + public static final String COLUMNNAME_PA_Goal_UU = "PA_Goal_UU"; + + /** Set PA_Goal_UU */ + public void setPA_Goal_UU (String PA_Goal_UU); + + /** Get PA_Goal_UU */ + public String getPA_Goal_UU(); /** Column name PA_Measure_ID */ public static final String COLUMNNAME_PA_Measure_ID = "PA_Measure_ID"; @@ -346,7 +355,7 @@ public interface I_PA_Goal */ public int getPA_Measure_ID(); - public I_PA_Measure getPA_Measure() throws RuntimeException; + public org.compiere.model.I_PA_Measure getPA_Measure() throws RuntimeException; /** Column name RelativeWeight */ public static final String COLUMNNAME_RelativeWeight = "RelativeWeight"; diff --git a/org.adempiere.base/src/org/compiere/model/I_PA_GoalRestriction.java b/org.adempiere.base/src/org/compiere/model/I_PA_GoalRestriction.java index 2432f6006f..eb1bc59e93 100644 --- a/org.adempiere.base/src/org/compiere/model/I_PA_GoalRestriction.java +++ b/org.adempiere.base/src/org/compiere/model/I_PA_GoalRestriction.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for PA_GoalRestriction - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PA_GoalRestriction { @@ -31,7 +31,7 @@ public interface I_PA_GoalRestriction public static final String Table_Name = "PA_GoalRestriction"; /** AD_Table_ID=832 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 832; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_PA_GoalRestriction */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_BP_Group_ID */ public static final String COLUMNNAME_C_BP_Group_ID = "C_BP_Group_ID"; @@ -90,7 +90,7 @@ public interface I_PA_GoalRestriction */ public int getC_BP_Group_ID(); - public I_C_BP_Group getC_BP_Group() throws RuntimeException; + public org.compiere.model.I_C_BP_Group getC_BP_Group() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -147,7 +147,7 @@ public interface I_PA_GoalRestriction */ public int getM_Product_Category_ID(); - public I_M_Product_Category getM_Product_Category() throws RuntimeException; + public org.compiere.model.I_M_Product_Category getM_Product_Category() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -162,7 +162,7 @@ public interface I_PA_GoalRestriction */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; @@ -203,7 +203,7 @@ public interface I_PA_GoalRestriction */ public int getPA_Goal_ID(); - public I_PA_Goal getPA_Goal() throws RuntimeException; + public org.compiere.model.I_PA_Goal getPA_Goal() throws RuntimeException; /** Column name PA_GoalRestriction_ID */ public static final String COLUMNNAME_PA_GoalRestriction_ID = "PA_GoalRestriction_ID"; @@ -218,6 +218,15 @@ public interface I_PA_GoalRestriction */ public int getPA_GoalRestriction_ID(); + /** Column name PA_GoalRestriction_UU */ + public static final String COLUMNNAME_PA_GoalRestriction_UU = "PA_GoalRestriction_UU"; + + /** Set PA_GoalRestriction_UU */ + public void setPA_GoalRestriction_UU (String PA_GoalRestriction_UU); + + /** Get PA_GoalRestriction_UU */ + public String getPA_GoalRestriction_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_PA_Hierarchy.java b/org.adempiere.base/src/org/compiere/model/I_PA_Hierarchy.java index f0fa280b49..60d1a800f6 100644 --- a/org.adempiere.base/src/org/compiere/model/I_PA_Hierarchy.java +++ b/org.adempiere.base/src/org/compiere/model/I_PA_Hierarchy.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for PA_Hierarchy - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PA_Hierarchy { @@ -31,7 +31,7 @@ public interface I_PA_Hierarchy public static final String Table_Name = "PA_Hierarchy"; /** AD_Table_ID=821 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 821; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_PA_Hierarchy */ public int getAD_Tree_Account_ID(); - public I_AD_Tree getAD_Tree_Account() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree_Account() throws RuntimeException; /** Column name AD_Tree_Activity_ID */ public static final String COLUMNNAME_AD_Tree_Activity_ID = "AD_Tree_Activity_ID"; @@ -90,7 +90,7 @@ public interface I_PA_Hierarchy */ public int getAD_Tree_Activity_ID(); - public I_AD_Tree getAD_Tree_Activity() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree_Activity() throws RuntimeException; /** Column name AD_Tree_BPartner_ID */ public static final String COLUMNNAME_AD_Tree_BPartner_ID = "AD_Tree_BPartner_ID"; @@ -105,7 +105,7 @@ public interface I_PA_Hierarchy */ public int getAD_Tree_BPartner_ID(); - public I_AD_Tree getAD_Tree_BPartner() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree_BPartner() throws RuntimeException; /** Column name AD_Tree_Campaign_ID */ public static final String COLUMNNAME_AD_Tree_Campaign_ID = "AD_Tree_Campaign_ID"; @@ -120,7 +120,7 @@ public interface I_PA_Hierarchy */ public int getAD_Tree_Campaign_ID(); - public I_AD_Tree getAD_Tree_Campaign() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree_Campaign() throws RuntimeException; /** Column name AD_Tree_Org_ID */ public static final String COLUMNNAME_AD_Tree_Org_ID = "AD_Tree_Org_ID"; @@ -135,7 +135,7 @@ public interface I_PA_Hierarchy */ public int getAD_Tree_Org_ID(); - public I_AD_Tree getAD_Tree_Org() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree_Org() throws RuntimeException; /** Column name AD_Tree_Product_ID */ public static final String COLUMNNAME_AD_Tree_Product_ID = "AD_Tree_Product_ID"; @@ -150,7 +150,7 @@ public interface I_PA_Hierarchy */ public int getAD_Tree_Product_ID(); - public I_AD_Tree getAD_Tree_Product() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree_Product() throws RuntimeException; /** Column name AD_Tree_Project_ID */ public static final String COLUMNNAME_AD_Tree_Project_ID = "AD_Tree_Project_ID"; @@ -165,7 +165,7 @@ public interface I_PA_Hierarchy */ public int getAD_Tree_Project_ID(); - public I_AD_Tree getAD_Tree_Project() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree_Project() throws RuntimeException; /** Column name AD_Tree_SalesRegion_ID */ public static final String COLUMNNAME_AD_Tree_SalesRegion_ID = "AD_Tree_SalesRegion_ID"; @@ -180,7 +180,7 @@ public interface I_PA_Hierarchy */ public int getAD_Tree_SalesRegion_ID(); - public I_AD_Tree getAD_Tree_SalesRegion() throws RuntimeException; + public org.compiere.model.I_AD_Tree getAD_Tree_SalesRegion() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -263,6 +263,15 @@ public interface I_PA_Hierarchy */ public int getPA_Hierarchy_ID(); + /** Column name PA_Hierarchy_UU */ + public static final String COLUMNNAME_PA_Hierarchy_UU = "PA_Hierarchy_UU"; + + /** Set PA_Hierarchy_UU */ + public void setPA_Hierarchy_UU (String PA_Hierarchy_UU); + + /** Get PA_Hierarchy_UU */ + public String getPA_Hierarchy_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_PA_Measure.java b/org.adempiere.base/src/org/compiere/model/I_PA_Measure.java index 850897a8c1..8bca9e1632 100644 --- a/org.adempiere.base/src/org/compiere/model/I_PA_Measure.java +++ b/org.adempiere.base/src/org/compiere/model/I_PA_Measure.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for PA_Measure - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PA_Measure { @@ -31,7 +31,7 @@ public interface I_PA_Measure public static final String Table_Name = "PA_Measure"; /** AD_Table_ID=441 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 441; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_PA_Measure */ public int getC_ProjectType_ID(); - public I_C_ProjectType getC_ProjectType() throws RuntimeException; + public org.compiere.model.I_C_ProjectType getC_ProjectType() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -210,7 +210,7 @@ public interface I_PA_Measure */ public int getPA_Benchmark_ID(); - public I_PA_Benchmark getPA_Benchmark() throws RuntimeException; + public org.compiere.model.I_PA_Benchmark getPA_Benchmark() throws RuntimeException; /** Column name PA_Hierarchy_ID */ public static final String COLUMNNAME_PA_Hierarchy_ID = "PA_Hierarchy_ID"; @@ -225,7 +225,7 @@ public interface I_PA_Measure */ public int getPA_Hierarchy_ID(); - public I_PA_Hierarchy getPA_Hierarchy() throws RuntimeException; + public org.compiere.model.I_PA_Hierarchy getPA_Hierarchy() throws RuntimeException; /** Column name PA_MeasureCalc_ID */ public static final String COLUMNNAME_PA_MeasureCalc_ID = "PA_MeasureCalc_ID"; @@ -240,7 +240,7 @@ public interface I_PA_Measure */ public int getPA_MeasureCalc_ID(); - public I_PA_MeasureCalc getPA_MeasureCalc() throws RuntimeException; + public org.compiere.model.I_PA_MeasureCalc getPA_MeasureCalc() throws RuntimeException; /** Column name PA_Measure_ID */ public static final String COLUMNNAME_PA_Measure_ID = "PA_Measure_ID"; @@ -255,6 +255,15 @@ public interface I_PA_Measure */ public int getPA_Measure_ID(); + /** Column name PA_Measure_UU */ + public static final String COLUMNNAME_PA_Measure_UU = "PA_Measure_UU"; + + /** Set PA_Measure_UU */ + public void setPA_Measure_UU (String PA_Measure_UU); + + /** Get PA_Measure_UU */ + public String getPA_Measure_UU(); + /** Column name PA_Ratio_ID */ public static final String COLUMNNAME_PA_Ratio_ID = "PA_Ratio_ID"; @@ -268,7 +277,7 @@ public interface I_PA_Measure */ public int getPA_Ratio_ID(); - public I_PA_Ratio getPA_Ratio() throws RuntimeException; + public org.compiere.model.I_PA_Ratio getPA_Ratio() throws RuntimeException; /** Column name R_RequestType_ID */ public static final String COLUMNNAME_R_RequestType_ID = "R_RequestType_ID"; @@ -283,7 +292,7 @@ public interface I_PA_Measure */ public int getR_RequestType_ID(); - public I_R_RequestType getR_RequestType() throws RuntimeException; + public org.compiere.model.I_R_RequestType getR_RequestType() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_PA_MeasureCalc.java b/org.adempiere.base/src/org/compiere/model/I_PA_MeasureCalc.java index afdc12d296..55b894ba0e 100644 --- a/org.adempiere.base/src/org/compiere/model/I_PA_MeasureCalc.java +++ b/org.adempiere.base/src/org/compiere/model/I_PA_MeasureCalc.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for PA_MeasureCalc - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PA_MeasureCalc { @@ -31,7 +31,7 @@ public interface I_PA_MeasureCalc public static final String Table_Name = "PA_MeasureCalc"; /** AD_Table_ID=442 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 442; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_PA_MeasureCalc */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name BPartnerColumn */ public static final String COLUMNNAME_BPartnerColumn = "BPartnerColumn"; @@ -212,6 +212,15 @@ public interface I_PA_MeasureCalc */ public int getPA_MeasureCalc_ID(); + /** Column name PA_MeasureCalc_UU */ + public static final String COLUMNNAME_PA_MeasureCalc_UU = "PA_MeasureCalc_UU"; + + /** Set PA_MeasureCalc_UU */ + public void setPA_MeasureCalc_UU (String PA_MeasureCalc_UU); + + /** Get PA_MeasureCalc_UU */ + public String getPA_MeasureCalc_UU(); + /** Column name ProductColumn */ public static final String COLUMNNAME_ProductColumn = "ProductColumn"; diff --git a/org.adempiere.base/src/org/compiere/model/I_PA_Ratio.java b/org.adempiere.base/src/org/compiere/model/I_PA_Ratio.java index 563a0e87b9..09cae6faf7 100644 --- a/org.adempiere.base/src/org/compiere/model/I_PA_Ratio.java +++ b/org.adempiere.base/src/org/compiere/model/I_PA_Ratio.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for PA_Ratio - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PA_Ratio { @@ -31,7 +31,7 @@ public interface I_PA_Ratio public static final String Table_Name = "PA_Ratio"; /** AD_Table_ID=835 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 835; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_PA_Ratio */ public int getC_AcctSchema_ID(); - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -158,6 +158,15 @@ public interface I_PA_Ratio */ public int getPA_Ratio_ID(); + /** Column name PA_Ratio_UU */ + public static final String COLUMNNAME_PA_Ratio_UU = "PA_Ratio_UU"; + + /** Set PA_Ratio_UU */ + public void setPA_Ratio_UU (String PA_Ratio_UU); + + /** Get PA_Ratio_UU */ + public String getPA_Ratio_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_PA_RatioElement.java b/org.adempiere.base/src/org/compiere/model/I_PA_RatioElement.java index 7aaa204735..20a22052cc 100644 --- a/org.adempiere.base/src/org/compiere/model/I_PA_RatioElement.java +++ b/org.adempiere.base/src/org/compiere/model/I_PA_RatioElement.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for PA_RatioElement - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PA_RatioElement { @@ -31,7 +31,7 @@ public interface I_PA_RatioElement public static final String Table_Name = "PA_RatioElement"; /** AD_Table_ID=836 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 836; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -54,7 +54,7 @@ public interface I_PA_RatioElement */ public int getAccount_ID(); - public I_C_ElementValue getAccount() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getAccount() throws RuntimeException; /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; @@ -158,7 +158,7 @@ public interface I_PA_RatioElement */ public int getPA_MeasureCalc_ID(); - public I_PA_MeasureCalc getPA_MeasureCalc() throws RuntimeException; + public org.compiere.model.I_PA_MeasureCalc getPA_MeasureCalc() throws RuntimeException; /** Column name PA_RatioElement_ID */ public static final String COLUMNNAME_PA_RatioElement_ID = "PA_RatioElement_ID"; @@ -173,6 +173,15 @@ public interface I_PA_RatioElement */ public int getPA_RatioElement_ID(); + /** Column name PA_RatioElement_UU */ + public static final String COLUMNNAME_PA_RatioElement_UU = "PA_RatioElement_UU"; + + /** Set PA_RatioElement_UU */ + public void setPA_RatioElement_UU (String PA_RatioElement_UU); + + /** Get PA_RatioElement_UU */ + public String getPA_RatioElement_UU(); + /** Column name PA_Ratio_ID */ public static final String COLUMNNAME_PA_Ratio_ID = "PA_Ratio_ID"; @@ -186,7 +195,7 @@ public interface I_PA_RatioElement */ public int getPA_Ratio_ID(); - public I_PA_Ratio getPA_Ratio() throws RuntimeException; + public org.compiere.model.I_PA_Ratio getPA_Ratio() throws RuntimeException; /** Column name PA_RatioUsed_ID */ public static final String COLUMNNAME_PA_RatioUsed_ID = "PA_RatioUsed_ID"; @@ -201,7 +210,7 @@ public interface I_PA_RatioElement */ public int getPA_RatioUsed_ID(); - public I_PA_Ratio getPA_RatioUsed() throws RuntimeException; + public org.compiere.model.I_PA_Ratio getPA_RatioUsed() throws RuntimeException; /** Column name PostingType */ public static final String COLUMNNAME_PostingType = "PostingType"; diff --git a/org.adempiere.base/src/org/compiere/model/I_PA_Report.java b/org.adempiere.base/src/org/compiere/model/I_PA_Report.java index c78c4e860b..5e85c34d42 100644 --- a/org.adempiere.base/src/org/compiere/model/I_PA_Report.java +++ b/org.adempiere.base/src/org/compiere/model/I_PA_Report.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for PA_Report - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PA_Report { @@ -31,7 +31,7 @@ public interface I_PA_Report public static final String Table_Name = "PA_Report"; /** AD_Table_ID=445 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 445; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_PA_Report */ public int getAD_PrintFormat_ID(); - public I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException; + public org.compiere.model.I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException; /** Column name C_AcctSchema_ID */ public static final String COLUMNNAME_C_AcctSchema_ID = "C_AcctSchema_ID"; @@ -90,7 +90,7 @@ public interface I_PA_Report */ public int getC_AcctSchema_ID(); - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException; /** Column name C_Calendar_ID */ public static final String COLUMNNAME_C_Calendar_ID = "C_Calendar_ID"; @@ -105,7 +105,7 @@ public interface I_PA_Report */ public int getC_Calendar_ID(); - public I_C_Calendar getC_Calendar() throws RuntimeException; + public org.compiere.model.I_C_Calendar getC_Calendar() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -162,7 +162,7 @@ public interface I_PA_Report */ public int getJasperProcess_ID(); - public I_AD_Process getJasperProcess() throws RuntimeException; + public org.compiere.model.I_AD_Process getJasperProcess() throws RuntimeException; /** Column name JasperProcessing */ public static final String COLUMNNAME_JasperProcessing = "JasperProcessing"; @@ -225,7 +225,7 @@ public interface I_PA_Report */ public int getPA_ReportColumnSet_ID(); - public I_PA_ReportColumnSet getPA_ReportColumnSet() throws RuntimeException; + public org.compiere.model.I_PA_ReportColumnSet getPA_ReportColumnSet() throws RuntimeException; /** Column name PA_ReportCube_ID */ public static final String COLUMNNAME_PA_ReportCube_ID = "PA_ReportCube_ID"; @@ -240,7 +240,7 @@ public interface I_PA_Report */ public int getPA_ReportCube_ID(); - public I_PA_ReportCube getPA_ReportCube() throws RuntimeException; + public org.compiere.model.I_PA_ReportCube getPA_ReportCube() throws RuntimeException; /** Column name PA_Report_ID */ public static final String COLUMNNAME_PA_Report_ID = "PA_Report_ID"; @@ -264,7 +264,16 @@ public interface I_PA_Report /** Get Report Line Set */ public int getPA_ReportLineSet_ID(); - public I_PA_ReportLineSet getPA_ReportLineSet() throws RuntimeException; + public org.compiere.model.I_PA_ReportLineSet getPA_ReportLineSet() throws RuntimeException; + + /** Column name PA_Report_UU */ + public static final String COLUMNNAME_PA_Report_UU = "PA_Report_UU"; + + /** Set PA_Report_UU */ + public void setPA_Report_UU (String PA_Report_UU); + + /** Get PA_Report_UU */ + public String getPA_Report_UU(); /** Column name Processing */ public static final String COLUMNNAME_Processing = "Processing"; diff --git a/org.adempiere.base/src/org/compiere/model/I_PA_ReportColumn.java b/org.adempiere.base/src/org/compiere/model/I_PA_ReportColumn.java index df13313a41..fc3d9de795 100644 --- a/org.adempiere.base/src/org/compiere/model/I_PA_ReportColumn.java +++ b/org.adempiere.base/src/org/compiere/model/I_PA_ReportColumn.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for PA_ReportColumn - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PA_ReportColumn { @@ -31,7 +31,7 @@ public interface I_PA_ReportColumn public static final String Table_Name = "PA_ReportColumn"; /** AD_Table_ID=446 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 446; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_PA_ReportColumn */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name CalculationType */ public static final String COLUMNNAME_CalculationType = "CalculationType"; @@ -112,7 +112,7 @@ public interface I_PA_ReportColumn */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -127,7 +127,7 @@ public interface I_PA_ReportColumn */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -142,7 +142,7 @@ public interface I_PA_ReportColumn */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name C_ElementValue_ID */ public static final String COLUMNNAME_C_ElementValue_ID = "C_ElementValue_ID"; @@ -157,7 +157,7 @@ public interface I_PA_ReportColumn */ public int getC_ElementValue_ID(); - public I_C_ElementValue getC_ElementValue() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getC_ElementValue() throws RuntimeException; /** Column name C_Location_ID */ public static final String COLUMNNAME_C_Location_ID = "C_Location_ID"; @@ -196,7 +196,7 @@ public interface I_PA_ReportColumn */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -227,7 +227,7 @@ public interface I_PA_ReportColumn */ public int getC_SalesRegion_ID(); - public I_C_SalesRegion getC_SalesRegion() throws RuntimeException; + public org.compiere.model.I_C_SalesRegion getC_SalesRegion() throws RuntimeException; /** Column name CurrencyType */ public static final String COLUMNNAME_CurrencyType = "CurrencyType"; @@ -303,7 +303,7 @@ public interface I_PA_ReportColumn */ public int getGL_Budget_ID(); - public I_GL_Budget getGL_Budget() throws RuntimeException; + public org.compiere.model.I_GL_Budget getGL_Budget() throws RuntimeException; /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; @@ -513,7 +513,7 @@ public interface I_PA_ReportColumn */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; @@ -541,7 +541,7 @@ public interface I_PA_ReportColumn */ public int getOper_1_ID(); - public I_PA_ReportColumn getOper_1() throws RuntimeException; + public org.compiere.model.I_PA_ReportColumn getOper_1() throws RuntimeException; /** Column name Oper_2_ID */ public static final String COLUMNNAME_Oper_2_ID = "Oper_2_ID"; @@ -556,7 +556,7 @@ public interface I_PA_ReportColumn */ public int getOper_2_ID(); - public I_PA_ReportColumn getOper_2() throws RuntimeException; + public org.compiere.model.I_PA_ReportColumn getOper_2() throws RuntimeException; /** Column name Org_ID */ public static final String COLUMNNAME_Org_ID = "Org_ID"; @@ -623,7 +623,16 @@ public interface I_PA_ReportColumn */ public int getPA_ReportColumnSet_ID(); - public I_PA_ReportColumnSet getPA_ReportColumnSet() throws RuntimeException; + public org.compiere.model.I_PA_ReportColumnSet getPA_ReportColumnSet() throws RuntimeException; + + /** Column name PA_ReportColumn_UU */ + public static final String COLUMNNAME_PA_ReportColumn_UU = "PA_ReportColumn_UU"; + + /** Set PA_ReportColumn_UU */ + public void setPA_ReportColumn_UU (String PA_ReportColumn_UU); + + /** Get PA_ReportColumn_UU */ + public String getPA_ReportColumn_UU(); /** Column name PostingType */ public static final String COLUMNNAME_PostingType = "PostingType"; diff --git a/org.adempiere.base/src/org/compiere/model/I_PA_ReportColumnSet.java b/org.adempiere.base/src/org/compiere/model/I_PA_ReportColumnSet.java index cdefa313aa..8e58cb7e26 100644 --- a/org.adempiere.base/src/org/compiere/model/I_PA_ReportColumnSet.java +++ b/org.adempiere.base/src/org/compiere/model/I_PA_ReportColumnSet.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for PA_ReportColumnSet - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PA_ReportColumnSet { @@ -31,7 +31,7 @@ public interface I_PA_ReportColumnSet public static final String Table_Name = "PA_ReportColumnSet"; /** AD_Table_ID=447 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 447; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -130,6 +130,15 @@ public interface I_PA_ReportColumnSet */ public int getPA_ReportColumnSet_ID(); + /** Column name PA_ReportColumnSet_UU */ + public static final String COLUMNNAME_PA_ReportColumnSet_UU = "PA_ReportColumnSet_UU"; + + /** Set PA_ReportColumnSet_UU */ + public void setPA_ReportColumnSet_UU (String PA_ReportColumnSet_UU); + + /** Get PA_ReportColumnSet_UU */ + public String getPA_ReportColumnSet_UU(); + /** Column name Processing */ public static final String COLUMNNAME_Processing = "Processing"; diff --git a/org.adempiere.base/src/org/compiere/model/I_PA_ReportCube.java b/org.adempiere.base/src/org/compiere/model/I_PA_ReportCube.java index 4527d38615..0987000175 100644 --- a/org.adempiere.base/src/org/compiere/model/I_PA_ReportCube.java +++ b/org.adempiere.base/src/org/compiere/model/I_PA_ReportCube.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for PA_ReportCube - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PA_ReportCube { @@ -31,7 +31,7 @@ public interface I_PA_ReportCube public static final String Table_Name = "PA_ReportCube"; /** AD_Table_ID=53202 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53202; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_PA_ReportCube */ public int getC_Calendar_ID(); - public I_C_Calendar getC_Calendar() throws RuntimeException; + public org.compiere.model.I_C_Calendar getC_Calendar() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -379,6 +379,15 @@ public interface I_PA_ReportCube */ public int getPA_ReportCube_ID(); + /** Column name PA_ReportCube_UU */ + public static final String COLUMNNAME_PA_ReportCube_UU = "PA_ReportCube_UU"; + + /** Set PA_ReportCube_UU */ + public void setPA_ReportCube_UU (String PA_ReportCube_UU); + + /** Get PA_ReportCube_UU */ + public String getPA_ReportCube_UU(); + /** Column name Processing */ public static final String COLUMNNAME_Processing = "Processing"; diff --git a/org.adempiere.base/src/org/compiere/model/I_PA_ReportLine.java b/org.adempiere.base/src/org/compiere/model/I_PA_ReportLine.java index 26a87ee430..44e0cf41a0 100644 --- a/org.adempiere.base/src/org/compiere/model/I_PA_ReportLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_PA_ReportLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for PA_ReportLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PA_ReportLine { @@ -31,7 +31,7 @@ public interface I_PA_ReportLine public static final String Table_Name = "PA_ReportLine"; /** AD_Table_ID=448 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 448; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -113,7 +113,7 @@ public interface I_PA_ReportLine */ public int getGL_Budget_ID(); - public I_GL_Budget getGL_Budget() throws RuntimeException; + public org.compiere.model.I_GL_Budget getGL_Budget() throws RuntimeException; /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; @@ -176,7 +176,7 @@ public interface I_PA_ReportLine */ public int getOper_1_ID(); - public I_PA_ReportLine getOper_1() throws RuntimeException; + public org.compiere.model.I_PA_ReportLine getOper_1() throws RuntimeException; /** Column name Oper_2_ID */ public static final String COLUMNNAME_Oper_2_ID = "Oper_2_ID"; @@ -191,7 +191,7 @@ public interface I_PA_ReportLine */ public int getOper_2_ID(); - public I_PA_ReportLine getOper_2() throws RuntimeException; + public org.compiere.model.I_PA_ReportLine getOper_2() throws RuntimeException; /** Column name PAAmountType */ public static final String COLUMNNAME_PAAmountType = "PAAmountType"; @@ -237,7 +237,16 @@ public interface I_PA_ReportLine /** Get Report Line Set */ public int getPA_ReportLineSet_ID(); - public I_PA_ReportLineSet getPA_ReportLineSet() throws RuntimeException; + public org.compiere.model.I_PA_ReportLineSet getPA_ReportLineSet() throws RuntimeException; + + /** Column name PA_ReportLine_UU */ + public static final String COLUMNNAME_PA_ReportLine_UU = "PA_ReportLine_UU"; + + /** Set PA_ReportLine_UU */ + public void setPA_ReportLine_UU (String PA_ReportLine_UU); + + /** Get PA_ReportLine_UU */ + public String getPA_ReportLine_UU(); /** Column name PostingType */ public static final String COLUMNNAME_PostingType = "PostingType"; diff --git a/org.adempiere.base/src/org/compiere/model/I_PA_ReportLineSet.java b/org.adempiere.base/src/org/compiere/model/I_PA_ReportLineSet.java index f137105e3e..1ce2c1c154 100644 --- a/org.adempiere.base/src/org/compiere/model/I_PA_ReportLineSet.java +++ b/org.adempiere.base/src/org/compiere/model/I_PA_ReportLineSet.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for PA_ReportLineSet - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PA_ReportLineSet { @@ -31,7 +31,7 @@ public interface I_PA_ReportLineSet public static final String Table_Name = "PA_ReportLineSet"; /** AD_Table_ID=449 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 449; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -126,6 +126,15 @@ public interface I_PA_ReportLineSet /** Get Report Line Set */ public int getPA_ReportLineSet_ID(); + /** Column name PA_ReportLineSet_UU */ + public static final String COLUMNNAME_PA_ReportLineSet_UU = "PA_ReportLineSet_UU"; + + /** Set PA_ReportLineSet_UU */ + public void setPA_ReportLineSet_UU (String PA_ReportLineSet_UU); + + /** Get PA_ReportLineSet_UU */ + public String getPA_ReportLineSet_UU(); + /** Column name Processing */ public static final String COLUMNNAME_Processing = "Processing"; diff --git a/org.adempiere.base/src/org/compiere/model/I_PA_ReportSource.java b/org.adempiere.base/src/org/compiere/model/I_PA_ReportSource.java index f15c3257aa..cf707f0ae1 100644 --- a/org.adempiere.base/src/org/compiere/model/I_PA_ReportSource.java +++ b/org.adempiere.base/src/org/compiere/model/I_PA_ReportSource.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for PA_ReportSource - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PA_ReportSource { @@ -31,7 +31,7 @@ public interface I_PA_ReportSource public static final String Table_Name = "PA_ReportSource"; /** AD_Table_ID=450 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 450; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_PA_ReportSource */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -103,7 +103,7 @@ public interface I_PA_ReportSource */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -118,7 +118,7 @@ public interface I_PA_ReportSource */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_ElementValue_ID */ public static final String COLUMNNAME_C_ElementValue_ID = "C_ElementValue_ID"; @@ -133,7 +133,7 @@ public interface I_PA_ReportSource */ public int getC_ElementValue_ID(); - public I_C_ElementValue getC_ElementValue() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getC_ElementValue() throws RuntimeException; /** Column name C_Location_ID */ public static final String COLUMNNAME_C_Location_ID = "C_Location_ID"; @@ -163,7 +163,7 @@ public interface I_PA_ReportSource */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -194,7 +194,7 @@ public interface I_PA_ReportSource */ public int getC_SalesRegion_ID(); - public I_C_SalesRegion getC_SalesRegion() throws RuntimeException; + public org.compiere.model.I_C_SalesRegion getC_SalesRegion() throws RuntimeException; /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; @@ -404,7 +404,7 @@ public interface I_PA_ReportSource */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Org_ID */ public static final String COLUMNNAME_Org_ID = "Org_ID"; @@ -428,7 +428,7 @@ public interface I_PA_ReportSource /** Get Report Line */ public int getPA_ReportLine_ID(); - public I_PA_ReportLine getPA_ReportLine() throws RuntimeException; + public org.compiere.model.I_PA_ReportLine getPA_ReportLine() throws RuntimeException; /** Column name PA_ReportSource_ID */ public static final String COLUMNNAME_PA_ReportSource_ID = "PA_ReportSource_ID"; @@ -443,6 +443,15 @@ public interface I_PA_ReportSource */ public int getPA_ReportSource_ID(); + /** Column name PA_ReportSource_UU */ + public static final String COLUMNNAME_PA_ReportSource_UU = "PA_ReportSource_UU"; + + /** Set PA_ReportSource_UU */ + public void setPA_ReportSource_UU (String PA_ReportSource_UU); + + /** Get PA_ReportSource_UU */ + public String getPA_ReportSource_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_PA_SLA_Criteria.java b/org.adempiere.base/src/org/compiere/model/I_PA_SLA_Criteria.java index 878b0fab17..d727702470 100644 --- a/org.adempiere.base/src/org/compiere/model/I_PA_SLA_Criteria.java +++ b/org.adempiere.base/src/org/compiere/model/I_PA_SLA_Criteria.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for PA_SLA_Criteria - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PA_SLA_Criteria { @@ -31,7 +31,7 @@ public interface I_PA_SLA_Criteria public static final String Table_Name = "PA_SLA_Criteria"; /** AD_Table_ID=744 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 744; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -169,6 +169,15 @@ public interface I_PA_SLA_Criteria */ public int getPA_SLA_Criteria_ID(); + /** Column name PA_SLA_Criteria_UU */ + public static final String COLUMNNAME_PA_SLA_Criteria_UU = "PA_SLA_Criteria_UU"; + + /** Set PA_SLA_Criteria_UU */ + public void setPA_SLA_Criteria_UU (String PA_SLA_Criteria_UU); + + /** Get PA_SLA_Criteria_UU */ + public String getPA_SLA_Criteria_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_PA_SLA_Goal.java b/org.adempiere.base/src/org/compiere/model/I_PA_SLA_Goal.java index b49b8c0aaf..87117cc9cd 100644 --- a/org.adempiere.base/src/org/compiere/model/I_PA_SLA_Goal.java +++ b/org.adempiere.base/src/org/compiere/model/I_PA_SLA_Goal.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for PA_SLA_Goal - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PA_SLA_Goal { @@ -31,7 +31,7 @@ public interface I_PA_SLA_Goal public static final String Table_Name = "PA_SLA_Goal"; /** AD_Table_ID=745 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 745; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_PA_SLA_Goal */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -197,7 +197,7 @@ public interface I_PA_SLA_Goal */ public int getPA_SLA_Criteria_ID(); - public I_PA_SLA_Criteria getPA_SLA_Criteria() throws RuntimeException; + public org.compiere.model.I_PA_SLA_Criteria getPA_SLA_Criteria() throws RuntimeException; /** Column name PA_SLA_Goal_ID */ public static final String COLUMNNAME_PA_SLA_Goal_ID = "PA_SLA_Goal_ID"; @@ -212,6 +212,15 @@ public interface I_PA_SLA_Goal */ public int getPA_SLA_Goal_ID(); + /** Column name PA_SLA_Goal_UU */ + public static final String COLUMNNAME_PA_SLA_Goal_UU = "PA_SLA_Goal_UU"; + + /** Set PA_SLA_Goal_UU */ + public void setPA_SLA_Goal_UU (String PA_SLA_Goal_UU); + + /** Get PA_SLA_Goal_UU */ + public String getPA_SLA_Goal_UU(); + /** Column name Processed */ public static final String COLUMNNAME_Processed = "Processed"; diff --git a/org.adempiere.base/src/org/compiere/model/I_PA_SLA_Measure.java b/org.adempiere.base/src/org/compiere/model/I_PA_SLA_Measure.java index 923a7bdbb9..1c33ae733f 100644 --- a/org.adempiere.base/src/org/compiere/model/I_PA_SLA_Measure.java +++ b/org.adempiere.base/src/org/compiere/model/I_PA_SLA_Measure.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for PA_SLA_Measure - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PA_SLA_Measure { @@ -31,7 +31,7 @@ public interface I_PA_SLA_Measure public static final String Table_Name = "PA_SLA_Measure"; /** AD_Table_ID=743 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 743; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_PA_SLA_Measure */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -158,7 +158,7 @@ public interface I_PA_SLA_Measure */ public int getPA_SLA_Goal_ID(); - public I_PA_SLA_Goal getPA_SLA_Goal() throws RuntimeException; + public org.compiere.model.I_PA_SLA_Goal getPA_SLA_Goal() throws RuntimeException; /** Column name PA_SLA_Measure_ID */ public static final String COLUMNNAME_PA_SLA_Measure_ID = "PA_SLA_Measure_ID"; @@ -173,6 +173,15 @@ public interface I_PA_SLA_Measure */ public int getPA_SLA_Measure_ID(); + /** Column name PA_SLA_Measure_UU */ + public static final String COLUMNNAME_PA_SLA_Measure_UU = "PA_SLA_Measure_UU"; + + /** Set PA_SLA_Measure_UU */ + public void setPA_SLA_Measure_UU (String PA_SLA_Measure_UU); + + /** Get PA_SLA_Measure_UU */ + public String getPA_SLA_Measure_UU(); + /** Column name Processed */ public static final String COLUMNNAME_Processed = "Processed"; diff --git a/org.adempiere.base/src/org/compiere/model/I_RV_BPartner.java b/org.adempiere.base/src/org/compiere/model/I_RV_BPartner.java index ea13b2d9cd..9114f84d44 100644 --- a/org.adempiere.base/src/org/compiere/model/I_RV_BPartner.java +++ b/org.adempiere.base/src/org/compiere/model/I_RV_BPartner.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for RV_BPartner - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_RV_BPartner { @@ -1276,12 +1276,12 @@ public interface I_RV_BPartner public static final String COLUMNNAME_URL = "URL"; /** Set URL. - * Full URL address - e.g. http://www.adempiere.org + * Full URL address - e.g. http://www.idempiere.org */ public void setURL (String URL); /** Get URL. - * Full URL address - e.g. http://www.adempiere.org + * Full URL address - e.g. http://www.idempiere.org */ public String getURL(); diff --git a/org.adempiere.base/src/org/compiere/model/I_RV_WarehousePrice.java b/org.adempiere.base/src/org/compiere/model/I_RV_WarehousePrice.java index 27f989cc83..f426e6d57f 100644 --- a/org.adempiere.base/src/org/compiere/model/I_RV_WarehousePrice.java +++ b/org.adempiere.base/src/org/compiere/model/I_RV_WarehousePrice.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for RV_WarehousePrice - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_RV_WarehousePrice { @@ -31,7 +31,7 @@ public interface I_RV_WarehousePrice public static final String Table_Name = "RV_WarehousePrice"; /** AD_Table_ID=639 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 639; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -91,7 +91,7 @@ public interface I_RV_WarehousePrice */ public int getC_UOM_ID(); - public I_C_UOM getC_UOM() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException; /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; @@ -145,7 +145,7 @@ public interface I_RV_WarehousePrice */ public int getM_PriceList_Version_ID(); - public I_M_PriceList_Version getM_PriceList_Version() throws RuntimeException; + public org.compiere.model.I_M_PriceList_Version getM_PriceList_Version() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -160,7 +160,7 @@ public interface I_RV_WarehousePrice */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name M_Warehouse_ID */ public static final String COLUMNNAME_M_Warehouse_ID = "M_Warehouse_ID"; @@ -175,7 +175,7 @@ public interface I_RV_WarehousePrice */ public int getM_Warehouse_ID(); - public I_M_Warehouse getM_Warehouse() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/compiere/model/I_R_Category.java b/org.adempiere.base/src/org/compiere/model/I_R_Category.java index d17135795f..904999deaa 100644 --- a/org.adempiere.base/src/org/compiere/model/I_R_Category.java +++ b/org.adempiere.base/src/org/compiere/model/I_R_Category.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for R_Category - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_R_Category { @@ -31,7 +31,7 @@ public interface I_R_Category public static final String Table_Name = "R_Category"; /** AD_Table_ID=772 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 772; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -130,7 +130,7 @@ public interface I_R_Category */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; @@ -158,6 +158,15 @@ public interface I_R_Category */ public int getR_Category_ID(); + /** Column name R_Category_UU */ + public static final String COLUMNNAME_R_Category_UU = "R_Category_UU"; + + /** Set R_Category_UU */ + public void setR_Category_UU (String R_Category_UU); + + /** Get R_Category_UU */ + public String getR_Category_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_R_CategoryUpdates.java b/org.adempiere.base/src/org/compiere/model/I_R_CategoryUpdates.java index 608a9d7715..75cac51276 100644 --- a/org.adempiere.base/src/org/compiere/model/I_R_CategoryUpdates.java +++ b/org.adempiere.base/src/org/compiere/model/I_R_CategoryUpdates.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for R_CategoryUpdates - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_R_CategoryUpdates { @@ -31,7 +31,7 @@ public interface I_R_CategoryUpdates public static final String Table_Name = "R_CategoryUpdates"; /** AD_Table_ID=785 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 785; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_R_CategoryUpdates */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -132,7 +132,16 @@ public interface I_R_CategoryUpdates */ public int getR_Category_ID(); - public I_R_Category getR_Category() throws RuntimeException; + public org.compiere.model.I_R_Category getR_Category() throws RuntimeException; + + /** Column name R_CategoryUpdates_UU */ + public static final String COLUMNNAME_R_CategoryUpdates_UU = "R_CategoryUpdates_UU"; + + /** Set R_CategoryUpdates_UU */ + public void setR_CategoryUpdates_UU (String R_CategoryUpdates_UU); + + /** Get R_CategoryUpdates_UU */ + public String getR_CategoryUpdates_UU(); /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_R_ContactInterest.java b/org.adempiere.base/src/org/compiere/model/I_R_ContactInterest.java index 9659ec5afb..e9fb7b8086 100644 --- a/org.adempiere.base/src/org/compiere/model/I_R_ContactInterest.java +++ b/org.adempiere.base/src/org/compiere/model/I_R_ContactInterest.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for R_ContactInterest - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_R_ContactInterest { @@ -31,7 +31,7 @@ public interface I_R_ContactInterest public static final String Table_Name = "R_ContactInterest"; /** AD_Table_ID=528 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 528; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_R_ContactInterest */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -119,6 +119,15 @@ public interface I_R_ContactInterest */ public Timestamp getOptOutDate(); + /** Column name R_ContactInterest_UU */ + public static final String COLUMNNAME_R_ContactInterest_UU = "R_ContactInterest_UU"; + + /** Set R_ContactInterest_UU */ + public void setR_ContactInterest_UU (String R_ContactInterest_UU); + + /** Get R_ContactInterest_UU */ + public String getR_ContactInterest_UU(); + /** Column name R_InterestArea_ID */ public static final String COLUMNNAME_R_InterestArea_ID = "R_InterestArea_ID"; @@ -132,7 +141,7 @@ public interface I_R_ContactInterest */ public int getR_InterestArea_ID(); - public I_R_InterestArea getR_InterestArea() throws RuntimeException; + public org.compiere.model.I_R_InterestArea getR_InterestArea() throws RuntimeException; /** Column name SubscribeDate */ public static final String COLUMNNAME_SubscribeDate = "SubscribeDate"; diff --git a/org.adempiere.base/src/org/compiere/model/I_R_Group.java b/org.adempiere.base/src/org/compiere/model/I_R_Group.java index fb9fbc6a3e..c9666d62dd 100644 --- a/org.adempiere.base/src/org/compiere/model/I_R_Group.java +++ b/org.adempiere.base/src/org/compiere/model/I_R_Group.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for R_Group - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_R_Group { @@ -31,7 +31,7 @@ public interface I_R_Group public static final String Table_Name = "R_Group"; /** AD_Table_ID=773 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 773; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -130,7 +130,7 @@ public interface I_R_Group */ public int getM_ChangeNotice_ID(); - public I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException; + public org.compiere.model.I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; @@ -173,6 +173,15 @@ public interface I_R_Group */ public int getR_Group_ID(); + /** Column name R_Group_UU */ + public static final String COLUMNNAME_R_Group_UU = "R_Group_UU"; + + /** Set R_Group_UU */ + public void setR_Group_UU (String R_Group_UU); + + /** Get R_Group_UU */ + public String getR_Group_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_R_GroupUpdates.java b/org.adempiere.base/src/org/compiere/model/I_R_GroupUpdates.java index e723f27247..4f72513134 100644 --- a/org.adempiere.base/src/org/compiere/model/I_R_GroupUpdates.java +++ b/org.adempiere.base/src/org/compiere/model/I_R_GroupUpdates.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for R_GroupUpdates - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_R_GroupUpdates { @@ -31,7 +31,7 @@ public interface I_R_GroupUpdates public static final String Table_Name = "R_GroupUpdates"; /** AD_Table_ID=786 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 786; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_R_GroupUpdates */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -132,7 +132,16 @@ public interface I_R_GroupUpdates */ public int getR_Group_ID(); - public I_R_Group getR_Group() throws RuntimeException; + public org.compiere.model.I_R_Group getR_Group() throws RuntimeException; + + /** Column name R_GroupUpdates_UU */ + public static final String COLUMNNAME_R_GroupUpdates_UU = "R_GroupUpdates_UU"; + + /** Set R_GroupUpdates_UU */ + public void setR_GroupUpdates_UU (String R_GroupUpdates_UU); + + /** Get R_GroupUpdates_UU */ + public String getR_GroupUpdates_UU(); /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_R_InterestArea.java b/org.adempiere.base/src/org/compiere/model/I_R_InterestArea.java index 127b200df0..4f6b5df00e 100644 --- a/org.adempiere.base/src/org/compiere/model/I_R_InterestArea.java +++ b/org.adempiere.base/src/org/compiere/model/I_R_InterestArea.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for R_InterestArea - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_R_InterestArea { @@ -31,7 +31,7 @@ public interface I_R_InterestArea public static final String Table_Name = "R_InterestArea"; /** AD_Table_ID=530 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 530; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -143,6 +143,15 @@ public interface I_R_InterestArea */ public int getR_InterestArea_ID(); + /** Column name R_InterestArea_UU */ + public static final String COLUMNNAME_R_InterestArea_UU = "R_InterestArea_UU"; + + /** Set R_InterestArea_UU */ + public void setR_InterestArea_UU (String R_InterestArea_UU); + + /** Get R_InterestArea_UU */ + public String getR_InterestArea_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_R_IssueKnown.java b/org.adempiere.base/src/org/compiere/model/I_R_IssueKnown.java index a126bc3fdf..5d9d2c6281 100644 --- a/org.adempiere.base/src/org/compiere/model/I_R_IssueKnown.java +++ b/org.adempiere.base/src/org/compiere/model/I_R_IssueKnown.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for R_IssueKnown - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_R_IssueKnown { @@ -31,7 +31,7 @@ public interface I_R_IssueKnown public static final String Table_Name = "R_IssueKnown"; /** AD_Table_ID=839 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 839; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -191,6 +191,15 @@ public interface I_R_IssueKnown */ public int getR_IssueKnown_ID(); + /** Column name R_IssueKnown_UU */ + public static final String COLUMNNAME_R_IssueKnown_UU = "R_IssueKnown_UU"; + + /** Set R_IssueKnown_UU */ + public void setR_IssueKnown_UU (String R_IssueKnown_UU); + + /** Get R_IssueKnown_UU */ + public String getR_IssueKnown_UU(); + /** Column name R_IssueRecommendation_ID */ public static final String COLUMNNAME_R_IssueRecommendation_ID = "R_IssueRecommendation_ID"; @@ -204,7 +213,7 @@ public interface I_R_IssueKnown */ public int getR_IssueRecommendation_ID(); - public I_R_IssueRecommendation getR_IssueRecommendation() throws RuntimeException; + public org.compiere.model.I_R_IssueRecommendation getR_IssueRecommendation() throws RuntimeException; /** Column name R_IssueStatus_ID */ public static final String COLUMNNAME_R_IssueStatus_ID = "R_IssueStatus_ID"; @@ -219,7 +228,7 @@ public interface I_R_IssueKnown */ public int getR_IssueStatus_ID(); - public I_R_IssueStatus getR_IssueStatus() throws RuntimeException; + public org.compiere.model.I_R_IssueStatus getR_IssueStatus() throws RuntimeException; /** Column name R_Request_ID */ public static final String COLUMNNAME_R_Request_ID = "R_Request_ID"; @@ -234,7 +243,7 @@ public interface I_R_IssueKnown */ public int getR_Request_ID(); - public I_R_Request getR_Request() throws RuntimeException; + public org.compiere.model.I_R_Request getR_Request() throws RuntimeException; /** Column name SourceClassName */ public static final String COLUMNNAME_SourceClassName = "SourceClassName"; diff --git a/org.adempiere.base/src/org/compiere/model/I_R_IssueProject.java b/org.adempiere.base/src/org/compiere/model/I_R_IssueProject.java index ce341305b3..fef25dc019 100644 --- a/org.adempiere.base/src/org/compiere/model/I_R_IssueProject.java +++ b/org.adempiere.base/src/org/compiere/model/I_R_IssueProject.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for R_IssueProject - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_R_IssueProject { @@ -31,7 +31,7 @@ public interface I_R_IssueProject public static final String Table_Name = "R_IssueProject"; /** AD_Table_ID=842 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 842; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -54,7 +54,7 @@ public interface I_R_IssueProject */ public int getA_Asset_ID(); - public I_A_Asset getA_Asset() throws RuntimeException; + public org.compiere.model.I_A_Asset getA_Asset() throws RuntimeException; /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; @@ -90,7 +90,7 @@ public interface I_R_IssueProject */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -173,6 +173,15 @@ public interface I_R_IssueProject */ public int getR_IssueProject_ID(); + /** Column name R_IssueProject_UU */ + public static final String COLUMNNAME_R_IssueProject_UU = "R_IssueProject_UU"; + + /** Set R_IssueProject_UU */ + public void setR_IssueProject_UU (String R_IssueProject_UU); + + /** Get R_IssueProject_UU */ + public String getR_IssueProject_UU(); + /** Column name StatisticsInfo */ public static final String COLUMNNAME_StatisticsInfo = "StatisticsInfo"; diff --git a/org.adempiere.base/src/org/compiere/model/I_R_IssueRecommendation.java b/org.adempiere.base/src/org/compiere/model/I_R_IssueRecommendation.java index 72742287d6..c38c46e1c4 100644 --- a/org.adempiere.base/src/org/compiere/model/I_R_IssueRecommendation.java +++ b/org.adempiere.base/src/org/compiere/model/I_R_IssueRecommendation.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for R_IssueRecommendation - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_R_IssueRecommendation { @@ -31,7 +31,7 @@ public interface I_R_IssueRecommendation public static final String Table_Name = "R_IssueRecommendation"; /** AD_Table_ID=837 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 837; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -143,6 +143,15 @@ public interface I_R_IssueRecommendation */ public int getR_IssueRecommendation_ID(); + /** Column name R_IssueRecommendation_UU */ + public static final String COLUMNNAME_R_IssueRecommendation_UU = "R_IssueRecommendation_UU"; + + /** Set R_IssueRecommendation_UU */ + public void setR_IssueRecommendation_UU (String R_IssueRecommendation_UU); + + /** Get R_IssueRecommendation_UU */ + public String getR_IssueRecommendation_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_R_IssueStatus.java b/org.adempiere.base/src/org/compiere/model/I_R_IssueStatus.java index a13d606332..c295293a22 100644 --- a/org.adempiere.base/src/org/compiere/model/I_R_IssueStatus.java +++ b/org.adempiere.base/src/org/compiere/model/I_R_IssueStatus.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for R_IssueStatus - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_R_IssueStatus { @@ -31,7 +31,7 @@ public interface I_R_IssueStatus public static final String Table_Name = "R_IssueStatus"; /** AD_Table_ID=838 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 838; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -130,6 +130,15 @@ public interface I_R_IssueStatus */ public int getR_IssueStatus_ID(); + /** Column name R_IssueStatus_UU */ + public static final String COLUMNNAME_R_IssueStatus_UU = "R_IssueStatus_UU"; + + /** Set R_IssueStatus_UU */ + public void setR_IssueStatus_UU (String R_IssueStatus_UU); + + /** Get R_IssueStatus_UU */ + public String getR_IssueStatus_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_R_IssueSystem.java b/org.adempiere.base/src/org/compiere/model/I_R_IssueSystem.java index d2117dbe20..d09d5e0554 100644 --- a/org.adempiere.base/src/org/compiere/model/I_R_IssueSystem.java +++ b/org.adempiere.base/src/org/compiere/model/I_R_IssueSystem.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for R_IssueSystem - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_R_IssueSystem { @@ -31,7 +31,7 @@ public interface I_R_IssueSystem public static final String Table_Name = "R_IssueSystem"; /** AD_Table_ID=843 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 843; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -54,7 +54,7 @@ public interface I_R_IssueSystem */ public int getA_Asset_ID(); - public I_A_Asset getA_Asset() throws RuntimeException; + public org.compiere.model.I_A_Asset getA_Asset() throws RuntimeException; /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; @@ -145,6 +145,15 @@ public interface I_R_IssueSystem */ public int getR_IssueSystem_ID(); + /** Column name R_IssueSystem_UU */ + public static final String COLUMNNAME_R_IssueSystem_UU = "R_IssueSystem_UU"; + + /** Set R_IssueSystem_UU */ + public void setR_IssueSystem_UU (String R_IssueSystem_UU); + + /** Get R_IssueSystem_UU */ + public String getR_IssueSystem_UU(); + /** Column name StatisticsInfo */ public static final String COLUMNNAME_StatisticsInfo = "StatisticsInfo"; diff --git a/org.adempiere.base/src/org/compiere/model/I_R_IssueUser.java b/org.adempiere.base/src/org/compiere/model/I_R_IssueUser.java index 3de5835ee7..08127928d2 100644 --- a/org.adempiere.base/src/org/compiere/model/I_R_IssueUser.java +++ b/org.adempiere.base/src/org/compiere/model/I_R_IssueUser.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for R_IssueUser - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_R_IssueUser { @@ -31,7 +31,7 @@ public interface I_R_IssueUser public static final String Table_Name = "R_IssueUser"; /** AD_Table_ID=841 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 841; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_R_IssueUser */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -132,6 +132,15 @@ public interface I_R_IssueUser */ public int getR_IssueUser_ID(); + /** Column name R_IssueUser_UU */ + public static final String COLUMNNAME_R_IssueUser_UU = "R_IssueUser_UU"; + + /** Set R_IssueUser_UU */ + public void setR_IssueUser_UU (String R_IssueUser_UU); + + /** Get R_IssueUser_UU */ + public String getR_IssueUser_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_R_MailText.java b/org.adempiere.base/src/org/compiere/model/I_R_MailText.java index 5b6cc739a0..57373d1fb5 100644 --- a/org.adempiere.base/src/org/compiere/model/I_R_MailText.java +++ b/org.adempiere.base/src/org/compiere/model/I_R_MailText.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for R_MailText - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_R_MailText { @@ -31,7 +31,7 @@ public interface I_R_MailText public static final String Table_Name = "R_MailText"; /** AD_Table_ID=416 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 416; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -182,6 +182,15 @@ public interface I_R_MailText */ public int getR_MailText_ID(); + /** Column name R_MailText_UU */ + public static final String COLUMNNAME_R_MailText_UU = "R_MailText_UU"; + + /** Set R_MailText_UU */ + public void setR_MailText_UU (String R_MailText_UU); + + /** Get R_MailText_UU */ + public String getR_MailText_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_R_Request.java b/org.adempiere.base/src/org/compiere/model/I_R_Request.java index cd2f58f8dd..3382efc9dd 100644 --- a/org.adempiere.base/src/org/compiere/model/I_R_Request.java +++ b/org.adempiere.base/src/org/compiere/model/I_R_Request.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for R_Request - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_R_Request { @@ -31,7 +31,7 @@ public interface I_R_Request public static final String Table_Name = "R_Request"; /** AD_Table_ID=417 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 417; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -54,7 +54,7 @@ public interface I_R_Request */ public int getA_Asset_ID(); - public I_A_Asset getA_Asset() throws RuntimeException; + public org.compiere.model.I_A_Asset getA_Asset() throws RuntimeException; /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; @@ -90,7 +90,7 @@ public interface I_R_Request */ public int getAD_Role_ID(); - public I_AD_Role getAD_Role() throws RuntimeException; + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException; /** Column name AD_Table_ID */ public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID"; @@ -105,7 +105,7 @@ public interface I_R_Request */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name AD_User_ID */ public static final String COLUMNNAME_AD_User_ID = "AD_User_ID"; @@ -120,7 +120,7 @@ public interface I_R_Request */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name C_Activity_ID */ public static final String COLUMNNAME_C_Activity_ID = "C_Activity_ID"; @@ -135,7 +135,7 @@ public interface I_R_Request */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -150,7 +150,7 @@ public interface I_R_Request */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -165,7 +165,7 @@ public interface I_R_Request */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_Invoice_ID */ public static final String COLUMNNAME_C_Invoice_ID = "C_Invoice_ID"; @@ -180,7 +180,7 @@ public interface I_R_Request */ public int getC_Invoice_ID(); - public I_C_Invoice getC_Invoice() throws RuntimeException; + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException; /** Column name C_InvoiceRequest_ID */ public static final String COLUMNNAME_C_InvoiceRequest_ID = "C_InvoiceRequest_ID"; @@ -195,7 +195,7 @@ public interface I_R_Request */ public int getC_InvoiceRequest_ID(); - public I_C_Invoice getC_InvoiceRequest() throws RuntimeException; + public org.compiere.model.I_C_Invoice getC_InvoiceRequest() throws RuntimeException; /** Column name CloseDate */ public static final String COLUMNNAME_CloseDate = "CloseDate"; @@ -249,7 +249,7 @@ public interface I_R_Request */ public int getC_Order_ID(); - public I_C_Order getC_Order() throws RuntimeException; + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException; /** Column name C_Payment_ID */ public static final String COLUMNNAME_C_Payment_ID = "C_Payment_ID"; @@ -264,7 +264,7 @@ public interface I_R_Request */ public int getC_Payment_ID(); - public I_C_Payment getC_Payment() throws RuntimeException; + public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException; /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -279,7 +279,7 @@ public interface I_R_Request */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -479,7 +479,7 @@ public interface I_R_Request */ public int getM_ChangeRequest_ID(); - public I_M_ChangeRequest getM_ChangeRequest() throws RuntimeException; + public org.compiere.model.I_M_ChangeRequest getM_ChangeRequest() throws RuntimeException; /** Column name M_FixChangeNotice_ID */ public static final String COLUMNNAME_M_FixChangeNotice_ID = "M_FixChangeNotice_ID"; @@ -494,7 +494,7 @@ public interface I_R_Request */ public int getM_FixChangeNotice_ID(); - public I_M_ChangeNotice getM_FixChangeNotice() throws RuntimeException; + public org.compiere.model.I_M_ChangeNotice getM_FixChangeNotice() throws RuntimeException; /** Column name M_InOut_ID */ public static final String COLUMNNAME_M_InOut_ID = "M_InOut_ID"; @@ -509,7 +509,7 @@ public interface I_R_Request */ public int getM_InOut_ID(); - public I_M_InOut getM_InOut() throws RuntimeException; + public org.compiere.model.I_M_InOut getM_InOut() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -524,7 +524,7 @@ public interface I_R_Request */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name M_ProductSpent_ID */ public static final String COLUMNNAME_M_ProductSpent_ID = "M_ProductSpent_ID"; @@ -539,7 +539,7 @@ public interface I_R_Request */ public int getM_ProductSpent_ID(); - public I_M_Product getM_ProductSpent() throws RuntimeException; + public org.compiere.model.I_M_Product getM_ProductSpent() throws RuntimeException; /** Column name M_RMA_ID */ public static final String COLUMNNAME_M_RMA_ID = "M_RMA_ID"; @@ -554,7 +554,7 @@ public interface I_R_Request */ public int getM_RMA_ID(); - public I_M_RMA getM_RMA() throws RuntimeException; + public org.compiere.model.I_M_RMA getM_RMA() throws RuntimeException; /** Column name NextAction */ public static final String COLUMNNAME_NextAction = "NextAction"; @@ -660,7 +660,7 @@ public interface I_R_Request */ public int getR_Category_ID(); - public I_R_Category getR_Category() throws RuntimeException; + public org.compiere.model.I_R_Category getR_Category() throws RuntimeException; /** Column name Record_ID */ public static final String COLUMNNAME_Record_ID = "Record_ID"; @@ -714,7 +714,7 @@ public interface I_R_Request */ public int getR_Group_ID(); - public I_R_Group getR_Group() throws RuntimeException; + public org.compiere.model.I_R_Group getR_Group() throws RuntimeException; /** Column name R_MailText_ID */ public static final String COLUMNNAME_R_MailText_ID = "R_MailText_ID"; @@ -729,7 +729,7 @@ public interface I_R_Request */ public int getR_MailText_ID(); - public I_R_MailText getR_MailText() throws RuntimeException; + public org.compiere.model.I_R_MailText getR_MailText() throws RuntimeException; /** Column name R_Request_ID */ public static final String COLUMNNAME_R_Request_ID = "R_Request_ID"; @@ -757,7 +757,7 @@ public interface I_R_Request */ public int getR_RequestRelated_ID(); - public I_R_Request getR_RequestRelated() throws RuntimeException; + public org.compiere.model.I_R_Request getR_RequestRelated() throws RuntimeException; /** Column name R_RequestType_ID */ public static final String COLUMNNAME_R_RequestType_ID = "R_RequestType_ID"; @@ -772,7 +772,16 @@ public interface I_R_Request */ public int getR_RequestType_ID(); - public I_R_RequestType getR_RequestType() throws RuntimeException; + public org.compiere.model.I_R_RequestType getR_RequestType() throws RuntimeException; + + /** Column name R_Request_UU */ + public static final String COLUMNNAME_R_Request_UU = "R_Request_UU"; + + /** Set R_Request_UU */ + public void setR_Request_UU (String R_Request_UU); + + /** Get R_Request_UU */ + public String getR_Request_UU(); /** Column name R_Resolution_ID */ public static final String COLUMNNAME_R_Resolution_ID = "R_Resolution_ID"; @@ -787,7 +796,7 @@ public interface I_R_Request */ public int getR_Resolution_ID(); - public I_R_Resolution getR_Resolution() throws RuntimeException; + public org.compiere.model.I_R_Resolution getR_Resolution() throws RuntimeException; /** Column name R_StandardResponse_ID */ public static final String COLUMNNAME_R_StandardResponse_ID = "R_StandardResponse_ID"; @@ -802,7 +811,7 @@ public interface I_R_Request */ public int getR_StandardResponse_ID(); - public I_R_StandardResponse getR_StandardResponse() throws RuntimeException; + public org.compiere.model.I_R_StandardResponse getR_StandardResponse() throws RuntimeException; /** Column name R_Status_ID */ public static final String COLUMNNAME_R_Status_ID = "R_Status_ID"; @@ -817,7 +826,7 @@ public interface I_R_Request */ public int getR_Status_ID(); - public I_R_Status getR_Status() throws RuntimeException; + public org.compiere.model.I_R_Status getR_Status() throws RuntimeException; /** Column name SalesRep_ID */ public static final String COLUMNNAME_SalesRep_ID = "SalesRep_ID"; @@ -832,7 +841,7 @@ public interface I_R_Request */ public int getSalesRep_ID(); - public I_AD_User getSalesRep() throws RuntimeException; + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException; /** Column name StartDate */ public static final String COLUMNNAME_StartDate = "StartDate"; diff --git a/org.adempiere.base/src/org/compiere/model/I_R_RequestAction.java b/org.adempiere.base/src/org/compiere/model/I_R_RequestAction.java index 9d33424ee4..7edaf6eb27 100644 --- a/org.adempiere.base/src/org/compiere/model/I_R_RequestAction.java +++ b/org.adempiere.base/src/org/compiere/model/I_R_RequestAction.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for R_RequestAction - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_R_RequestAction { @@ -31,7 +31,7 @@ public interface I_R_RequestAction public static final String Table_Name = "R_RequestAction"; /** AD_Table_ID=418 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 418; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -54,7 +54,7 @@ public interface I_R_RequestAction */ public int getA_Asset_ID(); - public I_A_Asset getA_Asset() throws RuntimeException; + public org.compiere.model.I_A_Asset getA_Asset() throws RuntimeException; /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; @@ -90,7 +90,7 @@ public interface I_R_RequestAction */ public int getAD_Role_ID(); - public I_AD_Role getAD_Role() throws RuntimeException; + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException; /** Column name AD_User_ID */ public static final String COLUMNNAME_AD_User_ID = "AD_User_ID"; @@ -105,7 +105,7 @@ public interface I_R_RequestAction */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name C_Activity_ID */ public static final String COLUMNNAME_C_Activity_ID = "C_Activity_ID"; @@ -120,7 +120,7 @@ public interface I_R_RequestAction */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -135,7 +135,7 @@ public interface I_R_RequestAction */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Invoice_ID */ public static final String COLUMNNAME_C_Invoice_ID = "C_Invoice_ID"; @@ -150,7 +150,7 @@ public interface I_R_RequestAction */ public int getC_Invoice_ID(); - public I_C_Invoice getC_Invoice() throws RuntimeException; + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException; /** Column name ConfidentialType */ public static final String COLUMNNAME_ConfidentialType = "ConfidentialType"; @@ -178,7 +178,7 @@ public interface I_R_RequestAction */ public int getC_Order_ID(); - public I_C_Order getC_Order() throws RuntimeException; + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException; /** Column name C_Payment_ID */ public static final String COLUMNNAME_C_Payment_ID = "C_Payment_ID"; @@ -193,7 +193,7 @@ public interface I_R_RequestAction */ public int getC_Payment_ID(); - public I_C_Payment getC_Payment() throws RuntimeException; + public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException; /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -208,7 +208,7 @@ public interface I_R_RequestAction */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -343,7 +343,7 @@ public interface I_R_RequestAction */ public int getM_InOut_ID(); - public I_M_InOut getM_InOut() throws RuntimeException; + public org.compiere.model.I_M_InOut getM_InOut() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -358,7 +358,7 @@ public interface I_R_RequestAction */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name M_ProductSpent_ID */ public static final String COLUMNNAME_M_ProductSpent_ID = "M_ProductSpent_ID"; @@ -373,7 +373,7 @@ public interface I_R_RequestAction */ public int getM_ProductSpent_ID(); - public I_M_Product getM_ProductSpent() throws RuntimeException; + public org.compiere.model.I_M_Product getM_ProductSpent() throws RuntimeException; /** Column name M_RMA_ID */ public static final String COLUMNNAME_M_RMA_ID = "M_RMA_ID"; @@ -388,7 +388,7 @@ public interface I_R_RequestAction */ public int getM_RMA_ID(); - public I_M_RMA getM_RMA() throws RuntimeException; + public org.compiere.model.I_M_RMA getM_RMA() throws RuntimeException; /** Column name NullColumns */ public static final String COLUMNNAME_NullColumns = "NullColumns"; @@ -481,7 +481,7 @@ public interface I_R_RequestAction */ public int getR_Category_ID(); - public I_R_Category getR_Category() throws RuntimeException; + public org.compiere.model.I_R_Category getR_Category() throws RuntimeException; /** Column name R_Group_ID */ public static final String COLUMNNAME_R_Group_ID = "R_Group_ID"; @@ -496,7 +496,7 @@ public interface I_R_RequestAction */ public int getR_Group_ID(); - public I_R_Group getR_Group() throws RuntimeException; + public org.compiere.model.I_R_Group getR_Group() throws RuntimeException; /** Column name R_RequestAction_ID */ public static final String COLUMNNAME_R_RequestAction_ID = "R_RequestAction_ID"; @@ -511,6 +511,15 @@ public interface I_R_RequestAction */ public int getR_RequestAction_ID(); + /** Column name R_RequestAction_UU */ + public static final String COLUMNNAME_R_RequestAction_UU = "R_RequestAction_UU"; + + /** Set R_RequestAction_UU */ + public void setR_RequestAction_UU (String R_RequestAction_UU); + + /** Get R_RequestAction_UU */ + public String getR_RequestAction_UU(); + /** Column name R_Request_ID */ public static final String COLUMNNAME_R_Request_ID = "R_Request_ID"; @@ -524,7 +533,7 @@ public interface I_R_RequestAction */ public int getR_Request_ID(); - public I_R_Request getR_Request() throws RuntimeException; + public org.compiere.model.I_R_Request getR_Request() throws RuntimeException; /** Column name R_RequestType_ID */ public static final String COLUMNNAME_R_RequestType_ID = "R_RequestType_ID"; @@ -539,7 +548,7 @@ public interface I_R_RequestAction */ public int getR_RequestType_ID(); - public I_R_RequestType getR_RequestType() throws RuntimeException; + public org.compiere.model.I_R_RequestType getR_RequestType() throws RuntimeException; /** Column name R_Resolution_ID */ public static final String COLUMNNAME_R_Resolution_ID = "R_Resolution_ID"; @@ -554,7 +563,7 @@ public interface I_R_RequestAction */ public int getR_Resolution_ID(); - public I_R_Resolution getR_Resolution() throws RuntimeException; + public org.compiere.model.I_R_Resolution getR_Resolution() throws RuntimeException; /** Column name R_Status_ID */ public static final String COLUMNNAME_R_Status_ID = "R_Status_ID"; @@ -569,7 +578,7 @@ public interface I_R_RequestAction */ public int getR_Status_ID(); - public I_R_Status getR_Status() throws RuntimeException; + public org.compiere.model.I_R_Status getR_Status() throws RuntimeException; /** Column name SalesRep_ID */ public static final String COLUMNNAME_SalesRep_ID = "SalesRep_ID"; @@ -584,7 +593,7 @@ public interface I_R_RequestAction */ public int getSalesRep_ID(); - public I_AD_User getSalesRep() throws RuntimeException; + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException; /** Column name StartDate */ public static final String COLUMNNAME_StartDate = "StartDate"; diff --git a/org.adempiere.base/src/org/compiere/model/I_R_RequestProcessor.java b/org.adempiere.base/src/org/compiere/model/I_R_RequestProcessor.java index d621441c23..44f3eef75b 100644 --- a/org.adempiere.base/src/org/compiere/model/I_R_RequestProcessor.java +++ b/org.adempiere.base/src/org/compiere/model/I_R_RequestProcessor.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for R_RequestProcessor - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_R_RequestProcessor { @@ -65,10 +65,10 @@ public interface I_R_RequestProcessor /** Column name AD_Schedule_ID */ public static final String COLUMNNAME_AD_Schedule_ID = "AD_Schedule_ID"; - /** Set AD_Schedule_ID */ + /** Set Schedule */ public void setAD_Schedule_ID (int AD_Schedule_ID); - /** Get AD_Schedule_ID */ + /** Get Schedule */ public int getAD_Schedule_ID(); public org.compiere.model.I_AD_Schedule getAD_Schedule() throws RuntimeException; diff --git a/org.adempiere.base/src/org/compiere/model/I_R_RequestProcessorLog.java b/org.adempiere.base/src/org/compiere/model/I_R_RequestProcessorLog.java index 177891f388..f08b3b6a4d 100644 --- a/org.adempiere.base/src/org/compiere/model/I_R_RequestProcessorLog.java +++ b/org.adempiere.base/src/org/compiere/model/I_R_RequestProcessorLog.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for R_RequestProcessorLog - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_R_RequestProcessorLog { @@ -31,7 +31,7 @@ public interface I_R_RequestProcessorLog public static final String Table_Name = "R_RequestProcessorLog"; /** AD_Table_ID=659 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 659; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -171,6 +171,15 @@ public interface I_R_RequestProcessorLog */ public int getR_RequestProcessorLog_ID(); + /** Column name R_RequestProcessorLog_UU */ + public static final String COLUMNNAME_R_RequestProcessorLog_UU = "R_RequestProcessorLog_UU"; + + /** Set R_RequestProcessorLog_UU */ + public void setR_RequestProcessorLog_UU (String R_RequestProcessorLog_UU); + + /** Get R_RequestProcessorLog_UU */ + public String getR_RequestProcessorLog_UU(); + /** Column name Summary */ public static final String COLUMNNAME_Summary = "Summary"; diff --git a/org.adempiere.base/src/org/compiere/model/I_R_RequestProcessor_Route.java b/org.adempiere.base/src/org/compiere/model/I_R_RequestProcessor_Route.java index 9658dc64e2..e9887c7552 100644 --- a/org.adempiere.base/src/org/compiere/model/I_R_RequestProcessor_Route.java +++ b/org.adempiere.base/src/org/compiere/model/I_R_RequestProcessor_Route.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for R_RequestProcessor_Route - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_R_RequestProcessor_Route { @@ -31,7 +31,7 @@ public interface I_R_RequestProcessor_Route public static final String Table_Name = "R_RequestProcessor_Route"; /** AD_Table_ID=474 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 474; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -147,6 +147,15 @@ public interface I_R_RequestProcessor_Route */ public int getR_RequestProcessor_Route_ID(); + /** Column name R_RequestProcessor_Route_UU */ + public static final String COLUMNNAME_R_RequestProcessor_Route_UU = "R_RequestProcessor_Route_UU"; + + /** Set R_RequestProcessor_Route_UU */ + public void setR_RequestProcessor_Route_UU (String R_RequestProcessor_Route_UU); + + /** Get R_RequestProcessor_Route_UU */ + public String getR_RequestProcessor_Route_UU(); + /** Column name R_RequestType_ID */ public static final String COLUMNNAME_R_RequestType_ID = "R_RequestType_ID"; diff --git a/org.adempiere.base/src/org/compiere/model/I_R_RequestType.java b/org.adempiere.base/src/org/compiere/model/I_R_RequestType.java index 013d137317..5364296951 100644 --- a/org.adempiere.base/src/org/compiere/model/I_R_RequestType.java +++ b/org.adempiere.base/src/org/compiere/model/I_R_RequestType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for R_RequestType - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_R_RequestType { @@ -31,7 +31,7 @@ public interface I_R_RequestType public static final String Table_Name = "R_RequestType"; /** AD_Table_ID=529 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 529; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); diff --git a/org.adempiere.base/src/org/compiere/model/I_R_RequestTypeUpdates.java b/org.adempiere.base/src/org/compiere/model/I_R_RequestTypeUpdates.java index d5c5726040..d795564062 100644 --- a/org.adempiere.base/src/org/compiere/model/I_R_RequestTypeUpdates.java +++ b/org.adempiere.base/src/org/compiere/model/I_R_RequestTypeUpdates.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for R_RequestTypeUpdates - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_R_RequestTypeUpdates { @@ -31,7 +31,7 @@ public interface I_R_RequestTypeUpdates public static final String Table_Name = "R_RequestTypeUpdates"; /** AD_Table_ID=784 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 784; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_R_RequestTypeUpdates */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -132,7 +132,16 @@ public interface I_R_RequestTypeUpdates */ public int getR_RequestType_ID(); - public I_R_RequestType getR_RequestType() throws RuntimeException; + public org.compiere.model.I_R_RequestType getR_RequestType() throws RuntimeException; + + /** Column name R_RequestTypeUpdates_UU */ + public static final String COLUMNNAME_R_RequestTypeUpdates_UU = "R_RequestTypeUpdates_UU"; + + /** Set R_RequestTypeUpdates_UU */ + public void setR_RequestTypeUpdates_UU (String R_RequestTypeUpdates_UU); + + /** Get R_RequestTypeUpdates_UU */ + public String getR_RequestTypeUpdates_UU(); /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_R_RequestUpdate.java b/org.adempiere.base/src/org/compiere/model/I_R_RequestUpdate.java index 6e660dcd21..b6c1c6895d 100644 --- a/org.adempiere.base/src/org/compiere/model/I_R_RequestUpdate.java +++ b/org.adempiere.base/src/org/compiere/model/I_R_RequestUpdate.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for R_RequestUpdate - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_R_RequestUpdate { @@ -31,7 +31,7 @@ public interface I_R_RequestUpdate public static final String Table_Name = "R_RequestUpdate"; /** AD_Table_ID=802 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 802; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -130,7 +130,7 @@ public interface I_R_RequestUpdate */ public int getM_ProductSpent_ID(); - public I_M_Product getM_ProductSpent() throws RuntimeException; + public org.compiere.model.I_M_Product getM_ProductSpent() throws RuntimeException; /** Column name QtyInvoiced */ public static final String COLUMNNAME_QtyInvoiced = "QtyInvoiced"; @@ -184,7 +184,7 @@ public interface I_R_RequestUpdate */ public int getR_Request_ID(); - public I_R_Request getR_Request() throws RuntimeException; + public org.compiere.model.I_R_Request getR_Request() throws RuntimeException; /** Column name R_RequestUpdate_ID */ public static final String COLUMNNAME_R_RequestUpdate_ID = "R_RequestUpdate_ID"; @@ -199,6 +199,15 @@ public interface I_R_RequestUpdate */ public int getR_RequestUpdate_ID(); + /** Column name R_RequestUpdate_UU */ + public static final String COLUMNNAME_R_RequestUpdate_UU = "R_RequestUpdate_UU"; + + /** Set R_RequestUpdate_UU */ + public void setR_RequestUpdate_UU (String R_RequestUpdate_UU); + + /** Get R_RequestUpdate_UU */ + public String getR_RequestUpdate_UU(); + /** Column name StartTime */ public static final String COLUMNNAME_StartTime = "StartTime"; diff --git a/org.adempiere.base/src/org/compiere/model/I_R_RequestUpdates.java b/org.adempiere.base/src/org/compiere/model/I_R_RequestUpdates.java index ca09bb8e15..4111ee67e1 100644 --- a/org.adempiere.base/src/org/compiere/model/I_R_RequestUpdates.java +++ b/org.adempiere.base/src/org/compiere/model/I_R_RequestUpdates.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for R_RequestUpdates - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_R_RequestUpdates { @@ -31,7 +31,7 @@ public interface I_R_RequestUpdates public static final String Table_Name = "R_RequestUpdates"; /** AD_Table_ID=783 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 783; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_R_RequestUpdates */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -132,7 +132,16 @@ public interface I_R_RequestUpdates */ public int getR_Request_ID(); - public I_R_Request getR_Request() throws RuntimeException; + public org.compiere.model.I_R_Request getR_Request() throws RuntimeException; + + /** Column name R_RequestUpdates_UU */ + public static final String COLUMNNAME_R_RequestUpdates_UU = "R_RequestUpdates_UU"; + + /** Set R_RequestUpdates_UU */ + public void setR_RequestUpdates_UU (String R_RequestUpdates_UU); + + /** Get R_RequestUpdates_UU */ + public String getR_RequestUpdates_UU(); /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_R_Resolution.java b/org.adempiere.base/src/org/compiere/model/I_R_Resolution.java index ee6df46652..abc4a6dbb7 100644 --- a/org.adempiere.base/src/org/compiere/model/I_R_Resolution.java +++ b/org.adempiere.base/src/org/compiere/model/I_R_Resolution.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for R_Resolution - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_R_Resolution { @@ -31,7 +31,7 @@ public interface I_R_Resolution public static final String Table_Name = "R_Resolution"; /** AD_Table_ID=774 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 774; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -143,6 +143,15 @@ public interface I_R_Resolution */ public int getR_Resolution_ID(); + /** Column name R_Resolution_UU */ + public static final String COLUMNNAME_R_Resolution_UU = "R_Resolution_UU"; + + /** Set R_Resolution_UU */ + public void setR_Resolution_UU (String R_Resolution_UU); + + /** Get R_Resolution_UU */ + public String getR_Resolution_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_R_StandardResponse.java b/org.adempiere.base/src/org/compiere/model/I_R_StandardResponse.java index 5cc36366de..bac285d6a9 100644 --- a/org.adempiere.base/src/org/compiere/model/I_R_StandardResponse.java +++ b/org.adempiere.base/src/org/compiere/model/I_R_StandardResponse.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for R_StandardResponse - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_R_StandardResponse { @@ -31,7 +31,7 @@ public interface I_R_StandardResponse public static final String Table_Name = "R_StandardResponse"; /** AD_Table_ID=775 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 775; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -130,6 +130,15 @@ public interface I_R_StandardResponse */ public int getR_StandardResponse_ID(); + /** Column name R_StandardResponse_UU */ + public static final String COLUMNNAME_R_StandardResponse_UU = "R_StandardResponse_UU"; + + /** Set R_StandardResponse_UU */ + public void setR_StandardResponse_UU (String R_StandardResponse_UU); + + /** Get R_StandardResponse_UU */ + public String getR_StandardResponse_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_R_Status.java b/org.adempiere.base/src/org/compiere/model/I_R_Status.java index fbb94aa049..c55a59edd1 100644 --- a/org.adempiere.base/src/org/compiere/model/I_R_Status.java +++ b/org.adempiere.base/src/org/compiere/model/I_R_Status.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for R_Status - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_R_Status { @@ -31,7 +31,7 @@ public interface I_R_Status public static final String Table_Name = "R_Status"; /** AD_Table_ID=776 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 776; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -208,7 +208,7 @@ public interface I_R_Status */ public int getNext_Status_ID(); - public I_R_Status getNext_Status() throws RuntimeException; + public org.compiere.model.I_R_Status getNext_Status() throws RuntimeException; /** Column name R_StatusCategory_ID */ public static final String COLUMNNAME_R_StatusCategory_ID = "R_StatusCategory_ID"; @@ -223,7 +223,7 @@ public interface I_R_Status */ public int getR_StatusCategory_ID(); - public I_R_StatusCategory getR_StatusCategory() throws RuntimeException; + public org.compiere.model.I_R_StatusCategory getR_StatusCategory() throws RuntimeException; /** Column name R_Status_ID */ public static final String COLUMNNAME_R_Status_ID = "R_Status_ID"; @@ -238,6 +238,15 @@ public interface I_R_Status */ public int getR_Status_ID(); + /** Column name R_Status_UU */ + public static final String COLUMNNAME_R_Status_UU = "R_Status_UU"; + + /** Set R_Status_UU */ + public void setR_Status_UU (String R_Status_UU); + + /** Get R_Status_UU */ + public String getR_Status_UU(); + /** Column name SeqNo */ public static final String COLUMNNAME_SeqNo = "SeqNo"; @@ -295,7 +304,7 @@ public interface I_R_Status */ public int getUpdate_Status_ID(); - public I_R_Status getUpdate_Status() throws RuntimeException; + public org.compiere.model.I_R_Status getUpdate_Status() throws RuntimeException; /** Column name Value */ public static final String COLUMNNAME_Value = "Value"; diff --git a/org.adempiere.base/src/org/compiere/model/I_R_StatusCategory.java b/org.adempiere.base/src/org/compiere/model/I_R_StatusCategory.java index 6a6c9ba1f6..9fa222b7b0 100644 --- a/org.adempiere.base/src/org/compiere/model/I_R_StatusCategory.java +++ b/org.adempiere.base/src/org/compiere/model/I_R_StatusCategory.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for R_StatusCategory - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_R_StatusCategory { @@ -31,7 +31,7 @@ public interface I_R_StatusCategory public static final String Table_Name = "R_StatusCategory"; /** AD_Table_ID=844 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 844; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -156,6 +156,15 @@ public interface I_R_StatusCategory */ public int getR_StatusCategory_ID(); + /** Column name R_StatusCategory_UU */ + public static final String COLUMNNAME_R_StatusCategory_UU = "R_StatusCategory_UU"; + + /** Set R_StatusCategory_UU */ + public void setR_StatusCategory_UU (String R_StatusCategory_UU); + + /** Get R_StatusCategory_UU */ + public String getR_StatusCategory_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_S_ExpenseType.java b/org.adempiere.base/src/org/compiere/model/I_S_ExpenseType.java index 752aa3e479..d2b9e5d141 100644 --- a/org.adempiere.base/src/org/compiere/model/I_S_ExpenseType.java +++ b/org.adempiere.base/src/org/compiere/model/I_S_ExpenseType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for S_ExpenseType - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_S_ExpenseType { @@ -31,7 +31,7 @@ public interface I_S_ExpenseType public static final String Table_Name = "S_ExpenseType"; /** AD_Table_ID=481 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 481; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -91,7 +91,7 @@ public interface I_S_ExpenseType */ public int getC_TaxCategory_ID(); - public I_C_TaxCategory getC_TaxCategory() throws RuntimeException; + public org.compiere.model.I_C_TaxCategory getC_TaxCategory() throws RuntimeException; /** Column name C_UOM_ID */ public static final String COLUMNNAME_C_UOM_ID = "C_UOM_ID"; @@ -106,7 +106,7 @@ public interface I_S_ExpenseType */ public int getC_UOM_ID(); - public I_C_UOM getC_UOM() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException; /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; @@ -160,7 +160,7 @@ public interface I_S_ExpenseType */ public int getM_Product_Category_ID(); - public I_M_Product_Category getM_Product_Category() throws RuntimeException; + public org.compiere.model.I_M_Product_Category getM_Product_Category() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; @@ -188,6 +188,15 @@ public interface I_S_ExpenseType */ public int getS_ExpenseType_ID(); + /** Column name S_ExpenseType_UU */ + public static final String COLUMNNAME_S_ExpenseType_UU = "S_ExpenseType_UU"; + + /** Set S_ExpenseType_UU */ + public void setS_ExpenseType_UU (String S_ExpenseType_UU); + + /** Get S_ExpenseType_UU */ + public String getS_ExpenseType_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_S_Resource.java b/org.adempiere.base/src/org/compiere/model/I_S_Resource.java index 0b668f2a5f..8ab4b24f06 100644 --- a/org.adempiere.base/src/org/compiere/model/I_S_Resource.java +++ b/org.adempiere.base/src/org/compiere/model/I_S_Resource.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for S_Resource - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_S_Resource { @@ -31,7 +31,7 @@ public interface I_S_Resource public static final String Table_Name = "S_Resource"; /** AD_Table_ID=487 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 487; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_S_Resource */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name ChargeableQty */ public static final String COLUMNNAME_ChargeableQty = "ChargeableQty"; @@ -181,7 +181,7 @@ public interface I_S_Resource */ public int getM_Warehouse_ID(); - public I_M_Warehouse getM_Warehouse() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; @@ -253,7 +253,16 @@ public interface I_S_Resource /** Get Resource Type */ public int getS_ResourceType_ID(); - public I_S_ResourceType getS_ResourceType() throws RuntimeException; + public org.compiere.model.I_S_ResourceType getS_ResourceType() throws RuntimeException; + + /** Column name S_Resource_UU */ + public static final String COLUMNNAME_S_Resource_UU = "S_Resource_UU"; + + /** Set S_Resource_UU */ + public void setS_Resource_UU (String S_Resource_UU); + + /** Get S_Resource_UU */ + public String getS_Resource_UU(); /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_S_ResourceAssignment.java b/org.adempiere.base/src/org/compiere/model/I_S_ResourceAssignment.java index b9e7fbd382..06cc1b0e33 100644 --- a/org.adempiere.base/src/org/compiere/model/I_S_ResourceAssignment.java +++ b/org.adempiere.base/src/org/compiere/model/I_S_ResourceAssignment.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for S_ResourceAssignment - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_S_ResourceAssignment { @@ -31,7 +31,7 @@ public interface I_S_ResourceAssignment public static final String Table_Name = "S_ResourceAssignment"; /** AD_Table_ID=485 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 485; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -182,6 +182,15 @@ public interface I_S_ResourceAssignment */ public int getS_ResourceAssignment_ID(); + /** Column name S_ResourceAssignment_UU */ + public static final String COLUMNNAME_S_ResourceAssignment_UU = "S_ResourceAssignment_UU"; + + /** Set S_ResourceAssignment_UU */ + public void setS_ResourceAssignment_UU (String S_ResourceAssignment_UU); + + /** Get S_ResourceAssignment_UU */ + public String getS_ResourceAssignment_UU(); + /** Column name S_Resource_ID */ public static final String COLUMNNAME_S_Resource_ID = "S_Resource_ID"; @@ -195,7 +204,7 @@ public interface I_S_ResourceAssignment */ public int getS_Resource_ID(); - public I_S_Resource getS_Resource() throws RuntimeException; + public org.compiere.model.I_S_Resource getS_Resource() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_S_ResourceType.java b/org.adempiere.base/src/org/compiere/model/I_S_ResourceType.java index 9aaab1e767..3454ec5d75 100644 --- a/org.adempiere.base/src/org/compiere/model/I_S_ResourceType.java +++ b/org.adempiere.base/src/org/compiere/model/I_S_ResourceType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for S_ResourceType - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_S_ResourceType { @@ -31,7 +31,7 @@ public interface I_S_ResourceType public static final String Table_Name = "S_ResourceType"; /** AD_Table_ID=480 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 480; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -113,7 +113,7 @@ public interface I_S_ResourceType */ public int getC_TaxCategory_ID(); - public I_C_TaxCategory getC_TaxCategory() throws RuntimeException; + public org.compiere.model.I_C_TaxCategory getC_TaxCategory() throws RuntimeException; /** Column name C_UOM_ID */ public static final String COLUMNNAME_C_UOM_ID = "C_UOM_ID"; @@ -128,7 +128,7 @@ public interface I_S_ResourceType */ public int getC_UOM_ID(); - public I_C_UOM getC_UOM() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException; /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; @@ -208,7 +208,7 @@ public interface I_S_ResourceType */ public int getM_Product_Category_ID(); - public I_M_Product_Category getM_Product_Category() throws RuntimeException; + public org.compiere.model.I_M_Product_Category getM_Product_Category() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; @@ -323,6 +323,15 @@ public interface I_S_ResourceType /** Get Resource Type */ public int getS_ResourceType_ID(); + /** Column name S_ResourceType_UU */ + public static final String COLUMNNAME_S_ResourceType_UU = "S_ResourceType_UU"; + + /** Set S_ResourceType_UU */ + public void setS_ResourceType_UU (String S_ResourceType_UU); + + /** Get S_ResourceType_UU */ + public String getS_ResourceType_UU(); + /** Column name TimeSlotEnd */ public static final String COLUMNNAME_TimeSlotEnd = "TimeSlotEnd"; diff --git a/org.adempiere.base/src/org/compiere/model/I_S_ResourceUnAvailable.java b/org.adempiere.base/src/org/compiere/model/I_S_ResourceUnAvailable.java index df6e8b67b8..346bf1c51f 100644 --- a/org.adempiere.base/src/org/compiere/model/I_S_ResourceUnAvailable.java +++ b/org.adempiere.base/src/org/compiere/model/I_S_ResourceUnAvailable.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for S_ResourceUnAvailable - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_S_ResourceUnAvailable { @@ -31,7 +31,7 @@ public interface I_S_ResourceUnAvailable public static final String Table_Name = "S_ResourceUnAvailable"; /** AD_Table_ID=482 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 482; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -143,7 +143,7 @@ public interface I_S_ResourceUnAvailable */ public int getS_Resource_ID(); - public I_S_Resource getS_Resource() throws RuntimeException; + public org.compiere.model.I_S_Resource getS_Resource() throws RuntimeException; /** Column name S_ResourceUnAvailable_ID */ public static final String COLUMNNAME_S_ResourceUnAvailable_ID = "S_ResourceUnAvailable_ID"; @@ -154,6 +154,15 @@ public interface I_S_ResourceUnAvailable /** Get Resource Unavailability */ public int getS_ResourceUnAvailable_ID(); + /** Column name S_ResourceUnAvailable_UU */ + public static final String COLUMNNAME_S_ResourceUnAvailable_UU = "S_ResourceUnAvailable_UU"; + + /** Set S_ResourceUnAvailable_UU */ + public void setS_ResourceUnAvailable_UU (String S_ResourceUnAvailable_UU); + + /** Get S_ResourceUnAvailable_UU */ + public String getS_ResourceUnAvailable_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_S_TimeExpense.java b/org.adempiere.base/src/org/compiere/model/I_S_TimeExpense.java index 8923ead346..ac57ceb144 100644 --- a/org.adempiere.base/src/org/compiere/model/I_S_TimeExpense.java +++ b/org.adempiere.base/src/org/compiere/model/I_S_TimeExpense.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for S_TimeExpense - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_S_TimeExpense { @@ -31,7 +31,7 @@ public interface I_S_TimeExpense public static final String Table_Name = "S_TimeExpense"; /** AD_Table_ID=486 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 486; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_S_TimeExpense */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -210,7 +210,7 @@ public interface I_S_TimeExpense */ public int getM_PriceList_ID(); - public I_M_PriceList getM_PriceList() throws RuntimeException; + public org.compiere.model.I_M_PriceList getM_PriceList() throws RuntimeException; /** Column name M_Warehouse_ID */ public static final String COLUMNNAME_M_Warehouse_ID = "M_Warehouse_ID"; @@ -225,7 +225,7 @@ public interface I_S_TimeExpense */ public int getM_Warehouse_ID(); - public I_M_Warehouse getM_Warehouse() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException; /** Column name Processed */ public static final String COLUMNNAME_Processed = "Processed"; @@ -262,6 +262,15 @@ public interface I_S_TimeExpense */ public int getS_TimeExpense_ID(); + /** Column name S_TimeExpense_UU */ + public static final String COLUMNNAME_S_TimeExpense_UU = "S_TimeExpense_UU"; + + /** Set S_TimeExpense_UU */ + public void setS_TimeExpense_UU (String S_TimeExpense_UU); + + /** Get S_TimeExpense_UU */ + public String getS_TimeExpense_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_S_TimeExpenseLine.java b/org.adempiere.base/src/org/compiere/model/I_S_TimeExpenseLine.java index e1426a4917..8c642f6ad5 100644 --- a/org.adempiere.base/src/org/compiere/model/I_S_TimeExpenseLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_S_TimeExpenseLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for S_TimeExpenseLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_S_TimeExpenseLine { @@ -31,7 +31,7 @@ public interface I_S_TimeExpenseLine public static final String Table_Name = "S_TimeExpenseLine"; /** AD_Table_ID=488 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 488; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_S_TimeExpenseLine */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -90,7 +90,7 @@ public interface I_S_TimeExpenseLine */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -105,7 +105,7 @@ public interface I_S_TimeExpenseLine */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -120,7 +120,7 @@ public interface I_S_TimeExpenseLine */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name C_InvoiceLine_ID */ public static final String COLUMNNAME_C_InvoiceLine_ID = "C_InvoiceLine_ID"; @@ -135,7 +135,7 @@ public interface I_S_TimeExpenseLine */ public int getC_InvoiceLine_ID(); - public I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException; + public org.compiere.model.I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException; /** Column name ConvertedAmt */ public static final String COLUMNNAME_ConvertedAmt = "ConvertedAmt"; @@ -163,7 +163,7 @@ public interface I_S_TimeExpenseLine */ public int getC_OrderLine_ID(); - public I_C_OrderLine getC_OrderLine() throws RuntimeException; + public org.compiere.model.I_C_OrderLine getC_OrderLine() throws RuntimeException; /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -178,7 +178,7 @@ public interface I_S_TimeExpenseLine */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name C_ProjectPhase_ID */ public static final String COLUMNNAME_C_ProjectPhase_ID = "C_ProjectPhase_ID"; @@ -193,7 +193,7 @@ public interface I_S_TimeExpenseLine */ public int getC_ProjectPhase_ID(); - public I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException; + public org.compiere.model.I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException; /** Column name C_ProjectTask_ID */ public static final String COLUMNNAME_C_ProjectTask_ID = "C_ProjectTask_ID"; @@ -208,7 +208,7 @@ public interface I_S_TimeExpenseLine */ public int getC_ProjectTask_ID(); - public I_C_ProjectTask getC_ProjectTask() throws RuntimeException; + public org.compiere.model.I_C_ProjectTask getC_ProjectTask() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -239,7 +239,7 @@ public interface I_S_TimeExpenseLine */ public int getC_UOM_ID(); - public I_C_UOM getC_UOM() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException; /** Column name DateExpense */ public static final String COLUMNNAME_DateExpense = "DateExpense"; @@ -358,7 +358,7 @@ public interface I_S_TimeExpenseLine */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Note */ public static final String COLUMNNAME_Note = "Note"; @@ -477,7 +477,7 @@ public interface I_S_TimeExpenseLine */ public int getS_TimeExpense_ID(); - public I_S_TimeExpense getS_TimeExpense() throws RuntimeException; + public org.compiere.model.I_S_TimeExpense getS_TimeExpense() throws RuntimeException; /** Column name S_TimeExpenseLine_ID */ public static final String COLUMNNAME_S_TimeExpenseLine_ID = "S_TimeExpenseLine_ID"; @@ -492,6 +492,15 @@ public interface I_S_TimeExpenseLine */ public int getS_TimeExpenseLine_ID(); + /** Column name S_TimeExpenseLine_UU */ + public static final String COLUMNNAME_S_TimeExpenseLine_UU = "S_TimeExpenseLine_UU"; + + /** Set S_TimeExpenseLine_UU */ + public void setS_TimeExpenseLine_UU (String S_TimeExpenseLine_UU); + + /** Get S_TimeExpenseLine_UU */ + public String getS_TimeExpenseLine_UU(); + /** Column name S_TimeType_ID */ public static final String COLUMNNAME_S_TimeType_ID = "S_TimeType_ID"; @@ -505,7 +514,7 @@ public interface I_S_TimeExpenseLine */ public int getS_TimeType_ID(); - public I_S_TimeType getS_TimeType() throws RuntimeException; + public org.compiere.model.I_S_TimeType getS_TimeType() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_S_TimeType.java b/org.adempiere.base/src/org/compiere/model/I_S_TimeType.java index 8da379feeb..4ca96f4632 100644 --- a/org.adempiere.base/src/org/compiere/model/I_S_TimeType.java +++ b/org.adempiere.base/src/org/compiere/model/I_S_TimeType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for S_TimeType - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_S_TimeType { @@ -31,7 +31,7 @@ public interface I_S_TimeType public static final String Table_Name = "S_TimeType"; /** AD_Table_ID=581 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 581; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -143,6 +143,15 @@ public interface I_S_TimeType */ public int getS_TimeType_ID(); + /** Column name S_TimeType_UU */ + public static final String COLUMNNAME_S_TimeType_UU = "S_TimeType_UU"; + + /** Set S_TimeType_UU */ + public void setS_TimeType_UU (String S_TimeType_UU); + + /** Get S_TimeType_UU */ + public String getS_TimeType_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_S_Training.java b/org.adempiere.base/src/org/compiere/model/I_S_Training.java index f04694a41e..1c6fec00f9 100644 --- a/org.adempiere.base/src/org/compiere/model/I_S_Training.java +++ b/org.adempiere.base/src/org/compiere/model/I_S_Training.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for S_Training - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_S_Training { @@ -31,7 +31,7 @@ public interface I_S_Training public static final String Table_Name = "S_Training"; /** AD_Table_ID=538 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 538; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -91,7 +91,7 @@ public interface I_S_Training */ public int getC_TaxCategory_ID(); - public I_C_TaxCategory getC_TaxCategory() throws RuntimeException; + public org.compiere.model.I_C_TaxCategory getC_TaxCategory() throws RuntimeException; /** Column name C_UOM_ID */ public static final String COLUMNNAME_C_UOM_ID = "C_UOM_ID"; @@ -106,7 +106,7 @@ public interface I_S_Training */ public int getC_UOM_ID(); - public I_C_UOM getC_UOM() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException; /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; @@ -199,7 +199,7 @@ public interface I_S_Training */ public int getM_Product_Category_ID(); - public I_M_Product_Category getM_Product_Category() throws RuntimeException; + public org.compiere.model.I_M_Product_Category getM_Product_Category() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; @@ -236,6 +236,15 @@ public interface I_S_Training */ public int getS_Training_ID(); + /** Column name S_Training_UU */ + public static final String COLUMNNAME_S_Training_UU = "S_Training_UU"; + + /** Set S_Training_UU */ + public void setS_Training_UU (String S_Training_UU); + + /** Get S_Training_UU */ + public String getS_Training_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_S_Training_Class.java b/org.adempiere.base/src/org/compiere/model/I_S_Training_Class.java index cbb362dfc5..02e81def94 100644 --- a/org.adempiere.base/src/org/compiere/model/I_S_Training_Class.java +++ b/org.adempiere.base/src/org/compiere/model/I_S_Training_Class.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for S_Training_Class - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_S_Training_Class { @@ -31,7 +31,7 @@ public interface I_S_Training_Class public static final String Table_Name = "S_Training_Class"; /** AD_Table_ID=537 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 537; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -117,7 +117,7 @@ public interface I_S_Training_Class */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name StartDate */ public static final String COLUMNNAME_StartDate = "StartDate"; @@ -145,6 +145,15 @@ public interface I_S_Training_Class */ public int getS_Training_Class_ID(); + /** Column name S_Training_Class_UU */ + public static final String COLUMNNAME_S_Training_Class_UU = "S_Training_Class_UU"; + + /** Set S_Training_Class_UU */ + public void setS_Training_Class_UU (String S_Training_Class_UU); + + /** Get S_Training_Class_UU */ + public String getS_Training_Class_UU(); + /** Column name S_Training_ID */ public static final String COLUMNNAME_S_Training_ID = "S_Training_ID"; @@ -158,7 +167,7 @@ public interface I_S_Training_Class */ public int getS_Training_ID(); - public I_S_Training getS_Training() throws RuntimeException; + public org.compiere.model.I_S_Training getS_Training() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_T_Aging.java b/org.adempiere.base/src/org/compiere/model/I_T_Aging.java index dc6eea6340..e1e3f7645d 100644 --- a/org.adempiere.base/src/org/compiere/model/I_T_Aging.java +++ b/org.adempiere.base/src/org/compiere/model/I_T_Aging.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for T_Aging - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_T_Aging { @@ -31,7 +31,7 @@ public interface I_T_Aging public static final String Table_Name = "T_Aging"; /** AD_Table_ID=631 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 631; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_T_Aging */ public int getAD_PInstance_ID(); - public I_AD_PInstance getAD_PInstance() throws RuntimeException; + public org.compiere.model.I_AD_PInstance getAD_PInstance() throws RuntimeException; /** Column name C_Activity_ID */ public static final String COLUMNNAME_C_Activity_ID = "C_Activity_ID"; @@ -90,7 +90,7 @@ public interface I_T_Aging */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -105,7 +105,7 @@ public interface I_T_Aging */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_BP_Group_ID */ public static final String COLUMNNAME_C_BP_Group_ID = "C_BP_Group_ID"; @@ -120,7 +120,7 @@ public interface I_T_Aging */ public int getC_BP_Group_ID(); - public I_C_BP_Group getC_BP_Group() throws RuntimeException; + public org.compiere.model.I_C_BP_Group getC_BP_Group() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -135,7 +135,7 @@ public interface I_T_Aging */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -150,7 +150,7 @@ public interface I_T_Aging */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name C_Invoice_ID */ public static final String COLUMNNAME_C_Invoice_ID = "C_Invoice_ID"; @@ -165,7 +165,7 @@ public interface I_T_Aging */ public int getC_Invoice_ID(); - public I_C_Invoice getC_Invoice() throws RuntimeException; + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException; /** Column name C_InvoicePaySchedule_ID */ public static final String COLUMNNAME_C_InvoicePaySchedule_ID = "C_InvoicePaySchedule_ID"; @@ -180,7 +180,7 @@ public interface I_T_Aging */ public int getC_InvoicePaySchedule_ID(); - public I_C_InvoicePaySchedule getC_InvoicePaySchedule() throws RuntimeException; + public org.compiere.model.I_C_InvoicePaySchedule getC_InvoicePaySchedule() throws RuntimeException; /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -195,7 +195,7 @@ public interface I_T_Aging */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -514,6 +514,15 @@ public interface I_T_Aging */ public Timestamp getStatementDate(); + /** Column name T_Aging_UU */ + public static final String COLUMNNAME_T_Aging_UU = "T_Aging_UU"; + + /** Set T_Aging_UU */ + public void setT_Aging_UU (String T_Aging_UU); + + /** Get T_Aging_UU */ + public String getT_Aging_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_T_BOM_Indented.java b/org.adempiere.base/src/org/compiere/model/I_T_BOM_Indented.java index 1a23e21a92..0af52c4dce 100644 --- a/org.adempiere.base/src/org/compiere/model/I_T_BOM_Indented.java +++ b/org.adempiere.base/src/org/compiere/model/I_T_BOM_Indented.java @@ -1,318 +1,327 @@ -/****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * - * This program is free software, you can redistribute it and/or modify it * - * under the terms version 2 of the GNU General Public License as published * - * by the Free Software Foundation. This program is distributed in the hope * - * that it will be useful, but WITHOUT ANY WARRANTY, without even the implied * - * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * - * See the GNU General Public License for more details. * - * You should have received a copy of the GNU General Public License along * - * with this program, if not, write to the Free Software Foundation, Inc., * - * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * - * For the text or an alternative of this public license, you may reach us * - * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * - * or via info@compiere.org or http://www.compiere.org/license.html * - *****************************************************************************/ -package org.compiere.model; - -import java.math.BigDecimal; -import java.sql.Timestamp; -import org.compiere.util.KeyNamePair; - -/** Generated Interface for T_BOM_Indented - * @author Adempiere (generated) - * @version Release 3.6.0LTS - */ -public interface I_T_BOM_Indented -{ - - /** TableName=T_BOM_Indented */ - public static final String Table_Name = "T_BOM_Indented"; - - /** AD_Table_ID=1000008 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); - - KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); - - /** AccessLevel = 3 - Client - Org - */ - BigDecimal accessLevel = BigDecimal.valueOf(3); - - /** Load Meta Data */ - - /** Column name AD_Client_ID */ - public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; - - /** Get Client. - * Client/Tenant for this installation. - */ - public int getAD_Client_ID(); - - /** Column name AD_Org_ID */ - public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; - - /** Set Organisation. - * Organisational entity within client - */ - public void setAD_Org_ID (int AD_Org_ID); - - /** Get Organisation. - * Organisational entity within client - */ - public int getAD_Org_ID(); - - /** Column name AD_PInstance_ID */ - public static final String COLUMNNAME_AD_PInstance_ID = "AD_PInstance_ID"; - - /** Set Process Instance. - * Instance of the process - */ - public void setAD_PInstance_ID (int AD_PInstance_ID); - - /** Get Process Instance. - * Instance of the process - */ - public int getAD_PInstance_ID(); - - public I_AD_PInstance getAD_PInstance() throws RuntimeException; - - /** Column name C_AcctSchema_ID */ - public static final String COLUMNNAME_C_AcctSchema_ID = "C_AcctSchema_ID"; - - /** Set Accounting Schema. - * Rules for accounting - */ - public void setC_AcctSchema_ID (int C_AcctSchema_ID); - - /** Get Accounting Schema. - * Rules for accounting - */ - public int getC_AcctSchema_ID(); - - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException; - - /** Column name Cost */ - public static final String COLUMNNAME_Cost = "Cost"; - - /** Set Cost. - * Cost information - */ - public void setCost (BigDecimal Cost); - - /** Get Cost. - * Cost information - */ - public BigDecimal getCost(); - - /** Column name CostFuture */ - public static final String COLUMNNAME_CostFuture = "CostFuture"; - - /** Set Future Cost. - * Cost information - */ - public void setCostFuture (BigDecimal CostFuture); - - /** Get Future Cost. - * Cost information - */ - public BigDecimal getCostFuture(); - - /** Column name Created */ - public static final String COLUMNNAME_Created = "Created"; - - /** Get Created. - * Date this record was created - */ - public Timestamp getCreated(); - - /** Column name CreatedBy */ - public static final String COLUMNNAME_CreatedBy = "CreatedBy"; - - /** Get Created By. - * User who created this records - */ - public int getCreatedBy(); - - /** Column name CurrentCostPrice */ - public static final String COLUMNNAME_CurrentCostPrice = "CurrentCostPrice"; - - /** Set Current Cost Price. - * The currently used cost price - */ - public void setCurrentCostPrice (BigDecimal CurrentCostPrice); - - /** Get Current Cost Price. - * The currently used cost price - */ - public BigDecimal getCurrentCostPrice(); - - /** Column name CurrentCostPriceLL */ - public static final String COLUMNNAME_CurrentCostPriceLL = "CurrentCostPriceLL"; - - /** Set Current Cost Price Lower Level. - * Current Price Lower Level Is the sum of the costs of the components of this product manufactured for this level. - */ - public void setCurrentCostPriceLL (BigDecimal CurrentCostPriceLL); - - /** Get Current Cost Price Lower Level. - * Current Price Lower Level Is the sum of the costs of the components of this product manufactured for this level. - */ - public BigDecimal getCurrentCostPriceLL(); - - /** Column name FutureCostPrice */ - public static final String COLUMNNAME_FutureCostPrice = "FutureCostPrice"; - - /** Set Future Cost Price */ - public void setFutureCostPrice (BigDecimal FutureCostPrice); - - /** Get Future Cost Price */ - public BigDecimal getFutureCostPrice(); - - /** Column name FutureCostPriceLL */ - public static final String COLUMNNAME_FutureCostPriceLL = "FutureCostPriceLL"; - - /** Set Future Cost Price Lower Level */ - public void setFutureCostPriceLL (BigDecimal FutureCostPriceLL); - - /** Get Future Cost Price Lower Level */ - public BigDecimal getFutureCostPriceLL(); - - /** Column name IsActive */ - public static final String COLUMNNAME_IsActive = "IsActive"; - - /** Set Active. - * The record is active in the system - */ - public void setIsActive (boolean IsActive); - - /** Get Active. - * The record is active in the system - */ - public boolean isActive(); - - /** Column name LevelNo */ - public static final String COLUMNNAME_LevelNo = "LevelNo"; - - /** Set Level no */ - public void setLevelNo (int LevelNo); - - /** Get Level no */ - public int getLevelNo(); - - /** Column name Levels */ - public static final String COLUMNNAME_Levels = "Levels"; - - /** Set Levels */ - public void setLevels (String Levels); - - /** Get Levels */ - public String getLevels(); - - /** Column name M_CostElement_ID */ - public static final String COLUMNNAME_M_CostElement_ID = "M_CostElement_ID"; - - /** Set Cost Element. - * Product Cost Element - */ - public void setM_CostElement_ID (int M_CostElement_ID); - - /** Get Cost Element. - * Product Cost Element - */ - public int getM_CostElement_ID(); - - public I_M_CostElement getM_CostElement() throws RuntimeException; - - /** Column name M_Product_ID */ - public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; - - /** Set Product. - * Product, Service, Item - */ - public void setM_Product_ID (int M_Product_ID); - - /** Get Product. - * Product, Service, Item - */ - public int getM_Product_ID(); - - public I_M_Product getM_Product() throws RuntimeException; - - /** Column name Qty */ - public static final String COLUMNNAME_Qty = "Qty"; - - /** Set Quantity. - * Quantity - */ - public void setQty (BigDecimal Qty); - - /** Get Quantity. - * Quantity - */ - public BigDecimal getQty(); - - /** Column name QtyBOM */ - public static final String COLUMNNAME_QtyBOM = "QtyBOM"; - - /** Set Quantity. - * Indicate the Quantity use in this BOM - */ - public void setQtyBOM (BigDecimal QtyBOM); - - /** Get Quantity. - * Indicate the Quantity use in this BOM - */ - public BigDecimal getQtyBOM(); - - /** Column name Sel_Product_ID */ - public static final String COLUMNNAME_Sel_Product_ID = "Sel_Product_ID"; - - /** Set Selected Product */ - public void setSel_Product_ID (int Sel_Product_ID); - - /** Get Selected Product */ - public int getSel_Product_ID(); - - public I_M_Product getSel_Product() throws RuntimeException; - - /** Column name SeqNo */ - public static final String COLUMNNAME_SeqNo = "SeqNo"; - - /** Set Sequence. - * Method of ordering records; - lowest number comes first - */ - public void setSeqNo (int SeqNo); - - /** Get Sequence. - * Method of ordering records; - lowest number comes first - */ - public int getSeqNo(); - - /** Column name T_BOM_Indented_ID */ - public static final String COLUMNNAME_T_BOM_Indented_ID = "T_BOM_Indented_ID"; - - /** Set Indented BOM Report */ - public void setT_BOM_Indented_ID (int T_BOM_Indented_ID); - - /** Get Indented BOM Report */ - public int getT_BOM_Indented_ID(); - - /** Column name Updated */ - public static final String COLUMNNAME_Updated = "Updated"; - - /** Get Updated. - * Date this record was updated - */ - public Timestamp getUpdated(); - - /** Column name UpdatedBy */ - public static final String COLUMNNAME_UpdatedBy = "UpdatedBy"; - - /** Get Updated By. - * User who updated this records - */ - public int getUpdatedBy(); -} +/****************************************************************************** + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * + * This program is free software, you can redistribute it and/or modify it * + * under the terms version 2 of the GNU General Public License as published * + * by the Free Software Foundation. This program is distributed in the hope * + * that it will be useful, but WITHOUT ANY WARRANTY, without even the implied * + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * + * See the GNU General Public License for more details. * + * You should have received a copy of the GNU General Public License along * + * with this program, if not, write to the Free Software Foundation, Inc., * + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * + * For the text or an alternative of this public license, you may reach us * + * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * + * or via info@compiere.org or http://www.compiere.org/license.html * + *****************************************************************************/ +package org.compiere.model; + +import java.math.BigDecimal; +import java.sql.Timestamp; +import org.compiere.util.KeyNamePair; + +/** Generated Interface for T_BOM_Indented + * @author iDempiere (generated) + * @version Release 1.0a + */ +public interface I_T_BOM_Indented +{ + + /** TableName=T_BOM_Indented */ + public static final String Table_Name = "T_BOM_Indented"; + + /** AD_Table_ID=53335 */ + public static final int Table_ID = 53335; + + KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); + + /** AccessLevel = 3 - Client - Org + */ + BigDecimal accessLevel = BigDecimal.valueOf(3); + + /** Load Meta Data */ + + /** Column name AD_Client_ID */ + public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; + + /** Get Client. + * Client/Tenant for this installation. + */ + public int getAD_Client_ID(); + + /** Column name AD_Org_ID */ + public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; + + /** Set Organization. + * Organizational entity within client + */ + public void setAD_Org_ID (int AD_Org_ID); + + /** Get Organization. + * Organizational entity within client + */ + public int getAD_Org_ID(); + + /** Column name AD_PInstance_ID */ + public static final String COLUMNNAME_AD_PInstance_ID = "AD_PInstance_ID"; + + /** Set Process Instance. + * Instance of the process + */ + public void setAD_PInstance_ID (int AD_PInstance_ID); + + /** Get Process Instance. + * Instance of the process + */ + public int getAD_PInstance_ID(); + + public org.compiere.model.I_AD_PInstance getAD_PInstance() throws RuntimeException; + + /** Column name C_AcctSchema_ID */ + public static final String COLUMNNAME_C_AcctSchema_ID = "C_AcctSchema_ID"; + + /** Set Accounting Schema. + * Rules for accounting + */ + public void setC_AcctSchema_ID (int C_AcctSchema_ID); + + /** Get Accounting Schema. + * Rules for accounting + */ + public int getC_AcctSchema_ID(); + + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + + /** Column name Cost */ + public static final String COLUMNNAME_Cost = "Cost"; + + /** Set Cost. + * Cost information + */ + public void setCost (BigDecimal Cost); + + /** Get Cost. + * Cost information + */ + public BigDecimal getCost(); + + /** Column name CostFuture */ + public static final String COLUMNNAME_CostFuture = "CostFuture"; + + /** Set Future Cost. + * Cost information + */ + public void setCostFuture (BigDecimal CostFuture); + + /** Get Future Cost. + * Cost information + */ + public BigDecimal getCostFuture(); + + /** Column name Created */ + public static final String COLUMNNAME_Created = "Created"; + + /** Get Created. + * Date this record was created + */ + public Timestamp getCreated(); + + /** Column name CreatedBy */ + public static final String COLUMNNAME_CreatedBy = "CreatedBy"; + + /** Get Created By. + * User who created this records + */ + public int getCreatedBy(); + + /** Column name CurrentCostPrice */ + public static final String COLUMNNAME_CurrentCostPrice = "CurrentCostPrice"; + + /** Set Current Cost Price. + * The currently used cost price + */ + public void setCurrentCostPrice (BigDecimal CurrentCostPrice); + + /** Get Current Cost Price. + * The currently used cost price + */ + public BigDecimal getCurrentCostPrice(); + + /** Column name CurrentCostPriceLL */ + public static final String COLUMNNAME_CurrentCostPriceLL = "CurrentCostPriceLL"; + + /** Set Current Cost Price Lower Level. + * Current Price Lower Level Is the sum of the costs of the components of this product manufactured for this level. + */ + public void setCurrentCostPriceLL (BigDecimal CurrentCostPriceLL); + + /** Get Current Cost Price Lower Level. + * Current Price Lower Level Is the sum of the costs of the components of this product manufactured for this level. + */ + public BigDecimal getCurrentCostPriceLL(); + + /** Column name FutureCostPrice */ + public static final String COLUMNNAME_FutureCostPrice = "FutureCostPrice"; + + /** Set Future Cost Price */ + public void setFutureCostPrice (BigDecimal FutureCostPrice); + + /** Get Future Cost Price */ + public BigDecimal getFutureCostPrice(); + + /** Column name FutureCostPriceLL */ + public static final String COLUMNNAME_FutureCostPriceLL = "FutureCostPriceLL"; + + /** Set Future Cost Price Lower Level */ + public void setFutureCostPriceLL (BigDecimal FutureCostPriceLL); + + /** Get Future Cost Price Lower Level */ + public BigDecimal getFutureCostPriceLL(); + + /** Column name IsActive */ + public static final String COLUMNNAME_IsActive = "IsActive"; + + /** Set Active. + * The record is active in the system + */ + public void setIsActive (boolean IsActive); + + /** Get Active. + * The record is active in the system + */ + public boolean isActive(); + + /** Column name LevelNo */ + public static final String COLUMNNAME_LevelNo = "LevelNo"; + + /** Set Level no */ + public void setLevelNo (int LevelNo); + + /** Get Level no */ + public int getLevelNo(); + + /** Column name Levels */ + public static final String COLUMNNAME_Levels = "Levels"; + + /** Set Levels */ + public void setLevels (String Levels); + + /** Get Levels */ + public String getLevels(); + + /** Column name M_CostElement_ID */ + public static final String COLUMNNAME_M_CostElement_ID = "M_CostElement_ID"; + + /** Set Cost Element. + * Product Cost Element + */ + public void setM_CostElement_ID (int M_CostElement_ID); + + /** Get Cost Element. + * Product Cost Element + */ + public int getM_CostElement_ID(); + + public org.compiere.model.I_M_CostElement getM_CostElement() throws RuntimeException; + + /** Column name M_Product_ID */ + public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; + + /** Set Product. + * Product, Service, Item + */ + public void setM_Product_ID (int M_Product_ID); + + /** Get Product. + * Product, Service, Item + */ + public int getM_Product_ID(); + + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; + + /** Column name Qty */ + public static final String COLUMNNAME_Qty = "Qty"; + + /** Set Quantity. + * Quantity + */ + public void setQty (BigDecimal Qty); + + /** Get Quantity. + * Quantity + */ + public BigDecimal getQty(); + + /** Column name QtyBOM */ + public static final String COLUMNNAME_QtyBOM = "QtyBOM"; + + /** Set Quantity. + * Indicate the Quantity use in this BOM + */ + public void setQtyBOM (BigDecimal QtyBOM); + + /** Get Quantity. + * Indicate the Quantity use in this BOM + */ + public BigDecimal getQtyBOM(); + + /** Column name Sel_Product_ID */ + public static final String COLUMNNAME_Sel_Product_ID = "Sel_Product_ID"; + + /** Set Selected Product */ + public void setSel_Product_ID (int Sel_Product_ID); + + /** Get Selected Product */ + public int getSel_Product_ID(); + + public org.compiere.model.I_M_Product getSel_Product() throws RuntimeException; + + /** Column name SeqNo */ + public static final String COLUMNNAME_SeqNo = "SeqNo"; + + /** Set Sequence. + * Method of ordering records; + lowest number comes first + */ + public void setSeqNo (int SeqNo); + + /** Get Sequence. + * Method of ordering records; + lowest number comes first + */ + public int getSeqNo(); + + /** Column name T_BOM_Indented_ID */ + public static final String COLUMNNAME_T_BOM_Indented_ID = "T_BOM_Indented_ID"; + + /** Set Indented BOM Report */ + public void setT_BOM_Indented_ID (int T_BOM_Indented_ID); + + /** Get Indented BOM Report */ + public int getT_BOM_Indented_ID(); + + /** Column name T_BOM_Indented_UU */ + public static final String COLUMNNAME_T_BOM_Indented_UU = "T_BOM_Indented_UU"; + + /** Set T_BOM_Indented_UU */ + public void setT_BOM_Indented_UU (String T_BOM_Indented_UU); + + /** Get T_BOM_Indented_UU */ + public String getT_BOM_Indented_UU(); + + /** Column name Updated */ + public static final String COLUMNNAME_Updated = "Updated"; + + /** Get Updated. + * Date this record was updated + */ + public Timestamp getUpdated(); + + /** Column name UpdatedBy */ + public static final String COLUMNNAME_UpdatedBy = "UpdatedBy"; + + /** Get Updated By. + * User who updated this records + */ + public int getUpdatedBy(); +} diff --git a/org.adempiere.base/src/org/compiere/model/I_T_CashFlow.java b/org.adempiere.base/src/org/compiere/model/I_T_CashFlow.java index d7406f5e58..449a58e7d4 100644 --- a/org.adempiere.base/src/org/compiere/model/I_T_CashFlow.java +++ b/org.adempiere.base/src/org/compiere/model/I_T_CashFlow.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for T_CashFlow - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_T_CashFlow { @@ -381,6 +381,15 @@ public interface I_T_CashFlow /** Get T_CashFlow_ID */ public int getT_CashFlow_ID(); + /** Column name T_CashFlow_UU */ + public static final String COLUMNNAME_T_CashFlow_UU = "T_CashFlow_UU"; + + /** Set T_CashFlow_UU */ + public void setT_CashFlow_UU (String T_CashFlow_UU); + + /** Get T_CashFlow_UU */ + public String getT_CashFlow_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_T_DistributionRunDetail.java b/org.adempiere.base/src/org/compiere/model/I_T_DistributionRunDetail.java index 5fb817c4ac..00ef86accb 100644 --- a/org.adempiere.base/src/org/compiere/model/I_T_DistributionRunDetail.java +++ b/org.adempiere.base/src/org/compiere/model/I_T_DistributionRunDetail.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for T_DistributionRunDetail - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_T_DistributionRunDetail { @@ -31,7 +31,7 @@ public interface I_T_DistributionRunDetail public static final String Table_Name = "T_DistributionRunDetail"; /** AD_Table_ID=714 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 714; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_T_DistributionRunDetail */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_BPartner_Location_ID */ public static final String COLUMNNAME_C_BPartner_Location_ID = "C_BPartner_Location_ID"; @@ -90,7 +90,7 @@ public interface I_T_DistributionRunDetail */ public int getC_BPartner_Location_ID(); - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -134,7 +134,7 @@ public interface I_T_DistributionRunDetail */ public int getM_DistributionList_ID(); - public I_M_DistributionList getM_DistributionList() throws RuntimeException; + public org.compiere.model.I_M_DistributionList getM_DistributionList() throws RuntimeException; /** Column name M_DistributionListLine_ID */ public static final String COLUMNNAME_M_DistributionListLine_ID = "M_DistributionListLine_ID"; @@ -149,7 +149,7 @@ public interface I_T_DistributionRunDetail */ public int getM_DistributionListLine_ID(); - public I_M_DistributionListLine getM_DistributionListLine() throws RuntimeException; + public org.compiere.model.I_M_DistributionListLine getM_DistributionListLine() throws RuntimeException; /** Column name M_DistributionRun_ID */ public static final String COLUMNNAME_M_DistributionRun_ID = "M_DistributionRun_ID"; @@ -164,7 +164,7 @@ public interface I_T_DistributionRunDetail */ public int getM_DistributionRun_ID(); - public I_M_DistributionRun getM_DistributionRun() throws RuntimeException; + public org.compiere.model.I_M_DistributionRun getM_DistributionRun() throws RuntimeException; /** Column name M_DistributionRunLine_ID */ public static final String COLUMNNAME_M_DistributionRunLine_ID = "M_DistributionRunLine_ID"; @@ -179,7 +179,7 @@ public interface I_T_DistributionRunDetail */ public int getM_DistributionRunLine_ID(); - public I_M_DistributionRunLine getM_DistributionRunLine() throws RuntimeException; + public org.compiere.model.I_M_DistributionRunLine getM_DistributionRunLine() throws RuntimeException; /** Column name MinQty */ public static final String COLUMNNAME_MinQty = "MinQty"; @@ -207,7 +207,7 @@ public interface I_T_DistributionRunDetail */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Qty */ public static final String COLUMNNAME_Qty = "Qty"; @@ -235,6 +235,15 @@ public interface I_T_DistributionRunDetail */ public BigDecimal getRatio(); + /** Column name T_DistributionRunDetail_UU */ + public static final String COLUMNNAME_T_DistributionRunDetail_UU = "T_DistributionRunDetail_UU"; + + /** Set T_DistributionRunDetail_UU */ + public void setT_DistributionRunDetail_UU (String T_DistributionRunDetail_UU); + + /** Get T_DistributionRunDetail_UU */ + public String getT_DistributionRunDetail_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_T_InventoryValue.java b/org.adempiere.base/src/org/compiere/model/I_T_InventoryValue.java index 0a3e564ee3..2231d37185 100644 --- a/org.adempiere.base/src/org/compiere/model/I_T_InventoryValue.java +++ b/org.adempiere.base/src/org/compiere/model/I_T_InventoryValue.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for T_InventoryValue - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_T_InventoryValue { @@ -31,7 +31,7 @@ public interface I_T_InventoryValue public static final String Table_Name = "T_InventoryValue"; /** AD_Table_ID=478 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 478; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_T_InventoryValue */ public int getAD_PInstance_ID(); - public I_AD_PInstance getAD_PInstance() throws RuntimeException; + public org.compiere.model.I_AD_PInstance getAD_PInstance() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -90,7 +90,7 @@ public interface I_T_InventoryValue */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name Cost */ public static final String COLUMNNAME_Cost = "Cost"; @@ -185,7 +185,7 @@ public interface I_T_InventoryValue */ public int getM_CostElement_ID(); - public I_M_CostElement getM_CostElement() throws RuntimeException; + public org.compiere.model.I_M_CostElement getM_CostElement() throws RuntimeException; /** Column name M_PriceList_Version_ID */ public static final String COLUMNNAME_M_PriceList_Version_ID = "M_PriceList_Version_ID"; @@ -200,7 +200,7 @@ public interface I_T_InventoryValue */ public int getM_PriceList_Version_ID(); - public I_M_PriceList_Version getM_PriceList_Version() throws RuntimeException; + public org.compiere.model.I_M_PriceList_Version getM_PriceList_Version() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -215,7 +215,7 @@ public interface I_T_InventoryValue */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name M_Warehouse_ID */ public static final String COLUMNNAME_M_Warehouse_ID = "M_Warehouse_ID"; @@ -230,7 +230,7 @@ public interface I_T_InventoryValue */ public int getM_Warehouse_ID(); - public I_M_Warehouse getM_Warehouse() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException; /** Column name PriceLimit */ public static final String COLUMNNAME_PriceLimit = "PriceLimit"; @@ -348,4 +348,13 @@ public interface I_T_InventoryValue * On Hand Quantity */ public BigDecimal getQtyOnHand(); + + /** Column name T_InventoryValue_UU */ + public static final String COLUMNNAME_T_InventoryValue_UU = "T_InventoryValue_UU"; + + /** Set T_InventoryValue_UU */ + public void setT_InventoryValue_UU (String T_InventoryValue_UU); + + /** Get T_InventoryValue_UU */ + public String getT_InventoryValue_UU(); } diff --git a/org.adempiere.base/src/org/compiere/model/I_T_InvoiceGL.java b/org.adempiere.base/src/org/compiere/model/I_T_InvoiceGL.java index 6463519b09..3ba6c94d14 100644 --- a/org.adempiere.base/src/org/compiere/model/I_T_InvoiceGL.java +++ b/org.adempiere.base/src/org/compiere/model/I_T_InvoiceGL.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for T_InvoiceGL - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_T_InvoiceGL { @@ -31,7 +31,7 @@ public interface I_T_InvoiceGL public static final String Table_Name = "T_InvoiceGL"; /** AD_Table_ID=803 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 803; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_T_InvoiceGL */ public int getAD_PInstance_ID(); - public I_AD_PInstance getAD_PInstance() throws RuntimeException; + public org.compiere.model.I_AD_PInstance getAD_PInstance() throws RuntimeException; /** Column name AmtAcctBalance */ public static final String COLUMNNAME_AmtAcctBalance = "AmtAcctBalance"; @@ -181,7 +181,7 @@ public interface I_T_InvoiceGL */ public int getC_ConversionTypeReval_ID(); - public I_C_ConversionType getC_ConversionTypeReval() throws RuntimeException; + public org.compiere.model.I_C_ConversionType getC_ConversionTypeReval() throws RuntimeException; /** Column name C_DocTypeReval_ID */ public static final String COLUMNNAME_C_DocTypeReval_ID = "C_DocTypeReval_ID"; @@ -196,7 +196,7 @@ public interface I_T_InvoiceGL */ public int getC_DocTypeReval_ID(); - public I_C_DocType getC_DocTypeReval() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocTypeReval() throws RuntimeException; /** Column name C_Invoice_ID */ public static final String COLUMNNAME_C_Invoice_ID = "C_Invoice_ID"; @@ -211,7 +211,7 @@ public interface I_T_InvoiceGL */ public int getC_Invoice_ID(); - public I_C_Invoice getC_Invoice() throws RuntimeException; + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -316,6 +316,15 @@ public interface I_T_InvoiceGL */ public BigDecimal getPercent(); + /** Column name T_InvoiceGL_UU */ + public static final String COLUMNNAME_T_InvoiceGL_UU = "T_InvoiceGL_UU"; + + /** Set T_InvoiceGL_UU */ + public void setT_InvoiceGL_UU (String T_InvoiceGL_UU); + + /** Get T_InvoiceGL_UU */ + public String getT_InvoiceGL_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_T_Reconciliation.java b/org.adempiere.base/src/org/compiere/model/I_T_Reconciliation.java new file mode 100644 index 0000000000..cb6fff6d18 --- /dev/null +++ b/org.adempiere.base/src/org/compiere/model/I_T_Reconciliation.java @@ -0,0 +1,155 @@ +/****************************************************************************** + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * + * This program is free software, you can redistribute it and/or modify it * + * under the terms version 2 of the GNU General Public License as published * + * by the Free Software Foundation. This program is distributed in the hope * + * that it will be useful, but WITHOUT ANY WARRANTY, without even the implied * + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * + * See the GNU General Public License for more details. * + * You should have received a copy of the GNU General Public License along * + * with this program, if not, write to the Free Software Foundation, Inc., * + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * + * For the text or an alternative of this public license, you may reach us * + * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * + * or via info@compiere.org or http://www.compiere.org/license.html * + *****************************************************************************/ +package org.compiere.model; + +import java.math.BigDecimal; +import java.sql.Timestamp; +import org.compiere.util.KeyNamePair; + +/** Generated Interface for T_Reconciliation + * @author iDempiere (generated) + * @version Release 1.0a + */ +public interface I_T_Reconciliation +{ + + /** TableName=T_Reconciliation */ + public static final String Table_Name = "T_Reconciliation"; + + /** AD_Table_ID=53287 */ + public static final int Table_ID = 53287; + + KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); + + /** AccessLevel = 3 - Client - Org + */ + BigDecimal accessLevel = BigDecimal.valueOf(3); + + /** Load Meta Data */ + + /** Column name AD_Client_ID */ + public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; + + /** Get Client. + * Client/Tenant for this installation. + */ + public int getAD_Client_ID(); + + /** Column name AD_Org_ID */ + public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; + + /** Set Organization. + * Organizational entity within client + */ + public void setAD_Org_ID (int AD_Org_ID); + + /** Get Organization. + * Organizational entity within client + */ + public int getAD_Org_ID(); + + /** Column name AD_PInstance_ID */ + public static final String COLUMNNAME_AD_PInstance_ID = "AD_PInstance_ID"; + + /** Set Process Instance. + * Instance of the process + */ + public void setAD_PInstance_ID (int AD_PInstance_ID); + + /** Get Process Instance. + * Instance of the process + */ + public int getAD_PInstance_ID(); + + public org.compiere.model.I_AD_PInstance getAD_PInstance() throws RuntimeException; + + /** Column name Created */ + public static final String COLUMNNAME_Created = "Created"; + + /** Get Created. + * Date this record was created + */ + public Timestamp getCreated(); + + /** Column name CreatedBy */ + public static final String COLUMNNAME_CreatedBy = "CreatedBy"; + + /** Get Created By. + * User who created this records + */ + public int getCreatedBy(); + + /** Column name Fact_Acct_ID */ + public static final String COLUMNNAME_Fact_Acct_ID = "Fact_Acct_ID"; + + /** Set Accounting Fact */ + public void setFact_Acct_ID (int Fact_Acct_ID); + + /** Get Accounting Fact */ + public int getFact_Acct_ID(); + + /** Column name IsActive */ + public static final String COLUMNNAME_IsActive = "IsActive"; + + /** Set Active. + * The record is active in the system + */ + public void setIsActive (boolean IsActive); + + /** Get Active. + * The record is active in the system + */ + public boolean isActive(); + + /** Column name MatchCode */ + public static final String COLUMNNAME_MatchCode = "MatchCode"; + + /** Set Match Code. + * String identifying related accounting facts + */ + public void setMatchCode (String MatchCode); + + /** Get Match Code. + * String identifying related accounting facts + */ + public String getMatchCode(); + + /** Column name T_Reconciliation_UU */ + public static final String COLUMNNAME_T_Reconciliation_UU = "T_Reconciliation_UU"; + + /** Set T_Reconciliation_UU */ + public void setT_Reconciliation_UU (String T_Reconciliation_UU); + + /** Get T_Reconciliation_UU */ + public String getT_Reconciliation_UU(); + + /** Column name Updated */ + public static final String COLUMNNAME_Updated = "Updated"; + + /** Get Updated. + * Date this record was updated + */ + public Timestamp getUpdated(); + + /** Column name UpdatedBy */ + public static final String COLUMNNAME_UpdatedBy = "UpdatedBy"; + + /** Get Updated By. + * User who updated this records + */ + public int getUpdatedBy(); +} diff --git a/org.adempiere.base/src/org/compiere/model/I_T_Replenish.java b/org.adempiere.base/src/org/compiere/model/I_T_Replenish.java index 1a135f2e27..2ec36739ea 100644 --- a/org.adempiere.base/src/org/compiere/model/I_T_Replenish.java +++ b/org.adempiere.base/src/org/compiere/model/I_T_Replenish.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for T_Replenish - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_T_Replenish { @@ -31,7 +31,7 @@ public interface I_T_Replenish public static final String Table_Name = "T_Replenish"; /** AD_Table_ID=364 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 364; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_T_Replenish */ public int getAD_PInstance_ID(); - public I_AD_PInstance getAD_PInstance() throws RuntimeException; + public org.compiere.model.I_AD_PInstance getAD_PInstance() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -90,7 +90,7 @@ public interface I_T_Replenish */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_DocType_ID */ public static final String COLUMNNAME_C_DocType_ID = "C_DocType_ID"; @@ -105,7 +105,7 @@ public interface I_T_Replenish */ public int getC_DocType_ID(); - public I_C_DocType getC_DocType() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException; /** Column name Level_Max */ public static final String COLUMNNAME_Level_Max = "Level_Max"; @@ -146,7 +146,7 @@ public interface I_T_Replenish */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name M_Warehouse_ID */ public static final String COLUMNNAME_M_Warehouse_ID = "M_Warehouse_ID"; @@ -161,7 +161,7 @@ public interface I_T_Replenish */ public int getM_Warehouse_ID(); - public I_M_Warehouse getM_Warehouse() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException; /** Column name M_WarehouseSource_ID */ public static final String COLUMNNAME_M_WarehouseSource_ID = "M_WarehouseSource_ID"; @@ -176,7 +176,7 @@ public interface I_T_Replenish */ public int getM_WarehouseSource_ID(); - public I_M_Warehouse getM_WarehouseSource() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_WarehouseSource() throws RuntimeException; /** Column name Order_Min */ public static final String COLUMNNAME_Order_Min = "Order_Min"; @@ -278,6 +278,15 @@ public interface I_T_Replenish */ public String getReplenishType(); + /** Column name T_Replenish_UU */ + public static final String COLUMNNAME_T_Replenish_UU = "T_Replenish_UU"; + + /** Set T_Replenish_UU */ + public void setT_Replenish_UU (String T_Replenish_UU); + + /** Get T_Replenish_UU */ + public String getT_Replenish_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_T_Report.java b/org.adempiere.base/src/org/compiere/model/I_T_Report.java index 57883560d1..8564410d15 100644 --- a/org.adempiere.base/src/org/compiere/model/I_T_Report.java +++ b/org.adempiere.base/src/org/compiere/model/I_T_Report.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -20,8 +20,8 @@ import java.math.BigDecimal; import org.compiere.util.KeyNamePair; /** Generated Interface for T_Report - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_T_Report { @@ -30,7 +30,7 @@ public interface I_T_Report public static final String Table_Name = "T_Report"; /** AD_Table_ID=544 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 544; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -53,7 +53,7 @@ public interface I_T_Report */ public int getAD_PInstance_ID(); - public I_AD_PInstance getAD_PInstance() throws RuntimeException; + public org.compiere.model.I_AD_PInstance getAD_PInstance() throws RuntimeException; /** Column name Col_0 */ public static final String COLUMNNAME_Col_0 = "Col_0"; @@ -297,7 +297,7 @@ public interface I_T_Report /** Get Report Line */ public int getPA_ReportLine_ID(); - public I_PA_ReportLine getPA_ReportLine() throws RuntimeException; + public org.compiere.model.I_PA_ReportLine getPA_ReportLine() throws RuntimeException; /** Column name Record_ID */ public static final String COLUMNNAME_Record_ID = "Record_ID"; @@ -326,4 +326,13 @@ public interface I_T_Report lowest number comes first */ public int getSeqNo(); + + /** Column name T_Report_UU */ + public static final String COLUMNNAME_T_Report_UU = "T_Report_UU"; + + /** Set T_Report_UU */ + public void setT_Report_UU (String T_Report_UU); + + /** Get T_Report_UU */ + public String getT_Report_UU(); } diff --git a/org.adempiere.base/src/org/compiere/model/I_T_ReportStatement.java b/org.adempiere.base/src/org/compiere/model/I_T_ReportStatement.java index dd1abae16f..f7e24164d5 100644 --- a/org.adempiere.base/src/org/compiere/model/I_T_ReportStatement.java +++ b/org.adempiere.base/src/org/compiere/model/I_T_ReportStatement.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for T_ReportStatement - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_T_ReportStatement { @@ -31,7 +31,7 @@ public interface I_T_ReportStatement public static final String Table_Name = "T_ReportStatement"; /** AD_Table_ID=545 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 545; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -54,7 +54,7 @@ public interface I_T_ReportStatement */ public int getAD_PInstance_ID(); - public I_AD_PInstance getAD_PInstance() throws RuntimeException; + public org.compiere.model.I_AD_PInstance getAD_PInstance() throws RuntimeException; /** Column name AmtAcctCr */ public static final String COLUMNNAME_AmtAcctCr = "AmtAcctCr"; @@ -126,7 +126,7 @@ public interface I_T_ReportStatement /** Get Accounting Fact */ public int getFact_Acct_ID(); - public I_Fact_Acct getFact_Acct() throws RuntimeException; + public org.compiere.model.I_Fact_Acct getFact_Acct() throws RuntimeException; /** Column name LevelNo */ public static final String COLUMNNAME_LevelNo = "LevelNo"; @@ -162,4 +162,13 @@ public interface I_T_ReportStatement * Quantity */ public BigDecimal getQty(); + + /** Column name T_ReportStatement_UU */ + public static final String COLUMNNAME_T_ReportStatement_UU = "T_ReportStatement_UU"; + + /** Set T_ReportStatement_UU */ + public void setT_ReportStatement_UU (String T_ReportStatement_UU); + + /** Get T_ReportStatement_UU */ + public String getT_ReportStatement_UU(); } diff --git a/org.adempiere.base/src/org/compiere/model/I_T_Transaction.java b/org.adempiere.base/src/org/compiere/model/I_T_Transaction.java index 97c3f8f0db..931b6a8d1a 100644 --- a/org.adempiere.base/src/org/compiere/model/I_T_Transaction.java +++ b/org.adempiere.base/src/org/compiere/model/I_T_Transaction.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for T_Transaction - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_T_Transaction { @@ -31,7 +31,7 @@ public interface I_T_Transaction public static final String Table_Name = "T_Transaction"; /** AD_Table_ID=758 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 758; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_T_Transaction */ public int getAD_PInstance_ID(); - public I_AD_PInstance getAD_PInstance() throws RuntimeException; + public org.compiere.model.I_AD_PInstance getAD_PInstance() throws RuntimeException; /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -90,7 +90,7 @@ public interface I_T_Transaction */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name C_ProjectIssue_ID */ public static final String COLUMNNAME_C_ProjectIssue_ID = "C_ProjectIssue_ID"; @@ -105,7 +105,7 @@ public interface I_T_Transaction */ public int getC_ProjectIssue_ID(); - public I_C_ProjectIssue getC_ProjectIssue() throws RuntimeException; + public org.compiere.model.I_C_ProjectIssue getC_ProjectIssue() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -164,7 +164,7 @@ public interface I_T_Transaction */ public int getM_InOut_ID(); - public I_M_InOut getM_InOut() throws RuntimeException; + public org.compiere.model.I_M_InOut getM_InOut() throws RuntimeException; /** Column name M_InOutLine_ID */ public static final String COLUMNNAME_M_InOutLine_ID = "M_InOutLine_ID"; @@ -179,7 +179,7 @@ public interface I_T_Transaction */ public int getM_InOutLine_ID(); - public I_M_InOutLine getM_InOutLine() throws RuntimeException; + public org.compiere.model.I_M_InOutLine getM_InOutLine() throws RuntimeException; /** Column name M_Inventory_ID */ public static final String COLUMNNAME_M_Inventory_ID = "M_Inventory_ID"; @@ -194,7 +194,7 @@ public interface I_T_Transaction */ public int getM_Inventory_ID(); - public I_M_Inventory getM_Inventory() throws RuntimeException; + public org.compiere.model.I_M_Inventory getM_Inventory() throws RuntimeException; /** Column name M_InventoryLine_ID */ public static final String COLUMNNAME_M_InventoryLine_ID = "M_InventoryLine_ID"; @@ -209,7 +209,7 @@ public interface I_T_Transaction */ public int getM_InventoryLine_ID(); - public I_M_InventoryLine getM_InventoryLine() throws RuntimeException; + public org.compiere.model.I_M_InventoryLine getM_InventoryLine() throws RuntimeException; /** Column name M_Locator_ID */ public static final String COLUMNNAME_M_Locator_ID = "M_Locator_ID"; @@ -239,7 +239,7 @@ public interface I_T_Transaction */ public int getM_Movement_ID(); - public I_M_Movement getM_Movement() throws RuntimeException; + public org.compiere.model.I_M_Movement getM_Movement() throws RuntimeException; /** Column name M_MovementLine_ID */ public static final String COLUMNNAME_M_MovementLine_ID = "M_MovementLine_ID"; @@ -254,7 +254,7 @@ public interface I_T_Transaction */ public int getM_MovementLine_ID(); - public I_M_MovementLine getM_MovementLine() throws RuntimeException; + public org.compiere.model.I_M_MovementLine getM_MovementLine() throws RuntimeException; /** Column name MovementDate */ public static final String COLUMNNAME_MovementDate = "MovementDate"; @@ -308,7 +308,7 @@ public interface I_T_Transaction */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name M_Production_ID */ public static final String COLUMNNAME_M_Production_ID = "M_Production_ID"; @@ -323,7 +323,7 @@ public interface I_T_Transaction */ public int getM_Production_ID(); - public I_M_Production getM_Production() throws RuntimeException; + public org.compiere.model.I_M_Production getM_Production() throws RuntimeException; /** Column name M_ProductionLine_ID */ public static final String COLUMNNAME_M_ProductionLine_ID = "M_ProductionLine_ID"; @@ -338,7 +338,7 @@ public interface I_T_Transaction */ public int getM_ProductionLine_ID(); - public I_M_ProductionLine getM_ProductionLine() throws RuntimeException; + public org.compiere.model.I_M_ProductionLine getM_ProductionLine() throws RuntimeException; /** Column name M_Transaction_ID */ public static final String COLUMNNAME_M_Transaction_ID = "M_Transaction_ID"; @@ -349,7 +349,7 @@ public interface I_T_Transaction /** Get Inventory Transaction */ public int getM_Transaction_ID(); - public I_M_Transaction getM_Transaction() throws RuntimeException; + public org.compiere.model.I_M_Transaction getM_Transaction() throws RuntimeException; /** Column name Search_InOut_ID */ public static final String COLUMNNAME_Search_InOut_ID = "Search_InOut_ID"; @@ -364,7 +364,7 @@ public interface I_T_Transaction */ public int getSearch_InOut_ID(); - public I_M_InOutLine getSearch_InOut() throws RuntimeException; + public org.compiere.model.I_M_InOutLine getSearch_InOut() throws RuntimeException; /** Column name Search_Invoice_ID */ public static final String COLUMNNAME_Search_Invoice_ID = "Search_Invoice_ID"; @@ -379,7 +379,7 @@ public interface I_T_Transaction */ public int getSearch_Invoice_ID(); - public I_C_Invoice getSearch_Invoice() throws RuntimeException; + public org.compiere.model.I_C_Invoice getSearch_Invoice() throws RuntimeException; /** Column name Search_Order_ID */ public static final String COLUMNNAME_Search_Order_ID = "Search_Order_ID"; @@ -394,7 +394,16 @@ public interface I_T_Transaction */ public int getSearch_Order_ID(); - public I_C_Order getSearch_Order() throws RuntimeException; + public org.compiere.model.I_C_Order getSearch_Order() throws RuntimeException; + + /** Column name T_Transaction_UU */ + public static final String COLUMNNAME_T_Transaction_UU = "T_Transaction_UU"; + + /** Set T_Transaction_UU */ + public void setT_Transaction_UU (String T_Transaction_UU); + + /** Get T_Transaction_UU */ + public String getT_Transaction_UU(); /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_Test.java b/org.adempiere.base/src/org/compiere/model/I_Test.java index 9059c4a073..321d24eb92 100644 --- a/org.adempiere.base/src/org/compiere/model/I_Test.java +++ b/org.adempiere.base/src/org/compiere/model/I_Test.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for Test - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_Test { @@ -31,7 +31,7 @@ public interface I_Test public static final String Table_Name = "Test"; /** AD_Table_ID=135 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 135; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -99,7 +99,7 @@ public interface I_Test */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Currency_ID */ public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID"; @@ -114,7 +114,7 @@ public interface I_Test */ public int getC_Currency_ID(); - public I_C_Currency getC_Currency() throws RuntimeException; + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException; /** Column name CharacterData */ public static final String COLUMNNAME_CharacterData = "CharacterData"; @@ -157,7 +157,7 @@ public interface I_Test */ public int getC_Payment_ID(); - public I_C_Payment getC_Payment() throws RuntimeException; + public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -188,7 +188,7 @@ public interface I_Test */ public int getC_UOM_ID(); - public I_C_UOM getC_UOM() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException; /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; @@ -257,7 +257,7 @@ public interface I_Test */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; @@ -330,6 +330,15 @@ public interface I_Test /** Get Test ID */ public int getTest_ID(); + /** Column name Test_UU */ + public static final String COLUMNNAME_Test_UU = "Test_UU"; + + /** Set Test_UU */ + public void setTest_UU (String Test_UU); + + /** Get Test_UU */ + public String getTest_UU(); + /** Column name T_Integer */ public static final String COLUMNNAME_T_Integer = "T_Integer"; diff --git a/org.adempiere.base/src/org/compiere/model/I_U_BlackListCheque.java b/org.adempiere.base/src/org/compiere/model/I_U_BlackListCheque.java index 84e5d3b6ba..58e51f78dd 100644 --- a/org.adempiere.base/src/org/compiere/model/I_U_BlackListCheque.java +++ b/org.adempiere.base/src/org/compiere/model/I_U_BlackListCheque.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for U_BlackListCheque - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_U_BlackListCheque { @@ -31,7 +31,7 @@ public interface I_U_BlackListCheque public static final String Table_Name = "U_BlackListCheque"; /** AD_Table_ID=52000 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 52000; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -118,6 +118,15 @@ public interface I_U_BlackListCheque /** Get Black List Cheque */ public int getU_BlackListCheque_ID(); + /** Column name U_BlackListCheque_UU */ + public static final String COLUMNNAME_U_BlackListCheque_UU = "U_BlackListCheque_UU"; + + /** Set U_BlackListCheque_UU */ + public void setU_BlackListCheque_UU (String U_BlackListCheque_UU); + + /** Get U_BlackListCheque_UU */ + public String getU_BlackListCheque_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/compiere/model/I_U_POSTerminal.java b/org.adempiere.base/src/org/compiere/model/I_U_POSTerminal.java index df117c2a17..cd0f57bcb8 100644 --- a/org.adempiere.base/src/org/compiere/model/I_U_POSTerminal.java +++ b/org.adempiere.base/src/org/compiere/model/I_U_POSTerminal.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for U_POSTerminal - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_U_POSTerminal { @@ -31,7 +31,7 @@ public interface I_U_POSTerminal public static final String Table_Name = "U_POSTerminal"; /** AD_Table_ID=52004 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 52004; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_U_POSTerminal */ public int getCard_BankAccount_ID(); - public I_C_BankAccount getCard_BankAccount() throws RuntimeException; + public org.compiere.model.I_C_BankAccount getCard_BankAccount() throws RuntimeException; /** Column name CardTransferBankAccount_ID */ public static final String COLUMNNAME_CardTransferBankAccount_ID = "CardTransferBankAccount_ID"; @@ -103,7 +103,7 @@ public interface I_U_POSTerminal */ public int getCardTransferBankAccount_ID(); - public I_C_BankAccount getCardTransferBankAccount() throws RuntimeException; + public org.compiere.model.I_C_BankAccount getCardTransferBankAccount() throws RuntimeException; /** Column name CardTransferCashBook_ID */ public static final String COLUMNNAME_CardTransferCashBook_ID = "CardTransferCashBook_ID"; @@ -118,7 +118,7 @@ public interface I_U_POSTerminal */ public int getCardTransferCashBook_ID(); - public I_C_CashBook getCardTransferCashBook() throws RuntimeException; + public org.compiere.model.I_C_CashBook getCardTransferCashBook() throws RuntimeException; /** Column name CardTransferType */ public static final String COLUMNNAME_CardTransferType = "CardTransferType"; @@ -155,7 +155,7 @@ public interface I_U_POSTerminal */ public int getCashTransferBankAccount_ID(); - public I_C_BankAccount getCashTransferBankAccount() throws RuntimeException; + public org.compiere.model.I_C_BankAccount getCashTransferBankAccount() throws RuntimeException; /** Column name CashTransferCashBook_ID */ public static final String COLUMNNAME_CashTransferCashBook_ID = "CashTransferCashBook_ID"; @@ -170,7 +170,7 @@ public interface I_U_POSTerminal */ public int getCashTransferCashBook_ID(); - public I_C_CashBook getCashTransferCashBook() throws RuntimeException; + public org.compiere.model.I_C_CashBook getCashTransferCashBook() throws RuntimeException; /** Column name C_CashBook_ID */ public static final String COLUMNNAME_C_CashBook_ID = "C_CashBook_ID"; @@ -185,7 +185,7 @@ public interface I_U_POSTerminal */ public int getC_CashBook_ID(); - public I_C_CashBook getC_CashBook() throws RuntimeException; + public org.compiere.model.I_C_CashBook getC_CashBook() throws RuntimeException; /** Column name C_CashBPartner_ID */ public static final String COLUMNNAME_C_CashBPartner_ID = "C_CashBPartner_ID"; @@ -200,7 +200,7 @@ public interface I_U_POSTerminal */ public int getC_CashBPartner_ID(); - public I_C_BPartner getC_CashBPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_CashBPartner() throws RuntimeException; /** Column name Check_BankAccount_ID */ public static final String COLUMNNAME_Check_BankAccount_ID = "Check_BankAccount_ID"; @@ -215,7 +215,7 @@ public interface I_U_POSTerminal */ public int getCheck_BankAccount_ID(); - public I_C_BankAccount getCheck_BankAccount() throws RuntimeException; + public org.compiere.model.I_C_BankAccount getCheck_BankAccount() throws RuntimeException; /** Column name CheckTransferBankAccount_ID */ public static final String COLUMNNAME_CheckTransferBankAccount_ID = "CheckTransferBankAccount_ID"; @@ -230,7 +230,7 @@ public interface I_U_POSTerminal */ public int getCheckTransferBankAccount_ID(); - public I_C_BankAccount getCheckTransferBankAccount() throws RuntimeException; + public org.compiere.model.I_C_BankAccount getCheckTransferBankAccount() throws RuntimeException; /** Column name CheckTransferCashBook_ID */ public static final String COLUMNNAME_CheckTransferCashBook_ID = "CheckTransferCashBook_ID"; @@ -245,7 +245,7 @@ public interface I_U_POSTerminal */ public int getCheckTransferCashBook_ID(); - public I_C_CashBook getCheckTransferCashBook() throws RuntimeException; + public org.compiere.model.I_C_CashBook getCheckTransferCashBook() throws RuntimeException; /** Column name CheckTransferType */ public static final String COLUMNNAME_CheckTransferType = "CheckTransferType"; @@ -285,7 +285,7 @@ public interface I_U_POSTerminal */ public int getC_TemplateBPartner_ID(); - public I_C_BPartner getC_TemplateBPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_TemplateBPartner() throws RuntimeException; /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; @@ -378,7 +378,7 @@ public interface I_U_POSTerminal */ public int getM_Warehouse_ID(); - public I_M_Warehouse getM_Warehouse() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; @@ -406,7 +406,7 @@ public interface I_U_POSTerminal */ public int getPO_PriceList_ID(); - public I_M_PriceList getPO_PriceList() throws RuntimeException; + public org.compiere.model.I_M_PriceList getPO_PriceList() throws RuntimeException; /** Column name PrinterName */ public static final String COLUMNNAME_PrinterName = "PrinterName"; @@ -434,7 +434,7 @@ public interface I_U_POSTerminal */ public int getSalesRep_ID(); - public I_AD_User getSalesRep() throws RuntimeException; + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException; /** Column name SO_PriceList_ID */ public static final String COLUMNNAME_SO_PriceList_ID = "SO_PriceList_ID"; @@ -445,7 +445,7 @@ public interface I_U_POSTerminal /** Get Sales Pricelist */ public int getSO_PriceList_ID(); - public I_M_PriceList getSO_PriceList() throws RuntimeException; + public org.compiere.model.I_M_PriceList getSO_PriceList() throws RuntimeException; /** Column name UnlockingTime */ public static final String COLUMNNAME_UnlockingTime = "UnlockingTime"; @@ -485,6 +485,15 @@ public interface I_U_POSTerminal /** Get POS Terminal */ public int getU_POSTerminal_ID(); + /** Column name U_POSTerminal_UU */ + public static final String COLUMNNAME_U_POSTerminal_UU = "U_POSTerminal_UU"; + + /** Set U_POSTerminal_UU */ + public void setU_POSTerminal_UU (String U_POSTerminal_UU); + + /** Get U_POSTerminal_UU */ + public String getU_POSTerminal_UU(); + /** Column name Value */ public static final String COLUMNNAME_Value = "Value"; diff --git a/org.adempiere.base/src/org/compiere/model/I_U_RoleMenu.java b/org.adempiere.base/src/org/compiere/model/I_U_RoleMenu.java index 5499e5c9c6..d359450db9 100644 --- a/org.adempiere.base/src/org/compiere/model/I_U_RoleMenu.java +++ b/org.adempiere.base/src/org/compiere/model/I_U_RoleMenu.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for U_RoleMenu - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_U_RoleMenu { @@ -31,7 +31,7 @@ public interface I_U_RoleMenu public static final String Table_Name = "U_RoleMenu"; /** AD_Table_ID=52002 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 52002; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_U_RoleMenu */ public int getAD_Role_ID(); - public I_AD_Role getAD_Role() throws RuntimeException; + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -131,6 +131,15 @@ public interface I_U_RoleMenu /** Get Role Menu */ public int getU_RoleMenu_ID(); + /** Column name U_RoleMenu_UU */ + public static final String COLUMNNAME_U_RoleMenu_UU = "U_RoleMenu_UU"; + + /** Set U_RoleMenu_UU */ + public void setU_RoleMenu_UU (String U_RoleMenu_UU); + + /** Get U_RoleMenu_UU */ + public String getU_RoleMenu_UU(); + /** Column name U_WebMenu_ID */ public static final String COLUMNNAME_U_WebMenu_ID = "U_WebMenu_ID"; @@ -140,5 +149,5 @@ public interface I_U_RoleMenu /** Get Web Menu */ public int getU_WebMenu_ID(); - public I_U_WebMenu getU_WebMenu() throws RuntimeException; + public org.compiere.model.I_U_WebMenu getU_WebMenu() throws RuntimeException; } diff --git a/org.adempiere.base/src/org/compiere/model/I_U_WebMenu.java b/org.adempiere.base/src/org/compiere/model/I_U_WebMenu.java index 76fff60d2c..f6b87183cb 100644 --- a/org.adempiere.base/src/org/compiere/model/I_U_WebMenu.java +++ b/org.adempiere.base/src/org/compiere/model/I_U_WebMenu.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for U_WebMenu - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_U_WebMenu { @@ -31,7 +31,7 @@ public interface I_U_WebMenu public static final String Table_Name = "U_WebMenu"; /** AD_Table_ID=52003 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 52003; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -184,7 +184,7 @@ public interface I_U_WebMenu /** Get Parent Menu */ public int getParentMenu_ID(); - public I_U_WebMenu getParentMenu() throws RuntimeException; + public org.compiere.model.I_U_WebMenu getParentMenu() throws RuntimeException; /** Column name Position */ public static final String COLUMNNAME_Position = "Position"; @@ -228,4 +228,13 @@ public interface I_U_WebMenu /** Get Web Menu */ public int getU_WebMenu_ID(); + + /** Column name U_WebMenu_UU */ + public static final String COLUMNNAME_U_WebMenu_UU = "U_WebMenu_UU"; + + /** Set U_WebMenu_UU */ + public void setU_WebMenu_UU (String U_WebMenu_UU); + + /** Get U_WebMenu_UU */ + public String getU_WebMenu_UU(); } diff --git a/org.adempiere.base/src/org/compiere/model/I_U_Web_Properties.java b/org.adempiere.base/src/org/compiere/model/I_U_Web_Properties.java index 032466ebd6..ecee601df1 100644 --- a/org.adempiere.base/src/org/compiere/model/I_U_Web_Properties.java +++ b/org.adempiere.base/src/org/compiere/model/I_U_Web_Properties.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for U_Web_Properties - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_U_Web_Properties { @@ -31,7 +31,7 @@ public interface I_U_Web_Properties public static final String Table_Name = "U_Web_Properties"; /** AD_Table_ID=52001 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 52001; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -133,4 +133,13 @@ public interface I_U_Web_Properties /** Get Web Properties */ public int getU_Web_Properties_ID(); + + /** Column name U_Web_Properties_UU */ + public static final String COLUMNNAME_U_Web_Properties_UU = "U_Web_Properties_UU"; + + /** Set U_Web_Properties_UU */ + public void setU_Web_Properties_UU (String U_Web_Properties_UU); + + /** Get U_Web_Properties_UU */ + public String getU_Web_Properties_UU(); } diff --git a/org.adempiere.base/src/org/compiere/model/I_W_Advertisement.java b/org.adempiere.base/src/org/compiere/model/I_W_Advertisement.java index 404464a8d1..43b5035cd9 100644 --- a/org.adempiere.base/src/org/compiere/model/I_W_Advertisement.java +++ b/org.adempiere.base/src/org/compiere/model/I_W_Advertisement.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for W_Advertisement - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_W_Advertisement { @@ -31,7 +31,7 @@ public interface I_W_Advertisement public static final String Table_Name = "W_Advertisement"; /** AD_Table_ID=579 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 579; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,7 +88,7 @@ public interface I_W_Advertisement */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -103,7 +103,7 @@ public interface I_W_Advertisement */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -289,6 +289,15 @@ public interface I_W_Advertisement */ public int getW_Advertisement_ID(); + /** Column name W_Advertisement_UU */ + public static final String COLUMNNAME_W_Advertisement_UU = "W_Advertisement_UU"; + + /** Set W_Advertisement_UU */ + public void setW_Advertisement_UU (String W_Advertisement_UU); + + /** Get W_Advertisement_UU */ + public String getW_Advertisement_UU(); + /** Column name W_ClickCount_ID */ public static final String COLUMNNAME_W_ClickCount_ID = "W_ClickCount_ID"; @@ -302,7 +311,7 @@ public interface I_W_Advertisement */ public int getW_ClickCount_ID(); - public I_W_ClickCount getW_ClickCount() throws RuntimeException; + public org.compiere.model.I_W_ClickCount getW_ClickCount() throws RuntimeException; /** Column name W_CounterCount_ID */ public static final String COLUMNNAME_W_CounterCount_ID = "W_CounterCount_ID"; @@ -317,7 +326,7 @@ public interface I_W_Advertisement */ public int getW_CounterCount_ID(); - public I_W_CounterCount getW_CounterCount() throws RuntimeException; + public org.compiere.model.I_W_CounterCount getW_CounterCount() throws RuntimeException; /** Column name WebParam1 */ public static final String COLUMNNAME_WebParam1 = "WebParam1"; diff --git a/org.adempiere.base/src/org/compiere/model/I_W_Basket.java b/org.adempiere.base/src/org/compiere/model/I_W_Basket.java index 55fc89b0a0..1845bae649 100644 --- a/org.adempiere.base/src/org/compiere/model/I_W_Basket.java +++ b/org.adempiere.base/src/org/compiere/model/I_W_Basket.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for W_Basket - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_W_Basket { @@ -31,7 +31,7 @@ public interface I_W_Basket public static final String Table_Name = "W_Basket"; /** AD_Table_ID=402 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 402; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_W_Basket */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -90,7 +90,7 @@ public interface I_W_Basket */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -147,7 +147,7 @@ public interface I_W_Basket */ public int getM_PriceList_ID(); - public I_M_PriceList getM_PriceList() throws RuntimeException; + public org.compiere.model.I_M_PriceList getM_PriceList() throws RuntimeException; /** Column name Session_ID */ public static final String COLUMNNAME_Session_ID = "Session_ID"; @@ -186,4 +186,13 @@ public interface I_W_Basket * Web Basket */ public int getW_Basket_ID(); + + /** Column name W_Basket_UU */ + public static final String COLUMNNAME_W_Basket_UU = "W_Basket_UU"; + + /** Set W_Basket_UU */ + public void setW_Basket_UU (String W_Basket_UU); + + /** Get W_Basket_UU */ + public String getW_Basket_UU(); } diff --git a/org.adempiere.base/src/org/compiere/model/I_W_BasketLine.java b/org.adempiere.base/src/org/compiere/model/I_W_BasketLine.java index 324e48c3fe..69197b1222 100644 --- a/org.adempiere.base/src/org/compiere/model/I_W_BasketLine.java +++ b/org.adempiere.base/src/org/compiere/model/I_W_BasketLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for W_BasketLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_W_BasketLine { @@ -31,7 +31,7 @@ public interface I_W_BasketLine public static final String Table_Name = "W_BasketLine"; /** AD_Table_ID=549 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 549; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -130,7 +130,7 @@ public interface I_W_BasketLine */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Price */ public static final String COLUMNNAME_Price = "Price"; @@ -196,7 +196,7 @@ public interface I_W_BasketLine */ public int getW_Basket_ID(); - public I_W_Basket getW_Basket() throws RuntimeException; + public org.compiere.model.I_W_Basket getW_Basket() throws RuntimeException; /** Column name W_BasketLine_ID */ public static final String COLUMNNAME_W_BasketLine_ID = "W_BasketLine_ID"; @@ -210,4 +210,13 @@ public interface I_W_BasketLine * Web Basket Line */ public int getW_BasketLine_ID(); + + /** Column name W_BasketLine_UU */ + public static final String COLUMNNAME_W_BasketLine_UU = "W_BasketLine_UU"; + + /** Set W_BasketLine_UU */ + public void setW_BasketLine_UU (String W_BasketLine_UU); + + /** Get W_BasketLine_UU */ + public String getW_BasketLine_UU(); } diff --git a/org.adempiere.base/src/org/compiere/model/I_W_Click.java b/org.adempiere.base/src/org/compiere/model/I_W_Click.java index af4000b700..2f3a6a8c6a 100644 --- a/org.adempiere.base/src/org/compiere/model/I_W_Click.java +++ b/org.adempiere.base/src/org/compiere/model/I_W_Click.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for W_Click - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_W_Click { @@ -31,7 +31,7 @@ public interface I_W_Click public static final String Table_Name = "W_Click"; /** AD_Table_ID=550 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 550; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -237,7 +237,7 @@ public interface I_W_Click */ public int getW_ClickCount_ID(); - public I_W_ClickCount getW_ClickCount() throws RuntimeException; + public org.compiere.model.I_W_ClickCount getW_ClickCount() throws RuntimeException; /** Column name W_Click_ID */ public static final String COLUMNNAME_W_Click_ID = "W_Click_ID"; @@ -251,4 +251,13 @@ public interface I_W_Click * Individual Web Click */ public int getW_Click_ID(); + + /** Column name W_Click_UU */ + public static final String COLUMNNAME_W_Click_UU = "W_Click_UU"; + + /** Set W_Click_UU */ + public void setW_Click_UU (String W_Click_UU); + + /** Get W_Click_UU */ + public String getW_Click_UU(); } diff --git a/org.adempiere.base/src/org/compiere/model/I_W_ClickCount.java b/org.adempiere.base/src/org/compiere/model/I_W_ClickCount.java index 97c3d56164..7c80f79cea 100644 --- a/org.adempiere.base/src/org/compiere/model/I_W_ClickCount.java +++ b/org.adempiere.base/src/org/compiere/model/I_W_ClickCount.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for W_ClickCount - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_W_ClickCount { @@ -31,7 +31,7 @@ public interface I_W_ClickCount public static final String Table_Name = "W_ClickCount"; /** AD_Table_ID=553 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 553; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_W_ClickCount */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name Counter */ public static final String COLUMNNAME_Counter = "Counter"; @@ -186,4 +186,13 @@ public interface I_W_ClickCount * Web Click Management */ public int getW_ClickCount_ID(); + + /** Column name W_ClickCount_UU */ + public static final String COLUMNNAME_W_ClickCount_UU = "W_ClickCount_UU"; + + /** Set W_ClickCount_UU */ + public void setW_ClickCount_UU (String W_ClickCount_UU); + + /** Get W_ClickCount_UU */ + public String getW_ClickCount_UU(); } diff --git a/org.adempiere.base/src/org/compiere/model/I_W_Counter.java b/org.adempiere.base/src/org/compiere/model/I_W_Counter.java index 5ad7268d36..0b64c1310c 100644 --- a/org.adempiere.base/src/org/compiere/model/I_W_Counter.java +++ b/org.adempiere.base/src/org/compiere/model/I_W_Counter.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for W_Counter - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_W_Counter { @@ -31,7 +31,7 @@ public interface I_W_Counter public static final String Table_Name = "W_Counter"; /** AD_Table_ID=403 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 403; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -233,7 +233,7 @@ public interface I_W_Counter */ public int getW_CounterCount_ID(); - public I_W_CounterCount getW_CounterCount() throws RuntimeException; + public org.compiere.model.I_W_CounterCount getW_CounterCount() throws RuntimeException; /** Column name W_Counter_ID */ public static final String COLUMNNAME_W_Counter_ID = "W_Counter_ID"; @@ -247,4 +247,13 @@ public interface I_W_Counter * Individual Count hit */ public int getW_Counter_ID(); + + /** Column name W_Counter_UU */ + public static final String COLUMNNAME_W_Counter_UU = "W_Counter_UU"; + + /** Set W_Counter_UU */ + public void setW_Counter_UU (String W_Counter_UU); + + /** Get W_Counter_UU */ + public String getW_Counter_UU(); } diff --git a/org.adempiere.base/src/org/compiere/model/I_W_CounterCount.java b/org.adempiere.base/src/org/compiere/model/I_W_CounterCount.java index 4fb8f0be72..a549faa28f 100644 --- a/org.adempiere.base/src/org/compiere/model/I_W_CounterCount.java +++ b/org.adempiere.base/src/org/compiere/model/I_W_CounterCount.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for W_CounterCount - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_W_CounterCount { @@ -31,7 +31,7 @@ public interface I_W_CounterCount public static final String Table_Name = "W_CounterCount"; /** AD_Table_ID=552 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 552; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_W_CounterCount */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name Counter */ public static final String COLUMNNAME_Counter = "Counter"; @@ -182,4 +182,13 @@ public interface I_W_CounterCount * Web Counter Count Management */ public int getW_CounterCount_ID(); + + /** Column name W_CounterCount_UU */ + public static final String COLUMNNAME_W_CounterCount_UU = "W_CounterCount_UU"; + + /** Set W_CounterCount_UU */ + public void setW_CounterCount_UU (String W_CounterCount_UU); + + /** Get W_CounterCount_UU */ + public String getW_CounterCount_UU(); } diff --git a/org.adempiere.base/src/org/compiere/model/I_W_MailMsg.java b/org.adempiere.base/src/org/compiere/model/I_W_MailMsg.java index b01d4f5b67..dd2d70b450 100644 --- a/org.adempiere.base/src/org/compiere/model/I_W_MailMsg.java +++ b/org.adempiere.base/src/org/compiere/model/I_W_MailMsg.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for W_MailMsg - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_W_MailMsg { @@ -31,7 +31,7 @@ public interface I_W_MailMsg public static final String Table_Name = "W_MailMsg"; /** AD_Table_ID=780 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 780; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -211,6 +211,15 @@ public interface I_W_MailMsg */ public int getW_MailMsg_ID(); + /** Column name W_MailMsg_UU */ + public static final String COLUMNNAME_W_MailMsg_UU = "W_MailMsg_UU"; + + /** Set W_MailMsg_UU */ + public void setW_MailMsg_UU (String W_MailMsg_UU); + + /** Get W_MailMsg_UU */ + public String getW_MailMsg_UU(); + /** Column name W_Store_ID */ public static final String COLUMNNAME_W_Store_ID = "W_Store_ID"; @@ -224,5 +233,5 @@ public interface I_W_MailMsg */ public int getW_Store_ID(); - public I_W_Store getW_Store() throws RuntimeException; + public org.compiere.model.I_W_Store getW_Store() throws RuntimeException; } diff --git a/org.adempiere.base/src/org/compiere/model/I_W_Store.java b/org.adempiere.base/src/org/compiere/model/I_W_Store.java index 7d5d0b9f20..c47a3b2b5d 100644 --- a/org.adempiere.base/src/org/compiere/model/I_W_Store.java +++ b/org.adempiere.base/src/org/compiere/model/I_W_Store.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,8 +21,8 @@ import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for W_Store - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_W_Store { @@ -31,7 +31,7 @@ public interface I_W_Store public static final String Table_Name = "W_Store"; /** AD_Table_ID=778 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 778; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -75,7 +75,7 @@ public interface I_W_Store */ public int getC_PaymentTerm_ID(); - public I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException; + public org.compiere.model.I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -314,7 +314,7 @@ public interface I_W_Store */ public int getM_PriceList_ID(); - public I_M_PriceList getM_PriceList() throws RuntimeException; + public org.compiere.model.I_M_PriceList getM_PriceList() throws RuntimeException; /** Column name M_Warehouse_ID */ public static final String COLUMNNAME_M_Warehouse_ID = "M_Warehouse_ID"; @@ -329,7 +329,7 @@ public interface I_W_Store */ public int getM_Warehouse_ID(); - public I_M_Warehouse getM_Warehouse() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; @@ -357,7 +357,7 @@ public interface I_W_Store */ public int getSalesRep_ID(); - public I_AD_User getSalesRep() throws RuntimeException; + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException; /** Column name Stylesheet */ public static final String COLUMNNAME_Stylesheet = "Stylesheet"; @@ -392,12 +392,12 @@ public interface I_W_Store public static final String COLUMNNAME_URL = "URL"; /** Set URL. - * Full URL address - e.g. http://www.adempiere.org + * Full URL address - e.g. http://www.idempiere.org */ public void setURL (String URL); /** Get URL. - * Full URL address - e.g. http://www.adempiere.org + * Full URL address - e.g. http://www.idempiere.org */ public String getURL(); @@ -569,4 +569,13 @@ public interface I_W_Store * Password of the Web Store EMail address */ public String getWStoreUserPW(); + + /** Column name W_Store_UU */ + public static final String COLUMNNAME_W_Store_UU = "W_Store_UU"; + + /** Set W_Store_UU */ + public void setW_Store_UU (String W_Store_UU); + + /** Get W_Store_UU */ + public String getW_Store_UU(); } diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_AccessLog.java b/org.adempiere.base/src/org/compiere/model/X_AD_AccessLog.java index be979c89b8..ab9bfa644d 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_AccessLog.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_AccessLog.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_AccessLog - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_AccessLog extends PO implements I_AD_AccessLog, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_AccessLog (Properties ctx, int AD_AccessLog_ID, String trxName) @@ -101,9 +101,23 @@ public class X_AD_AccessLog extends PO implements I_AD_AccessLog, I_Persistent return new KeyNamePair(get_ID(), String.valueOf(getAD_AccessLog_ID())); } - public I_AD_Column getAD_Column() throws RuntimeException + /** Set AD_AccessLog_UU. + @param AD_AccessLog_UU AD_AccessLog_UU */ + public void setAD_AccessLog_UU (String AD_AccessLog_UU) + { + set_Value (COLUMNNAME_AD_AccessLog_UU, AD_AccessLog_UU); + } + + /** Get AD_AccessLog_UU. + @return AD_AccessLog_UU */ + public String getAD_AccessLog_UU () + { + return (String)get_Value(COLUMNNAME_AD_AccessLog_UU); + } + + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException { - return (I_AD_Column)MTable.get(getCtx(), I_AD_Column.Table_Name) + return (org.compiere.model.I_AD_Column)MTable.get(getCtx(), org.compiere.model.I_AD_Column.Table_Name) .getPO(getAD_Column_ID(), get_TrxName()); } /** Set Column. @@ -129,9 +143,9 @@ public class X_AD_AccessLog extends PO implements I_AD_AccessLog, I_Persistent return ii.intValue(); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Alert.java b/org.adempiere.base/src/org/compiere/model/X_AD_Alert.java index 4543b36901..96df36c129 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Alert.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Alert.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Alert - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Alert extends PO implements I_AD_Alert, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Alert (Properties ctx, int AD_Alert_ID, String trxName) @@ -103,9 +103,9 @@ public class X_AD_Alert extends PO implements I_AD_Alert, I_Persistent return ii.intValue(); } - public I_AD_AlertProcessor getAD_AlertProcessor() throws RuntimeException + public org.compiere.model.I_AD_AlertProcessor getAD_AlertProcessor() throws RuntimeException { - return (I_AD_AlertProcessor)MTable.get(getCtx(), I_AD_AlertProcessor.Table_Name) + return (org.compiere.model.I_AD_AlertProcessor)MTable.get(getCtx(), org.compiere.model.I_AD_AlertProcessor.Table_Name) .getPO(getAD_AlertProcessor_ID(), get_TrxName()); } /** Set Alert Processor. @@ -131,6 +131,20 @@ public class X_AD_Alert extends PO implements I_AD_Alert, I_Persistent return ii.intValue(); } + /** Set AD_Alert_UU. + @param AD_Alert_UU AD_Alert_UU */ + public void setAD_Alert_UU (String AD_Alert_UU) + { + set_Value (COLUMNNAME_AD_Alert_UU, AD_Alert_UU); + } + + /** Get AD_Alert_UU. + @return AD_Alert_UU */ + public String getAD_Alert_UU () + { + return (String)get_Value(COLUMNNAME_AD_Alert_UU); + } + /** Set Alert Message. @param AlertMessage Message of the Alert diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_AlertProcessor.java b/org.adempiere.base/src/org/compiere/model/X_AD_AlertProcessor.java index 3b47dcd304..f88e7f1ced 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_AlertProcessor.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_AlertProcessor.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_AlertProcessor - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_AlertProcessor extends PO implements I_AD_AlertProcessor, I_Persistent { /** * */ - private static final long serialVersionUID = 20120920L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_AlertProcessor (Properties ctx, int AD_AlertProcessor_ID, String trxName) @@ -40,6 +40,7 @@ public class X_AD_AlertProcessor extends PO implements I_AD_AlertProcessor, I_Pe /** if (AD_AlertProcessor_ID == 0) { setAD_AlertProcessor_ID (0); + setAD_Schedule_ID (0); setKeepLogDays (0); // 7 setName (null); @@ -117,8 +118,8 @@ public class X_AD_AlertProcessor extends PO implements I_AD_AlertProcessor, I_Pe return (org.compiere.model.I_AD_Schedule)MTable.get(getCtx(), org.compiere.model.I_AD_Schedule.Table_Name) .getPO(getAD_Schedule_ID(), get_TrxName()); } - /** Set AD_Schedule_ID. - @param AD_Schedule_ID AD_Schedule_ID */ + /** Set Schedule. + @param AD_Schedule_ID Schedule */ public void setAD_Schedule_ID (int AD_Schedule_ID) { if (AD_Schedule_ID < 1) @@ -127,8 +128,8 @@ public class X_AD_AlertProcessor extends PO implements I_AD_AlertProcessor, I_Pe set_Value (COLUMNNAME_AD_Schedule_ID, Integer.valueOf(AD_Schedule_ID)); } - /** Get AD_Schedule_ID. - @return AD_Schedule_ID */ + /** Get Schedule. + @return Schedule */ public int getAD_Schedule_ID () { Integer ii = (Integer)get_Value(COLUMNNAME_AD_Schedule_ID); diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_AlertProcessorLog.java b/org.adempiere.base/src/org/compiere/model/X_AD_AlertProcessorLog.java index 78c18be91f..a2168ca852 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_AlertProcessorLog.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_AlertProcessorLog.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_AlertProcessorLog - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_AlertProcessorLog extends PO implements I_AD_AlertProcessorLog, I_Persistent { /** * */ - private static final long serialVersionUID = 20120920L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_AlertProcessorLog (Properties ctx, int AD_AlertProcessorLog_ID, String trxName) @@ -122,6 +122,20 @@ public class X_AD_AlertProcessorLog extends PO implements I_AD_AlertProcessorLog return ii.intValue(); } + /** Set AD_AlertProcessorLog_UU. + @param AD_AlertProcessorLog_UU AD_AlertProcessorLog_UU */ + public void setAD_AlertProcessorLog_UU (String AD_AlertProcessorLog_UU) + { + set_Value (COLUMNNAME_AD_AlertProcessorLog_UU, AD_AlertProcessorLog_UU); + } + + /** Get AD_AlertProcessorLog_UU. + @return AD_AlertProcessorLog_UU */ + public String getAD_AlertProcessorLog_UU () + { + return (String)get_Value(COLUMNNAME_AD_AlertProcessorLog_UU); + } + /** Set Binary Data. @param BinaryData Binary Data diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_AlertRecipient.java b/org.adempiere.base/src/org/compiere/model/X_AD_AlertRecipient.java index e786ca9654..55be862688 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_AlertRecipient.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_AlertRecipient.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_AlertRecipient - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_AlertRecipient extends PO implements I_AD_AlertRecipient, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_AlertRecipient (Properties ctx, int AD_AlertRecipient_ID, String trxName) @@ -71,9 +71,9 @@ public class X_AD_AlertRecipient extends PO implements I_AD_AlertRecipient, I_Pe return sb.toString(); } - public I_AD_Alert getAD_Alert() throws RuntimeException + public org.compiere.model.I_AD_Alert getAD_Alert() throws RuntimeException { - return (I_AD_Alert)MTable.get(getCtx(), I_AD_Alert.Table_Name) + return (org.compiere.model.I_AD_Alert)MTable.get(getCtx(), org.compiere.model.I_AD_Alert.Table_Name) .getPO(getAD_Alert_ID(), get_TrxName()); } /** Set Alert. @@ -122,9 +122,23 @@ public class X_AD_AlertRecipient extends PO implements I_AD_AlertRecipient, I_Pe return ii.intValue(); } - public I_AD_Role getAD_Role() throws RuntimeException + /** Set AD_AlertRecipient_UU. + @param AD_AlertRecipient_UU AD_AlertRecipient_UU */ + public void setAD_AlertRecipient_UU (String AD_AlertRecipient_UU) + { + set_Value (COLUMNNAME_AD_AlertRecipient_UU, AD_AlertRecipient_UU); + } + + /** Get AD_AlertRecipient_UU. + @return AD_AlertRecipient_UU */ + public String getAD_AlertRecipient_UU () + { + return (String)get_Value(COLUMNNAME_AD_AlertRecipient_UU); + } + + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException { - return (I_AD_Role)MTable.get(getCtx(), I_AD_Role.Table_Name) + return (org.compiere.model.I_AD_Role)MTable.get(getCtx(), org.compiere.model.I_AD_Role.Table_Name) .getPO(getAD_Role_ID(), get_TrxName()); } /** Set Role. @@ -150,9 +164,9 @@ public class X_AD_AlertRecipient extends PO implements I_AD_AlertRecipient, I_Pe return ii.intValue(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_AlertRule.java b/org.adempiere.base/src/org/compiere/model/X_AD_AlertRule.java index 3de3bc3244..b0d899029d 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_AlertRule.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_AlertRule.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_AlertRule - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_AlertRule extends PO implements I_AD_AlertRule, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_AlertRule (Properties ctx, int AD_AlertRule_ID, String trxName) @@ -76,9 +76,9 @@ public class X_AD_AlertRule extends PO implements I_AD_AlertRule, I_Persistent return sb.toString(); } - public I_AD_Alert getAD_Alert() throws RuntimeException + public org.compiere.model.I_AD_Alert getAD_Alert() throws RuntimeException { - return (I_AD_Alert)MTable.get(getCtx(), I_AD_Alert.Table_Name) + return (org.compiere.model.I_AD_Alert)MTable.get(getCtx(), org.compiere.model.I_AD_Alert.Table_Name) .getPO(getAD_Alert_ID(), get_TrxName()); } /** Set Alert. @@ -127,9 +127,23 @@ public class X_AD_AlertRule extends PO implements I_AD_AlertRule, I_Persistent return ii.intValue(); } - public I_AD_Table getAD_Table() throws RuntimeException + /** Set AD_AlertRule_UU. + @param AD_AlertRule_UU AD_AlertRule_UU */ + public void setAD_AlertRule_UU (String AD_AlertRule_UU) + { + set_Value (COLUMNNAME_AD_AlertRule_UU, AD_AlertRule_UU); + } + + /** Get AD_AlertRule_UU. + @return AD_AlertRule_UU */ + public String getAD_AlertRule_UU () + { + return (String)get_Value(COLUMNNAME_AD_AlertRule_UU); + } + + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Archive.java b/org.adempiere.base/src/org/compiere/model/X_AD_Archive.java index 4d8fd059b4..e727b79940 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Archive.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Archive.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Archive - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Archive extends PO implements I_AD_Archive, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Archive (Properties ctx, int AD_Archive_ID, String trxName) @@ -96,9 +96,23 @@ public class X_AD_Archive extends PO implements I_AD_Archive, I_Persistent return ii.intValue(); } - public I_AD_Process getAD_Process() throws RuntimeException + /** Set AD_Archive_UU. + @param AD_Archive_UU AD_Archive_UU */ + public void setAD_Archive_UU (String AD_Archive_UU) + { + set_Value (COLUMNNAME_AD_Archive_UU, AD_Archive_UU); + } + + /** Get AD_Archive_UU. + @return AD_Archive_UU */ + public String getAD_Archive_UU () + { + return (String)get_Value(COLUMNNAME_AD_Archive_UU); + } + + public org.compiere.model.I_AD_Process getAD_Process() throws RuntimeException { - return (I_AD_Process)MTable.get(getCtx(), I_AD_Process.Table_Name) + return (org.compiere.model.I_AD_Process)MTable.get(getCtx(), org.compiere.model.I_AD_Process.Table_Name) .getPO(getAD_Process_ID(), get_TrxName()); } /** Set Process. @@ -124,9 +138,9 @@ public class X_AD_Archive extends PO implements I_AD_Archive, I_Persistent return ii.intValue(); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @@ -169,9 +183,9 @@ public class X_AD_Archive extends PO implements I_AD_Archive, I_Persistent return (byte[])get_Value(COLUMNNAME_BinaryData); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Attachment.java b/org.adempiere.base/src/org/compiere/model/X_AD_Attachment.java index 01cff8422d..4a45af843b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Attachment.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Attachment.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Attachment - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Attachment extends PO implements I_AD_Attachment, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Attachment (Properties ctx, int AD_Attachment_ID, String trxName) @@ -96,9 +96,23 @@ public class X_AD_Attachment extends PO implements I_AD_Attachment, I_Persistent return ii.intValue(); } - public I_AD_Table getAD_Table() throws RuntimeException + /** Set AD_Attachment_UU. + @param AD_Attachment_UU AD_Attachment_UU */ + public void setAD_Attachment_UU (String AD_Attachment_UU) + { + set_Value (COLUMNNAME_AD_Attachment_UU, AD_Attachment_UU); + } + + /** Get AD_Attachment_UU. + @return AD_Attachment_UU */ + public String getAD_Attachment_UU () + { + return (String)get_Value(COLUMNNAME_AD_Attachment_UU); + } + + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_AttachmentNote.java b/org.adempiere.base/src/org/compiere/model/X_AD_AttachmentNote.java index 6e3042c2ee..bca8d19f0f 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_AttachmentNote.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_AttachmentNote.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_AttachmentNote - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_AttachmentNote extends PO implements I_AD_AttachmentNote, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_AttachmentNote (Properties ctx, int AD_AttachmentNote_ID, String trxName) @@ -74,9 +74,9 @@ public class X_AD_AttachmentNote extends PO implements I_AD_AttachmentNote, I_Pe return sb.toString(); } - public I_AD_Attachment getAD_Attachment() throws RuntimeException + public org.compiere.model.I_AD_Attachment getAD_Attachment() throws RuntimeException { - return (I_AD_Attachment)MTable.get(getCtx(), I_AD_Attachment.Table_Name) + return (org.compiere.model.I_AD_Attachment)MTable.get(getCtx(), org.compiere.model.I_AD_Attachment.Table_Name) .getPO(getAD_Attachment_ID(), get_TrxName()); } /** Set Attachment. @@ -125,9 +125,23 @@ public class X_AD_AttachmentNote extends PO implements I_AD_AttachmentNote, I_Pe return ii.intValue(); } - public I_AD_User getAD_User() throws RuntimeException + /** Set AD_AttachmentNote_UU. + @param AD_AttachmentNote_UU AD_AttachmentNote_UU */ + public void setAD_AttachmentNote_UU (String AD_AttachmentNote_UU) + { + set_Value (COLUMNNAME_AD_AttachmentNote_UU, AD_AttachmentNote_UU); + } + + /** Get AD_AttachmentNote_UU. + @return AD_AttachmentNote_UU */ + public String getAD_AttachmentNote_UU () + { + return (String)get_Value(COLUMNNAME_AD_AttachmentNote_UU); + } + + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Attribute.java b/org.adempiere.base/src/org/compiere/model/X_AD_Attribute.java index 32e393f7dd..88324c18a2 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Attribute.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Attribute.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Attribute - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Attribute extends PO implements I_AD_Attribute, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Attribute (Properties ctx, int AD_Attribute_ID, String trxName) @@ -100,9 +100,23 @@ public class X_AD_Attribute extends PO implements I_AD_Attribute, I_Persistent return ii.intValue(); } - public I_AD_Reference getAD_Reference() throws RuntimeException + /** Set AD_Attribute_UU. + @param AD_Attribute_UU AD_Attribute_UU */ + public void setAD_Attribute_UU (String AD_Attribute_UU) + { + set_Value (COLUMNNAME_AD_Attribute_UU, AD_Attribute_UU); + } + + /** Get AD_Attribute_UU. + @return AD_Attribute_UU */ + public String getAD_Attribute_UU () + { + return (String)get_Value(COLUMNNAME_AD_Attribute_UU); + } + + public org.compiere.model.I_AD_Reference getAD_Reference() throws RuntimeException { - return (I_AD_Reference)MTable.get(getCtx(), I_AD_Reference.Table_Name) + return (org.compiere.model.I_AD_Reference)MTable.get(getCtx(), org.compiere.model.I_AD_Reference.Table_Name) .getPO(getAD_Reference_ID(), get_TrxName()); } /** Set Reference. @@ -128,9 +142,9 @@ public class X_AD_Attribute extends PO implements I_AD_Attribute, I_Persistent return ii.intValue(); } - public I_AD_Reference getAD_Reference_Value() throws RuntimeException + public org.compiere.model.I_AD_Reference getAD_Reference_Value() throws RuntimeException { - return (I_AD_Reference)MTable.get(getCtx(), I_AD_Reference.Table_Name) + return (org.compiere.model.I_AD_Reference)MTable.get(getCtx(), org.compiere.model.I_AD_Reference.Table_Name) .getPO(getAD_Reference_Value_ID(), get_TrxName()); } /** Set Reference Key. @@ -156,9 +170,9 @@ public class X_AD_Attribute extends PO implements I_AD_Attribute, I_Persistent return ii.intValue(); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @@ -184,9 +198,9 @@ public class X_AD_Attribute extends PO implements I_AD_Attribute, I_Persistent return ii.intValue(); } - public I_AD_Val_Rule getAD_Val_Rule() throws RuntimeException + public org.compiere.model.I_AD_Val_Rule getAD_Val_Rule() throws RuntimeException { - return (I_AD_Val_Rule)MTable.get(getCtx(), I_AD_Val_Rule.Table_Name) + return (org.compiere.model.I_AD_Val_Rule)MTable.get(getCtx(), org.compiere.model.I_AD_Val_Rule.Table_Name) .getPO(getAD_Val_Rule_ID(), get_TrxName()); } /** Set Dynamic Validation. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Attribute_Value.java b/org.adempiere.base/src/org/compiere/model/X_AD_Attribute_Value.java index 4a5370953e..9b0096fc99 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Attribute_Value.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Attribute_Value.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.sql.Timestamp; import java.util.Properties; /** Generated Model for AD_Attribute_Value - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Attribute_Value extends PO implements I_AD_Attribute_Value, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Attribute_Value (Properties ctx, int AD_Attribute_Value_ID, String trxName) @@ -91,6 +91,20 @@ public class X_AD_Attribute_Value extends PO implements I_AD_Attribute_Value, I_ return ii.intValue(); } + /** Set AD_Attribute_Value_UU. + @param AD_Attribute_Value_UU AD_Attribute_Value_UU */ + public void setAD_Attribute_Value_UU (String AD_Attribute_Value_UU) + { + set_Value (COLUMNNAME_AD_Attribute_Value_UU, AD_Attribute_Value_UU); + } + + /** Get AD_Attribute_Value_UU. + @return AD_Attribute_Value_UU */ + public String getAD_Attribute_Value_UU () + { + return (String)get_Value(COLUMNNAME_AD_Attribute_Value_UU); + } + /** Set Record ID. @param Record_ID Direct internal record ID diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_ChangeLog.java b/org.adempiere.base/src/org/compiere/model/X_AD_ChangeLog.java index 474ad8f1bb..cd75dd4345 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_ChangeLog.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_ChangeLog.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_ChangeLog - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_ChangeLog extends PO implements I_AD_ChangeLog, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_ChangeLog (Properties ctx, int AD_ChangeLog_ID, String trxName) @@ -98,9 +98,23 @@ public class X_AD_ChangeLog extends PO implements I_AD_ChangeLog, I_Persistent return ii.intValue(); } - public I_AD_Column getAD_Column() throws RuntimeException + /** Set AD_ChangeLog_UU. + @param AD_ChangeLog_UU AD_ChangeLog_UU */ + public void setAD_ChangeLog_UU (String AD_ChangeLog_UU) + { + set_Value (COLUMNNAME_AD_ChangeLog_UU, AD_ChangeLog_UU); + } + + /** Get AD_ChangeLog_UU. + @return AD_ChangeLog_UU */ + public String getAD_ChangeLog_UU () + { + return (String)get_Value(COLUMNNAME_AD_ChangeLog_UU); + } + + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException { - return (I_AD_Column)MTable.get(getCtx(), I_AD_Column.Table_Name) + return (org.compiere.model.I_AD_Column)MTable.get(getCtx(), org.compiere.model.I_AD_Column.Table_Name) .getPO(getAD_Column_ID(), get_TrxName()); } /** Set Column. @@ -126,9 +140,9 @@ public class X_AD_ChangeLog extends PO implements I_AD_ChangeLog, I_Persistent return ii.intValue(); } - public I_AD_Session getAD_Session() throws RuntimeException + public org.compiere.model.I_AD_Session getAD_Session() throws RuntimeException { - return (I_AD_Session)MTable.get(getCtx(), I_AD_Session.Table_Name) + return (org.compiere.model.I_AD_Session)MTable.get(getCtx(), org.compiere.model.I_AD_Session.Table_Name) .getPO(getAD_Session_ID(), get_TrxName()); } /** Set Session. @@ -162,9 +176,9 @@ public class X_AD_ChangeLog extends PO implements I_AD_ChangeLog, I_Persistent return new KeyNamePair(get_ID(), String.valueOf(getAD_Session_ID())); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Client.java b/org.adempiere.base/src/org/compiere/model/X_AD_Client.java index 2e49340394..efd5ad0ad5 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Client.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Client.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Client - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Client extends PO implements I_AD_Client, I_Persistent { /** * */ - private static final long serialVersionUID = 20121008L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Client (Properties ctx, int AD_Client_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_ClientInfo.java b/org.adempiere.base/src/org/compiere/model/X_AD_ClientInfo.java index 1329ebe956..0e2f09bd31 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_ClientInfo.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_ClientInfo.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_ClientInfo - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_ClientInfo extends PO implements I_AD_ClientInfo, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_ClientInfo (Properties ctx, int AD_ClientInfo_ID, String trxName) @@ -69,9 +69,23 @@ public class X_AD_ClientInfo extends PO implements I_AD_ClientInfo, I_Persistent return sb.toString(); } - public I_AD_Tree getAD_Tree_Activity() throws RuntimeException + /** Set AD_ClientInfo_UU. + @param AD_ClientInfo_UU AD_ClientInfo_UU */ + public void setAD_ClientInfo_UU (String AD_ClientInfo_UU) + { + set_Value (COLUMNNAME_AD_ClientInfo_UU, AD_ClientInfo_UU); + } + + /** Get AD_ClientInfo_UU. + @return AD_ClientInfo_UU */ + public String getAD_ClientInfo_UU () + { + return (String)get_Value(COLUMNNAME_AD_ClientInfo_UU); + } + + public org.compiere.model.I_AD_Tree getAD_Tree_Activity() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_Activity_ID(), get_TrxName()); } /** Set Activity Tree. @@ -97,9 +111,9 @@ public class X_AD_ClientInfo extends PO implements I_AD_ClientInfo, I_Persistent return ii.intValue(); } - public I_AD_Tree getAD_Tree_BPartner() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_Tree_BPartner() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_BPartner_ID(), get_TrxName()); } /** Set BPartner Tree. @@ -125,9 +139,9 @@ public class X_AD_ClientInfo extends PO implements I_AD_ClientInfo, I_Persistent return ii.intValue(); } - public I_AD_Tree getAD_Tree_Campaign() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_Tree_Campaign() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_Campaign_ID(), get_TrxName()); } /** Set Campaign Tree. @@ -153,9 +167,9 @@ public class X_AD_ClientInfo extends PO implements I_AD_ClientInfo, I_Persistent return ii.intValue(); } - public I_AD_Tree getAD_Tree_Menu() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_Tree_Menu() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_Menu_ID(), get_TrxName()); } /** Set Menu Tree. @@ -181,9 +195,9 @@ public class X_AD_ClientInfo extends PO implements I_AD_ClientInfo, I_Persistent return ii.intValue(); } - public I_AD_Tree getAD_Tree_Org() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_Tree_Org() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_Org_ID(), get_TrxName()); } /** Set Organization Tree. @@ -209,9 +223,9 @@ public class X_AD_ClientInfo extends PO implements I_AD_ClientInfo, I_Persistent return ii.intValue(); } - public I_AD_Tree getAD_Tree_Product() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_Tree_Product() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_Product_ID(), get_TrxName()); } /** Set Product Tree. @@ -237,9 +251,9 @@ public class X_AD_ClientInfo extends PO implements I_AD_ClientInfo, I_Persistent return ii.intValue(); } - public I_AD_Tree getAD_Tree_Project() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_Tree_Project() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_Project_ID(), get_TrxName()); } /** Set Project Tree. @@ -265,9 +279,9 @@ public class X_AD_ClientInfo extends PO implements I_AD_ClientInfo, I_Persistent return ii.intValue(); } - public I_AD_Tree getAD_Tree_SalesRegion() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_Tree_SalesRegion() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_SalesRegion_ID(), get_TrxName()); } /** Set Sales Region Tree. @@ -293,9 +307,9 @@ public class X_AD_ClientInfo extends PO implements I_AD_ClientInfo, I_Persistent return ii.intValue(); } - public I_C_AcctSchema getC_AcctSchema1() throws RuntimeException + public org.compiere.model.I_C_AcctSchema getC_AcctSchema1() throws RuntimeException { - return (I_C_AcctSchema)MTable.get(getCtx(), I_C_AcctSchema.Table_Name) + return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_Name) .getPO(getC_AcctSchema1_ID(), get_TrxName()); } /** Set Primary Accounting Schema. @@ -321,9 +335,9 @@ public class X_AD_ClientInfo extends PO implements I_AD_ClientInfo, I_Persistent return ii.intValue(); } - public I_C_BPartner getC_BPartnerCashTrx() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartnerCashTrx() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartnerCashTrx_ID(), get_TrxName()); } /** Set Template B.Partner. @@ -349,9 +363,9 @@ public class X_AD_ClientInfo extends PO implements I_AD_ClientInfo, I_Persistent return ii.intValue(); } - public I_C_Calendar getC_Calendar() throws RuntimeException + public org.compiere.model.I_C_Calendar getC_Calendar() throws RuntimeException { - return (I_C_Calendar)MTable.get(getCtx(), I_C_Calendar.Table_Name) + return (org.compiere.model.I_C_Calendar)MTable.get(getCtx(), org.compiere.model.I_C_Calendar.Table_Name) .getPO(getC_Calendar_ID(), get_TrxName()); } /** Set Calendar. @@ -377,9 +391,9 @@ public class X_AD_ClientInfo extends PO implements I_AD_ClientInfo, I_Persistent return ii.intValue(); } - public I_C_UOM getC_UOM_Length() throws RuntimeException + public org.compiere.model.I_C_UOM getC_UOM_Length() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_Length_ID(), get_TrxName()); } /** Set UOM for Length. @@ -405,9 +419,9 @@ public class X_AD_ClientInfo extends PO implements I_AD_ClientInfo, I_Persistent return ii.intValue(); } - public I_C_UOM getC_UOM_Time() throws RuntimeException + public org.compiere.model.I_C_UOM getC_UOM_Time() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_Time_ID(), get_TrxName()); } /** Set UOM for Time. @@ -433,9 +447,9 @@ public class X_AD_ClientInfo extends PO implements I_AD_ClientInfo, I_Persistent return ii.intValue(); } - public I_C_UOM getC_UOM_Volume() throws RuntimeException + public org.compiere.model.I_C_UOM getC_UOM_Volume() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_Volume_ID(), get_TrxName()); } /** Set UOM for Volume. @@ -461,9 +475,9 @@ public class X_AD_ClientInfo extends PO implements I_AD_ClientInfo, I_Persistent return ii.intValue(); } - public I_C_UOM getC_UOM_Weight() throws RuntimeException + public org.compiere.model.I_C_UOM getC_UOM_Weight() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_Weight_ID(), get_TrxName()); } /** Set UOM for Weight. @@ -593,9 +607,9 @@ public class X_AD_ClientInfo extends PO implements I_AD_ClientInfo, I_Persistent return ii.intValue(); } - public I_M_Product getM_ProductFreight() throws RuntimeException + public org.compiere.model.I_M_Product getM_ProductFreight() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_ProductFreight_ID(), get_TrxName()); } /** Set Product for Freight. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_ClientShare.java b/org.adempiere.base/src/org/compiere/model/X_AD_ClientShare.java index 865f93ece5..36850f77bf 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_ClientShare.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_ClientShare.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_ClientShare - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_ClientShare extends PO implements I_AD_ClientShare, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_ClientShare (Properties ctx, int AD_ClientShare_ID, String trxName) @@ -96,9 +96,23 @@ public class X_AD_ClientShare extends PO implements I_AD_ClientShare, I_Persiste return ii.intValue(); } - public I_AD_Table getAD_Table() throws RuntimeException + /** Set AD_ClientShare_UU. + @param AD_ClientShare_UU AD_ClientShare_UU */ + public void setAD_ClientShare_UU (String AD_ClientShare_UU) + { + set_Value (COLUMNNAME_AD_ClientShare_UU, AD_ClientShare_UU); + } + + /** Get AD_ClientShare_UU. + @return AD_ClientShare_UU */ + public String getAD_ClientShare_UU () + { + return (String)get_Value(COLUMNNAME_AD_ClientShare_UU); + } + + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Color.java b/org.adempiere.base/src/org/compiere/model/X_AD_Color.java index 8efae4f4a5..da4779911e 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Color.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Color.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Color - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Color extends PO implements I_AD_Color, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Color (Properties ctx, int AD_Color_ID, String trxName) @@ -103,9 +103,23 @@ public class X_AD_Color extends PO implements I_AD_Color, I_Persistent return ii.intValue(); } - public I_AD_Image getAD_Image() throws RuntimeException + /** Set AD_Color_UU. + @param AD_Color_UU AD_Color_UU */ + public void setAD_Color_UU (String AD_Color_UU) + { + set_Value (COLUMNNAME_AD_Color_UU, AD_Color_UU); + } + + /** Get AD_Color_UU. + @return AD_Color_UU */ + public String getAD_Color_UU () + { + return (String)get_Value(COLUMNNAME_AD_Color_UU); + } + + public org.compiere.model.I_AD_Image getAD_Image() throws RuntimeException { - return (I_AD_Image)MTable.get(getCtx(), I_AD_Image.Table_Name) + return (org.compiere.model.I_AD_Image)MTable.get(getCtx(), org.compiere.model.I_AD_Image.Table_Name) .getPO(getAD_Image_ID(), get_TrxName()); } /** Set Image. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Column.java b/org.adempiere.base/src/org/compiere/model/X_AD_Column.java index ca6a3748d5..2df383c1a3 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Column.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Column.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Column - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Column extends PO implements I_AD_Column, I_Persistent { /** * */ - private static final long serialVersionUID = 20121019L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Column (Properties ctx, int AD_Column_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Column_Access.java b/org.adempiere.base/src/org/compiere/model/X_AD_Column_Access.java index 3858ecdbb8..b877ccd009 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Column_Access.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Column_Access.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Column_Access - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Column_Access extends PO implements I_AD_Column_Access, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Column_Access (Properties ctx, int AD_Column_Access_ID, String trxName) @@ -74,9 +74,23 @@ public class X_AD_Column_Access extends PO implements I_AD_Column_Access, I_Pers return sb.toString(); } - public I_AD_Column getAD_Column() throws RuntimeException + /** Set AD_Column_Access_UU. + @param AD_Column_Access_UU AD_Column_Access_UU */ + public void setAD_Column_Access_UU (String AD_Column_Access_UU) + { + set_Value (COLUMNNAME_AD_Column_Access_UU, AD_Column_Access_UU); + } + + /** Get AD_Column_Access_UU. + @return AD_Column_Access_UU */ + public String getAD_Column_Access_UU () + { + return (String)get_Value(COLUMNNAME_AD_Column_Access_UU); + } + + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException { - return (I_AD_Column)MTable.get(getCtx(), I_AD_Column.Table_Name) + return (org.compiere.model.I_AD_Column)MTable.get(getCtx(), org.compiere.model.I_AD_Column.Table_Name) .getPO(getAD_Column_ID(), get_TrxName()); } /** Set Column. @@ -110,9 +124,9 @@ public class X_AD_Column_Access extends PO implements I_AD_Column_Access, I_Pers return new KeyNamePair(get_ID(), String.valueOf(getAD_Column_ID())); } - public I_AD_Role getAD_Role() throws RuntimeException + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException { - return (I_AD_Role)MTable.get(getCtx(), I_AD_Role.Table_Name) + return (org.compiere.model.I_AD_Role)MTable.get(getCtx(), org.compiere.model.I_AD_Role.Table_Name) .getPO(getAD_Role_ID(), get_TrxName()); } /** Set Role. @@ -138,9 +152,9 @@ public class X_AD_Column_Access extends PO implements I_AD_Column_Access, I_Pers return ii.intValue(); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Desktop.java b/org.adempiere.base/src/org/compiere/model/X_AD_Desktop.java index 0e34458c7a..221bcda932 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Desktop.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Desktop.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Desktop - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Desktop extends PO implements I_AD_Desktop, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Desktop (Properties ctx, int AD_Desktop_ID, String trxName) @@ -117,6 +117,20 @@ public class X_AD_Desktop extends PO implements I_AD_Desktop, I_Persistent return ii.intValue(); } + /** Set AD_Desktop_UU. + @param AD_Desktop_UU AD_Desktop_UU */ + public void setAD_Desktop_UU (String AD_Desktop_UU) + { + set_Value (COLUMNNAME_AD_Desktop_UU, AD_Desktop_UU); + } + + /** Get AD_Desktop_UU. + @return AD_Desktop_UU */ + public String getAD_Desktop_UU () + { + return (String)get_Value(COLUMNNAME_AD_Desktop_UU); + } + /** Set Image. @param AD_Image_ID Image or Icon diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_DesktopWorkbench.java b/org.adempiere.base/src/org/compiere/model/X_AD_DesktopWorkbench.java index ad07118adf..64f7ecc670 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_DesktopWorkbench.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_DesktopWorkbench.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_DesktopWorkbench - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_DesktopWorkbench extends PO implements I_AD_DesktopWorkbench, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_DesktopWorkbench (Properties ctx, int AD_DesktopWorkbench_ID, String trxName) @@ -73,9 +73,9 @@ public class X_AD_DesktopWorkbench extends PO implements I_AD_DesktopWorkbench, return sb.toString(); } - public I_AD_Desktop getAD_Desktop() throws RuntimeException + public org.compiere.model.I_AD_Desktop getAD_Desktop() throws RuntimeException { - return (I_AD_Desktop)MTable.get(getCtx(), I_AD_Desktop.Table_Name) + return (org.compiere.model.I_AD_Desktop)MTable.get(getCtx(), org.compiere.model.I_AD_Desktop.Table_Name) .getPO(getAD_Desktop_ID(), get_TrxName()); } /** Set Desktop. @@ -121,9 +121,23 @@ public class X_AD_DesktopWorkbench extends PO implements I_AD_DesktopWorkbench, return ii.intValue(); } - public I_AD_Workbench getAD_Workbench() throws RuntimeException + /** Set AD_DesktopWorkbench_UU. + @param AD_DesktopWorkbench_UU AD_DesktopWorkbench_UU */ + public void setAD_DesktopWorkbench_UU (String AD_DesktopWorkbench_UU) + { + set_Value (COLUMNNAME_AD_DesktopWorkbench_UU, AD_DesktopWorkbench_UU); + } + + /** Get AD_DesktopWorkbench_UU. + @return AD_DesktopWorkbench_UU */ + public String getAD_DesktopWorkbench_UU () + { + return (String)get_Value(COLUMNNAME_AD_DesktopWorkbench_UU); + } + + public org.compiere.model.I_AD_Workbench getAD_Workbench() throws RuntimeException { - return (I_AD_Workbench)MTable.get(getCtx(), I_AD_Workbench.Table_Name) + return (org.compiere.model.I_AD_Workbench)MTable.get(getCtx(), org.compiere.model.I_AD_Workbench.Table_Name) .getPO(getAD_Workbench_ID(), get_TrxName()); } /** Set Workbench. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Document_Action_Access.java b/org.adempiere.base/src/org/compiere/model/X_AD_Document_Action_Access.java index 6c1b463bb3..388654c6ba 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Document_Action_Access.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Document_Action_Access.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_Document_Action_Access - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Document_Action_Access extends PO implements I_AD_Document_Action_Access, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Document_Action_Access (Properties ctx, int AD_Document_Action_Access_ID, String trxName) @@ -71,9 +71,23 @@ public class X_AD_Document_Action_Access extends PO implements I_AD_Document_Act return sb.toString(); } - public I_AD_Ref_List getAD_Ref_List() throws RuntimeException + /** Set AD_Document_Action_Access_UU. + @param AD_Document_Action_Access_UU AD_Document_Action_Access_UU */ + public void setAD_Document_Action_Access_UU (String AD_Document_Action_Access_UU) + { + set_Value (COLUMNNAME_AD_Document_Action_Access_UU, AD_Document_Action_Access_UU); + } + + /** Get AD_Document_Action_Access_UU. + @return AD_Document_Action_Access_UU */ + public String getAD_Document_Action_Access_UU () + { + return (String)get_Value(COLUMNNAME_AD_Document_Action_Access_UU); + } + + public org.compiere.model.I_AD_Ref_List getAD_Ref_List() throws RuntimeException { - return (I_AD_Ref_List)MTable.get(getCtx(), I_AD_Ref_List.Table_Name) + return (org.compiere.model.I_AD_Ref_List)MTable.get(getCtx(), org.compiere.model.I_AD_Ref_List.Table_Name) .getPO(getAD_Ref_List_ID(), get_TrxName()); } /** Set Reference List. @@ -99,9 +113,9 @@ public class X_AD_Document_Action_Access extends PO implements I_AD_Document_Act return ii.intValue(); } - public I_AD_Role getAD_Role() throws RuntimeException + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException { - return (I_AD_Role)MTable.get(getCtx(), I_AD_Role.Table_Name) + return (org.compiere.model.I_AD_Role)MTable.get(getCtx(), org.compiere.model.I_AD_Role.Table_Name) .getPO(getAD_Role_ID(), get_TrxName()); } /** Set Role. @@ -127,9 +141,9 @@ public class X_AD_Document_Action_Access extends PO implements I_AD_Document_Act return ii.intValue(); } - public I_C_DocType getC_DocType() throws RuntimeException + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocType_ID(), get_TrxName()); } /** Set Document Type. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Element.java b/org.adempiere.base/src/org/compiere/model/X_AD_Element.java index 8421ee24b1..91b7ac4fcd 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Element.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Element.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Element - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Element extends PO implements I_AD_Element, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Element (Properties ctx, int AD_Element_ID, String trxName) @@ -98,6 +98,20 @@ public class X_AD_Element extends PO implements I_AD_Element, I_Persistent return ii.intValue(); } + /** Set AD_Element_UU. + @param AD_Element_UU AD_Element_UU */ + public void setAD_Element_UU (String AD_Element_UU) + { + set_Value (COLUMNNAME_AD_Element_UU, AD_Element_UU); + } + + /** Get AD_Element_UU. + @return AD_Element_UU */ + public String getAD_Element_UU () + { + return (String)get_Value(COLUMNNAME_AD_Element_UU); + } + /** Set DB Column Name. @param ColumnName Name of the column in the database diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_EntityType.java b/org.adempiere.base/src/org/compiere/model/X_AD_EntityType.java index 7ea34e20bb..3d56aeb4ef 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_EntityType.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_EntityType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_EntityType - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_EntityType extends PO implements I_AD_EntityType, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_EntityType (Properties ctx, int AD_EntityType_ID, String trxName) @@ -95,6 +95,20 @@ public class X_AD_EntityType extends PO implements I_AD_EntityType, I_Persistent return ii.intValue(); } + /** Set AD_EntityType_UU. + @param AD_EntityType_UU AD_EntityType_UU */ + public void setAD_EntityType_UU (String AD_EntityType_UU) + { + set_Value (COLUMNNAME_AD_EntityType_UU, AD_EntityType_UU); + } + + /** Get AD_EntityType_UU. + @return AD_EntityType_UU */ + public String getAD_EntityType_UU () + { + return (String)get_Value(COLUMNNAME_AD_EntityType_UU); + } + /** Set Classpath. @param Classpath Extension Classpath diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Error.java b/org.adempiere.base/src/org/compiere/model/X_AD_Error.java index ac8e2cdc3e..3671b1b1a6 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Error.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Error.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Error - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Error extends PO implements I_AD_Error, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Error (Properties ctx, int AD_Error_ID, String trxName) @@ -91,6 +91,20 @@ public class X_AD_Error extends PO implements I_AD_Error, I_Persistent return ii.intValue(); } + /** Set AD_Error_UU. + @param AD_Error_UU AD_Error_UU */ + public void setAD_Error_UU (String AD_Error_UU) + { + set_Value (COLUMNNAME_AD_Error_UU, AD_Error_UU); + } + + /** Get AD_Error_UU. + @return AD_Error_UU */ + public String getAD_Error_UU () + { + return (String)get_Value(COLUMNNAME_AD_Error_UU); + } + /** AD_Language AD_Reference_ID=106 */ public static final int AD_LANGUAGE_AD_Reference_ID=106; /** Set Language. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Field.java b/org.adempiere.base/src/org/compiere/model/X_AD_Field.java index 222216a389..e052a26e41 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Field.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Field.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Field - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Field extends PO implements I_AD_Field, I_Persistent { /** * */ - private static final long serialVersionUID = 20120831L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Field (Properties ctx, int AD_Field_ID, String trxName) @@ -726,6 +726,26 @@ public class X_AD_Field extends PO implements I_AD_Field, I_Persistent return new KeyNamePair(get_ID(), getName()); } + /** Set Number of Lines. + @param NumLines + Number of lines for a field + */ + public void setNumLines (int NumLines) + { + set_Value (COLUMNNAME_NumLines, Integer.valueOf(NumLines)); + } + + /** Get Number of Lines. + @return Number of lines for a field + */ + public int getNumLines () + { + Integer ii = (Integer)get_Value(COLUMNNAME_NumLines); + if (ii == null) + return 0; + return ii.intValue(); + } + /** ObscureType AD_Reference_ID=291 */ public static final int OBSCURETYPE_AD_Reference_ID=291; /** Obscure Digits but last 4 = 904 */ @@ -754,26 +774,6 @@ public class X_AD_Field extends PO implements I_AD_Field, I_Persistent return (String)get_Value(COLUMNNAME_ObscureType); } - /** Set Row Span. - @param NumLines - Number of rows for a field - */ - public void setNumLines (int NumLines) - { - set_Value (COLUMNNAME_NumLines, Integer.valueOf(NumLines)); - } - - /** Get Row Span. - @return Number of rows for a field - */ - public int getNumLines () - { - Integer ii = (Integer)get_Value(COLUMNNAME_NumLines); - if (ii == null) - return 0; - return ii.intValue(); - } - /** Set Sequence. @param SeqNo Method of ordering records; lowest number comes first diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_FieldGroup.java b/org.adempiere.base/src/org/compiere/model/X_AD_FieldGroup.java index 4ead83f990..b8316f7145 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_FieldGroup.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_FieldGroup.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_FieldGroup - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_FieldGroup extends PO implements I_AD_FieldGroup, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_FieldGroup (Properties ctx, int AD_FieldGroup_ID, String trxName) @@ -96,6 +96,20 @@ public class X_AD_FieldGroup extends PO implements I_AD_FieldGroup, I_Persistent return ii.intValue(); } + /** Set AD_FieldGroup_UU. + @param AD_FieldGroup_UU AD_FieldGroup_UU */ + public void setAD_FieldGroup_UU (String AD_FieldGroup_UU) + { + set_Value (COLUMNNAME_AD_FieldGroup_UU, AD_FieldGroup_UU); + } + + /** Get AD_FieldGroup_UU. + @return AD_FieldGroup_UU */ + public String getAD_FieldGroup_UU () + { + return (String)get_Value(COLUMNNAME_AD_FieldGroup_UU); + } + /** EntityType AD_Reference_ID=389 */ public static final int ENTITYTYPE_AD_Reference_ID=389; /** Set Entity Type. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Find.java b/org.adempiere.base/src/org/compiere/model/X_AD_Find.java index f20510f7a1..60b8522a93 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Find.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Find.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Find - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Find extends PO implements I_AD_Find, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Find (Properties ctx, int AD_Find_ID, String trxName) @@ -79,9 +79,9 @@ public class X_AD_Find extends PO implements I_AD_Find, I_Persistent return sb.toString(); } - public I_AD_Column getAD_Column() throws RuntimeException + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException { - return (I_AD_Column)MTable.get(getCtx(), I_AD_Column.Table_Name) + return (org.compiere.model.I_AD_Column)MTable.get(getCtx(), org.compiere.model.I_AD_Column.Table_Name) .getPO(getAD_Column_ID(), get_TrxName()); } /** Set Column. @@ -135,6 +135,20 @@ public class X_AD_Find extends PO implements I_AD_Find, I_Persistent return new KeyNamePair(get_ID(), String.valueOf(getAD_Find_ID())); } + /** Set AD_Find_UU. + @param AD_Find_UU AD_Find_UU */ + public void setAD_Find_UU (String AD_Find_UU) + { + set_Value (COLUMNNAME_AD_Find_UU, AD_Find_UU); + } + + /** Get AD_Find_UU. + @return AD_Find_UU */ + public String getAD_Find_UU () + { + return (String)get_Value(COLUMNNAME_AD_Find_UU); + } + /** AndOr AD_Reference_ID=204 */ public static final int ANDOR_AD_Reference_ID=204; /** And = A */ diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Form.java b/org.adempiere.base/src/org/compiere/model/X_AD_Form.java index 40a92f2087..e56d411036 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Form.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Form.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Form - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Form extends PO implements I_AD_Form, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Form (Properties ctx, int AD_Form_ID, String trxName) @@ -130,6 +130,20 @@ public class X_AD_Form extends PO implements I_AD_Form, I_Persistent return ii.intValue(); } + /** Set AD_Form_UU. + @param AD_Form_UU AD_Form_UU */ + public void setAD_Form_UU (String AD_Form_UU) + { + set_Value (COLUMNNAME_AD_Form_UU, AD_Form_UU); + } + + /** Get AD_Form_UU. + @return AD_Form_UU */ + public String getAD_Form_UU () + { + return (String)get_Value(COLUMNNAME_AD_Form_UU); + } + /** Set Classname. @param Classname Java Classname diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Form_Access.java b/org.adempiere.base/src/org/compiere/model/X_AD_Form_Access.java index 24418100f0..3b28371400 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Form_Access.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Form_Access.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_Form_Access - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Form_Access extends PO implements I_AD_Form_Access, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Form_Access (Properties ctx, int AD_Form_Access_ID, String trxName) @@ -71,9 +71,23 @@ public class X_AD_Form_Access extends PO implements I_AD_Form_Access, I_Persiste return sb.toString(); } - public I_AD_Form getAD_Form() throws RuntimeException + /** Set AD_Form_Access_UU. + @param AD_Form_Access_UU AD_Form_Access_UU */ + public void setAD_Form_Access_UU (String AD_Form_Access_UU) + { + set_Value (COLUMNNAME_AD_Form_Access_UU, AD_Form_Access_UU); + } + + /** Get AD_Form_Access_UU. + @return AD_Form_Access_UU */ + public String getAD_Form_Access_UU () + { + return (String)get_Value(COLUMNNAME_AD_Form_Access_UU); + } + + public org.compiere.model.I_AD_Form getAD_Form() throws RuntimeException { - return (I_AD_Form)MTable.get(getCtx(), I_AD_Form.Table_Name) + return (org.compiere.model.I_AD_Form)MTable.get(getCtx(), org.compiere.model.I_AD_Form.Table_Name) .getPO(getAD_Form_ID(), get_TrxName()); } /** Set Special Form. @@ -99,9 +113,9 @@ public class X_AD_Form_Access extends PO implements I_AD_Form_Access, I_Persiste return ii.intValue(); } - public I_AD_Role getAD_Role() throws RuntimeException + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException { - return (I_AD_Role)MTable.get(getCtx(), I_AD_Role.Table_Name) + return (org.compiere.model.I_AD_Role)MTable.get(getCtx(), org.compiere.model.I_AD_Role.Table_Name) .getPO(getAD_Role_ID(), get_TrxName()); } /** Set Role. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_HouseKeeping.java b/org.adempiere.base/src/org/compiere/model/X_AD_HouseKeeping.java index a864a50865..651c168010 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_HouseKeeping.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_HouseKeeping.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_HouseKeeping - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_HouseKeeping extends PO implements I_AD_HouseKeeping, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_HouseKeeping (Properties ctx, int AD_HouseKeeping_ID, String trxName) @@ -94,9 +94,23 @@ public class X_AD_HouseKeeping extends PO implements I_AD_HouseKeeping, I_Persis return ii.intValue(); } - public I_AD_Table getAD_Table() throws RuntimeException + /** Set AD_HouseKeeping_UU. + @param AD_HouseKeeping_UU AD_HouseKeeping_UU */ + public void setAD_HouseKeeping_UU (String AD_HouseKeeping_UU) + { + set_Value (COLUMNNAME_AD_HouseKeeping_UU, AD_HouseKeeping_UU); + } + + /** Get AD_HouseKeeping_UU. + @return AD_HouseKeeping_UU */ + public String getAD_HouseKeeping_UU () + { + return (String)get_Value(COLUMNNAME_AD_HouseKeeping_UU); + } + + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Image.java b/org.adempiere.base/src/org/compiere/model/X_AD_Image.java index 04d87f21b3..952420345a 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Image.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Image.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Image - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Image extends PO implements I_AD_Image, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Image (Properties ctx, int AD_Image_ID, String trxName) @@ -96,6 +96,20 @@ public class X_AD_Image extends PO implements I_AD_Image, I_Persistent return ii.intValue(); } + /** Set AD_Image_UU. + @param AD_Image_UU AD_Image_UU */ + public void setAD_Image_UU (String AD_Image_UU) + { + set_Value (COLUMNNAME_AD_Image_UU, AD_Image_UU); + } + + /** Get AD_Image_UU. + @return AD_Image_UU */ + public String getAD_Image_UU () + { + return (String)get_Value(COLUMNNAME_AD_Image_UU); + } + /** Set Binary Data. @param BinaryData Binary Data diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_ImpFormat.java b/org.adempiere.base/src/org/compiere/model/X_AD_ImpFormat.java index eef7b499d1..4347d86b75 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_ImpFormat.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_ImpFormat.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_ImpFormat - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_ImpFormat extends PO implements I_AD_ImpFormat, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_ImpFormat (Properties ctx, int AD_ImpFormat_ID, String trxName) @@ -94,9 +94,23 @@ public class X_AD_ImpFormat extends PO implements I_AD_ImpFormat, I_Persistent return ii.intValue(); } - public I_AD_Table getAD_Table() throws RuntimeException + /** Set AD_ImpFormat_UU. + @param AD_ImpFormat_UU AD_ImpFormat_UU */ + public void setAD_ImpFormat_UU (String AD_ImpFormat_UU) + { + set_Value (COLUMNNAME_AD_ImpFormat_UU, AD_ImpFormat_UU); + } + + /** Get AD_ImpFormat_UU. + @return AD_ImpFormat_UU */ + public String getAD_ImpFormat_UU () + { + return (String)get_Value(COLUMNNAME_AD_ImpFormat_UU); + } + + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_ImpFormat_Row.java b/org.adempiere.base/src/org/compiere/model/X_AD_ImpFormat_Row.java index f45be5950d..bf8f882e66 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_ImpFormat_Row.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_ImpFormat_Row.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_ImpFormat_Row - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_ImpFormat_Row extends PO implements I_AD_ImpFormat_Row, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_ImpFormat_Row (Properties ctx, int AD_ImpFormat_Row_ID, String trxName) @@ -79,9 +79,9 @@ public class X_AD_ImpFormat_Row extends PO implements I_AD_ImpFormat_Row, I_Pers return sb.toString(); } - public I_AD_Column getAD_Column() throws RuntimeException + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException { - return (I_AD_Column)MTable.get(getCtx(), I_AD_Column.Table_Name) + return (org.compiere.model.I_AD_Column)MTable.get(getCtx(), org.compiere.model.I_AD_Column.Table_Name) .getPO(getAD_Column_ID(), get_TrxName()); } /** Set Column. @@ -107,9 +107,9 @@ public class X_AD_ImpFormat_Row extends PO implements I_AD_ImpFormat_Row, I_Pers return ii.intValue(); } - public I_AD_ImpFormat getAD_ImpFormat() throws RuntimeException + public org.compiere.model.I_AD_ImpFormat getAD_ImpFormat() throws RuntimeException { - return (I_AD_ImpFormat)MTable.get(getCtx(), I_AD_ImpFormat.Table_Name) + return (org.compiere.model.I_AD_ImpFormat)MTable.get(getCtx(), org.compiere.model.I_AD_ImpFormat.Table_Name) .getPO(getAD_ImpFormat_ID(), get_TrxName()); } /** Set Import Format. @@ -152,6 +152,20 @@ public class X_AD_ImpFormat_Row extends PO implements I_AD_ImpFormat_Row, I_Pers return ii.intValue(); } + /** Set AD_ImpFormat_Row_UU. + @param AD_ImpFormat_Row_UU AD_ImpFormat_Row_UU */ + public void setAD_ImpFormat_Row_UU (String AD_ImpFormat_Row_UU) + { + set_Value (COLUMNNAME_AD_ImpFormat_Row_UU, AD_ImpFormat_Row_UU); + } + + /** Get AD_ImpFormat_Row_UU. + @return AD_ImpFormat_Row_UU */ + public String getAD_ImpFormat_Row_UU () + { + return (String)get_Value(COLUMNNAME_AD_ImpFormat_Row_UU); + } + /** Set Callout. @param Callout Fully qualified class names and method - separated by semicolons diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_InfoColumn.java b/org.adempiere.base/src/org/compiere/model/X_AD_InfoColumn.java index b03395c348..6a2868f7cc 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_InfoColumn.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_InfoColumn.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_InfoColumn - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_InfoColumn extends PO implements I_AD_InfoColumn, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_InfoColumn (Properties ctx, int AD_InfoColumn_ID, String trxName) @@ -79,9 +79,9 @@ public class X_AD_InfoColumn extends PO implements I_AD_InfoColumn, I_Persistent return sb.toString(); } - public I_AD_Element getAD_Element() throws RuntimeException + public org.compiere.model.I_AD_Element getAD_Element() throws RuntimeException { - return (I_AD_Element)MTable.get(getCtx(), I_AD_Element.Table_Name) + return (org.compiere.model.I_AD_Element)MTable.get(getCtx(), org.compiere.model.I_AD_Element.Table_Name) .getPO(getAD_Element_ID(), get_TrxName()); } /** Set System Element. @@ -130,9 +130,23 @@ public class X_AD_InfoColumn extends PO implements I_AD_InfoColumn, I_Persistent return ii.intValue(); } - public I_AD_InfoWindow getAD_InfoWindow() throws RuntimeException + /** Set AD_InfoColumn_UU. + @param AD_InfoColumn_UU AD_InfoColumn_UU */ + public void setAD_InfoColumn_UU (String AD_InfoColumn_UU) + { + set_Value (COLUMNNAME_AD_InfoColumn_UU, AD_InfoColumn_UU); + } + + /** Get AD_InfoColumn_UU. + @return AD_InfoColumn_UU */ + public String getAD_InfoColumn_UU () + { + return (String)get_Value(COLUMNNAME_AD_InfoColumn_UU); + } + + public org.compiere.model.I_AD_InfoWindow getAD_InfoWindow() throws RuntimeException { - return (I_AD_InfoWindow)MTable.get(getCtx(), I_AD_InfoWindow.Table_Name) + return (org.compiere.model.I_AD_InfoWindow)MTable.get(getCtx(), org.compiere.model.I_AD_InfoWindow.Table_Name) .getPO(getAD_InfoWindow_ID(), get_TrxName()); } /** Set Info Window. @@ -158,9 +172,9 @@ public class X_AD_InfoColumn extends PO implements I_AD_InfoColumn, I_Persistent return ii.intValue(); } - public I_AD_Reference getAD_Reference() throws RuntimeException + public org.compiere.model.I_AD_Reference getAD_Reference() throws RuntimeException { - return (I_AD_Reference)MTable.get(getCtx(), I_AD_Reference.Table_Name) + return (org.compiere.model.I_AD_Reference)MTable.get(getCtx(), org.compiere.model.I_AD_Reference.Table_Name) .getPO(getAD_Reference_ID(), get_TrxName()); } /** Set Reference. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_InfoWindow.java b/org.adempiere.base/src/org/compiere/model/X_AD_InfoWindow.java index c3c3c1cf85..617c44e85f 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_InfoWindow.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_InfoWindow.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_InfoWindow - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_InfoWindow extends PO implements I_AD_InfoWindow, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_InfoWindow (Properties ctx, int AD_InfoWindow_ID, String trxName) @@ -98,9 +98,23 @@ public class X_AD_InfoWindow extends PO implements I_AD_InfoWindow, I_Persistent return ii.intValue(); } - public I_AD_Table getAD_Table() throws RuntimeException + /** Set AD_InfoWindow_UU. + @param AD_InfoWindow_UU AD_InfoWindow_UU */ + public void setAD_InfoWindow_UU (String AD_InfoWindow_UU) + { + set_Value (COLUMNNAME_AD_InfoWindow_UU, AD_InfoWindow_UU); + } + + /** Get AD_InfoWindow_UU. + @return AD_InfoWindow_UU */ + public String getAD_InfoWindow_UU () + { + return (String)get_Value(COLUMNNAME_AD_InfoWindow_UU); + } + + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Issue.java b/org.adempiere.base/src/org/compiere/model/X_AD_Issue.java index 3caa048d93..c503299922 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Issue.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Issue.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Issue - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Issue extends PO implements I_AD_Issue, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Issue (Properties ctx, int AD_Issue_ID, String trxName) @@ -83,9 +83,9 @@ public class X_AD_Issue extends PO implements I_AD_Issue, I_Persistent return sb.toString(); } - public I_A_Asset getA_Asset() throws RuntimeException + public org.compiere.model.I_A_Asset getA_Asset() throws RuntimeException { - return (I_A_Asset)MTable.get(getCtx(), I_A_Asset.Table_Name) + return (org.compiere.model.I_A_Asset)MTable.get(getCtx(), org.compiere.model.I_A_Asset.Table_Name) .getPO(getA_Asset_ID(), get_TrxName()); } /** Set Asset. @@ -111,9 +111,9 @@ public class X_AD_Issue extends PO implements I_AD_Issue, I_Persistent return ii.intValue(); } - public I_AD_Form getAD_Form() throws RuntimeException + public org.compiere.model.I_AD_Form getAD_Form() throws RuntimeException { - return (I_AD_Form)MTable.get(getCtx(), I_AD_Form.Table_Name) + return (org.compiere.model.I_AD_Form)MTable.get(getCtx(), org.compiere.model.I_AD_Form.Table_Name) .getPO(getAD_Form_ID(), get_TrxName()); } /** Set Special Form. @@ -162,9 +162,23 @@ public class X_AD_Issue extends PO implements I_AD_Issue, I_Persistent return ii.intValue(); } - public I_AD_Process getAD_Process() throws RuntimeException + /** Set AD_Issue_UU. + @param AD_Issue_UU AD_Issue_UU */ + public void setAD_Issue_UU (String AD_Issue_UU) + { + set_Value (COLUMNNAME_AD_Issue_UU, AD_Issue_UU); + } + + /** Get AD_Issue_UU. + @return AD_Issue_UU */ + public String getAD_Issue_UU () + { + return (String)get_Value(COLUMNNAME_AD_Issue_UU); + } + + public org.compiere.model.I_AD_Process getAD_Process() throws RuntimeException { - return (I_AD_Process)MTable.get(getCtx(), I_AD_Process.Table_Name) + return (org.compiere.model.I_AD_Process)MTable.get(getCtx(), org.compiere.model.I_AD_Process.Table_Name) .getPO(getAD_Process_ID(), get_TrxName()); } /** Set Process. @@ -190,9 +204,9 @@ public class X_AD_Issue extends PO implements I_AD_Issue, I_Persistent return ii.intValue(); } - public I_AD_Window getAD_Window() throws RuntimeException + public org.compiere.model.I_AD_Window getAD_Window() throws RuntimeException { - return (I_AD_Window)MTable.get(getCtx(), I_AD_Window.Table_Name) + return (org.compiere.model.I_AD_Window)MTable.get(getCtx(), org.compiere.model.I_AD_Window.Table_Name) .getPO(getAD_Window_ID(), get_TrxName()); } /** Set Window. @@ -685,9 +699,9 @@ public class X_AD_Issue extends PO implements I_AD_Issue, I_Persistent return (String)get_Value(COLUMNNAME_ResponseText); } - public I_R_IssueKnown getR_IssueKnown() throws RuntimeException + public org.compiere.model.I_R_IssueKnown getR_IssueKnown() throws RuntimeException { - return (I_R_IssueKnown)MTable.get(getCtx(), I_R_IssueKnown.Table_Name) + return (org.compiere.model.I_R_IssueKnown)MTable.get(getCtx(), org.compiere.model.I_R_IssueKnown.Table_Name) .getPO(getR_IssueKnown_ID(), get_TrxName()); } /** Set Known Issue. @@ -713,9 +727,9 @@ public class X_AD_Issue extends PO implements I_AD_Issue, I_Persistent return ii.intValue(); } - public I_R_IssueProject getR_IssueProject() throws RuntimeException + public org.compiere.model.I_R_IssueProject getR_IssueProject() throws RuntimeException { - return (I_R_IssueProject)MTable.get(getCtx(), I_R_IssueProject.Table_Name) + return (org.compiere.model.I_R_IssueProject)MTable.get(getCtx(), org.compiere.model.I_R_IssueProject.Table_Name) .getPO(getR_IssueProject_ID(), get_TrxName()); } /** Set Issue Project. @@ -741,9 +755,9 @@ public class X_AD_Issue extends PO implements I_AD_Issue, I_Persistent return ii.intValue(); } - public I_R_IssueSystem getR_IssueSystem() throws RuntimeException + public org.compiere.model.I_R_IssueSystem getR_IssueSystem() throws RuntimeException { - return (I_R_IssueSystem)MTable.get(getCtx(), I_R_IssueSystem.Table_Name) + return (org.compiere.model.I_R_IssueSystem)MTable.get(getCtx(), org.compiere.model.I_R_IssueSystem.Table_Name) .getPO(getR_IssueSystem_ID(), get_TrxName()); } /** Set Issue System. @@ -769,9 +783,9 @@ public class X_AD_Issue extends PO implements I_AD_Issue, I_Persistent return ii.intValue(); } - public I_R_IssueUser getR_IssueUser() throws RuntimeException + public org.compiere.model.I_R_IssueUser getR_IssueUser() throws RuntimeException { - return (I_R_IssueUser)MTable.get(getCtx(), I_R_IssueUser.Table_Name) + return (org.compiere.model.I_R_IssueUser)MTable.get(getCtx(), org.compiere.model.I_R_IssueUser.Table_Name) .getPO(getR_IssueUser_ID(), get_TrxName()); } /** Set IssueUser. @@ -797,9 +811,9 @@ public class X_AD_Issue extends PO implements I_AD_Issue, I_Persistent return ii.intValue(); } - public I_R_Request getR_Request() throws RuntimeException + public org.compiere.model.I_R_Request getR_Request() throws RuntimeException { - return (I_R_Request)MTable.get(getCtx(), I_R_Request.Table_Name) + return (org.compiere.model.I_R_Request)MTable.get(getCtx(), org.compiere.model.I_R_Request.Table_Name) .getPO(getR_Request_ID(), get_TrxName()); } /** Set Request. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_LabelPrinter.java b/org.adempiere.base/src/org/compiere/model/X_AD_LabelPrinter.java index ffcaa18b42..822a5e7d44 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_LabelPrinter.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_LabelPrinter.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_LabelPrinter - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_LabelPrinter extends PO implements I_AD_LabelPrinter, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_LabelPrinter (Properties ctx, int AD_LabelPrinter_ID, String trxName) @@ -94,6 +94,20 @@ public class X_AD_LabelPrinter extends PO implements I_AD_LabelPrinter, I_Persis return ii.intValue(); } + /** Set AD_LabelPrinter_UU. + @param AD_LabelPrinter_UU AD_LabelPrinter_UU */ + public void setAD_LabelPrinter_UU (String AD_LabelPrinter_UU) + { + set_Value (COLUMNNAME_AD_LabelPrinter_UU, AD_LabelPrinter_UU); + } + + /** Get AD_LabelPrinter_UU. + @return AD_LabelPrinter_UU */ + public String getAD_LabelPrinter_UU () + { + return (String)get_Value(COLUMNNAME_AD_LabelPrinter_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_LabelPrinterFunction.java b/org.adempiere.base/src/org/compiere/model/X_AD_LabelPrinterFunction.java index a0d56e530b..bdfc8d54dd 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_LabelPrinterFunction.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_LabelPrinterFunction.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_LabelPrinterFunction - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_LabelPrinterFunction extends PO implements I_AD_LabelPrinterFunction, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_LabelPrinterFunction (Properties ctx, int AD_LabelPrinterFunction_ID, String trxName) @@ -96,9 +96,23 @@ public class X_AD_LabelPrinterFunction extends PO implements I_AD_LabelPrinterFu return ii.intValue(); } - public I_AD_LabelPrinter getAD_LabelPrinter() throws RuntimeException + /** Set AD_LabelPrinterFunction_UU. + @param AD_LabelPrinterFunction_UU AD_LabelPrinterFunction_UU */ + public void setAD_LabelPrinterFunction_UU (String AD_LabelPrinterFunction_UU) + { + set_Value (COLUMNNAME_AD_LabelPrinterFunction_UU, AD_LabelPrinterFunction_UU); + } + + /** Get AD_LabelPrinterFunction_UU. + @return AD_LabelPrinterFunction_UU */ + public String getAD_LabelPrinterFunction_UU () + { + return (String)get_Value(COLUMNNAME_AD_LabelPrinterFunction_UU); + } + + public org.compiere.model.I_AD_LabelPrinter getAD_LabelPrinter() throws RuntimeException { - return (I_AD_LabelPrinter)MTable.get(getCtx(), I_AD_LabelPrinter.Table_Name) + return (org.compiere.model.I_AD_LabelPrinter)MTable.get(getCtx(), org.compiere.model.I_AD_LabelPrinter.Table_Name) .getPO(getAD_LabelPrinter_ID(), get_TrxName()); } /** Set Label printer. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Language.java b/org.adempiere.base/src/org/compiere/model/X_AD_Language.java index dbf27b900d..81b3632ce4 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Language.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Language.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Language - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Language extends PO implements I_AD_Language, I_Persistent { /** * */ - private static final long serialVersionUID = 20121019L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Language (Properties ctx, int AD_Language_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_LdapAccess.java b/org.adempiere.base/src/org/compiere/model/X_AD_LdapAccess.java index 067e9ad001..143405ef5e 100755 --- a/org.adempiere.base/src/org/compiere/model/X_AD_LdapAccess.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_LdapAccess.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_LdapAccess - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_LdapAccess extends PO implements I_AD_LdapAccess, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_LdapAccess (Properties ctx, int AD_LdapAccess_ID, String trxName) @@ -95,9 +95,23 @@ public class X_AD_LdapAccess extends PO implements I_AD_LdapAccess, I_Persistent return ii.intValue(); } - public I_AD_LdapProcessor getAD_LdapProcessor() throws RuntimeException + /** Set AD_LdapAccess_UU. + @param AD_LdapAccess_UU AD_LdapAccess_UU */ + public void setAD_LdapAccess_UU (String AD_LdapAccess_UU) + { + set_Value (COLUMNNAME_AD_LdapAccess_UU, AD_LdapAccess_UU); + } + + /** Get AD_LdapAccess_UU. + @return AD_LdapAccess_UU */ + public String getAD_LdapAccess_UU () + { + return (String)get_Value(COLUMNNAME_AD_LdapAccess_UU); + } + + public org.compiere.model.I_AD_LdapProcessor getAD_LdapProcessor() throws RuntimeException { - return (I_AD_LdapProcessor)MTable.get(getCtx(), I_AD_LdapProcessor.Table_Name) + return (org.compiere.model.I_AD_LdapProcessor)MTable.get(getCtx(), org.compiere.model.I_AD_LdapProcessor.Table_Name) .getPO(getAD_LdapProcessor_ID(), get_TrxName()); } /** Set Ldap Processor. @@ -123,9 +137,9 @@ public class X_AD_LdapAccess extends PO implements I_AD_LdapAccess, I_Persistent return ii.intValue(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -200,9 +214,9 @@ public class X_AD_LdapAccess extends PO implements I_AD_LdapAccess, I_Persistent return false; } - public I_R_InterestArea getR_InterestArea() throws RuntimeException + public org.compiere.model.I_R_InterestArea getR_InterestArea() throws RuntimeException { - return (I_R_InterestArea)MTable.get(getCtx(), I_R_InterestArea.Table_Name) + return (org.compiere.model.I_R_InterestArea)MTable.get(getCtx(), org.compiere.model.I_R_InterestArea.Table_Name) .getPO(getR_InterestArea_ID(), get_TrxName()); } /** Set Interest Area. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_LdapProcessor.java b/org.adempiere.base/src/org/compiere/model/X_AD_LdapProcessor.java index 92857d12f3..3ad447f1c0 100755 --- a/org.adempiere.base/src/org/compiere/model/X_AD_LdapProcessor.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_LdapProcessor.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_LdapProcessor - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_LdapProcessor extends PO implements I_AD_LdapProcessor, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_LdapProcessor (Properties ctx, int AD_LdapProcessor_ID, String trxName) @@ -100,6 +100,20 @@ public class X_AD_LdapProcessor extends PO implements I_AD_LdapProcessor, I_Pers return ii.intValue(); } + /** Set AD_LdapProcessor_UU. + @param AD_LdapProcessor_UU AD_LdapProcessor_UU */ + public void setAD_LdapProcessor_UU (String AD_LdapProcessor_UU) + { + set_Value (COLUMNNAME_AD_LdapProcessor_UU, AD_LdapProcessor_UU); + } + + /** Get AD_LdapProcessor_UU. + @return AD_LdapProcessor_UU */ + public String getAD_LdapProcessor_UU () + { + return (String)get_Value(COLUMNNAME_AD_LdapProcessor_UU); + } + /** Set Date last run. @param DateLastRun Date the process was last run. @@ -237,9 +251,9 @@ public class X_AD_LdapProcessor extends PO implements I_AD_LdapProcessor, I_Pers return false; } - public I_AD_User getSupervisor() throws RuntimeException + public org.compiere.model.I_AD_User getSupervisor() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getSupervisor_ID(), get_TrxName()); } /** Set Supervisor. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_LdapProcessorLog.java b/org.adempiere.base/src/org/compiere/model/X_AD_LdapProcessorLog.java index 03e907eecf..61db3c37cf 100755 --- a/org.adempiere.base/src/org/compiere/model/X_AD_LdapProcessorLog.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_LdapProcessorLog.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_LdapProcessorLog - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_LdapProcessorLog extends PO implements I_AD_LdapProcessorLog, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_LdapProcessorLog (Properties ctx, int AD_LdapProcessorLog_ID, String trxName) @@ -71,9 +71,9 @@ public class X_AD_LdapProcessorLog extends PO implements I_AD_LdapProcessorLog, return sb.toString(); } - public I_AD_LdapProcessor getAD_LdapProcessor() throws RuntimeException + public org.compiere.model.I_AD_LdapProcessor getAD_LdapProcessor() throws RuntimeException { - return (I_AD_LdapProcessor)MTable.get(getCtx(), I_AD_LdapProcessor.Table_Name) + return (org.compiere.model.I_AD_LdapProcessor)MTable.get(getCtx(), org.compiere.model.I_AD_LdapProcessor.Table_Name) .getPO(getAD_LdapProcessor_ID(), get_TrxName()); } /** Set Ldap Processor. @@ -122,6 +122,20 @@ public class X_AD_LdapProcessorLog extends PO implements I_AD_LdapProcessorLog, return ii.intValue(); } + /** Set AD_LdapProcessorLog_UU. + @param AD_LdapProcessorLog_UU AD_LdapProcessorLog_UU */ + public void setAD_LdapProcessorLog_UU (String AD_LdapProcessorLog_UU) + { + set_Value (COLUMNNAME_AD_LdapProcessorLog_UU, AD_LdapProcessorLog_UU); + } + + /** Get AD_LdapProcessorLog_UU. + @return AD_LdapProcessorLog_UU */ + public String getAD_LdapProcessorLog_UU () + { + return (String)get_Value(COLUMNNAME_AD_LdapProcessorLog_UU); + } + /** Set Binary Data. @param BinaryData Binary Data diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Menu.java b/org.adempiere.base/src/org/compiere/model/X_AD_Menu.java index 79ab0bdd2b..eb71b50c3d 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Menu.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Menu.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Menu - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Menu extends PO implements I_AD_Menu, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Menu (Properties ctx, int AD_Menu_ID, String trxName) @@ -111,9 +111,9 @@ public class X_AD_Menu extends PO implements I_AD_Menu, I_Persistent return (String)get_Value(COLUMNNAME_Action); } - public I_AD_Form getAD_Form() throws RuntimeException + public org.compiere.model.I_AD_Form getAD_Form() throws RuntimeException { - return (I_AD_Form)MTable.get(getCtx(), I_AD_Form.Table_Name) + return (org.compiere.model.I_AD_Form)MTable.get(getCtx(), org.compiere.model.I_AD_Form.Table_Name) .getPO(getAD_Form_ID(), get_TrxName()); } /** Set Special Form. @@ -162,9 +162,23 @@ public class X_AD_Menu extends PO implements I_AD_Menu, I_Persistent return ii.intValue(); } - public I_AD_Process getAD_Process() throws RuntimeException + /** Set AD_Menu_UU. + @param AD_Menu_UU AD_Menu_UU */ + public void setAD_Menu_UU (String AD_Menu_UU) + { + set_Value (COLUMNNAME_AD_Menu_UU, AD_Menu_UU); + } + + /** Get AD_Menu_UU. + @return AD_Menu_UU */ + public String getAD_Menu_UU () + { + return (String)get_Value(COLUMNNAME_AD_Menu_UU); + } + + public org.compiere.model.I_AD_Process getAD_Process() throws RuntimeException { - return (I_AD_Process)MTable.get(getCtx(), I_AD_Process.Table_Name) + return (org.compiere.model.I_AD_Process)MTable.get(getCtx(), org.compiere.model.I_AD_Process.Table_Name) .getPO(getAD_Process_ID(), get_TrxName()); } /** Set Process. @@ -190,9 +204,9 @@ public class X_AD_Menu extends PO implements I_AD_Menu, I_Persistent return ii.intValue(); } - public I_AD_Task getAD_Task() throws RuntimeException + public org.compiere.model.I_AD_Task getAD_Task() throws RuntimeException { - return (I_AD_Task)MTable.get(getCtx(), I_AD_Task.Table_Name) + return (org.compiere.model.I_AD_Task)MTable.get(getCtx(), org.compiere.model.I_AD_Task.Table_Name) .getPO(getAD_Task_ID(), get_TrxName()); } /** Set OS Task. @@ -218,9 +232,9 @@ public class X_AD_Menu extends PO implements I_AD_Menu, I_Persistent return ii.intValue(); } - public I_AD_Window getAD_Window() throws RuntimeException + public org.compiere.model.I_AD_Window getAD_Window() throws RuntimeException { - return (I_AD_Window)MTable.get(getCtx(), I_AD_Window.Table_Name) + return (org.compiere.model.I_AD_Window)MTable.get(getCtx(), org.compiere.model.I_AD_Window.Table_Name) .getPO(getAD_Window_ID(), get_TrxName()); } /** Set Window. @@ -246,9 +260,9 @@ public class X_AD_Menu extends PO implements I_AD_Menu, I_Persistent return ii.intValue(); } - public I_AD_Workbench getAD_Workbench() throws RuntimeException + public org.compiere.model.I_AD_Workbench getAD_Workbench() throws RuntimeException { - return (I_AD_Workbench)MTable.get(getCtx(), I_AD_Workbench.Table_Name) + return (org.compiere.model.I_AD_Workbench)MTable.get(getCtx(), org.compiere.model.I_AD_Workbench.Table_Name) .getPO(getAD_Workbench_ID(), get_TrxName()); } /** Set Workbench. @@ -274,9 +288,9 @@ public class X_AD_Menu extends PO implements I_AD_Menu, I_Persistent return ii.intValue(); } - public I_AD_Workflow getAD_Workflow() throws RuntimeException + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException { - return (I_AD_Workflow)MTable.get(getCtx(), I_AD_Workflow.Table_Name) + return (org.compiere.model.I_AD_Workflow)MTable.get(getCtx(), org.compiere.model.I_AD_Workflow.Table_Name) .getPO(getAD_Workflow_ID(), get_TrxName()); } /** Set Workflow. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Message.java b/org.adempiere.base/src/org/compiere/model/X_AD_Message.java index 68d3748950..85c00122fb 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Message.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Message.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Message - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Message extends PO implements I_AD_Message, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Message (Properties ctx, int AD_Message_ID, String trxName) @@ -99,6 +99,20 @@ public class X_AD_Message extends PO implements I_AD_Message, I_Persistent return ii.intValue(); } + /** Set AD_Message_UU. + @param AD_Message_UU AD_Message_UU */ + public void setAD_Message_UU (String AD_Message_UU) + { + set_Value (COLUMNNAME_AD_Message_UU, AD_Message_UU); + } + + /** Get AD_Message_UU. + @return AD_Message_UU */ + public String getAD_Message_UU () + { + return (String)get_Value(COLUMNNAME_AD_Message_UU); + } + /** EntityType AD_Reference_ID=389 */ public static final int ENTITYTYPE_AD_Reference_ID=389; /** Set Entity Type. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_MigrationScript.java b/org.adempiere.base/src/org/compiere/model/X_AD_MigrationScript.java index a98b3d2bc1..501dfe6df4 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_MigrationScript.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_MigrationScript.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_MigrationScript - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_MigrationScript extends PO implements I_AD_MigrationScript, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_MigrationScript (Properties ctx, int AD_MigrationScript_ID, String trxName) @@ -99,6 +99,20 @@ public class X_AD_MigrationScript extends PO implements I_AD_MigrationScript, I_ return ii.intValue(); } + /** Set AD_MigrationScript_UU. + @param AD_MigrationScript_UU AD_MigrationScript_UU */ + public void setAD_MigrationScript_UU (String AD_MigrationScript_UU) + { + set_Value (COLUMNNAME_AD_MigrationScript_UU, AD_MigrationScript_UU); + } + + /** Get AD_MigrationScript_UU. + @return AD_MigrationScript_UU */ + public String getAD_MigrationScript_UU () + { + return (String)get_Value(COLUMNNAME_AD_MigrationScript_UU); + } + /** Set Description. @param Description Optional short description of the record @@ -303,7 +317,7 @@ public class X_AD_MigrationScript extends PO implements I_AD_MigrationScript, I_ /** Set URL. @param URL - Full URL address - e.g. http://www.adempiere.org + Full URL address - e.g. http://www.idempiere.org */ public void setURL (String URL) { @@ -311,7 +325,7 @@ public class X_AD_MigrationScript extends PO implements I_AD_MigrationScript, I_ } /** Get URL. - @return Full URL address - e.g. http://www.adempiere.org + @return Full URL address - e.g. http://www.idempiere.org */ public String getURL () { diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_ModelValidator.java b/org.adempiere.base/src/org/compiere/model/X_AD_ModelValidator.java index 40c4992592..8c19289b20 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_ModelValidator.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_ModelValidator.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_ModelValidator - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_ModelValidator extends PO implements I_AD_ModelValidator, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_ModelValidator (Properties ctx, int AD_ModelValidator_ID, String trxName) @@ -93,6 +93,20 @@ public class X_AD_ModelValidator extends PO implements I_AD_ModelValidator, I_Pe return ii.intValue(); } + /** Set AD_ModelValidator_UU. + @param AD_ModelValidator_UU AD_ModelValidator_UU */ + public void setAD_ModelValidator_UU (String AD_ModelValidator_UU) + { + set_Value (COLUMNNAME_AD_ModelValidator_UU, AD_ModelValidator_UU); + } + + /** Get AD_ModelValidator_UU. + @return AD_ModelValidator_UU */ + public String getAD_ModelValidator_UU () + { + return (String)get_Value(COLUMNNAME_AD_ModelValidator_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Modification.java b/org.adempiere.base/src/org/compiere/model/X_AD_Modification.java index 2568d4cb74..b640190f94 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Modification.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Modification.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Modification - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Modification extends PO implements I_AD_Modification, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Modification (Properties ctx, int AD_Modification_ID, String trxName) @@ -97,6 +97,20 @@ public class X_AD_Modification extends PO implements I_AD_Modification, I_Persis return ii.intValue(); } + /** Set AD_Modification_UU. + @param AD_Modification_UU AD_Modification_UU */ + public void setAD_Modification_UU (String AD_Modification_UU) + { + set_Value (COLUMNNAME_AD_Modification_UU, AD_Modification_UU); + } + + /** Get AD_Modification_UU. + @return AD_Modification_UU */ + public String getAD_Modification_UU () + { + return (String)get_Value(COLUMNNAME_AD_Modification_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Note.java b/org.adempiere.base/src/org/compiere/model/X_AD_Note.java index 6a30a39f6f..16d60f4e3f 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Note.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Note.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Note - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Note extends PO implements I_AD_Note, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Note (Properties ctx, int AD_Note_ID, String trxName) @@ -71,9 +71,9 @@ public class X_AD_Note extends PO implements I_AD_Note, I_Persistent return sb.toString(); } - public I_AD_Message getAD_Message() throws RuntimeException + public org.compiere.model.I_AD_Message getAD_Message() throws RuntimeException { - return (I_AD_Message)MTable.get(getCtx(), I_AD_Message.Table_Name) + return (org.compiere.model.I_AD_Message)MTable.get(getCtx(), org.compiere.model.I_AD_Message.Table_Name) .getPO(getAD_Message_ID(), get_TrxName()); } /** Set Message. @@ -130,9 +130,23 @@ public class X_AD_Note extends PO implements I_AD_Note, I_Persistent return ii.intValue(); } - public I_AD_Table getAD_Table() throws RuntimeException + /** Set AD_Note_UU. + @param AD_Note_UU AD_Note_UU */ + public void setAD_Note_UU (String AD_Note_UU) + { + set_Value (COLUMNNAME_AD_Note_UU, AD_Note_UU); + } + + /** Get AD_Note_UU. + @return AD_Note_UU */ + public String getAD_Note_UU () + { + return (String)get_Value(COLUMNNAME_AD_Note_UU); + } + + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @@ -158,9 +172,9 @@ public class X_AD_Note extends PO implements I_AD_Note, I_Persistent return ii.intValue(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -186,9 +200,9 @@ public class X_AD_Note extends PO implements I_AD_Note, I_Persistent return ii.intValue(); } - public I_AD_WF_Activity getAD_WF_Activity() throws RuntimeException + public org.compiere.model.I_AD_WF_Activity getAD_WF_Activity() throws RuntimeException { - return (I_AD_WF_Activity)MTable.get(getCtx(), I_AD_WF_Activity.Table_Name) + return (org.compiere.model.I_AD_WF_Activity)MTable.get(getCtx(), org.compiere.model.I_AD_WF_Activity.Table_Name) .getPO(getAD_WF_Activity_ID(), get_TrxName()); } /** Set Workflow Activity. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Org.java b/org.adempiere.base/src/org/compiere/model/X_AD_Org.java index 880bcb613f..e3bae6bfe0 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Org.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Org.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Org - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Org extends PO implements I_AD_Org, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Org (Properties ctx, int AD_Org_ID, String trxName) @@ -72,9 +72,23 @@ public class X_AD_Org extends PO implements I_AD_Org, I_Persistent return sb.toString(); } - public I_AD_ReplicationStrategy getAD_ReplicationStrategy() throws RuntimeException + /** Set AD_Org_UU. + @param AD_Org_UU AD_Org_UU */ + public void setAD_Org_UU (String AD_Org_UU) + { + set_Value (COLUMNNAME_AD_Org_UU, AD_Org_UU); + } + + /** Get AD_Org_UU. + @return AD_Org_UU */ + public String getAD_Org_UU () + { + return (String)get_Value(COLUMNNAME_AD_Org_UU); + } + + public org.compiere.model.I_AD_ReplicationStrategy getAD_ReplicationStrategy() throws RuntimeException { - return (I_AD_ReplicationStrategy)MTable.get(getCtx(), I_AD_ReplicationStrategy.Table_Name) + return (org.compiere.model.I_AD_ReplicationStrategy)MTable.get(getCtx(), org.compiere.model.I_AD_ReplicationStrategy.Table_Name) .getPO(getAD_ReplicationStrategy_ID(), get_TrxName()); } /** Set Replication Strategy. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_OrgInfo.java b/org.adempiere.base/src/org/compiere/model/X_AD_OrgInfo.java index 6b241cec30..930f31c396 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_OrgInfo.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_OrgInfo.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_OrgInfo - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_OrgInfo extends PO implements I_AD_OrgInfo, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_OrgInfo (Properties ctx, int AD_OrgInfo_ID, String trxName) @@ -72,9 +72,23 @@ public class X_AD_OrgInfo extends PO implements I_AD_OrgInfo, I_Persistent return sb.toString(); } - public I_AD_OrgType getAD_OrgType() throws RuntimeException + /** Set AD_OrgInfo_UU. + @param AD_OrgInfo_UU AD_OrgInfo_UU */ + public void setAD_OrgInfo_UU (String AD_OrgInfo_UU) + { + set_Value (COLUMNNAME_AD_OrgInfo_UU, AD_OrgInfo_UU); + } + + /** Get AD_OrgInfo_UU. + @return AD_OrgInfo_UU */ + public String getAD_OrgInfo_UU () + { + return (String)get_Value(COLUMNNAME_AD_OrgInfo_UU); + } + + public org.compiere.model.I_AD_OrgType getAD_OrgType() throws RuntimeException { - return (I_AD_OrgType)MTable.get(getCtx(), I_AD_OrgType.Table_Name) + return (org.compiere.model.I_AD_OrgType)MTable.get(getCtx(), org.compiere.model.I_AD_OrgType.Table_Name) .getPO(getAD_OrgType_ID(), get_TrxName()); } /** Set Organization Type. @@ -100,9 +114,9 @@ public class X_AD_OrgInfo extends PO implements I_AD_OrgInfo, I_Persistent return ii.intValue(); } - public I_C_Calendar getC_Calendar() throws RuntimeException + public org.compiere.model.I_C_Calendar getC_Calendar() throws RuntimeException { - return (I_C_Calendar)MTable.get(getCtx(), I_C_Calendar.Table_Name) + return (org.compiere.model.I_C_Calendar)MTable.get(getCtx(), org.compiere.model.I_C_Calendar.Table_Name) .getPO(getC_Calendar_ID(), get_TrxName()); } /** Set Calendar. @@ -156,9 +170,9 @@ public class X_AD_OrgInfo extends PO implements I_AD_OrgInfo, I_Persistent return ii.intValue(); } - public I_M_Warehouse getDropShip_Warehouse() throws RuntimeException + public org.compiere.model.I_M_Warehouse getDropShip_Warehouse() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getDropShip_Warehouse_ID(), get_TrxName()); } /** Set Drop Ship Warehouse. @@ -255,9 +269,9 @@ public class X_AD_OrgInfo extends PO implements I_AD_OrgInfo, I_Persistent return ii.intValue(); } - public I_M_Warehouse getM_Warehouse() throws RuntimeException + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_Warehouse_ID(), get_TrxName()); } /** Set Warehouse. @@ -357,9 +371,9 @@ public class X_AD_OrgInfo extends PO implements I_AD_OrgInfo, I_Persistent return (String)get_Value(COLUMNNAME_ReceiptFooterMsg); } - public I_AD_User getSupervisor() throws RuntimeException + public org.compiere.model.I_AD_User getSupervisor() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getSupervisor_ID(), get_TrxName()); } /** Set Supervisor. @@ -402,9 +416,9 @@ public class X_AD_OrgInfo extends PO implements I_AD_OrgInfo, I_Persistent return (String)get_Value(COLUMNNAME_TaxID); } - public I_C_Bank getTransferBank() throws RuntimeException + public org.compiere.model.I_C_Bank getTransferBank() throws RuntimeException { - return (I_C_Bank)MTable.get(getCtx(), I_C_Bank.Table_Name) + return (org.compiere.model.I_C_Bank)MTable.get(getCtx(), org.compiere.model.I_C_Bank.Table_Name) .getPO(getTransferBank_ID(), get_TrxName()); } /** Set Bank for transfers. @@ -430,9 +444,9 @@ public class X_AD_OrgInfo extends PO implements I_AD_OrgInfo, I_Persistent return ii.intValue(); } - public I_C_CashBook getTransferCashBook() throws RuntimeException + public org.compiere.model.I_C_CashBook getTransferCashBook() throws RuntimeException { - return (I_C_CashBook)MTable.get(getCtx(), I_C_CashBook.Table_Name) + return (org.compiere.model.I_C_CashBook)MTable.get(getCtx(), org.compiere.model.I_C_CashBook.Table_Name) .getPO(getTransferCashBook_ID(), get_TrxName()); } /** Set CashBook for transfers. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_OrgType.java b/org.adempiere.base/src/org/compiere/model/X_AD_OrgType.java index 13952c20a5..ca5117d6ef 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_OrgType.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_OrgType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_OrgType - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_OrgType extends PO implements I_AD_OrgType, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_OrgType (Properties ctx, int AD_OrgType_ID, String trxName) @@ -94,9 +94,23 @@ public class X_AD_OrgType extends PO implements I_AD_OrgType, I_Persistent return ii.intValue(); } - public I_AD_PrintColor getAD_PrintColor() throws RuntimeException + /** Set AD_OrgType_UU. + @param AD_OrgType_UU AD_OrgType_UU */ + public void setAD_OrgType_UU (String AD_OrgType_UU) + { + set_Value (COLUMNNAME_AD_OrgType_UU, AD_OrgType_UU); + } + + /** Get AD_OrgType_UU. + @return AD_OrgType_UU */ + public String getAD_OrgType_UU () + { + return (String)get_Value(COLUMNNAME_AD_OrgType_UU); + } + + public org.compiere.model.I_AD_PrintColor getAD_PrintColor() throws RuntimeException { - return (I_AD_PrintColor)MTable.get(getCtx(), I_AD_PrintColor.Table_Name) + return (org.compiere.model.I_AD_PrintColor)MTable.get(getCtx(), org.compiere.model.I_AD_PrintColor.Table_Name) .getPO(getAD_PrintColor_ID(), get_TrxName()); } /** Set Print Color. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_PInstance.java b/org.adempiere.base/src/org/compiere/model/X_AD_PInstance.java index 37907eb83e..f35848b0a6 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_PInstance.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_PInstance.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_PInstance - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_PInstance extends PO implements I_AD_PInstance, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_PInstance (Properties ctx, int AD_PInstance_ID, String trxName) @@ -104,9 +104,23 @@ public class X_AD_PInstance extends PO implements I_AD_PInstance, I_Persistent return new KeyNamePair(get_ID(), String.valueOf(getAD_PInstance_ID())); } - public I_AD_Process getAD_Process() throws RuntimeException + /** Set AD_PInstance_UU. + @param AD_PInstance_UU AD_PInstance_UU */ + public void setAD_PInstance_UU (String AD_PInstance_UU) + { + set_Value (COLUMNNAME_AD_PInstance_UU, AD_PInstance_UU); + } + + /** Get AD_PInstance_UU. + @return AD_PInstance_UU */ + public String getAD_PInstance_UU () + { + return (String)get_Value(COLUMNNAME_AD_PInstance_UU); + } + + public org.compiere.model.I_AD_Process getAD_Process() throws RuntimeException { - return (I_AD_Process)MTable.get(getCtx(), I_AD_Process.Table_Name) + return (org.compiere.model.I_AD_Process)MTable.get(getCtx(), org.compiere.model.I_AD_Process.Table_Name) .getPO(getAD_Process_ID(), get_TrxName()); } /** Set Process. @@ -132,9 +146,9 @@ public class X_AD_PInstance extends PO implements I_AD_PInstance, I_Persistent return ii.intValue(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_PInstance_Log.java b/org.adempiere.base/src/org/compiere/model/X_AD_PInstance_Log.java index 08628ee501..38104731fc 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_PInstance_Log.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_PInstance_Log.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for AD_PInstance_Log - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_PInstance_Log extends PO implements I_AD_PInstance_Log, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_PInstance_Log (Properties ctx, int AD_PInstance_Log_ID, String trxName) @@ -73,9 +73,9 @@ public class X_AD_PInstance_Log extends PO implements I_AD_PInstance_Log, I_Pers return sb.toString(); } - public I_AD_PInstance getAD_PInstance() throws RuntimeException + public org.compiere.model.I_AD_PInstance getAD_PInstance() throws RuntimeException { - return (I_AD_PInstance)MTable.get(getCtx(), I_AD_PInstance.Table_Name) + return (org.compiere.model.I_AD_PInstance)MTable.get(getCtx(), org.compiere.model.I_AD_PInstance.Table_Name) .getPO(getAD_PInstance_ID(), get_TrxName()); } /** Set Process Instance. @@ -101,6 +101,48 @@ public class X_AD_PInstance_Log extends PO implements I_AD_PInstance_Log, I_Pers return ii.intValue(); } + /** Set AD_PInstance_Log_UU. + @param AD_PInstance_Log_UU AD_PInstance_Log_UU */ + public void setAD_PInstance_Log_UU (String AD_PInstance_Log_UU) + { + set_Value (COLUMNNAME_AD_PInstance_Log_UU, AD_PInstance_Log_UU); + } + + /** Get AD_PInstance_Log_UU. + @return AD_PInstance_Log_UU */ + public String getAD_PInstance_Log_UU () + { + return (String)get_Value(COLUMNNAME_AD_PInstance_Log_UU); + } + + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException + { + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) + .getPO(getAD_Table_ID(), get_TrxName()); } + + /** Set Table. + @param AD_Table_ID + Database Table information + */ + public void setAD_Table_ID (int AD_Table_ID) + { + if (AD_Table_ID < 1) + set_Value (COLUMNNAME_AD_Table_ID, null); + else + set_Value (COLUMNNAME_AD_Table_ID, Integer.valueOf(AD_Table_ID)); + } + + /** Get Table. + @return Database Table information + */ + public int getAD_Table_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_AD_Table_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + /** Set Log. @param Log_ID Log */ public void setLog_ID (int Log_ID) @@ -191,4 +233,27 @@ public class X_AD_PInstance_Log extends PO implements I_AD_PInstance_Log, I_Pers return Env.ZERO; return bd; } + + /** Set Record ID. + @param Record_ID + Direct internal record ID + */ + public void setRecord_ID (int Record_ID) + { + if (Record_ID < 0) + set_Value (COLUMNNAME_Record_ID, null); + else + set_Value (COLUMNNAME_Record_ID, Integer.valueOf(Record_ID)); + } + + /** Get Record ID. + @return Direct internal record ID + */ + public int getRecord_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_Record_ID); + if (ii == null) + return 0; + return ii.intValue(); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_PInstance_Para.java b/org.adempiere.base/src/org/compiere/model/X_AD_PInstance_Para.java index 9d2a598cb0..4114e53164 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_PInstance_Para.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_PInstance_Para.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for AD_PInstance_Para - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_PInstance_Para extends PO implements I_AD_PInstance_Para, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_PInstance_Para (Properties ctx, int AD_PInstance_Para_ID, String trxName) @@ -74,9 +74,9 @@ public class X_AD_PInstance_Para extends PO implements I_AD_PInstance_Para, I_Pe return sb.toString(); } - public I_AD_PInstance getAD_PInstance() throws RuntimeException + public org.compiere.model.I_AD_PInstance getAD_PInstance() throws RuntimeException { - return (I_AD_PInstance)MTable.get(getCtx(), I_AD_PInstance.Table_Name) + return (org.compiere.model.I_AD_PInstance)MTable.get(getCtx(), org.compiere.model.I_AD_PInstance.Table_Name) .getPO(getAD_PInstance_ID(), get_TrxName()); } /** Set Process Instance. @@ -102,6 +102,20 @@ public class X_AD_PInstance_Para extends PO implements I_AD_PInstance_Para, I_Pe return ii.intValue(); } + /** Set AD_PInstance_Para_UU. + @param AD_PInstance_Para_UU AD_PInstance_Para_UU */ + public void setAD_PInstance_Para_UU (String AD_PInstance_Para_UU) + { + set_Value (COLUMNNAME_AD_PInstance_Para_UU, AD_PInstance_Para_UU); + } + + /** Get AD_PInstance_Para_UU. + @return AD_PInstance_Para_UU */ + public String getAD_PInstance_Para_UU () + { + return (String)get_Value(COLUMNNAME_AD_PInstance_Para_UU); + } + /** Set Info. @param Info Information diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Package_Exp.java b/org.adempiere.base/src/org/compiere/model/X_AD_Package_Exp.java index 9907368457..7ab65bb2a3 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Package_Exp.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Package_Exp.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Package_Exp - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Package_Exp extends PO implements I_AD_Package_Exp, I_Persistent { /** * */ - private static final long serialVersionUID = 20120528L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Package_Exp (Properties ctx, int AD_Package_Exp_ID, String trxName) @@ -74,8 +74,8 @@ public class X_AD_Package_Exp extends PO implements I_AD_Package_Exp, I_Persiste return sb.toString(); } - /** Set Pack Out. - @param AD_Package_Exp_ID Pack Out */ + /** Set Package Exp.. + @param AD_Package_Exp_ID Package Exp. */ public void setAD_Package_Exp_ID (int AD_Package_Exp_ID) { if (AD_Package_Exp_ID < 1) @@ -84,8 +84,8 @@ public class X_AD_Package_Exp extends PO implements I_AD_Package_Exp, I_Persiste set_ValueNoCheck (COLUMNNAME_AD_Package_Exp_ID, Integer.valueOf(AD_Package_Exp_ID)); } - /** Get Pack Out. - @return Pack Out */ + /** Get Package Exp.. + @return Package Exp. */ public int getAD_Package_Exp_ID () { Integer ii = (Integer)get_Value(COLUMNNAME_AD_Package_Exp_ID); @@ -94,15 +94,15 @@ public class X_AD_Package_Exp extends PO implements I_AD_Package_Exp, I_Persiste return ii.intValue(); } - /** Set Pack Out UUID. - @param AD_Package_Exp_UU Pack Out UUID */ + /** Set AD_Package_Exp_UU. + @param AD_Package_Exp_UU AD_Package_Exp_UU */ public void setAD_Package_Exp_UU (String AD_Package_Exp_UU) { set_Value (COLUMNNAME_AD_Package_Exp_UU, AD_Package_Exp_UU); } - /** Get Pack Out UUID. - @return Pack Out UUID */ + /** Get AD_Package_Exp_UU. + @return AD_Package_Exp_UU */ public String getAD_Package_Exp_UU () { return (String)get_Value(COLUMNNAME_AD_Package_Exp_UU); diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Package_Exp_Detail.java b/org.adempiere.base/src/org/compiere/model/X_AD_Package_Exp_Detail.java index 5396e5e3fc..00369959ef 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Package_Exp_Detail.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Package_Exp_Detail.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Package_Exp_Detail - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Package_Exp_Detail extends PO implements I_AD_Package_Exp_Detail, I_Persistent { /** * */ - private static final long serialVersionUID = 20120528L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Package_Exp_Detail (Properties ctx, int AD_Package_Exp_Detail_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Package_Imp.java b/org.adempiere.base/src/org/compiere/model/X_AD_Package_Imp.java index 11dbb6b043..44abf9ccdf 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Package_Imp.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Package_Imp.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Package_Imp - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Package_Imp extends PO implements I_AD_Package_Imp, I_Persistent { /** * */ - private static final long serialVersionUID = 20120528L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Package_Imp (Properties ctx, int AD_Package_Imp_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Package_Imp_Backup.java b/org.adempiere.base/src/org/compiere/model/X_AD_Package_Imp_Backup.java index cce149d18e..7df0b4d4f5 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Package_Imp_Backup.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Package_Imp_Backup.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Package_Imp_Backup - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Package_Imp_Backup extends PO implements I_AD_Package_Imp_Backup, I_Persistent { /** * */ - private static final long serialVersionUID = 20120528L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Package_Imp_Backup (Properties ctx, int AD_Package_Imp_Backup_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Package_Imp_Detail.java b/org.adempiere.base/src/org/compiere/model/X_AD_Package_Imp_Detail.java index 5e9558552d..2b3ae6e450 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Package_Imp_Detail.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Package_Imp_Detail.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_Package_Imp_Detail - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Package_Imp_Detail extends PO implements I_AD_Package_Imp_Detail, I_Persistent { /** * */ - private static final long serialVersionUID = 20120528L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Package_Imp_Detail (Properties ctx, int AD_Package_Imp_Detail_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Package_Imp_Inst.java b/org.adempiere.base/src/org/compiere/model/X_AD_Package_Imp_Inst.java index 6b7d668d9d..ca1a1a35f7 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Package_Imp_Inst.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Package_Imp_Inst.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Package_Imp_Inst - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Package_Imp_Inst extends PO implements I_AD_Package_Imp_Inst, I_Persistent { /** * */ - private static final long serialVersionUID = 20120528L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Package_Imp_Inst (Properties ctx, int AD_Package_Imp_Inst_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Package_Imp_Proc.java b/org.adempiere.base/src/org/compiere/model/X_AD_Package_Imp_Proc.java index e8f9a98b9f..76d61ddb23 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Package_Imp_Proc.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Package_Imp_Proc.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.sql.Timestamp; import java.util.Properties; /** Generated Model for AD_Package_Imp_Proc - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Package_Imp_Proc extends PO implements I_AD_Package_Imp_Proc, I_Persistent { /** * */ - private static final long serialVersionUID = 20120528L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Package_Imp_Proc (Properties ctx, int AD_Package_Imp_Proc_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_PasswordRule.java b/org.adempiere.base/src/org/compiere/model/X_AD_PasswordRule.java index 4697d3f672..1699294f72 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_PasswordRule.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_PasswordRule.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_PasswordRule - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_PasswordRule extends PO implements I_AD_PasswordRule, I_Persistent { /** * */ - private static final long serialVersionUID = 20120806L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_PasswordRule (Properties ctx, int AD_PasswordRule_ID, String trxName) @@ -260,14 +260,17 @@ public class X_AD_PasswordRule extends PO implements I_AD_PasswordRule, I_Persis } /** Set Whitespace. - @param IsWhitespace Whitespace */ + @param IsWhitespace + Whitespace validation + */ public void setIsWhitespace (boolean IsWhitespace) { set_Value (COLUMNNAME_IsWhitespace, Boolean.valueOf(IsWhitespace)); } /** Get Whitespace. - @return Whitespace */ + @return Whitespace validation + */ public boolean isWhitespace () { Object oo = get_Value(COLUMNNAME_IsWhitespace); diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Preference.java b/org.adempiere.base/src/org/compiere/model/X_AD_Preference.java index bcca8f8aa6..2b8b59f65a 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Preference.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Preference.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Preference - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Preference extends PO implements I_AD_Preference, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Preference (Properties ctx, int AD_Preference_ID, String trxName) @@ -95,9 +95,23 @@ public class X_AD_Preference extends PO implements I_AD_Preference, I_Persistent return ii.intValue(); } - public I_AD_User getAD_User() throws RuntimeException + /** Set AD_Preference_UU. + @param AD_Preference_UU AD_Preference_UU */ + public void setAD_Preference_UU (String AD_Preference_UU) + { + set_Value (COLUMNNAME_AD_Preference_UU, AD_Preference_UU); + } + + /** Get AD_Preference_UU. + @return AD_Preference_UU */ + public String getAD_Preference_UU () + { + return (String)get_Value(COLUMNNAME_AD_Preference_UU); + } + + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -123,9 +137,9 @@ public class X_AD_Preference extends PO implements I_AD_Preference, I_Persistent return ii.intValue(); } - public I_AD_Window getAD_Window() throws RuntimeException + public org.compiere.model.I_AD_Window getAD_Window() throws RuntimeException { - return (I_AD_Window)MTable.get(getCtx(), I_AD_Window.Table_Name) + return (org.compiere.model.I_AD_Window)MTable.get(getCtx(), org.compiere.model.I_AD_Window.Table_Name) .getPO(getAD_Window_ID(), get_TrxName()); } /** Set Window. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_PrintColor.java b/org.adempiere.base/src/org/compiere/model/X_AD_PrintColor.java index effb69efdf..66110dce39 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_PrintColor.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_PrintColor.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_PrintColor - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_PrintColor extends PO implements I_AD_PrintColor, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_PrintColor (Properties ctx, int AD_PrintColor_ID, String trxName) @@ -96,6 +96,20 @@ public class X_AD_PrintColor extends PO implements I_AD_PrintColor, I_Persistent return ii.intValue(); } + /** Set AD_PrintColor_UU. + @param AD_PrintColor_UU AD_PrintColor_UU */ + public void setAD_PrintColor_UU (String AD_PrintColor_UU) + { + set_Value (COLUMNNAME_AD_PrintColor_UU, AD_PrintColor_UU); + } + + /** Get AD_PrintColor_UU. + @return AD_PrintColor_UU */ + public String getAD_PrintColor_UU () + { + return (String)get_Value(COLUMNNAME_AD_PrintColor_UU); + } + /** Set Validation code. @param Code Validation Code diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_PrintFont.java b/org.adempiere.base/src/org/compiere/model/X_AD_PrintFont.java index 8180b4b10f..8bd6652299 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_PrintFont.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_PrintFont.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_PrintFont - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_PrintFont extends PO implements I_AD_PrintFont, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_PrintFont (Properties ctx, int AD_PrintFont_ID, String trxName) @@ -96,6 +96,20 @@ public class X_AD_PrintFont extends PO implements I_AD_PrintFont, I_Persistent return ii.intValue(); } + /** Set AD_PrintFont_UU. + @param AD_PrintFont_UU AD_PrintFont_UU */ + public void setAD_PrintFont_UU (String AD_PrintFont_UU) + { + set_Value (COLUMNNAME_AD_PrintFont_UU, AD_PrintFont_UU); + } + + /** Get AD_PrintFont_UU. + @return AD_PrintFont_UU */ + public String getAD_PrintFont_UU () + { + return (String)get_Value(COLUMNNAME_AD_PrintFont_UU); + } + /** Set Validation code. @param Code Validation Code diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_PrintForm.java b/org.adempiere.base/src/org/compiere/model/X_AD_PrintForm.java index 2252014861..e0d035306f 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_PrintForm.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_PrintForm.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_PrintForm - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_PrintForm extends PO implements I_AD_PrintForm, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_PrintForm (Properties ctx, int AD_PrintForm_ID, String trxName) @@ -94,6 +94,20 @@ public class X_AD_PrintForm extends PO implements I_AD_PrintForm, I_Persistent return ii.intValue(); } + /** Set AD_PrintForm_UU. + @param AD_PrintForm_UU AD_PrintForm_UU */ + public void setAD_PrintForm_UU (String AD_PrintForm_UU) + { + set_Value (COLUMNNAME_AD_PrintForm_UU, AD_PrintForm_UU); + } + + /** Get AD_PrintForm_UU. + @return AD_PrintForm_UU */ + public String getAD_PrintForm_UU () + { + return (String)get_Value(COLUMNNAME_AD_PrintForm_UU); + } + /** Set Description. @param Description Optional short description of the record @@ -111,9 +125,9 @@ public class X_AD_PrintForm extends PO implements I_AD_PrintForm, I_Persistent return (String)get_Value(COLUMNNAME_Description); } - public I_R_MailText getDistrib_Order_MailText() throws RuntimeException + public org.compiere.model.I_R_MailText getDistrib_Order_MailText() throws RuntimeException { - return (I_R_MailText)MTable.get(getCtx(), I_R_MailText.Table_Name) + return (org.compiere.model.I_R_MailText)MTable.get(getCtx(), org.compiere.model.I_R_MailText.Table_Name) .getPO(getDistrib_Order_MailText_ID(), get_TrxName()); } /** Set Distribution Order Mail Text. @@ -139,9 +153,9 @@ public class X_AD_PrintForm extends PO implements I_AD_PrintForm, I_Persistent return ii.intValue(); } - public I_AD_PrintFormat getDistrib_Order_PrintFormat() throws RuntimeException + public org.compiere.model.I_AD_PrintFormat getDistrib_Order_PrintFormat() throws RuntimeException { - return (I_AD_PrintFormat)MTable.get(getCtx(), I_AD_PrintFormat.Table_Name) + return (org.compiere.model.I_AD_PrintFormat)MTable.get(getCtx(), org.compiere.model.I_AD_PrintFormat.Table_Name) .getPO(getDistrib_Order_PrintFormat_ID(), get_TrxName()); } /** Set Distribution Order Print Format. @@ -167,9 +181,9 @@ public class X_AD_PrintForm extends PO implements I_AD_PrintForm, I_Persistent return ii.intValue(); } - public I_R_MailText getInvoice_MailText() throws RuntimeException + public org.compiere.model.I_R_MailText getInvoice_MailText() throws RuntimeException { - return (I_R_MailText)MTable.get(getCtx(), I_R_MailText.Table_Name) + return (org.compiere.model.I_R_MailText)MTable.get(getCtx(), org.compiere.model.I_R_MailText.Table_Name) .getPO(getInvoice_MailText_ID(), get_TrxName()); } /** Set Invoice Mail Text. @@ -195,9 +209,9 @@ public class X_AD_PrintForm extends PO implements I_AD_PrintForm, I_Persistent return ii.intValue(); } - public I_AD_PrintFormat getInvoice_PrintFormat() throws RuntimeException + public org.compiere.model.I_AD_PrintFormat getInvoice_PrintFormat() throws RuntimeException { - return (I_AD_PrintFormat)MTable.get(getCtx(), I_AD_PrintFormat.Table_Name) + return (org.compiere.model.I_AD_PrintFormat)MTable.get(getCtx(), org.compiere.model.I_AD_PrintFormat.Table_Name) .getPO(getInvoice_PrintFormat_ID(), get_TrxName()); } /** Set Invoice Print Format. @@ -223,9 +237,9 @@ public class X_AD_PrintForm extends PO implements I_AD_PrintForm, I_Persistent return ii.intValue(); } - public I_R_MailText getManuf_Order_MailText() throws RuntimeException + public org.compiere.model.I_R_MailText getManuf_Order_MailText() throws RuntimeException { - return (I_R_MailText)MTable.get(getCtx(), I_R_MailText.Table_Name) + return (org.compiere.model.I_R_MailText)MTable.get(getCtx(), org.compiere.model.I_R_MailText.Table_Name) .getPO(getManuf_Order_MailText_ID(), get_TrxName()); } /** Set Manufacturing Order Mail Text. @@ -251,9 +265,9 @@ public class X_AD_PrintForm extends PO implements I_AD_PrintForm, I_Persistent return ii.intValue(); } - public I_AD_PrintFormat getManuf_Order_PrintFormat() throws RuntimeException + public org.compiere.model.I_AD_PrintFormat getManuf_Order_PrintFormat() throws RuntimeException { - return (I_AD_PrintFormat)MTable.get(getCtx(), I_AD_PrintFormat.Table_Name) + return (org.compiere.model.I_AD_PrintFormat)MTable.get(getCtx(), org.compiere.model.I_AD_PrintFormat.Table_Name) .getPO(getManuf_Order_PrintFormat_ID(), get_TrxName()); } /** Set Manufacturing Order Print Format. @@ -304,9 +318,9 @@ public class X_AD_PrintForm extends PO implements I_AD_PrintForm, I_Persistent return new KeyNamePair(get_ID(), getName()); } - public I_R_MailText getOrder_MailText() throws RuntimeException + public org.compiere.model.I_R_MailText getOrder_MailText() throws RuntimeException { - return (I_R_MailText)MTable.get(getCtx(), I_R_MailText.Table_Name) + return (org.compiere.model.I_R_MailText)MTable.get(getCtx(), org.compiere.model.I_R_MailText.Table_Name) .getPO(getOrder_MailText_ID(), get_TrxName()); } /** Set Order Mail Text. @@ -332,9 +346,9 @@ public class X_AD_PrintForm extends PO implements I_AD_PrintForm, I_Persistent return ii.intValue(); } - public I_AD_PrintFormat getOrder_PrintFormat() throws RuntimeException + public org.compiere.model.I_AD_PrintFormat getOrder_PrintFormat() throws RuntimeException { - return (I_AD_PrintFormat)MTable.get(getCtx(), I_AD_PrintFormat.Table_Name) + return (org.compiere.model.I_AD_PrintFormat)MTable.get(getCtx(), org.compiere.model.I_AD_PrintFormat.Table_Name) .getPO(getOrder_PrintFormat_ID(), get_TrxName()); } /** Set Order Print Format. @@ -360,9 +374,9 @@ public class X_AD_PrintForm extends PO implements I_AD_PrintForm, I_Persistent return ii.intValue(); } - public I_R_MailText getProject_MailText() throws RuntimeException + public org.compiere.model.I_R_MailText getProject_MailText() throws RuntimeException { - return (I_R_MailText)MTable.get(getCtx(), I_R_MailText.Table_Name) + return (org.compiere.model.I_R_MailText)MTable.get(getCtx(), org.compiere.model.I_R_MailText.Table_Name) .getPO(getProject_MailText_ID(), get_TrxName()); } /** Set Project Mail Text. @@ -388,9 +402,9 @@ public class X_AD_PrintForm extends PO implements I_AD_PrintForm, I_Persistent return ii.intValue(); } - public I_AD_PrintFormat getProject_PrintFormat() throws RuntimeException + public org.compiere.model.I_AD_PrintFormat getProject_PrintFormat() throws RuntimeException { - return (I_AD_PrintFormat)MTable.get(getCtx(), I_AD_PrintFormat.Table_Name) + return (org.compiere.model.I_AD_PrintFormat)MTable.get(getCtx(), org.compiere.model.I_AD_PrintFormat.Table_Name) .getPO(getProject_PrintFormat_ID(), get_TrxName()); } /** Set Project Print Format. @@ -416,9 +430,9 @@ public class X_AD_PrintForm extends PO implements I_AD_PrintForm, I_Persistent return ii.intValue(); } - public I_R_MailText getRemittance_MailText() throws RuntimeException + public org.compiere.model.I_R_MailText getRemittance_MailText() throws RuntimeException { - return (I_R_MailText)MTable.get(getCtx(), I_R_MailText.Table_Name) + return (org.compiere.model.I_R_MailText)MTable.get(getCtx(), org.compiere.model.I_R_MailText.Table_Name) .getPO(getRemittance_MailText_ID(), get_TrxName()); } /** Set Remittance Mail Text. @@ -444,9 +458,9 @@ public class X_AD_PrintForm extends PO implements I_AD_PrintForm, I_Persistent return ii.intValue(); } - public I_AD_PrintFormat getRemittance_PrintFormat() throws RuntimeException + public org.compiere.model.I_AD_PrintFormat getRemittance_PrintFormat() throws RuntimeException { - return (I_AD_PrintFormat)MTable.get(getCtx(), I_AD_PrintFormat.Table_Name) + return (org.compiere.model.I_AD_PrintFormat)MTable.get(getCtx(), org.compiere.model.I_AD_PrintFormat.Table_Name) .getPO(getRemittance_PrintFormat_ID(), get_TrxName()); } /** Set Remittance Print Format. @@ -472,9 +486,9 @@ public class X_AD_PrintForm extends PO implements I_AD_PrintForm, I_Persistent return ii.intValue(); } - public I_R_MailText getShipment_MailText() throws RuntimeException + public org.compiere.model.I_R_MailText getShipment_MailText() throws RuntimeException { - return (I_R_MailText)MTable.get(getCtx(), I_R_MailText.Table_Name) + return (org.compiere.model.I_R_MailText)MTable.get(getCtx(), org.compiere.model.I_R_MailText.Table_Name) .getPO(getShipment_MailText_ID(), get_TrxName()); } /** Set Shipment Mail Text. @@ -500,9 +514,9 @@ public class X_AD_PrintForm extends PO implements I_AD_PrintForm, I_Persistent return ii.intValue(); } - public I_AD_PrintFormat getShipment_PrintFormat() throws RuntimeException + public org.compiere.model.I_AD_PrintFormat getShipment_PrintFormat() throws RuntimeException { - return (I_AD_PrintFormat)MTable.get(getCtx(), I_AD_PrintFormat.Table_Name) + return (org.compiere.model.I_AD_PrintFormat)MTable.get(getCtx(), org.compiere.model.I_AD_PrintFormat.Table_Name) .getPO(getShipment_PrintFormat_ID(), get_TrxName()); } /** Set Shipment Print Format. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_PrintFormat.java b/org.adempiere.base/src/org/compiere/model/X_AD_PrintFormat.java index fd65de8126..a94f1ca154 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_PrintFormat.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_PrintFormat.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_PrintFormat - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_PrintFormat extends PO implements I_AD_PrintFormat, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_PrintFormat (Properties ctx, int AD_PrintFormat_ID, String trxName) @@ -84,9 +84,9 @@ public class X_AD_PrintFormat extends PO implements I_AD_PrintFormat, I_Persiste return sb.toString(); } - public I_AD_PrintColor getAD_PrintColor() throws RuntimeException + public org.compiere.model.I_AD_PrintColor getAD_PrintColor() throws RuntimeException { - return (I_AD_PrintColor)MTable.get(getCtx(), I_AD_PrintColor.Table_Name) + return (org.compiere.model.I_AD_PrintColor)MTable.get(getCtx(), org.compiere.model.I_AD_PrintColor.Table_Name) .getPO(getAD_PrintColor_ID(), get_TrxName()); } /** Set Print Color. @@ -112,9 +112,9 @@ public class X_AD_PrintFormat extends PO implements I_AD_PrintFormat, I_Persiste return ii.intValue(); } - public I_AD_PrintFont getAD_PrintFont() throws RuntimeException + public org.compiere.model.I_AD_PrintFont getAD_PrintFont() throws RuntimeException { - return (I_AD_PrintFont)MTable.get(getCtx(), I_AD_PrintFont.Table_Name) + return (org.compiere.model.I_AD_PrintFont)MTable.get(getCtx(), org.compiere.model.I_AD_PrintFont.Table_Name) .getPO(getAD_PrintFont_ID(), get_TrxName()); } /** Set Print Font. @@ -163,9 +163,23 @@ public class X_AD_PrintFormat extends PO implements I_AD_PrintFormat, I_Persiste return ii.intValue(); } - public I_AD_PrintPaper getAD_PrintPaper() throws RuntimeException + /** Set AD_PrintFormat_UU. + @param AD_PrintFormat_UU AD_PrintFormat_UU */ + public void setAD_PrintFormat_UU (String AD_PrintFormat_UU) + { + set_Value (COLUMNNAME_AD_PrintFormat_UU, AD_PrintFormat_UU); + } + + /** Get AD_PrintFormat_UU. + @return AD_PrintFormat_UU */ + public String getAD_PrintFormat_UU () + { + return (String)get_Value(COLUMNNAME_AD_PrintFormat_UU); + } + + public org.compiere.model.I_AD_PrintPaper getAD_PrintPaper() throws RuntimeException { - return (I_AD_PrintPaper)MTable.get(getCtx(), I_AD_PrintPaper.Table_Name) + return (org.compiere.model.I_AD_PrintPaper)MTable.get(getCtx(), org.compiere.model.I_AD_PrintPaper.Table_Name) .getPO(getAD_PrintPaper_ID(), get_TrxName()); } /** Set Print Paper. @@ -191,9 +205,9 @@ public class X_AD_PrintFormat extends PO implements I_AD_PrintFormat, I_Persiste return ii.intValue(); } - public I_AD_PrintTableFormat getAD_PrintTableFormat() throws RuntimeException + public org.compiere.model.I_AD_PrintTableFormat getAD_PrintTableFormat() throws RuntimeException { - return (I_AD_PrintTableFormat)MTable.get(getCtx(), I_AD_PrintTableFormat.Table_Name) + return (org.compiere.model.I_AD_PrintTableFormat)MTable.get(getCtx(), org.compiere.model.I_AD_PrintTableFormat.Table_Name) .getPO(getAD_PrintTableFormat_ID(), get_TrxName()); } /** Set Print Table Format. @@ -219,9 +233,9 @@ public class X_AD_PrintFormat extends PO implements I_AD_PrintFormat, I_Persiste return ii.intValue(); } - public I_AD_ReportView getAD_ReportView() throws RuntimeException + public org.compiere.model.I_AD_ReportView getAD_ReportView() throws RuntimeException { - return (I_AD_ReportView)MTable.get(getCtx(), I_AD_ReportView.Table_Name) + return (org.compiere.model.I_AD_ReportView)MTable.get(getCtx(), org.compiere.model.I_AD_ReportView.Table_Name) .getPO(getAD_ReportView_ID(), get_TrxName()); } /** Set Report View. @@ -247,9 +261,9 @@ public class X_AD_PrintFormat extends PO implements I_AD_PrintFormat, I_Persiste return ii.intValue(); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @@ -473,9 +487,9 @@ public class X_AD_PrintFormat extends PO implements I_AD_PrintFormat, I_Persiste return false; } - public I_AD_Process getJasperProcess() throws RuntimeException + public org.compiere.model.I_AD_Process getJasperProcess() throws RuntimeException { - return (I_AD_Process)MTable.get(getCtx(), I_AD_Process.Table_Name) + return (org.compiere.model.I_AD_Process)MTable.get(getCtx(), org.compiere.model.I_AD_Process.Table_Name) .getPO(getJasperProcess_ID(), get_TrxName()); } /** Set Jasper Process. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_PrintFormatItem.java b/org.adempiere.base/src/org/compiere/model/X_AD_PrintFormatItem.java index 1526a59c1c..37cb1938c4 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_PrintFormatItem.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_PrintFormatItem.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_PrintFormatItem - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_PrintFormatItem extends PO implements I_AD_PrintFormatItem, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_PrintFormatItem (Properties ctx, int AD_PrintFormatItem_ID, String trxName) @@ -48,6 +48,8 @@ public class X_AD_PrintFormatItem extends PO implements I_AD_PrintFormatItem, I_ setIsAveraged (false); setIsCentrallyMaintained (false); setIsCounted (false); + setIsDesc (false); +// N setIsDeviationCalc (false); setIsFilledRectangle (false); // N @@ -121,9 +123,9 @@ public class X_AD_PrintFormatItem extends PO implements I_AD_PrintFormatItem, I_ return sb.toString(); } - public I_AD_Column getAD_Column() throws RuntimeException + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException { - return (I_AD_Column)MTable.get(getCtx(), I_AD_Column.Table_Name) + return (org.compiere.model.I_AD_Column)MTable.get(getCtx(), org.compiere.model.I_AD_Column.Table_Name) .getPO(getAD_Column_ID(), get_TrxName()); } /** Set Column. @@ -149,9 +151,9 @@ public class X_AD_PrintFormatItem extends PO implements I_AD_PrintFormatItem, I_ return ii.intValue(); } - public I_AD_PrintColor getAD_PrintColor() throws RuntimeException + public org.compiere.model.I_AD_PrintColor getAD_PrintColor() throws RuntimeException { - return (I_AD_PrintColor)MTable.get(getCtx(), I_AD_PrintColor.Table_Name) + return (org.compiere.model.I_AD_PrintColor)MTable.get(getCtx(), org.compiere.model.I_AD_PrintColor.Table_Name) .getPO(getAD_PrintColor_ID(), get_TrxName()); } /** Set Print Color. @@ -177,9 +179,9 @@ public class X_AD_PrintFormatItem extends PO implements I_AD_PrintFormatItem, I_ return ii.intValue(); } - public I_AD_PrintFont getAD_PrintFont() throws RuntimeException + public org.compiere.model.I_AD_PrintFont getAD_PrintFont() throws RuntimeException { - return (I_AD_PrintFont)MTable.get(getCtx(), I_AD_PrintFont.Table_Name) + return (org.compiere.model.I_AD_PrintFont)MTable.get(getCtx(), org.compiere.model.I_AD_PrintFont.Table_Name) .getPO(getAD_PrintFont_ID(), get_TrxName()); } /** Set Print Font. @@ -205,9 +207,9 @@ public class X_AD_PrintFormatItem extends PO implements I_AD_PrintFormatItem, I_ return ii.intValue(); } - public I_AD_PrintFormat getAD_PrintFormatChild() throws RuntimeException + public org.compiere.model.I_AD_PrintFormat getAD_PrintFormatChild() throws RuntimeException { - return (I_AD_PrintFormat)MTable.get(getCtx(), I_AD_PrintFormat.Table_Name) + return (org.compiere.model.I_AD_PrintFormat)MTable.get(getCtx(), org.compiere.model.I_AD_PrintFormat.Table_Name) .getPO(getAD_PrintFormatChild_ID(), get_TrxName()); } /** Set Included Print Format. @@ -233,9 +235,9 @@ public class X_AD_PrintFormatItem extends PO implements I_AD_PrintFormatItem, I_ return ii.intValue(); } - public I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException + public org.compiere.model.I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException { - return (I_AD_PrintFormat)MTable.get(getCtx(), I_AD_PrintFormat.Table_Name) + return (org.compiere.model.I_AD_PrintFormat)MTable.get(getCtx(), org.compiere.model.I_AD_PrintFormat.Table_Name) .getPO(getAD_PrintFormat_ID(), get_TrxName()); } /** Set Print Format. @@ -284,9 +286,23 @@ public class X_AD_PrintFormatItem extends PO implements I_AD_PrintFormatItem, I_ return ii.intValue(); } - public I_AD_PrintGraph getAD_PrintGraph() throws RuntimeException + /** Set AD_PrintFormatItem_UU. + @param AD_PrintFormatItem_UU AD_PrintFormatItem_UU */ + public void setAD_PrintFormatItem_UU (String AD_PrintFormatItem_UU) + { + set_Value (COLUMNNAME_AD_PrintFormatItem_UU, AD_PrintFormatItem_UU); + } + + /** Get AD_PrintFormatItem_UU. + @return AD_PrintFormatItem_UU */ + public String getAD_PrintFormatItem_UU () + { + return (String)get_Value(COLUMNNAME_AD_PrintFormatItem_UU); + } + + public org.compiere.model.I_AD_PrintGraph getAD_PrintGraph() throws RuntimeException { - return (I_AD_PrintGraph)MTable.get(getCtx(), I_AD_PrintGraph.Table_Name) + return (org.compiere.model.I_AD_PrintGraph)MTable.get(getCtx(), org.compiere.model.I_AD_PrintGraph.Table_Name) .getPO(getAD_PrintGraph_ID(), get_TrxName()); } /** Set Graph. @@ -580,6 +596,30 @@ public class X_AD_PrintFormatItem extends PO implements I_AD_PrintFormatItem, I_ return false; } + /** Set Descending. + @param IsDesc + Sort your data using a SQL Desc Order By statement + */ + public void setIsDesc (boolean IsDesc) + { + set_Value (COLUMNNAME_IsDesc, Boolean.valueOf(IsDesc)); + } + + /** Get Descending. + @return Sort your data using a SQL Desc Order By statement + */ + public boolean isDesc () + { + Object oo = get_Value(COLUMNNAME_IsDesc); + if (oo != null) + { + if (oo instanceof Boolean) + return ((Boolean)oo).booleanValue(); + return "Y".equals(oo); + } + return false; + } + /** Set Calculate Deviation (σ). @param IsDeviationCalc Calculate Standard Deviation diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_PrintGraph.java b/org.adempiere.base/src/org/compiere/model/X_AD_PrintGraph.java index b56aca13af..6dc5672553 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_PrintGraph.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_PrintGraph.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_PrintGraph - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_PrintGraph extends PO implements I_AD_PrintGraph, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_PrintGraph (Properties ctx, int AD_PrintGraph_ID, String trxName) @@ -76,9 +76,9 @@ public class X_AD_PrintGraph extends PO implements I_AD_PrintGraph, I_Persistent return sb.toString(); } - public I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException + public org.compiere.model.I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException { - return (I_AD_PrintFormat)MTable.get(getCtx(), I_AD_PrintFormat.Table_Name) + return (org.compiere.model.I_AD_PrintFormat)MTable.get(getCtx(), org.compiere.model.I_AD_PrintFormat.Table_Name) .getPO(getAD_PrintFormat_ID(), get_TrxName()); } /** Set Print Format. @@ -127,9 +127,23 @@ public class X_AD_PrintGraph extends PO implements I_AD_PrintGraph, I_Persistent return ii.intValue(); } - public I_AD_PrintFormatItem getData1_PrintFormatItem() throws RuntimeException + /** Set AD_PrintGraph_UU. + @param AD_PrintGraph_UU AD_PrintGraph_UU */ + public void setAD_PrintGraph_UU (String AD_PrintGraph_UU) + { + set_Value (COLUMNNAME_AD_PrintGraph_UU, AD_PrintGraph_UU); + } + + /** Get AD_PrintGraph_UU. + @return AD_PrintGraph_UU */ + public String getAD_PrintGraph_UU () + { + return (String)get_Value(COLUMNNAME_AD_PrintGraph_UU); + } + + public org.compiere.model.I_AD_PrintFormatItem getData1_PrintFormatItem() throws RuntimeException { - return (I_AD_PrintFormatItem)MTable.get(getCtx(), I_AD_PrintFormatItem.Table_Name) + return (org.compiere.model.I_AD_PrintFormatItem)MTable.get(getCtx(), org.compiere.model.I_AD_PrintFormatItem.Table_Name) .getPO(getData1_PrintFormatItem_ID(), get_TrxName()); } /** Set Data Column 2. @@ -155,9 +169,9 @@ public class X_AD_PrintGraph extends PO implements I_AD_PrintGraph, I_Persistent return ii.intValue(); } - public I_AD_PrintFormatItem getData2_PrintFormatItem() throws RuntimeException + public org.compiere.model.I_AD_PrintFormatItem getData2_PrintFormatItem() throws RuntimeException { - return (I_AD_PrintFormatItem)MTable.get(getCtx(), I_AD_PrintFormatItem.Table_Name) + return (org.compiere.model.I_AD_PrintFormatItem)MTable.get(getCtx(), org.compiere.model.I_AD_PrintFormatItem.Table_Name) .getPO(getData2_PrintFormatItem_ID(), get_TrxName()); } /** Set Data Column 3. @@ -183,9 +197,9 @@ public class X_AD_PrintGraph extends PO implements I_AD_PrintGraph, I_Persistent return ii.intValue(); } - public I_AD_PrintFormatItem getData3_PrintFormatItem() throws RuntimeException + public org.compiere.model.I_AD_PrintFormatItem getData3_PrintFormatItem() throws RuntimeException { - return (I_AD_PrintFormatItem)MTable.get(getCtx(), I_AD_PrintFormatItem.Table_Name) + return (org.compiere.model.I_AD_PrintFormatItem)MTable.get(getCtx(), org.compiere.model.I_AD_PrintFormatItem.Table_Name) .getPO(getData3_PrintFormatItem_ID(), get_TrxName()); } /** Set Data Column 4. @@ -211,9 +225,9 @@ public class X_AD_PrintGraph extends PO implements I_AD_PrintGraph, I_Persistent return ii.intValue(); } - public I_AD_PrintFormatItem getData4_PrintFormatItem() throws RuntimeException + public org.compiere.model.I_AD_PrintFormatItem getData4_PrintFormatItem() throws RuntimeException { - return (I_AD_PrintFormatItem)MTable.get(getCtx(), I_AD_PrintFormatItem.Table_Name) + return (org.compiere.model.I_AD_PrintFormatItem)MTable.get(getCtx(), org.compiere.model.I_AD_PrintFormatItem.Table_Name) .getPO(getData4_PrintFormatItem_ID(), get_TrxName()); } /** Set Data Column 5. @@ -239,9 +253,9 @@ public class X_AD_PrintGraph extends PO implements I_AD_PrintGraph, I_Persistent return ii.intValue(); } - public I_AD_PrintFormatItem getData_PrintFormatItem() throws RuntimeException + public org.compiere.model.I_AD_PrintFormatItem getData_PrintFormatItem() throws RuntimeException { - return (I_AD_PrintFormatItem)MTable.get(getCtx(), I_AD_PrintFormatItem.Table_Name) + return (org.compiere.model.I_AD_PrintFormatItem)MTable.get(getCtx(), org.compiere.model.I_AD_PrintFormatItem.Table_Name) .getPO(getData_PrintFormatItem_ID(), get_TrxName()); } /** Set Data Column. @@ -284,9 +298,9 @@ public class X_AD_PrintGraph extends PO implements I_AD_PrintGraph, I_Persistent return (String)get_Value(COLUMNNAME_Description); } - public I_AD_PrintFormatItem getDescription_PrintFormatItem() throws RuntimeException + public org.compiere.model.I_AD_PrintFormatItem getDescription_PrintFormatItem() throws RuntimeException { - return (I_AD_PrintFormatItem)MTable.get(getCtx(), I_AD_PrintFormatItem.Table_Name) + return (org.compiere.model.I_AD_PrintFormatItem)MTable.get(getCtx(), org.compiere.model.I_AD_PrintFormatItem.Table_Name) .getPO(getDescription_PrintFormatItem_ID(), get_TrxName()); } /** Set Description Column. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_PrintLabel.java b/org.adempiere.base/src/org/compiere/model/X_AD_PrintLabel.java index 08a2018798..d33df460c3 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_PrintLabel.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_PrintLabel.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_PrintLabel - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_PrintLabel extends PO implements I_AD_PrintLabel, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_PrintLabel (Properties ctx, int AD_PrintLabel_ID, String trxName) @@ -122,9 +122,23 @@ public class X_AD_PrintLabel extends PO implements I_AD_PrintLabel, I_Persistent return ii.intValue(); } - public I_AD_Table getAD_Table() throws RuntimeException + /** Set AD_PrintLabel_UU. + @param AD_PrintLabel_UU AD_PrintLabel_UU */ + public void setAD_PrintLabel_UU (String AD_PrintLabel_UU) + { + set_Value (COLUMNNAME_AD_PrintLabel_UU, AD_PrintLabel_UU); + } + + /** Get AD_PrintLabel_UU. + @return AD_PrintLabel_UU */ + public String getAD_PrintLabel_UU () + { + return (String)get_Value(COLUMNNAME_AD_PrintLabel_UU); + } + + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_PrintLabelLine.java b/org.adempiere.base/src/org/compiere/model/X_AD_PrintLabelLine.java index 592b24bfe2..da3932610e 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_PrintLabelLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_PrintLabelLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_PrintLabelLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_PrintLabelLine extends PO implements I_AD_PrintLabelLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_PrintLabelLine (Properties ctx, int AD_PrintLabelLine_ID, String trxName) @@ -78,9 +78,9 @@ public class X_AD_PrintLabelLine extends PO implements I_AD_PrintLabelLine, I_Pe return sb.toString(); } - public I_AD_Column getAD_Column() throws RuntimeException + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException { - return (I_AD_Column)MTable.get(getCtx(), I_AD_Column.Table_Name) + return (org.compiere.model.I_AD_Column)MTable.get(getCtx(), org.compiere.model.I_AD_Column.Table_Name) .getPO(getAD_Column_ID(), get_TrxName()); } /** Set Column. @@ -106,9 +106,9 @@ public class X_AD_PrintLabelLine extends PO implements I_AD_PrintLabelLine, I_Pe return ii.intValue(); } - public I_AD_LabelPrinterFunction getAD_LabelPrinterFunction() throws RuntimeException + public org.compiere.model.I_AD_LabelPrinterFunction getAD_LabelPrinterFunction() throws RuntimeException { - return (I_AD_LabelPrinterFunction)MTable.get(getCtx(), I_AD_LabelPrinterFunction.Table_Name) + return (org.compiere.model.I_AD_LabelPrinterFunction)MTable.get(getCtx(), org.compiere.model.I_AD_LabelPrinterFunction.Table_Name) .getPO(getAD_LabelPrinterFunction_ID(), get_TrxName()); } /** Set Label printer Function. @@ -134,9 +134,9 @@ public class X_AD_PrintLabelLine extends PO implements I_AD_PrintLabelLine, I_Pe return ii.intValue(); } - public I_AD_PrintLabel getAD_PrintLabel() throws RuntimeException + public org.compiere.model.I_AD_PrintLabel getAD_PrintLabel() throws RuntimeException { - return (I_AD_PrintLabel)MTable.get(getCtx(), I_AD_PrintLabel.Table_Name) + return (org.compiere.model.I_AD_PrintLabel)MTable.get(getCtx(), org.compiere.model.I_AD_PrintLabel.Table_Name) .getPO(getAD_PrintLabel_ID(), get_TrxName()); } /** Set Print Label. @@ -185,6 +185,20 @@ public class X_AD_PrintLabelLine extends PO implements I_AD_PrintLabelLine, I_Pe return ii.intValue(); } + /** Set AD_PrintLabelLine_UU. + @param AD_PrintLabelLine_UU AD_PrintLabelLine_UU */ + public void setAD_PrintLabelLine_UU (String AD_PrintLabelLine_UU) + { + set_Value (COLUMNNAME_AD_PrintLabelLine_UU, AD_PrintLabelLine_UU); + } + + /** Get AD_PrintLabelLine_UU. + @return AD_PrintLabelLine_UU */ + public String getAD_PrintLabelLine_UU () + { + return (String)get_Value(COLUMNNAME_AD_PrintLabelLine_UU); + } + /** LabelFormatType AD_Reference_ID=280 */ public static final int LABELFORMATTYPE_AD_Reference_ID=280; /** Field = F */ diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_PrintPaper.java b/org.adempiere.base/src/org/compiere/model/X_AD_PrintPaper.java index d54887fc62..9905bc94d6 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_PrintPaper.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_PrintPaper.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for AD_PrintPaper - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_PrintPaper extends PO implements I_AD_PrintPaper, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_PrintPaper (Properties ctx, int AD_PrintPaper_ID, String trxName) @@ -109,6 +109,20 @@ public class X_AD_PrintPaper extends PO implements I_AD_PrintPaper, I_Persistent return ii.intValue(); } + /** Set AD_PrintPaper_UU. + @param AD_PrintPaper_UU AD_PrintPaper_UU */ + public void setAD_PrintPaper_UU (String AD_PrintPaper_UU) + { + set_Value (COLUMNNAME_AD_PrintPaper_UU, AD_PrintPaper_UU); + } + + /** Get AD_PrintPaper_UU. + @return AD_PrintPaper_UU */ + public String getAD_PrintPaper_UU () + { + return (String)get_Value(COLUMNNAME_AD_PrintPaper_UU); + } + /** Set Validation code. @param Code Validation Code diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_PrintTableFormat.java b/org.adempiere.base/src/org/compiere/model/X_AD_PrintTableFormat.java index 0027e4af5e..929f75ceab 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_PrintTableFormat.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_PrintTableFormat.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for AD_PrintTableFormat - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_PrintTableFormat extends PO implements I_AD_PrintTableFormat, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_PrintTableFormat (Properties ctx, int AD_PrintTableFormat_ID, String trxName) @@ -82,9 +82,9 @@ public class X_AD_PrintTableFormat extends PO implements I_AD_PrintTableFormat, return sb.toString(); } - public I_AD_Image getAD_Image() throws RuntimeException + public org.compiere.model.I_AD_Image getAD_Image() throws RuntimeException { - return (I_AD_Image)MTable.get(getCtx(), I_AD_Image.Table_Name) + return (org.compiere.model.I_AD_Image)MTable.get(getCtx(), org.compiere.model.I_AD_Image.Table_Name) .getPO(getAD_Image_ID(), get_TrxName()); } /** Set Image. @@ -133,6 +133,20 @@ public class X_AD_PrintTableFormat extends PO implements I_AD_PrintTableFormat, return ii.intValue(); } + /** Set AD_PrintTableFormat_UU. + @param AD_PrintTableFormat_UU AD_PrintTableFormat_UU */ + public void setAD_PrintTableFormat_UU (String AD_PrintTableFormat_UU) + { + set_Value (COLUMNNAME_AD_PrintTableFormat_UU, AD_PrintTableFormat_UU); + } + + /** Get AD_PrintTableFormat_UU. + @return AD_PrintTableFormat_UU */ + public String getAD_PrintTableFormat_UU () + { + return (String)get_Value(COLUMNNAME_AD_PrintTableFormat_UU); + } + /** Set Description. @param Description Optional short description of the record @@ -201,9 +215,9 @@ public class X_AD_PrintTableFormat extends PO implements I_AD_PrintTableFormat, return (String)get_Value(COLUMNNAME_FooterRight); } - public I_AD_PrintColor getFunctBG_PrintColor() throws RuntimeException + public org.compiere.model.I_AD_PrintColor getFunctBG_PrintColor() throws RuntimeException { - return (I_AD_PrintColor)MTable.get(getCtx(), I_AD_PrintColor.Table_Name) + return (org.compiere.model.I_AD_PrintColor)MTable.get(getCtx(), org.compiere.model.I_AD_PrintColor.Table_Name) .getPO(getFunctBG_PrintColor_ID(), get_TrxName()); } /** Set Function BG Color. @@ -229,9 +243,9 @@ public class X_AD_PrintTableFormat extends PO implements I_AD_PrintTableFormat, return ii.intValue(); } - public I_AD_PrintColor getFunctFG_PrintColor() throws RuntimeException + public org.compiere.model.I_AD_PrintColor getFunctFG_PrintColor() throws RuntimeException { - return (I_AD_PrintColor)MTable.get(getCtx(), I_AD_PrintColor.Table_Name) + return (org.compiere.model.I_AD_PrintColor)MTable.get(getCtx(), org.compiere.model.I_AD_PrintColor.Table_Name) .getPO(getFunctFG_PrintColor_ID(), get_TrxName()); } /** Set Function Color. @@ -257,9 +271,9 @@ public class X_AD_PrintTableFormat extends PO implements I_AD_PrintTableFormat, return ii.intValue(); } - public I_AD_PrintFont getFunct_PrintFont() throws RuntimeException + public org.compiere.model.I_AD_PrintFont getFunct_PrintFont() throws RuntimeException { - return (I_AD_PrintFont)MTable.get(getCtx(), I_AD_PrintFont.Table_Name) + return (org.compiere.model.I_AD_PrintFont)MTable.get(getCtx(), org.compiere.model.I_AD_PrintFont.Table_Name) .getPO(getFunct_PrintFont_ID(), get_TrxName()); } /** Set Function Font. @@ -285,9 +299,9 @@ public class X_AD_PrintTableFormat extends PO implements I_AD_PrintTableFormat, return ii.intValue(); } - public I_AD_PrintColor getHdrLine_PrintColor() throws RuntimeException + public org.compiere.model.I_AD_PrintColor getHdrLine_PrintColor() throws RuntimeException { - return (I_AD_PrintColor)MTable.get(getCtx(), I_AD_PrintColor.Table_Name) + return (org.compiere.model.I_AD_PrintColor)MTable.get(getCtx(), org.compiere.model.I_AD_PrintColor.Table_Name) .getPO(getHdrLine_PrintColor_ID(), get_TrxName()); } /** Set Header Line Color. @@ -313,9 +327,9 @@ public class X_AD_PrintTableFormat extends PO implements I_AD_PrintTableFormat, return ii.intValue(); } - public I_AD_PrintFont getHdr_PrintFont() throws RuntimeException + public org.compiere.model.I_AD_PrintFont getHdr_PrintFont() throws RuntimeException { - return (I_AD_PrintFont)MTable.get(getCtx(), I_AD_PrintFont.Table_Name) + return (org.compiere.model.I_AD_PrintFont)MTable.get(getCtx(), org.compiere.model.I_AD_PrintFont.Table_Name) .getPO(getHdr_PrintFont_ID(), get_TrxName()); } /** Set Header Row Font. @@ -389,9 +403,9 @@ public class X_AD_PrintTableFormat extends PO implements I_AD_PrintTableFormat, return (String)get_Value(COLUMNNAME_HdrStrokeType); } - public I_AD_PrintColor getHdrTextBG_PrintColor() throws RuntimeException + public org.compiere.model.I_AD_PrintColor getHdrTextBG_PrintColor() throws RuntimeException { - return (I_AD_PrintColor)MTable.get(getCtx(), I_AD_PrintColor.Table_Name) + return (org.compiere.model.I_AD_PrintColor)MTable.get(getCtx(), org.compiere.model.I_AD_PrintColor.Table_Name) .getPO(getHdrTextBG_PrintColor_ID(), get_TrxName()); } /** Set Header Row BG Color. @@ -417,9 +431,9 @@ public class X_AD_PrintTableFormat extends PO implements I_AD_PrintTableFormat, return ii.intValue(); } - public I_AD_PrintColor getHdrTextFG_PrintColor() throws RuntimeException + public org.compiere.model.I_AD_PrintColor getHdrTextFG_PrintColor() throws RuntimeException { - return (I_AD_PrintColor)MTable.get(getCtx(), I_AD_PrintColor.Table_Name) + return (org.compiere.model.I_AD_PrintColor)MTable.get(getCtx(), org.compiere.model.I_AD_PrintColor.Table_Name) .getPO(getHdrTextFG_PrintColor_ID(), get_TrxName()); } /** Set Header Row Color. @@ -705,9 +719,9 @@ public class X_AD_PrintTableFormat extends PO implements I_AD_PrintTableFormat, return false; } - public I_AD_PrintColor getLine_PrintColor() throws RuntimeException + public org.compiere.model.I_AD_PrintColor getLine_PrintColor() throws RuntimeException { - return (I_AD_PrintColor)MTable.get(getCtx(), I_AD_PrintColor.Table_Name) + return (org.compiere.model.I_AD_PrintColor)MTable.get(getCtx(), org.compiere.model.I_AD_PrintColor.Table_Name) .getPO(getLine_PrintColor_ID(), get_TrxName()); } /** Set Line Color. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Private_Access.java b/org.adempiere.base/src/org/compiere/model/X_AD_Private_Access.java index 1af36521bf..2f5ecd6781 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Private_Access.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Private_Access.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_Private_Access - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Private_Access extends PO implements I_AD_Private_Access, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Private_Access (Properties ctx, int AD_Private_Access_ID, String trxName) @@ -71,9 +71,23 @@ public class X_AD_Private_Access extends PO implements I_AD_Private_Access, I_Pe return sb.toString(); } - public I_AD_Table getAD_Table() throws RuntimeException + /** Set AD_Private_Access_UU. + @param AD_Private_Access_UU AD_Private_Access_UU */ + public void setAD_Private_Access_UU (String AD_Private_Access_UU) + { + set_Value (COLUMNNAME_AD_Private_Access_UU, AD_Private_Access_UU); + } + + /** Get AD_Private_Access_UU. + @return AD_Private_Access_UU */ + public String getAD_Private_Access_UU () + { + return (String)get_Value(COLUMNNAME_AD_Private_Access_UU); + } + + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @@ -99,9 +113,9 @@ public class X_AD_Private_Access extends PO implements I_AD_Private_Access, I_Pe return ii.intValue(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Process.java b/org.adempiere.base/src/org/compiere/model/X_AD_Process.java index db18aabcaf..cc14feb3ef 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Process.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Process.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Process - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Process extends PO implements I_AD_Process, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Process (Properties ctx, int AD_Process_ID, String trxName) @@ -110,9 +110,9 @@ public class X_AD_Process extends PO implements I_AD_Process, I_Persistent return (String)get_Value(COLUMNNAME_AccessLevel); } - public I_AD_Form getAD_Form() throws RuntimeException + public org.compiere.model.I_AD_Form getAD_Form() throws RuntimeException { - return (I_AD_Form)MTable.get(getCtx(), I_AD_Form.Table_Name) + return (org.compiere.model.I_AD_Form)MTable.get(getCtx(), org.compiere.model.I_AD_Form.Table_Name) .getPO(getAD_Form_ID(), get_TrxName()); } /** Set Special Form. @@ -138,9 +138,9 @@ public class X_AD_Process extends PO implements I_AD_Process, I_Persistent return ii.intValue(); } - public I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException + public org.compiere.model.I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException { - return (I_AD_PrintFormat)MTable.get(getCtx(), I_AD_PrintFormat.Table_Name) + return (org.compiere.model.I_AD_PrintFormat)MTable.get(getCtx(), org.compiere.model.I_AD_PrintFormat.Table_Name) .getPO(getAD_PrintFormat_ID(), get_TrxName()); } /** Set Print Format. @@ -189,9 +189,23 @@ public class X_AD_Process extends PO implements I_AD_Process, I_Persistent return ii.intValue(); } - public I_AD_ReportView getAD_ReportView() throws RuntimeException + /** Set AD_Process_UU. + @param AD_Process_UU AD_Process_UU */ + public void setAD_Process_UU (String AD_Process_UU) + { + set_Value (COLUMNNAME_AD_Process_UU, AD_Process_UU); + } + + /** Get AD_Process_UU. + @return AD_Process_UU */ + public String getAD_Process_UU () + { + return (String)get_Value(COLUMNNAME_AD_Process_UU); + } + + public org.compiere.model.I_AD_ReportView getAD_ReportView() throws RuntimeException { - return (I_AD_ReportView)MTable.get(getCtx(), I_AD_ReportView.Table_Name) + return (org.compiere.model.I_AD_ReportView)MTable.get(getCtx(), org.compiere.model.I_AD_ReportView.Table_Name) .getPO(getAD_ReportView_ID(), get_TrxName()); } /** Set Report View. @@ -217,9 +231,9 @@ public class X_AD_Process extends PO implements I_AD_Process, I_Persistent return ii.intValue(); } - public I_AD_Workflow getAD_Workflow() throws RuntimeException + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException { - return (I_AD_Workflow)MTable.get(getCtx(), I_AD_Workflow.Table_Name) + return (org.compiere.model.I_AD_Workflow)MTable.get(getCtx(), org.compiere.model.I_AD_Workflow.Table_Name) .getPO(getAD_Workflow_ID(), get_TrxName()); } /** Set Workflow. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Process_Access.java b/org.adempiere.base/src/org/compiere/model/X_AD_Process_Access.java index 77a18af173..614456bd92 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Process_Access.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Process_Access.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_Process_Access - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Process_Access extends PO implements I_AD_Process_Access, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Process_Access (Properties ctx, int AD_Process_Access_ID, String trxName) @@ -71,9 +71,23 @@ public class X_AD_Process_Access extends PO implements I_AD_Process_Access, I_Pe return sb.toString(); } - public I_AD_Process getAD_Process() throws RuntimeException + /** Set AD_Process_Access_UU. + @param AD_Process_Access_UU AD_Process_Access_UU */ + public void setAD_Process_Access_UU (String AD_Process_Access_UU) + { + set_Value (COLUMNNAME_AD_Process_Access_UU, AD_Process_Access_UU); + } + + /** Get AD_Process_Access_UU. + @return AD_Process_Access_UU */ + public String getAD_Process_Access_UU () + { + return (String)get_Value(COLUMNNAME_AD_Process_Access_UU); + } + + public org.compiere.model.I_AD_Process getAD_Process() throws RuntimeException { - return (I_AD_Process)MTable.get(getCtx(), I_AD_Process.Table_Name) + return (org.compiere.model.I_AD_Process)MTable.get(getCtx(), org.compiere.model.I_AD_Process.Table_Name) .getPO(getAD_Process_ID(), get_TrxName()); } /** Set Process. @@ -99,9 +113,9 @@ public class X_AD_Process_Access extends PO implements I_AD_Process_Access, I_Pe return ii.intValue(); } - public I_AD_Role getAD_Role() throws RuntimeException + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException { - return (I_AD_Role)MTable.get(getCtx(), I_AD_Role.Table_Name) + return (org.compiere.model.I_AD_Role)MTable.get(getCtx(), org.compiere.model.I_AD_Role.Table_Name) .getPO(getAD_Role_ID(), get_TrxName()); } /** Set Role. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Process_Para.java b/org.adempiere.base/src/org/compiere/model/X_AD_Process_Para.java index 3c96e04dff..90564e55dc 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Process_Para.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Process_Para.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Process_Para - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Process_Para extends PO implements I_AD_Process_Para, I_Persistent { /** * */ - private static final long serialVersionUID = 20120515L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Process_Para (Properties ctx, int AD_Process_Para_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_RecentItem.java b/org.adempiere.base/src/org/compiere/model/X_AD_RecentItem.java index 0f805d1921..d7a277e8d7 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_RecentItem.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_RecentItem.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_RecentItem - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_RecentItem extends PO implements I_AD_RecentItem, I_Persistent { /** * */ - private static final long serialVersionUID = 20120127L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_RecentItem (Properties ctx, int AD_RecentItem_ID, String trxName) @@ -92,6 +92,20 @@ public class X_AD_RecentItem extends PO implements I_AD_RecentItem, I_Persistent return ii.intValue(); } + /** Set AD_RecentItem_UU. + @param AD_RecentItem_UU AD_RecentItem_UU */ + public void setAD_RecentItem_UU (String AD_RecentItem_UU) + { + set_Value (COLUMNNAME_AD_RecentItem_UU, AD_RecentItem_UU); + } + + /** Get AD_RecentItem_UU. + @return AD_RecentItem_UU */ + public String getAD_RecentItem_UU () + { + return (String)get_Value(COLUMNNAME_AD_RecentItem_UU); + } + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException { return (org.compiere.model.I_AD_Role)MTable.get(getCtx(), org.compiere.model.I_AD_Role.Table_Name) @@ -181,7 +195,7 @@ public class X_AD_RecentItem extends PO implements I_AD_RecentItem, I_Persistent return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } - /** Set Usuario. + /** Set User/Contact. @param AD_User_ID User within the system - Internal or Business Partner Contact */ @@ -193,7 +207,7 @@ public class X_AD_RecentItem extends PO implements I_AD_RecentItem, I_Persistent set_Value (COLUMNNAME_AD_User_ID, Integer.valueOf(AD_User_ID)); } - /** Get Usuario. + /** Get User/Contact. @return User within the system - Internal or Business Partner Contact */ public int getAD_User_ID () diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Record_Access.java b/org.adempiere.base/src/org/compiere/model/X_AD_Record_Access.java index 184efd3ed7..fd993babb1 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Record_Access.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Record_Access.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Record_Access - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Record_Access extends PO implements I_AD_Record_Access, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Record_Access (Properties ctx, int AD_Record_Access_ID, String trxName) @@ -77,9 +77,23 @@ public class X_AD_Record_Access extends PO implements I_AD_Record_Access, I_Pers return sb.toString(); } - public I_AD_Role getAD_Role() throws RuntimeException + /** Set AD_Record_Access_UU. + @param AD_Record_Access_UU AD_Record_Access_UU */ + public void setAD_Record_Access_UU (String AD_Record_Access_UU) + { + set_Value (COLUMNNAME_AD_Record_Access_UU, AD_Record_Access_UU); + } + + /** Get AD_Record_Access_UU. + @return AD_Record_Access_UU */ + public String getAD_Record_Access_UU () + { + return (String)get_Value(COLUMNNAME_AD_Record_Access_UU); + } + + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException { - return (I_AD_Role)MTable.get(getCtx(), I_AD_Role.Table_Name) + return (org.compiere.model.I_AD_Role)MTable.get(getCtx(), org.compiere.model.I_AD_Role.Table_Name) .getPO(getAD_Role_ID(), get_TrxName()); } /** Set Role. @@ -105,9 +119,9 @@ public class X_AD_Record_Access extends PO implements I_AD_Record_Access, I_Pers return ii.intValue(); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Ref_List.java b/org.adempiere.base/src/org/compiere/model/X_AD_Ref_List.java index 666cf4721d..5da6a9a388 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Ref_List.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Ref_List.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Ref_List - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Ref_List extends PO implements I_AD_Ref_List, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Ref_List (Properties ctx, int AD_Ref_List_ID, String trxName) @@ -76,9 +76,9 @@ public class X_AD_Ref_List extends PO implements I_AD_Ref_List, I_Persistent return sb.toString(); } - public I_AD_Reference getAD_Reference() throws RuntimeException + public org.compiere.model.I_AD_Reference getAD_Reference() throws RuntimeException { - return (I_AD_Reference)MTable.get(getCtx(), I_AD_Reference.Table_Name) + return (org.compiere.model.I_AD_Reference)MTable.get(getCtx(), org.compiere.model.I_AD_Reference.Table_Name) .getPO(getAD_Reference_ID(), get_TrxName()); } /** Set Reference. @@ -127,6 +127,20 @@ public class X_AD_Ref_List extends PO implements I_AD_Ref_List, I_Persistent return ii.intValue(); } + /** Set AD_Ref_List_UU. + @param AD_Ref_List_UU AD_Ref_List_UU */ + public void setAD_Ref_List_UU (String AD_Ref_List_UU) + { + set_Value (COLUMNNAME_AD_Ref_List_UU, AD_Ref_List_UU); + } + + /** Get AD_Ref_List_UU. + @return AD_Ref_List_UU */ + public String getAD_Ref_List_UU () + { + return (String)get_Value(COLUMNNAME_AD_Ref_List_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Ref_Table.java b/org.adempiere.base/src/org/compiere/model/X_AD_Ref_Table.java index ee77747c6b..641fcb3bc4 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Ref_Table.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Ref_Table.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Ref_Table - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Ref_Table extends PO implements I_AD_Ref_Table, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Ref_Table (Properties ctx, int AD_Ref_Table_ID, String trxName) @@ -76,9 +76,9 @@ public class X_AD_Ref_Table extends PO implements I_AD_Ref_Table, I_Persistent return sb.toString(); } - public I_AD_Column getAD_Disp() throws RuntimeException + public org.compiere.model.I_AD_Column getAD_Disp() throws RuntimeException { - return (I_AD_Column)MTable.get(getCtx(), I_AD_Column.Table_Name) + return (org.compiere.model.I_AD_Column)MTable.get(getCtx(), org.compiere.model.I_AD_Column.Table_Name) .getPO(getAD_Display(), get_TrxName()); } /** Set Display column. @@ -101,9 +101,9 @@ public class X_AD_Ref_Table extends PO implements I_AD_Ref_Table, I_Persistent return ii.intValue(); } - public I_AD_Column getAD_() throws RuntimeException + public org.compiere.model.I_AD_Column getAD_() throws RuntimeException { - return (I_AD_Column)MTable.get(getCtx(), I_AD_Column.Table_Name) + return (org.compiere.model.I_AD_Column)MTable.get(getCtx(), org.compiere.model.I_AD_Column.Table_Name) .getPO(getAD_Key(), get_TrxName()); } /** Set Key column. @@ -126,9 +126,9 @@ public class X_AD_Ref_Table extends PO implements I_AD_Ref_Table, I_Persistent return ii.intValue(); } - public I_AD_Reference getAD_Reference() throws RuntimeException + public org.compiere.model.I_AD_Reference getAD_Reference() throws RuntimeException { - return (I_AD_Reference)MTable.get(getCtx(), I_AD_Reference.Table_Name) + return (org.compiere.model.I_AD_Reference)MTable.get(getCtx(), org.compiere.model.I_AD_Reference.Table_Name) .getPO(getAD_Reference_ID(), get_TrxName()); } /** Set Reference. @@ -162,9 +162,23 @@ public class X_AD_Ref_Table extends PO implements I_AD_Ref_Table, I_Persistent return new KeyNamePair(get_ID(), String.valueOf(getAD_Reference_ID())); } - public I_AD_Table getAD_Table() throws RuntimeException + /** Set AD_Ref_Table_UU. + @param AD_Ref_Table_UU AD_Ref_Table_UU */ + public void setAD_Ref_Table_UU (String AD_Ref_Table_UU) + { + set_Value (COLUMNNAME_AD_Ref_Table_UU, AD_Ref_Table_UU); + } + + /** Get AD_Ref_Table_UU. + @return AD_Ref_Table_UU */ + public String getAD_Ref_Table_UU () + { + return (String)get_Value(COLUMNNAME_AD_Ref_Table_UU); + } + + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @@ -190,9 +204,9 @@ public class X_AD_Ref_Table extends PO implements I_AD_Ref_Table, I_Persistent return ii.intValue(); } - public I_AD_Window getAD_Window() throws RuntimeException + public org.compiere.model.I_AD_Window getAD_Window() throws RuntimeException { - return (I_AD_Window)MTable.get(getCtx(), I_AD_Window.Table_Name) + return (org.compiere.model.I_AD_Window)MTable.get(getCtx(), org.compiere.model.I_AD_Window.Table_Name) .getPO(getAD_Window_ID(), get_TrxName()); } /** Set Window. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Reference.java b/org.adempiere.base/src/org/compiere/model/X_AD_Reference.java index 7b4a462cde..84c4683503 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Reference.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Reference.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Reference - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Reference extends PO implements I_AD_Reference, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Reference (Properties ctx, int AD_Reference_ID, String trxName) @@ -97,6 +97,20 @@ public class X_AD_Reference extends PO implements I_AD_Reference, I_Persistent return ii.intValue(); } + /** Set AD_Reference_UU. + @param AD_Reference_UU AD_Reference_UU */ + public void setAD_Reference_UU (String AD_Reference_UU) + { + set_Value (COLUMNNAME_AD_Reference_UU, AD_Reference_UU); + } + + /** Get AD_Reference_UU. + @return AD_Reference_UU */ + public String getAD_Reference_UU () + { + return (String)get_Value(COLUMNNAME_AD_Reference_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Registration.java b/org.adempiere.base/src/org/compiere/model/X_AD_Registration.java index 5d84378578..81cce24023 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Registration.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Registration.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.sql.Timestamp; import java.util.Properties; /** Generated Model for AD_Registration - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Registration extends PO implements I_AD_Registration, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Registration (Properties ctx, int AD_Registration_ID, String trxName) @@ -103,9 +103,23 @@ public class X_AD_Registration extends PO implements I_AD_Registration, I_Persis return ii.intValue(); } - public I_AD_System getAD_System() throws RuntimeException + /** Set AD_Registration_UU. + @param AD_Registration_UU AD_Registration_UU */ + public void setAD_Registration_UU (String AD_Registration_UU) + { + set_Value (COLUMNNAME_AD_Registration_UU, AD_Registration_UU); + } + + /** Get AD_Registration_UU. + @return AD_Registration_UU */ + public String getAD_Registration_UU () + { + return (String)get_Value(COLUMNNAME_AD_Registration_UU); + } + + public org.compiere.model.I_AD_System getAD_System() throws RuntimeException { - return (I_AD_System)MTable.get(getCtx(), I_AD_System.Table_Name) + return (org.compiere.model.I_AD_System)MTable.get(getCtx(), org.compiere.model.I_AD_System.Table_Name) .getPO(getAD_System_ID(), get_TrxName()); } /** Set System. @@ -131,9 +145,9 @@ public class X_AD_Registration extends PO implements I_AD_Registration, I_Persis return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_RelationType.java b/org.adempiere.base/src/org/compiere/model/X_AD_RelationType.java index b7c616348b..1443349d16 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_RelationType.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_RelationType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_RelationType - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_RelationType extends PO implements I_AD_RelationType, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_RelationType (Properties ctx, int AD_RelationType_ID, String trxName) @@ -75,9 +75,9 @@ public class X_AD_RelationType extends PO implements I_AD_RelationType, I_Persis return sb.toString(); } - public I_AD_Reference getAD_Reference_Source() throws RuntimeException + public org.compiere.model.I_AD_Reference getAD_Reference_Source() throws RuntimeException { - return (I_AD_Reference)MTable.get(getCtx(), I_AD_Reference.Table_Name) + return (org.compiere.model.I_AD_Reference)MTable.get(getCtx(), org.compiere.model.I_AD_Reference.Table_Name) .getPO(getAD_Reference_Source_ID(), get_TrxName()); } /** Set Source Reference. @@ -100,9 +100,9 @@ public class X_AD_RelationType extends PO implements I_AD_RelationType, I_Persis return ii.intValue(); } - public I_AD_Reference getAD_Reference_Target() throws RuntimeException + public org.compiere.model.I_AD_Reference getAD_Reference_Target() throws RuntimeException { - return (I_AD_Reference)MTable.get(getCtx(), I_AD_Reference.Table_Name) + return (org.compiere.model.I_AD_Reference)MTable.get(getCtx(), org.compiere.model.I_AD_Reference.Table_Name) .getPO(getAD_Reference_Target_ID(), get_TrxName()); } /** Set Target Reference. @@ -145,6 +145,20 @@ public class X_AD_RelationType extends PO implements I_AD_RelationType, I_Persis return ii.intValue(); } + /** Set AD_RelationType_UU. + @param AD_RelationType_UU AD_RelationType_UU */ + public void setAD_RelationType_UU (String AD_RelationType_UU) + { + set_Value (COLUMNNAME_AD_RelationType_UU, AD_RelationType_UU); + } + + /** Get AD_RelationType_UU. + @return AD_RelationType_UU */ + public String getAD_RelationType_UU () + { + return (String)get_Value(COLUMNNAME_AD_RelationType_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Replication.java b/org.adempiere.base/src/org/compiere/model/X_AD_Replication.java index c2524194fd..0c925461f9 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Replication.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Replication.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Replication - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Replication extends PO implements I_AD_Replication, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Replication (Properties ctx, int AD_Replication_ID, String trxName) @@ -105,9 +105,9 @@ public class X_AD_Replication extends PO implements I_AD_Replication, I_Persiste return ii.intValue(); } - public I_AD_ReplicationStrategy getAD_ReplicationStrategy() throws RuntimeException + public org.compiere.model.I_AD_ReplicationStrategy getAD_ReplicationStrategy() throws RuntimeException { - return (I_AD_ReplicationStrategy)MTable.get(getCtx(), I_AD_ReplicationStrategy.Table_Name) + return (org.compiere.model.I_AD_ReplicationStrategy)MTable.get(getCtx(), org.compiere.model.I_AD_ReplicationStrategy.Table_Name) .getPO(getAD_ReplicationStrategy_ID(), get_TrxName()); } /** Set Replication Strategy. @@ -133,6 +133,20 @@ public class X_AD_Replication extends PO implements I_AD_Replication, I_Persiste return ii.intValue(); } + /** Set AD_Replication_UU. + @param AD_Replication_UU AD_Replication_UU */ + public void setAD_Replication_UU (String AD_Replication_UU) + { + set_Value (COLUMNNAME_AD_Replication_UU, AD_Replication_UU); + } + + /** Get AD_Replication_UU. + @return AD_Replication_UU */ + public String getAD_Replication_UU () + { + return (String)get_Value(COLUMNNAME_AD_Replication_UU); + } + /** Set Date last run. @param DateLastRun Date the process was last run. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_ReplicationDocument.java b/org.adempiere.base/src/org/compiere/model/X_AD_ReplicationDocument.java index 6740ab62fc..2002e4d36a 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_ReplicationDocument.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_ReplicationDocument.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_ReplicationDocument - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_ReplicationDocument extends PO implements I_AD_ReplicationDocument, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_ReplicationDocument (Properties ctx, int AD_ReplicationDocument_ID, String trxName) @@ -93,6 +93,20 @@ public class X_AD_ReplicationDocument extends PO implements I_AD_ReplicationDocu return ii.intValue(); } + /** Set AD_ReplicationDocument_UU. + @param AD_ReplicationDocument_UU AD_ReplicationDocument_UU */ + public void setAD_ReplicationDocument_UU (String AD_ReplicationDocument_UU) + { + set_Value (COLUMNNAME_AD_ReplicationDocument_UU, AD_ReplicationDocument_UU); + } + + /** Get AD_ReplicationDocument_UU. + @return AD_ReplicationDocument_UU */ + public String getAD_ReplicationDocument_UU () + { + return (String)get_Value(COLUMNNAME_AD_ReplicationDocument_UU); + } + /** Set Replication Strategy. @param AD_ReplicationStrategy_ID Data Replication Strategy @@ -116,9 +130,9 @@ public class X_AD_ReplicationDocument extends PO implements I_AD_ReplicationDocu return ii.intValue(); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @@ -144,9 +158,9 @@ public class X_AD_ReplicationDocument extends PO implements I_AD_ReplicationDocu return ii.intValue(); } - public I_C_DocType getC_DocType() throws RuntimeException + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocType_ID(), get_TrxName()); } /** Set Document Type. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_ReplicationStrategy.java b/org.adempiere.base/src/org/compiere/model/X_AD_ReplicationStrategy.java index ec22a4358b..ce93c0eae5 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_ReplicationStrategy.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_ReplicationStrategy.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_ReplicationStrategy - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_ReplicationStrategy extends PO implements I_AD_ReplicationStrategy, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_ReplicationStrategy (Properties ctx, int AD_ReplicationStrategy_ID, String trxName) @@ -96,6 +96,20 @@ public class X_AD_ReplicationStrategy extends PO implements I_AD_ReplicationStra return ii.intValue(); } + /** Set AD_ReplicationStrategy_UU. + @param AD_ReplicationStrategy_UU AD_ReplicationStrategy_UU */ + public void setAD_ReplicationStrategy_UU (String AD_ReplicationStrategy_UU) + { + set_Value (COLUMNNAME_AD_ReplicationStrategy_UU, AD_ReplicationStrategy_UU); + } + + /** Get AD_ReplicationStrategy_UU. + @return AD_ReplicationStrategy_UU */ + public String getAD_ReplicationStrategy_UU () + { + return (String)get_Value(COLUMNNAME_AD_ReplicationStrategy_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_ReplicationTable.java b/org.adempiere.base/src/org/compiere/model/X_AD_ReplicationTable.java index 01d7875889..f62a1b132f 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_ReplicationTable.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_ReplicationTable.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_ReplicationTable - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_ReplicationTable extends PO implements I_AD_ReplicationTable, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_ReplicationTable (Properties ctx, int AD_ReplicationTable_ID, String trxName) @@ -75,9 +75,9 @@ public class X_AD_ReplicationTable extends PO implements I_AD_ReplicationTable, return sb.toString(); } - public I_AD_ReplicationStrategy getAD_ReplicationStrategy() throws RuntimeException + public org.compiere.model.I_AD_ReplicationStrategy getAD_ReplicationStrategy() throws RuntimeException { - return (I_AD_ReplicationStrategy)MTable.get(getCtx(), I_AD_ReplicationStrategy.Table_Name) + return (org.compiere.model.I_AD_ReplicationStrategy)MTable.get(getCtx(), org.compiere.model.I_AD_ReplicationStrategy.Table_Name) .getPO(getAD_ReplicationStrategy_ID(), get_TrxName()); } /** Set Replication Strategy. @@ -134,9 +134,23 @@ public class X_AD_ReplicationTable extends PO implements I_AD_ReplicationTable, return ii.intValue(); } - public I_AD_Table getAD_Table() throws RuntimeException + /** Set AD_ReplicationTable_UU. + @param AD_ReplicationTable_UU AD_ReplicationTable_UU */ + public void setAD_ReplicationTable_UU (String AD_ReplicationTable_UU) + { + set_Value (COLUMNNAME_AD_ReplicationTable_UU, AD_ReplicationTable_UU); + } + + /** Get AD_ReplicationTable_UU. + @return AD_ReplicationTable_UU */ + public String getAD_ReplicationTable_UU () + { + return (String)get_Value(COLUMNNAME_AD_ReplicationTable_UU); + } + + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Replication_Log.java b/org.adempiere.base/src/org/compiere/model/X_AD_Replication_Log.java index c032bc3b2e..54fe07f64b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Replication_Log.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Replication_Log.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Replication_Log - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Replication_Log extends PO implements I_AD_Replication_Log, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Replication_Log (Properties ctx, int AD_Replication_Log_ID, String trxName) @@ -96,9 +96,23 @@ public class X_AD_Replication_Log extends PO implements I_AD_Replication_Log, I_ return ii.intValue(); } - public I_AD_Replication_Run getAD_Replication_Run() throws RuntimeException + /** Set AD_Replication_Log_UU. + @param AD_Replication_Log_UU AD_Replication_Log_UU */ + public void setAD_Replication_Log_UU (String AD_Replication_Log_UU) + { + set_Value (COLUMNNAME_AD_Replication_Log_UU, AD_Replication_Log_UU); + } + + /** Get AD_Replication_Log_UU. + @return AD_Replication_Log_UU */ + public String getAD_Replication_Log_UU () + { + return (String)get_Value(COLUMNNAME_AD_Replication_Log_UU); + } + + public org.compiere.model.I_AD_Replication_Run getAD_Replication_Run() throws RuntimeException { - return (I_AD_Replication_Run)MTable.get(getCtx(), I_AD_Replication_Run.Table_Name) + return (org.compiere.model.I_AD_Replication_Run)MTable.get(getCtx(), org.compiere.model.I_AD_Replication_Run.Table_Name) .getPO(getAD_Replication_Run_ID(), get_TrxName()); } /** Set Replication Run. @@ -132,9 +146,9 @@ public class X_AD_Replication_Log extends PO implements I_AD_Replication_Log, I_ return new KeyNamePair(get_ID(), String.valueOf(getAD_Replication_Run_ID())); } - public I_AD_ReplicationTable getAD_ReplicationTable() throws RuntimeException + public org.compiere.model.I_AD_ReplicationTable getAD_ReplicationTable() throws RuntimeException { - return (I_AD_ReplicationTable)MTable.get(getCtx(), I_AD_ReplicationTable.Table_Name) + return (org.compiere.model.I_AD_ReplicationTable)MTable.get(getCtx(), org.compiere.model.I_AD_ReplicationTable.Table_Name) .getPO(getAD_ReplicationTable_ID(), get_TrxName()); } /** Set Replication Table. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Replication_Run.java b/org.adempiere.base/src/org/compiere/model/X_AD_Replication_Run.java index 0b72ec80ba..5505296a0a 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Replication_Run.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Replication_Run.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Replication_Run - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Replication_Run extends PO implements I_AD_Replication_Run, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Replication_Run (Properties ctx, int AD_Replication_Run_ID, String trxName) @@ -74,9 +74,9 @@ public class X_AD_Replication_Run extends PO implements I_AD_Replication_Run, I_ return sb.toString(); } - public I_AD_Replication getAD_Replication() throws RuntimeException + public org.compiere.model.I_AD_Replication getAD_Replication() throws RuntimeException { - return (I_AD_Replication)MTable.get(getCtx(), I_AD_Replication.Table_Name) + return (org.compiere.model.I_AD_Replication)MTable.get(getCtx(), org.compiere.model.I_AD_Replication.Table_Name) .getPO(getAD_Replication_ID(), get_TrxName()); } /** Set Replication. @@ -125,6 +125,20 @@ public class X_AD_Replication_Run extends PO implements I_AD_Replication_Run, I_ return ii.intValue(); } + /** Set AD_Replication_Run_UU. + @param AD_Replication_Run_UU AD_Replication_Run_UU */ + public void setAD_Replication_Run_UU (String AD_Replication_Run_UU) + { + set_Value (COLUMNNAME_AD_Replication_Run_UU, AD_Replication_Run_UU); + } + + /** Get AD_Replication_Run_UU. + @return AD_Replication_Run_UU */ + public String getAD_Replication_Run_UU () + { + return (String)get_Value(COLUMNNAME_AD_Replication_Run_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_ReportView.java b/org.adempiere.base/src/org/compiere/model/X_AD_ReportView.java index ea508794d3..af359b222b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_ReportView.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_ReportView.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_ReportView - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_ReportView extends PO implements I_AD_ReportView, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_ReportView (Properties ctx, int AD_ReportView_ID, String trxName) @@ -97,9 +97,23 @@ public class X_AD_ReportView extends PO implements I_AD_ReportView, I_Persistent return ii.intValue(); } - public I_AD_Table getAD_Table() throws RuntimeException + /** Set AD_ReportView_UU. + @param AD_ReportView_UU AD_ReportView_UU */ + public void setAD_ReportView_UU (String AD_ReportView_UU) + { + set_Value (COLUMNNAME_AD_ReportView_UU, AD_ReportView_UU); + } + + /** Get AD_ReportView_UU. + @return AD_ReportView_UU */ + public String getAD_ReportView_UU () + { + return (String)get_Value(COLUMNNAME_AD_ReportView_UU); + } + + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_ReportView_Col.java b/org.adempiere.base/src/org/compiere/model/X_AD_ReportView_Col.java index 28bbb06ecf..7d54a25076 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_ReportView_Col.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_ReportView_Col.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_ReportView_Col - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_ReportView_Col extends PO implements I_AD_ReportView_Col, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_ReportView_Col (Properties ctx, int AD_ReportView_Col_ID, String trxName) @@ -73,9 +73,9 @@ public class X_AD_ReportView_Col extends PO implements I_AD_ReportView_Col, I_Pe return sb.toString(); } - public I_AD_Column getAD_Column() throws RuntimeException + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException { - return (I_AD_Column)MTable.get(getCtx(), I_AD_Column.Table_Name) + return (org.compiere.model.I_AD_Column)MTable.get(getCtx(), org.compiere.model.I_AD_Column.Table_Name) .getPO(getAD_Column_ID(), get_TrxName()); } /** Set Column. @@ -121,9 +121,23 @@ public class X_AD_ReportView_Col extends PO implements I_AD_ReportView_Col, I_Pe return ii.intValue(); } - public I_AD_ReportView getAD_ReportView() throws RuntimeException + /** Set AD_ReportView_Col_UU. + @param AD_ReportView_Col_UU AD_ReportView_Col_UU */ + public void setAD_ReportView_Col_UU (String AD_ReportView_Col_UU) + { + set_Value (COLUMNNAME_AD_ReportView_Col_UU, AD_ReportView_Col_UU); + } + + /** Get AD_ReportView_Col_UU. + @return AD_ReportView_Col_UU */ + public String getAD_ReportView_Col_UU () + { + return (String)get_Value(COLUMNNAME_AD_ReportView_Col_UU); + } + + public org.compiere.model.I_AD_ReportView getAD_ReportView() throws RuntimeException { - return (I_AD_ReportView)MTable.get(getCtx(), I_AD_ReportView.Table_Name) + return (org.compiere.model.I_AD_ReportView)MTable.get(getCtx(), org.compiere.model.I_AD_ReportView.Table_Name) .getPO(getAD_ReportView_ID(), get_TrxName()); } /** Set Report View. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Role.java b/org.adempiere.base/src/org/compiere/model/X_AD_Role.java index 66072cb9b8..b702b7d5c4 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Role.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Role.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Role - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Role extends PO implements I_AD_Role, I_Persistent { /** * */ - private static final long serialVersionUID = 20120921L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Role (Properties ctx, int AD_Role_ID, String trxName) @@ -96,7 +96,6 @@ public class X_AD_Role extends PO implements I_AD_Role, I_Persistent setPreferenceType (null); // O setUserLevel (null); -// O } */ } diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Role_Included.java b/org.adempiere.base/src/org/compiere/model/X_AD_Role_Included.java index 3800f5fb8b..bcdbeee6b4 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Role_Included.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Role_Included.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_Role_Included - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Role_Included extends PO implements I_AD_Role_Included, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Role_Included (Properties ctx, int AD_Role_Included_ID, String trxName) @@ -72,9 +72,9 @@ public class X_AD_Role_Included extends PO implements I_AD_Role_Included, I_Pers return sb.toString(); } - public I_AD_Role getAD_Role() throws RuntimeException + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException { - return (I_AD_Role)MTable.get(getCtx(), I_AD_Role.Table_Name) + return (org.compiere.model.I_AD_Role)MTable.get(getCtx(), org.compiere.model.I_AD_Role.Table_Name) .getPO(getAD_Role_ID(), get_TrxName()); } /** Set Role. @@ -100,9 +100,23 @@ public class X_AD_Role_Included extends PO implements I_AD_Role_Included, I_Pers return ii.intValue(); } - public I_AD_Role getIncluded_Role() throws RuntimeException + /** Set AD_Role_Included_UU. + @param AD_Role_Included_UU AD_Role_Included_UU */ + public void setAD_Role_Included_UU (String AD_Role_Included_UU) + { + set_Value (COLUMNNAME_AD_Role_Included_UU, AD_Role_Included_UU); + } + + /** Get AD_Role_Included_UU. + @return AD_Role_Included_UU */ + public String getAD_Role_Included_UU () + { + return (String)get_Value(COLUMNNAME_AD_Role_Included_UU); + } + + public org.compiere.model.I_AD_Role getIncluded_Role() throws RuntimeException { - return (I_AD_Role)MTable.get(getCtx(), I_AD_Role.Table_Name) + return (org.compiere.model.I_AD_Role)MTable.get(getCtx(), org.compiere.model.I_AD_Role.Table_Name) .getPO(getIncluded_Role_ID(), get_TrxName()); } /** Set Included Role. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Role_OrgAccess.java b/org.adempiere.base/src/org/compiere/model/X_AD_Role_OrgAccess.java index e6d012ce58..c5bddb4363 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Role_OrgAccess.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Role_OrgAccess.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_Role_OrgAccess - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Role_OrgAccess extends PO implements I_AD_Role_OrgAccess, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Role_OrgAccess (Properties ctx, int AD_Role_OrgAccess_ID, String trxName) @@ -70,9 +70,9 @@ public class X_AD_Role_OrgAccess extends PO implements I_AD_Role_OrgAccess, I_Pe return sb.toString(); } - public I_AD_Role getAD_Role() throws RuntimeException + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException { - return (I_AD_Role)MTable.get(getCtx(), I_AD_Role.Table_Name) + return (org.compiere.model.I_AD_Role)MTable.get(getCtx(), org.compiere.model.I_AD_Role.Table_Name) .getPO(getAD_Role_ID(), get_TrxName()); } /** Set Role. @@ -98,6 +98,20 @@ public class X_AD_Role_OrgAccess extends PO implements I_AD_Role_OrgAccess, I_Pe return ii.intValue(); } + /** Set AD_Role_OrgAccess_UU. + @param AD_Role_OrgAccess_UU AD_Role_OrgAccess_UU */ + public void setAD_Role_OrgAccess_UU (String AD_Role_OrgAccess_UU) + { + set_Value (COLUMNNAME_AD_Role_OrgAccess_UU, AD_Role_OrgAccess_UU); + } + + /** Get AD_Role_OrgAccess_UU. + @return AD_Role_OrgAccess_UU */ + public String getAD_Role_OrgAccess_UU () + { + return (String)get_Value(COLUMNNAME_AD_Role_OrgAccess_UU); + } + /** Set Read Only. @param IsReadOnly Field is read only diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Rule.java b/org.adempiere.base/src/org/compiere/model/X_AD_Rule.java index 8835011246..5a55cab94c 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Rule.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Rule.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Rule - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Rule extends PO implements I_AD_Rule, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Rule (Properties ctx, int AD_Rule_ID, String trxName) @@ -128,6 +128,20 @@ public class X_AD_Rule extends PO implements I_AD_Rule, I_Persistent return ii.intValue(); } + /** Set AD_Rule_UU. + @param AD_Rule_UU AD_Rule_UU */ + public void setAD_Rule_UU (String AD_Rule_UU) + { + set_Value (COLUMNNAME_AD_Rule_UU, AD_Rule_UU); + } + + /** Get AD_Rule_UU. + @return AD_Rule_UU */ + public String getAD_Rule_UU () + { + return (String)get_Value(COLUMNNAME_AD_Rule_UU); + } + /** Set Description. @param Description Optional short description of the record @@ -181,6 +195,8 @@ public class X_AD_Rule extends PO implements I_AD_Rule, I_Persistent public static final String EVENTTYPE_HumanResourcePayroll = "H"; /** Measure for Performance Analysis = M */ public static final String EVENTTYPE_MeasureForPerformanceAnalysis = "M"; + /** GL Reconciliation = R */ + public static final String EVENTTYPE_GLReconciliation = "R"; /** Set Event Type. @param EventType Type of Event diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Schedule.java b/org.adempiere.base/src/org/compiere/model/X_AD_Schedule.java index 81ff342ce6..2f6568219c 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Schedule.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Schedule.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Schedule - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Schedule extends PO implements I_AD_Schedule, I_Persistent { /** * */ - private static final long serialVersionUID = 20120924L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Schedule (Properties ctx, int AD_Schedule_ID, String trxName) @@ -38,6 +38,11 @@ public class X_AD_Schedule extends PO implements I_AD_Schedule, I_Persistent super (ctx, AD_Schedule_ID, trxName); /** if (AD_Schedule_ID == 0) { + setIsIgnoreProcessingTime (false); +// N + setIsSystemSchedule (false); +// N + setName (null); } */ } @@ -69,8 +74,8 @@ public class X_AD_Schedule extends PO implements I_AD_Schedule, I_Persistent return sb.toString(); } - /** Set AD_Schedule_ID. - @param AD_Schedule_ID AD_Schedule_ID */ + /** Set Schedule. + @param AD_Schedule_ID Schedule */ public void setAD_Schedule_ID (int AD_Schedule_ID) { if (AD_Schedule_ID < 1) @@ -79,8 +84,8 @@ public class X_AD_Schedule extends PO implements I_AD_Schedule, I_Persistent set_ValueNoCheck (COLUMNNAME_AD_Schedule_ID, Integer.valueOf(AD_Schedule_ID)); } - /** Get AD_Schedule_ID. - @return AD_Schedule_ID */ + /** Get Schedule. + @return Schedule */ public int getAD_Schedule_ID () { Integer ii = (Integer)get_Value(COLUMNNAME_AD_Schedule_ID); @@ -89,14 +94,6 @@ public class X_AD_Schedule extends PO implements I_AD_Schedule, I_Persistent return ii.intValue(); } - /** Get Record ID/ColumnName - @return ID/ColumnName pair - */ - public KeyNamePair getKeyNamePair() - { - return new KeyNamePair(get_ID(), String.valueOf(getAD_Schedule_ID())); - } - /** Set AD_Schedule_UU. @param AD_Schedule_UU AD_Schedule_UU */ public void setAD_Schedule_UU (String AD_Schedule_UU) @@ -215,7 +212,7 @@ public class X_AD_Schedule extends PO implements I_AD_Schedule, I_Persistent return false; } - /** Set IsSystemSchedule. + /** Set System Schedule. @param IsSystemSchedule Schedule Just For System */ @@ -224,7 +221,7 @@ public class X_AD_Schedule extends PO implements I_AD_Schedule, I_Persistent set_Value (COLUMNNAME_IsSystemSchedule, Boolean.valueOf(IsSystemSchedule)); } - /** Get IsSystemSchedule. + /** Get System Schedule. @return Schedule Just For System */ public boolean isSystemSchedule () @@ -265,7 +262,7 @@ public class X_AD_Schedule extends PO implements I_AD_Schedule, I_Persistent */ public void setName (String Name) { - set_ValueNoCheck (COLUMNNAME_Name, Name); + set_Value (COLUMNNAME_Name, Name); } /** Get Name. @@ -276,6 +273,14 @@ public class X_AD_Schedule extends PO implements I_AD_Schedule, I_Persistent return (String)get_Value(COLUMNNAME_Name); } + /** Get Record ID/ColumnName + @return ID/ColumnName pair + */ + public KeyNamePair getKeyNamePair() + { + return new KeyNamePair(get_ID(), getName()); + } + /** Set Run only on IP. @param RunOnlyOnIP Run only on IP */ public void setRunOnlyOnIP (String RunOnlyOnIP) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Scheduler.java b/org.adempiere.base/src/org/compiere/model/X_AD_Scheduler.java index ecd51048a1..26dfa931b8 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Scheduler.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Scheduler.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Scheduler - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Scheduler extends PO implements I_AD_Scheduler, I_Persistent { /** * */ - private static final long serialVersionUID = 20120924L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Scheduler (Properties ctx, int AD_Scheduler_ID, String trxName) @@ -40,6 +40,7 @@ public class X_AD_Scheduler extends PO implements I_AD_Scheduler, I_Persistent /** if (AD_Scheduler_ID == 0) { setAD_Process_ID (0); + setAD_Schedule_ID (0); setAD_Scheduler_ID (0); setKeepLogDays (0); // 7 @@ -109,8 +110,8 @@ public class X_AD_Scheduler extends PO implements I_AD_Scheduler, I_Persistent return (org.compiere.model.I_AD_Schedule)MTable.get(getCtx(), org.compiere.model.I_AD_Schedule.Table_Name) .getPO(getAD_Schedule_ID(), get_TrxName()); } - /** Set AD_Schedule_ID. - @param AD_Schedule_ID AD_Schedule_ID */ + /** Set Schedule. + @param AD_Schedule_ID Schedule */ public void setAD_Schedule_ID (int AD_Schedule_ID) { if (AD_Schedule_ID < 1) @@ -119,8 +120,8 @@ public class X_AD_Scheduler extends PO implements I_AD_Scheduler, I_Persistent set_Value (COLUMNNAME_AD_Schedule_ID, Integer.valueOf(AD_Schedule_ID)); } - /** Get AD_Schedule_ID. - @return AD_Schedule_ID */ + /** Get Schedule. + @return Schedule */ public int getAD_Schedule_ID () { Integer ii = (Integer)get_Value(COLUMNNAME_AD_Schedule_ID); diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_SchedulerLog.java b/org.adempiere.base/src/org/compiere/model/X_AD_SchedulerLog.java index cdfa2b4b82..1f64b77288 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_SchedulerLog.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_SchedulerLog.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_SchedulerLog - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_SchedulerLog extends PO implements I_AD_SchedulerLog, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_SchedulerLog (Properties ctx, int AD_SchedulerLog_ID, String trxName) @@ -71,9 +71,9 @@ public class X_AD_SchedulerLog extends PO implements I_AD_SchedulerLog, I_Persis return sb.toString(); } - public I_AD_Scheduler getAD_Scheduler() throws RuntimeException + public org.compiere.model.I_AD_Scheduler getAD_Scheduler() throws RuntimeException { - return (I_AD_Scheduler)MTable.get(getCtx(), I_AD_Scheduler.Table_Name) + return (org.compiere.model.I_AD_Scheduler)MTable.get(getCtx(), org.compiere.model.I_AD_Scheduler.Table_Name) .getPO(getAD_Scheduler_ID(), get_TrxName()); } /** Set Scheduler. @@ -122,6 +122,20 @@ public class X_AD_SchedulerLog extends PO implements I_AD_SchedulerLog, I_Persis return ii.intValue(); } + /** Set AD_SchedulerLog_UU. + @param AD_SchedulerLog_UU AD_SchedulerLog_UU */ + public void setAD_SchedulerLog_UU (String AD_SchedulerLog_UU) + { + set_Value (COLUMNNAME_AD_SchedulerLog_UU, AD_SchedulerLog_UU); + } + + /** Get AD_SchedulerLog_UU. + @return AD_SchedulerLog_UU */ + public String getAD_SchedulerLog_UU () + { + return (String)get_Value(COLUMNNAME_AD_SchedulerLog_UU); + } + /** Set Binary Data. @param BinaryData Binary Data diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_SchedulerRecipient.java b/org.adempiere.base/src/org/compiere/model/X_AD_SchedulerRecipient.java index 9d61132164..2bc7bb2b2a 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_SchedulerRecipient.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_SchedulerRecipient.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_SchedulerRecipient - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_SchedulerRecipient extends PO implements I_AD_SchedulerRecipient, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_SchedulerRecipient (Properties ctx, int AD_SchedulerRecipient_ID, String trxName) @@ -71,9 +71,9 @@ public class X_AD_SchedulerRecipient extends PO implements I_AD_SchedulerRecipie return sb.toString(); } - public I_AD_Role getAD_Role() throws RuntimeException + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException { - return (I_AD_Role)MTable.get(getCtx(), I_AD_Role.Table_Name) + return (org.compiere.model.I_AD_Role)MTable.get(getCtx(), org.compiere.model.I_AD_Role.Table_Name) .getPO(getAD_Role_ID(), get_TrxName()); } /** Set Role. @@ -99,9 +99,9 @@ public class X_AD_SchedulerRecipient extends PO implements I_AD_SchedulerRecipie return ii.intValue(); } - public I_AD_Scheduler getAD_Scheduler() throws RuntimeException + public org.compiere.model.I_AD_Scheduler getAD_Scheduler() throws RuntimeException { - return (I_AD_Scheduler)MTable.get(getCtx(), I_AD_Scheduler.Table_Name) + return (org.compiere.model.I_AD_Scheduler)MTable.get(getCtx(), org.compiere.model.I_AD_Scheduler.Table_Name) .getPO(getAD_Scheduler_ID(), get_TrxName()); } /** Set Scheduler. @@ -150,9 +150,23 @@ public class X_AD_SchedulerRecipient extends PO implements I_AD_SchedulerRecipie return ii.intValue(); } - public I_AD_User getAD_User() throws RuntimeException + /** Set AD_SchedulerRecipient_UU. + @param AD_SchedulerRecipient_UU AD_SchedulerRecipient_UU */ + public void setAD_SchedulerRecipient_UU (String AD_SchedulerRecipient_UU) + { + set_Value (COLUMNNAME_AD_SchedulerRecipient_UU, AD_SchedulerRecipient_UU); + } + + /** Get AD_SchedulerRecipient_UU. + @return AD_SchedulerRecipient_UU */ + public String getAD_SchedulerRecipient_UU () + { + return (String)get_Value(COLUMNNAME_AD_SchedulerRecipient_UU); + } + + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Scheduler_Para.java b/org.adempiere.base/src/org/compiere/model/X_AD_Scheduler_Para.java index 88b4b74066..8385515524 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Scheduler_Para.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Scheduler_Para.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_Scheduler_Para - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Scheduler_Para extends PO implements I_AD_Scheduler_Para, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Scheduler_Para (Properties ctx, int AD_Scheduler_Para_ID, String trxName) @@ -70,9 +70,9 @@ public class X_AD_Scheduler_Para extends PO implements I_AD_Scheduler_Para, I_Pe return sb.toString(); } - public I_AD_Process_Para getAD_Process_Para() throws RuntimeException + public org.compiere.model.I_AD_Process_Para getAD_Process_Para() throws RuntimeException { - return (I_AD_Process_Para)MTable.get(getCtx(), I_AD_Process_Para.Table_Name) + return (org.compiere.model.I_AD_Process_Para)MTable.get(getCtx(), org.compiere.model.I_AD_Process_Para.Table_Name) .getPO(getAD_Process_Para_ID(), get_TrxName()); } /** Set Process Parameter. @@ -95,9 +95,9 @@ public class X_AD_Scheduler_Para extends PO implements I_AD_Scheduler_Para, I_Pe return ii.intValue(); } - public I_AD_Scheduler getAD_Scheduler() throws RuntimeException + public org.compiere.model.I_AD_Scheduler getAD_Scheduler() throws RuntimeException { - return (I_AD_Scheduler)MTable.get(getCtx(), I_AD_Scheduler.Table_Name) + return (org.compiere.model.I_AD_Scheduler)MTable.get(getCtx(), org.compiere.model.I_AD_Scheduler.Table_Name) .getPO(getAD_Scheduler_ID(), get_TrxName()); } /** Set Scheduler. @@ -123,6 +123,20 @@ public class X_AD_Scheduler_Para extends PO implements I_AD_Scheduler_Para, I_Pe return ii.intValue(); } + /** Set AD_Scheduler_Para_UU. + @param AD_Scheduler_Para_UU AD_Scheduler_Para_UU */ + public void setAD_Scheduler_Para_UU (String AD_Scheduler_Para_UU) + { + set_Value (COLUMNNAME_AD_Scheduler_Para_UU, AD_Scheduler_Para_UU); + } + + /** Get AD_Scheduler_Para_UU. + @return AD_Scheduler_Para_UU */ + public String getAD_Scheduler_Para_UU () + { + return (String)get_Value(COLUMNNAME_AD_Scheduler_Para_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_SearchDefinition.java b/org.adempiere.base/src/org/compiere/model/X_AD_SearchDefinition.java index 72191f3481..0f44133560 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_SearchDefinition.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_SearchDefinition.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_SearchDefinition - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_SearchDefinition extends PO implements I_AD_SearchDefinition, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_SearchDefinition (Properties ctx, int AD_SearchDefinition_ID, String trxName) @@ -75,9 +75,9 @@ public class X_AD_SearchDefinition extends PO implements I_AD_SearchDefinition, return sb.toString(); } - public I_AD_Column getAD_Column() throws RuntimeException + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException { - return (I_AD_Column)MTable.get(getCtx(), I_AD_Column.Table_Name) + return (org.compiere.model.I_AD_Column)MTable.get(getCtx(), org.compiere.model.I_AD_Column.Table_Name) .getPO(getAD_Column_ID(), get_TrxName()); } /** Set Column. @@ -123,9 +123,23 @@ public class X_AD_SearchDefinition extends PO implements I_AD_SearchDefinition, return ii.intValue(); } - public I_AD_Table getAD_Table() throws RuntimeException + /** Set AD_SearchDefinition_UU. + @param AD_SearchDefinition_UU AD_SearchDefinition_UU */ + public void setAD_SearchDefinition_UU (String AD_SearchDefinition_UU) + { + set_Value (COLUMNNAME_AD_SearchDefinition_UU, AD_SearchDefinition_UU); + } + + /** Get AD_SearchDefinition_UU. + @return AD_SearchDefinition_UU */ + public String getAD_SearchDefinition_UU () + { + return (String)get_Value(COLUMNNAME_AD_SearchDefinition_UU); + } + + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @@ -151,9 +165,9 @@ public class X_AD_SearchDefinition extends PO implements I_AD_SearchDefinition, return ii.intValue(); } - public I_AD_Window getAD_Window() throws RuntimeException + public org.compiere.model.I_AD_Window getAD_Window() throws RuntimeException { - return (I_AD_Window)MTable.get(getCtx(), I_AD_Window.Table_Name) + return (org.compiere.model.I_AD_Window)MTable.get(getCtx(), org.compiere.model.I_AD_Window.Table_Name) .getPO(getAD_Window_ID(), get_TrxName()); } /** Set Window. @@ -254,9 +268,9 @@ public class X_AD_SearchDefinition extends PO implements I_AD_SearchDefinition, return (String)get_Value(COLUMNNAME_Name); } - public I_AD_Window getPO_Window() throws RuntimeException + public org.compiere.model.I_AD_Window getPO_Window() throws RuntimeException { - return (I_AD_Window)MTable.get(getCtx(), I_AD_Window.Table_Name) + return (org.compiere.model.I_AD_Window)MTable.get(getCtx(), org.compiere.model.I_AD_Window.Table_Name) .getPO(getPO_Window_ID(), get_TrxName()); } /** Set PO Window. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Sequence.java b/org.adempiere.base/src/org/compiere/model/X_AD_Sequence.java index 9eda6020e2..3d2de3fe9b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Sequence.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Sequence.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Sequence - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Sequence extends PO implements I_AD_Sequence, I_Persistent { /** * */ - private static final long serialVersionUID = 20120907L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Sequence (Properties ctx, int AD_Sequence_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Sequence_Audit.java b/org.adempiere.base/src/org/compiere/model/X_AD_Sequence_Audit.java index 57873e3788..906e924534 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Sequence_Audit.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Sequence_Audit.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_Sequence_Audit - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Sequence_Audit extends PO implements I_AD_Sequence_Audit, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Sequence_Audit (Properties ctx, int AD_Sequence_Audit_ID, String trxName) @@ -72,9 +72,23 @@ public class X_AD_Sequence_Audit extends PO implements I_AD_Sequence_Audit, I_Pe return sb.toString(); } - public I_AD_Sequence getAD_Sequence() throws RuntimeException + /** Set AD_Sequence_Audit_UU. + @param AD_Sequence_Audit_UU AD_Sequence_Audit_UU */ + public void setAD_Sequence_Audit_UU (String AD_Sequence_Audit_UU) + { + set_Value (COLUMNNAME_AD_Sequence_Audit_UU, AD_Sequence_Audit_UU); + } + + /** Get AD_Sequence_Audit_UU. + @return AD_Sequence_Audit_UU */ + public String getAD_Sequence_Audit_UU () + { + return (String)get_Value(COLUMNNAME_AD_Sequence_Audit_UU); + } + + public org.compiere.model.I_AD_Sequence getAD_Sequence() throws RuntimeException { - return (I_AD_Sequence)MTable.get(getCtx(), I_AD_Sequence.Table_Name) + return (org.compiere.model.I_AD_Sequence)MTable.get(getCtx(), org.compiere.model.I_AD_Sequence.Table_Name) .getPO(getAD_Sequence_ID(), get_TrxName()); } /** Set Sequence. @@ -100,9 +114,9 @@ public class X_AD_Sequence_Audit extends PO implements I_AD_Sequence_Audit, I_Pe return ii.intValue(); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Sequence_No.java b/org.adempiere.base/src/org/compiere/model/X_AD_Sequence_No.java index cb3d5b0ca2..3b2145057e 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Sequence_No.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Sequence_No.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_Sequence_No - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Sequence_No extends PO implements I_AD_Sequence_No, I_Persistent { /** * */ - private static final long serialVersionUID = 20120907L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Sequence_No (Properties ctx, int AD_Sequence_No_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Session.java b/org.adempiere.base/src/org/compiere/model/X_AD_Session.java index 372a237e2e..5803d70d5e 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Session.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Session.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Session - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Session extends PO implements I_AD_Session, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Session (Properties ctx, int AD_Session_ID, String trxName) @@ -72,9 +72,9 @@ public class X_AD_Session extends PO implements I_AD_Session, I_Persistent return sb.toString(); } - public I_AD_Role getAD_Role() throws RuntimeException + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException { - return (I_AD_Role)MTable.get(getCtx(), I_AD_Role.Table_Name) + return (org.compiere.model.I_AD_Role)MTable.get(getCtx(), org.compiere.model.I_AD_Role.Table_Name) .getPO(getAD_Role_ID(), get_TrxName()); } /** Set Role. @@ -131,6 +131,20 @@ public class X_AD_Session extends PO implements I_AD_Session, I_Persistent return new KeyNamePair(get_ID(), String.valueOf(getAD_Session_ID())); } + /** Set AD_Session_UU. + @param AD_Session_UU AD_Session_UU */ + public void setAD_Session_UU (String AD_Session_UU) + { + set_Value (COLUMNNAME_AD_Session_UU, AD_Session_UU); + } + + /** Get AD_Session_UU. + @return AD_Session_UU */ + public String getAD_Session_UU () + { + return (String)get_Value(COLUMNNAME_AD_Session_UU); + } + /** Set Description. @param Description Optional short description of the record @@ -220,15 +234,15 @@ public class X_AD_Session extends PO implements I_AD_Session, I_Persistent return (String)get_Value(COLUMNNAME_Remote_Host); } - /** Set Server name. - @param ServerName Server name */ + /** Set Server Name. + @param ServerName Server Name */ public void setServerName (String ServerName) { set_Value (COLUMNNAME_ServerName, ServerName); } - /** Get Server name. - @return Server name */ + /** Get Server Name. + @return Server Name */ public String getServerName () { return (String)get_Value(COLUMNNAME_ServerName); diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_SysConfig.java b/org.adempiere.base/src/org/compiere/model/X_AD_SysConfig.java index fec6abe1e3..47ca80a60e 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_SysConfig.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_SysConfig.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_SysConfig - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_SysConfig extends PO implements I_AD_SysConfig, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_SysConfig (Properties ctx, int AD_SysConfig_ID, String trxName) @@ -94,6 +94,20 @@ public class X_AD_SysConfig extends PO implements I_AD_SysConfig, I_Persistent return ii.intValue(); } + /** Set AD_SysConfig_UU. + @param AD_SysConfig_UU AD_SysConfig_UU */ + public void setAD_SysConfig_UU (String AD_SysConfig_UU) + { + set_Value (COLUMNNAME_AD_SysConfig_UU, AD_SysConfig_UU); + } + + /** Get AD_SysConfig_UU. + @return AD_SysConfig_UU */ + public String getAD_SysConfig_UU () + { + return (String)get_Value(COLUMNNAME_AD_SysConfig_UU); + } + /** ConfigurationLevel AD_Reference_ID=53222 */ public static final int CONFIGURATIONLEVEL_AD_Reference_ID=53222; /** System = S */ diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_System.java b/org.adempiere.base/src/org/compiere/model/X_AD_System.java index 51a356e372..cb26e016b9 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_System.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_System.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for AD_System - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_System extends PO implements I_AD_System, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_System (Properties ctx, int AD_System_ID, String trxName) @@ -113,6 +113,20 @@ public class X_AD_System extends PO implements I_AD_System, I_Persistent return ii.intValue(); } + /** Set AD_System_UU. + @param AD_System_UU AD_System_UU */ + public void setAD_System_UU (String AD_System_UU) + { + set_Value (COLUMNNAME_AD_System_UU, AD_System_UU); + } + + /** Get AD_System_UU. + @return AD_System_UU */ + public String getAD_System_UU () + { + return (String)get_Value(COLUMNNAME_AD_System_UU); + } + /** Set Custom Prefix. @param CustomPrefix Prefix for Custom entities @@ -383,6 +397,23 @@ public class X_AD_System extends PO implements I_AD_System, I_Persistent return (String)get_Value(COLUMNNAME_LastBuildInfo); } + /** Set Last Migration Script Applied. + @param LastMigrationScriptApplied + Register of the filename for the last migration script applied on this database + */ + public void setLastMigrationScriptApplied (String LastMigrationScriptApplied) + { + set_Value (COLUMNNAME_LastMigrationScriptApplied, LastMigrationScriptApplied); + } + + /** Get Last Migration Script Applied. + @return Register of the filename for the last migration script applied on this database + */ + public String getLastMigrationScriptApplied () + { + return (String)get_Value(COLUMNNAME_LastMigrationScriptApplied); + } + /** Set LDAP Domain. @param LDAPDomain Directory service domain name - e.g. adempiere.org diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Tab.java b/org.adempiere.base/src/org/compiere/model/X_AD_Tab.java index bd97c96f16..1a978167b6 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Tab.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Tab.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Tab - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Tab extends PO implements I_AD_Tab, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Tab (Properties ctx, int AD_Tab_ID, String trxName) @@ -88,9 +88,9 @@ public class X_AD_Tab extends PO implements I_AD_Tab, I_Persistent return sb.toString(); } - public I_AD_Column getAD_Column() throws RuntimeException + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException { - return (I_AD_Column)MTable.get(getCtx(), I_AD_Column.Table_Name) + return (org.compiere.model.I_AD_Column)MTable.get(getCtx(), org.compiere.model.I_AD_Column.Table_Name) .getPO(getAD_Column_ID(), get_TrxName()); } /** Set Column. @@ -116,9 +116,9 @@ public class X_AD_Tab extends PO implements I_AD_Tab, I_Persistent return ii.intValue(); } - public I_AD_Column getAD_ColumnSortOrder() throws RuntimeException + public org.compiere.model.I_AD_Column getAD_ColumnSortOrder() throws RuntimeException { - return (I_AD_Column)MTable.get(getCtx(), I_AD_Column.Table_Name) + return (org.compiere.model.I_AD_Column)MTable.get(getCtx(), org.compiere.model.I_AD_Column.Table_Name) .getPO(getAD_ColumnSortOrder_ID(), get_TrxName()); } /** Set Order Column. @@ -144,9 +144,9 @@ public class X_AD_Tab extends PO implements I_AD_Tab, I_Persistent return ii.intValue(); } - public I_AD_Column getAD_ColumnSortYesNo() throws RuntimeException + public org.compiere.model.I_AD_Column getAD_ColumnSortYesNo() throws RuntimeException { - return (I_AD_Column)MTable.get(getCtx(), I_AD_Column.Table_Name) + return (org.compiere.model.I_AD_Column)MTable.get(getCtx(), org.compiere.model.I_AD_Column.Table_Name) .getPO(getAD_ColumnSortYesNo_ID(), get_TrxName()); } /** Set Included Column. @@ -172,9 +172,9 @@ public class X_AD_Tab extends PO implements I_AD_Tab, I_Persistent return ii.intValue(); } - public I_AD_Image getAD_Image() throws RuntimeException + public org.compiere.model.I_AD_Image getAD_Image() throws RuntimeException { - return (I_AD_Image)MTable.get(getCtx(), I_AD_Image.Table_Name) + return (org.compiere.model.I_AD_Image)MTable.get(getCtx(), org.compiere.model.I_AD_Image.Table_Name) .getPO(getAD_Image_ID(), get_TrxName()); } /** Set Image. @@ -200,9 +200,9 @@ public class X_AD_Tab extends PO implements I_AD_Tab, I_Persistent return ii.intValue(); } - public I_AD_Process getAD_Process() throws RuntimeException + public org.compiere.model.I_AD_Process getAD_Process() throws RuntimeException { - return (I_AD_Process)MTable.get(getCtx(), I_AD_Process.Table_Name) + return (org.compiere.model.I_AD_Process)MTable.get(getCtx(), org.compiere.model.I_AD_Process.Table_Name) .getPO(getAD_Process_ID(), get_TrxName()); } /** Set Process. @@ -251,9 +251,9 @@ public class X_AD_Tab extends PO implements I_AD_Tab, I_Persistent return ii.intValue(); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @@ -279,9 +279,23 @@ public class X_AD_Tab extends PO implements I_AD_Tab, I_Persistent return ii.intValue(); } - public I_AD_Window getAD_Window() throws RuntimeException + /** Set AD_Tab_UU. + @param AD_Tab_UU AD_Tab_UU */ + public void setAD_Tab_UU (String AD_Tab_UU) + { + set_Value (COLUMNNAME_AD_Tab_UU, AD_Tab_UU); + } + + /** Get AD_Tab_UU. + @return AD_Tab_UU */ + public String getAD_Tab_UU () + { + return (String)get_Value(COLUMNNAME_AD_Tab_UU); + } + + public org.compiere.model.I_AD_Window getAD_Window() throws RuntimeException { - return (I_AD_Window)MTable.get(getCtx(), I_AD_Window.Table_Name) + return (org.compiere.model.I_AD_Window)MTable.get(getCtx(), org.compiere.model.I_AD_Window.Table_Name) .getPO(getAD_Window_ID(), get_TrxName()); } /** Set Window. @@ -436,9 +450,9 @@ public class X_AD_Tab extends PO implements I_AD_Tab, I_Persistent return (String)get_Value(COLUMNNAME_ImportFields); } - public I_AD_Tab getIncluded_Tab() throws RuntimeException + public org.compiere.model.I_AD_Tab getIncluded_Tab() throws RuntimeException { - return (I_AD_Tab)MTable.get(getCtx(), I_AD_Tab.Table_Name) + return (org.compiere.model.I_AD_Tab)MTable.get(getCtx(), org.compiere.model.I_AD_Tab.Table_Name) .getPO(getIncluded_Tab_ID(), get_TrxName()); } /** Set Included Tab. @@ -674,9 +688,9 @@ public class X_AD_Tab extends PO implements I_AD_Tab, I_Persistent return (String)get_Value(COLUMNNAME_OrderByClause); } - public I_AD_Column getParent_Column() throws RuntimeException + public org.compiere.model.I_AD_Column getParent_Column() throws RuntimeException { - return (I_AD_Column)MTable.get(getCtx(), I_AD_Column.Table_Name) + return (org.compiere.model.I_AD_Column)MTable.get(getCtx(), org.compiere.model.I_AD_Column.Table_Name) .getPO(getParent_Column_ID(), get_TrxName()); } /** Set Parent Column. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Tab_Customization.java b/org.adempiere.base/src/org/compiere/model/X_AD_Tab_Customization.java index a260531fbf..a3fd67fbbc 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Tab_Customization.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Tab_Customization.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_Tab_Customization - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Tab_Customization extends PO implements I_AD_Tab_Customization, I_Persistent { /** * */ - private static final long serialVersionUID = 20120813L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Tab_Customization (Properties ctx, int AD_Tab_Customization_ID, String trxName) @@ -90,6 +90,20 @@ public class X_AD_Tab_Customization extends PO implements I_AD_Tab_Customization return ii.intValue(); } + /** Set AD_Tab_Customization_UU. + @param AD_Tab_Customization_UU AD_Tab_Customization_UU */ + public void setAD_Tab_Customization_UU (String AD_Tab_Customization_UU) + { + set_Value (COLUMNNAME_AD_Tab_Customization_UU, AD_Tab_Customization_UU); + } + + /** Get AD_Tab_Customization_UU. + @return AD_Tab_Customization_UU */ + public String getAD_Tab_Customization_UU () + { + return (String)get_Value(COLUMNNAME_AD_Tab_Customization_UU); + } + public org.compiere.model.I_AD_Tab getAD_Tab() throws RuntimeException { return (org.compiere.model.I_AD_Tab)MTable.get(getCtx(), org.compiere.model.I_AD_Tab.Table_Name) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Table.java b/org.adempiere.base/src/org/compiere/model/X_AD_Table.java index 7fa5bea666..1681e56401 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Table.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Table.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Table - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Table extends PO implements I_AD_Table, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Table (Properties ctx, int AD_Table_ID, String trxName) @@ -140,9 +140,23 @@ public class X_AD_Table extends PO implements I_AD_Table, I_Persistent return ii.intValue(); } - public I_AD_Val_Rule getAD_Val_Rule() throws RuntimeException + /** Set AD_Table_UU. + @param AD_Table_UU AD_Table_UU */ + public void setAD_Table_UU (String AD_Table_UU) + { + set_Value (COLUMNNAME_AD_Table_UU, AD_Table_UU); + } + + /** Get AD_Table_UU. + @return AD_Table_UU */ + public String getAD_Table_UU () + { + return (String)get_Value(COLUMNNAME_AD_Table_UU); + } + + public org.compiere.model.I_AD_Val_Rule getAD_Val_Rule() throws RuntimeException { - return (I_AD_Val_Rule)MTable.get(getCtx(), I_AD_Val_Rule.Table_Name) + return (org.compiere.model.I_AD_Val_Rule)MTable.get(getCtx(), org.compiere.model.I_AD_Val_Rule.Table_Name) .getPO(getAD_Val_Rule_ID(), get_TrxName()); } /** Set Dynamic Validation. @@ -168,9 +182,9 @@ public class X_AD_Table extends PO implements I_AD_Table, I_Persistent return ii.intValue(); } - public I_AD_Window getAD_Window() throws RuntimeException + public org.compiere.model.I_AD_Window getAD_Window() throws RuntimeException { - return (I_AD_Window)MTable.get(getCtx(), I_AD_Window.Table_Name) + return (org.compiere.model.I_AD_Window)MTable.get(getCtx(), org.compiere.model.I_AD_Window.Table_Name) .getPO(getAD_Window_ID(), get_TrxName()); } /** Set Window. @@ -459,9 +473,9 @@ public class X_AD_Table extends PO implements I_AD_Table, I_Persistent return (String)get_Value(COLUMNNAME_Name); } - public I_AD_Window getPO_Window() throws RuntimeException + public org.compiere.model.I_AD_Window getPO_Window() throws RuntimeException { - return (I_AD_Window)MTable.get(getCtx(), I_AD_Window.Table_Name) + return (org.compiere.model.I_AD_Window)MTable.get(getCtx(), org.compiere.model.I_AD_Window.Table_Name) .getPO(getPO_Window_ID(), get_TrxName()); } /** Set PO Window. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Table_Access.java b/org.adempiere.base/src/org/compiere/model/X_AD_Table_Access.java index a46aa51de9..c2b071d57d 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Table_Access.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Table_Access.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Table_Access - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Table_Access extends PO implements I_AD_Table_Access, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Table_Access (Properties ctx, int AD_Table_Access_ID, String trxName) @@ -104,9 +104,9 @@ public class X_AD_Table_Access extends PO implements I_AD_Table_Access, I_Persis return (String)get_Value(COLUMNNAME_AccessTypeRule); } - public I_AD_Role getAD_Role() throws RuntimeException + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException { - return (I_AD_Role)MTable.get(getCtx(), I_AD_Role.Table_Name) + return (org.compiere.model.I_AD_Role)MTable.get(getCtx(), org.compiere.model.I_AD_Role.Table_Name) .getPO(getAD_Role_ID(), get_TrxName()); } /** Set Role. @@ -132,9 +132,23 @@ public class X_AD_Table_Access extends PO implements I_AD_Table_Access, I_Persis return ii.intValue(); } - public I_AD_Table getAD_Table() throws RuntimeException + /** Set AD_Table_Access_UU. + @param AD_Table_Access_UU AD_Table_Access_UU */ + public void setAD_Table_Access_UU (String AD_Table_Access_UU) + { + set_Value (COLUMNNAME_AD_Table_Access_UU, AD_Table_Access_UU); + } + + /** Get AD_Table_Access_UU. + @return AD_Table_Access_UU */ + public String getAD_Table_Access_UU () + { + return (String)get_Value(COLUMNNAME_AD_Table_Access_UU); + } + + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Table_ScriptValidator.java b/org.adempiere.base/src/org/compiere/model/X_AD_Table_ScriptValidator.java index 8936851fb6..fb976036de 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Table_ScriptValidator.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Table_ScriptValidator.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Table_ScriptValidator - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Table_ScriptValidator extends PO implements I_AD_Table_ScriptValidator, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Table_ScriptValidator (Properties ctx, int AD_Table_ScriptValidator_ID, String trxName) @@ -75,9 +75,9 @@ public class X_AD_Table_ScriptValidator extends PO implements I_AD_Table_ScriptV return sb.toString(); } - public I_AD_Rule getAD_Rule() throws RuntimeException + public org.compiere.model.I_AD_Rule getAD_Rule() throws RuntimeException { - return (I_AD_Rule)MTable.get(getCtx(), I_AD_Rule.Table_Name) + return (org.compiere.model.I_AD_Rule)MTable.get(getCtx(), org.compiere.model.I_AD_Rule.Table_Name) .getPO(getAD_Rule_ID(), get_TrxName()); } /** Set Rule. @@ -100,9 +100,9 @@ public class X_AD_Table_ScriptValidator extends PO implements I_AD_Table_ScriptV return ii.intValue(); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @@ -148,6 +148,20 @@ public class X_AD_Table_ScriptValidator extends PO implements I_AD_Table_ScriptV return ii.intValue(); } + /** Set AD_Table_ScriptValidator_UU. + @param AD_Table_ScriptValidator_UU AD_Table_ScriptValidator_UU */ + public void setAD_Table_ScriptValidator_UU (String AD_Table_ScriptValidator_UU) + { + set_Value (COLUMNNAME_AD_Table_ScriptValidator_UU, AD_Table_ScriptValidator_UU); + } + + /** Get AD_Table_ScriptValidator_UU. + @return AD_Table_ScriptValidator_UU */ + public String getAD_Table_ScriptValidator_UU () + { + return (String)get_Value(COLUMNNAME_AD_Table_ScriptValidator_UU); + } + /** EventModelValidator AD_Reference_ID=53237 */ public static final int EVENTMODELVALIDATOR_AD_Reference_ID=53237; /** Table Before New = TBN */ diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Task.java b/org.adempiere.base/src/org/compiere/model/X_AD_Task.java index 27d2f73577..df1de046b0 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Task.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Task.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Task - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Task extends PO implements I_AD_Task, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Task (Properties ctx, int AD_Task_ID, String trxName) @@ -132,6 +132,20 @@ public class X_AD_Task extends PO implements I_AD_Task, I_Persistent return ii.intValue(); } + /** Set AD_Task_UU. + @param AD_Task_UU AD_Task_UU */ + public void setAD_Task_UU (String AD_Task_UU) + { + set_Value (COLUMNNAME_AD_Task_UU, AD_Task_UU); + } + + /** Get AD_Task_UU. + @return AD_Task_UU */ + public String getAD_Task_UU () + { + return (String)get_Value(COLUMNNAME_AD_Task_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_TaskInstance.java b/org.adempiere.base/src/org/compiere/model/X_AD_TaskInstance.java index d9072e174c..745929b90f 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_TaskInstance.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_TaskInstance.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_TaskInstance - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_TaskInstance extends PO implements I_AD_TaskInstance, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_TaskInstance (Properties ctx, int AD_TaskInstance_ID, String trxName) @@ -121,4 +121,18 @@ public class X_AD_TaskInstance extends PO implements I_AD_TaskInstance, I_Persis { return new KeyNamePair(get_ID(), String.valueOf(getAD_TaskInstance_ID())); } + + /** Set AD_TaskInstance_UU. + @param AD_TaskInstance_UU AD_TaskInstance_UU */ + public void setAD_TaskInstance_UU (String AD_TaskInstance_UU) + { + set_Value (COLUMNNAME_AD_TaskInstance_UU, AD_TaskInstance_UU); + } + + /** Get AD_TaskInstance_UU. + @return AD_TaskInstance_UU */ + public String getAD_TaskInstance_UU () + { + return (String)get_Value(COLUMNNAME_AD_TaskInstance_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Task_Access.java b/org.adempiere.base/src/org/compiere/model/X_AD_Task_Access.java index c8ec4df8ec..4d937420a4 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Task_Access.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Task_Access.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_Task_Access - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Task_Access extends PO implements I_AD_Task_Access, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Task_Access (Properties ctx, int AD_Task_Access_ID, String trxName) @@ -71,9 +71,9 @@ public class X_AD_Task_Access extends PO implements I_AD_Task_Access, I_Persiste return sb.toString(); } - public I_AD_Role getAD_Role() throws RuntimeException + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException { - return (I_AD_Role)MTable.get(getCtx(), I_AD_Role.Table_Name) + return (org.compiere.model.I_AD_Role)MTable.get(getCtx(), org.compiere.model.I_AD_Role.Table_Name) .getPO(getAD_Role_ID(), get_TrxName()); } /** Set Role. @@ -99,9 +99,23 @@ public class X_AD_Task_Access extends PO implements I_AD_Task_Access, I_Persiste return ii.intValue(); } - public I_AD_Task getAD_Task() throws RuntimeException + /** Set AD_Task_Access_UU. + @param AD_Task_Access_UU AD_Task_Access_UU */ + public void setAD_Task_Access_UU (String AD_Task_Access_UU) + { + set_Value (COLUMNNAME_AD_Task_Access_UU, AD_Task_Access_UU); + } + + /** Get AD_Task_Access_UU. + @return AD_Task_Access_UU */ + public String getAD_Task_Access_UU () + { + return (String)get_Value(COLUMNNAME_AD_Task_Access_UU); + } + + public org.compiere.model.I_AD_Task getAD_Task() throws RuntimeException { - return (I_AD_Task)MTable.get(getCtx(), I_AD_Task.Table_Name) + return (org.compiere.model.I_AD_Task)MTable.get(getCtx(), org.compiere.model.I_AD_Task.Table_Name) .getPO(getAD_Task_ID(), get_TrxName()); } /** Set OS Task. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_ToolBarButton.java b/org.adempiere.base/src/org/compiere/model/X_AD_ToolBarButton.java index f24d8ae3f8..17270619f6 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_ToolBarButton.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_ToolBarButton.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_ToolBarButton - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_ToolBarButton extends PO implements I_AD_ToolBarButton, I_Persistent { /** * */ - private static final long serialVersionUID = 20121025L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_ToolBarButton (Properties ctx, int AD_ToolBarButton_ID, String trxName) @@ -110,17 +110,17 @@ public class X_AD_ToolBarButton extends PO implements I_AD_ToolBarButton, I_Pers return (String)get_Value(COLUMNNAME_Action); } - /** Set Action Class Name. + /** Set Service Component Name. @param ActionClassName - The class name that implements the interface for toolbar actions + The service component name that implements the interface for toolbar actions */ public void setActionClassName (String ActionClassName) { set_Value (COLUMNNAME_ActionClassName, ActionClassName); } - /** Get Action Class Name. - @return The class name that implements the interface for toolbar actions + /** Get Service Component Name. + @return The service component name that implements the interface for toolbar actions */ public String getActionClassName () { diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_ToolBarButtonRestrict.java b/org.adempiere.base/src/org/compiere/model/X_AD_ToolBarButtonRestrict.java index ad13259d7b..a300694f99 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_ToolBarButtonRestrict.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_ToolBarButtonRestrict.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_ToolBarButtonRestrict - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_ToolBarButtonRestrict extends PO implements I_AD_ToolBarButtonRestrict, I_Persistent { /** * */ - private static final long serialVersionUID = 20121025L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_ToolBarButtonRestrict (Properties ctx, int AD_ToolBarButtonRestrict_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Tree.java b/org.adempiere.base/src/org/compiere/model/X_AD_Tree.java index 7371b37bb3..bcaebccd1c 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Tree.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Tree.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Tree - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Tree extends PO implements I_AD_Tree, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Tree (Properties ctx, int AD_Tree_ID, String trxName) @@ -98,6 +98,20 @@ public class X_AD_Tree extends PO implements I_AD_Tree, I_Persistent return ii.intValue(); } + /** Set AD_Tree_UU. + @param AD_Tree_UU AD_Tree_UU */ + public void setAD_Tree_UU (String AD_Tree_UU) + { + set_Value (COLUMNNAME_AD_Tree_UU, AD_Tree_UU); + } + + /** Get AD_Tree_UU. + @return AD_Tree_UU */ + public String getAD_Tree_UU () + { + return (String)get_Value(COLUMNNAME_AD_Tree_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_TreeBar.java b/org.adempiere.base/src/org/compiere/model/X_AD_TreeBar.java index e7ff9765e7..fb552da651 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_TreeBar.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_TreeBar.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_TreeBar - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_TreeBar extends PO implements I_AD_TreeBar, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_TreeBar (Properties ctx, int AD_TreeBar_ID, String trxName) @@ -72,9 +72,23 @@ public class X_AD_TreeBar extends PO implements I_AD_TreeBar, I_Persistent return sb.toString(); } - public I_AD_Tree getAD_Tree() throws RuntimeException + /** Set AD_TreeBar_UU. + @param AD_TreeBar_UU AD_TreeBar_UU */ + public void setAD_TreeBar_UU (String AD_TreeBar_UU) + { + set_Value (COLUMNNAME_AD_TreeBar_UU, AD_TreeBar_UU); + } + + /** Get AD_TreeBar_UU. + @return AD_TreeBar_UU */ + public String getAD_TreeBar_UU () + { + return (String)get_Value(COLUMNNAME_AD_TreeBar_UU); + } + + public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_ID(), get_TrxName()); } /** Set Tree. @@ -100,9 +114,9 @@ public class X_AD_TreeBar extends PO implements I_AD_TreeBar, I_Persistent return ii.intValue(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -133,9 +147,9 @@ public class X_AD_TreeBar extends PO implements I_AD_TreeBar, I_Persistent public void setNode_ID (int Node_ID) { if (Node_ID < 0) - set_Value (COLUMNNAME_Node_ID, null); + set_ValueNoCheck (COLUMNNAME_Node_ID, null); else - set_Value (COLUMNNAME_Node_ID, Integer.valueOf(Node_ID)); + set_ValueNoCheck (COLUMNNAME_Node_ID, Integer.valueOf(Node_ID)); } /** Get Node. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_TreeNode.java b/org.adempiere.base/src/org/compiere/model/X_AD_TreeNode.java index d7d5b9adab..17e16f53de 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_TreeNode.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_TreeNode.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_TreeNode - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_TreeNode extends PO implements I_AD_TreeNode, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_TreeNode (Properties ctx, int AD_TreeNode_ID, String trxName) @@ -71,9 +71,9 @@ public class X_AD_TreeNode extends PO implements I_AD_TreeNode, I_Persistent return sb.toString(); } - public I_AD_Tree getAD_Tree() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_ID(), get_TrxName()); } /** Set Tree. @@ -99,6 +99,20 @@ public class X_AD_TreeNode extends PO implements I_AD_TreeNode, I_Persistent return ii.intValue(); } + /** Set AD_TreeNode_UU. + @param AD_TreeNode_UU AD_TreeNode_UU */ + public void setAD_TreeNode_UU (String AD_TreeNode_UU) + { + set_Value (COLUMNNAME_AD_TreeNode_UU, AD_TreeNode_UU); + } + + /** Get AD_TreeNode_UU. + @return AD_TreeNode_UU */ + public String getAD_TreeNode_UU () + { + return (String)get_Value(COLUMNNAME_AD_TreeNode_UU); + } + /** Set Node. @param Node_ID Node */ public void setNode_ID (int Node_ID) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeBP.java b/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeBP.java index c49bc8c0b9..df29c8b467 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeBP.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeBP.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_TreeNodeBP - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_TreeNodeBP extends PO implements I_AD_TreeNodeBP, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_TreeNodeBP (Properties ctx, int AD_TreeNodeBP_ID, String trxName) @@ -70,9 +70,9 @@ public class X_AD_TreeNodeBP extends PO implements I_AD_TreeNodeBP, I_Persistent return sb.toString(); } - public I_AD_Tree getAD_Tree() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_ID(), get_TrxName()); } /** Set Tree. @@ -98,6 +98,20 @@ public class X_AD_TreeNodeBP extends PO implements I_AD_TreeNodeBP, I_Persistent return ii.intValue(); } + /** Set AD_TreeNodeBP_UU. + @param AD_TreeNodeBP_UU AD_TreeNodeBP_UU */ + public void setAD_TreeNodeBP_UU (String AD_TreeNodeBP_UU) + { + set_Value (COLUMNNAME_AD_TreeNodeBP_UU, AD_TreeNodeBP_UU); + } + + /** Get AD_TreeNodeBP_UU. + @return AD_TreeNodeBP_UU */ + public String getAD_TreeNodeBP_UU () + { + return (String)get_Value(COLUMNNAME_AD_TreeNodeBP_UU); + } + /** Set Node. @param Node_ID Node */ public void setNode_ID (int Node_ID) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeCMC.java b/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeCMC.java index bb7afc9469..5d80712c20 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeCMC.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeCMC.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_TreeNodeCMC - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_TreeNodeCMC extends PO implements I_AD_TreeNodeCMC, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_TreeNodeCMC (Properties ctx, int AD_TreeNodeCMC_ID, String trxName) @@ -72,9 +72,9 @@ public class X_AD_TreeNodeCMC extends PO implements I_AD_TreeNodeCMC, I_Persiste return sb.toString(); } - public I_AD_Tree getAD_Tree() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_ID(), get_TrxName()); } /** Set Tree. @@ -100,6 +100,20 @@ public class X_AD_TreeNodeCMC extends PO implements I_AD_TreeNodeCMC, I_Persiste return ii.intValue(); } + /** Set AD_TreeNodeCMC_UU. + @param AD_TreeNodeCMC_UU AD_TreeNodeCMC_UU */ + public void setAD_TreeNodeCMC_UU (String AD_TreeNodeCMC_UU) + { + set_Value (COLUMNNAME_AD_TreeNodeCMC_UU, AD_TreeNodeCMC_UU); + } + + /** Get AD_TreeNodeCMC_UU. + @return AD_TreeNodeCMC_UU */ + public String getAD_TreeNodeCMC_UU () + { + return (String)get_Value(COLUMNNAME_AD_TreeNodeCMC_UU); + } + /** Set Node. @param Node_ID Node */ public void setNode_ID (int Node_ID) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeCMM.java b/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeCMM.java index 41cff69ee7..e7b66bdbc7 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeCMM.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeCMM.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_TreeNodeCMM - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_TreeNodeCMM extends PO implements I_AD_TreeNodeCMM, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_TreeNodeCMM (Properties ctx, int AD_TreeNodeCMM_ID, String trxName) @@ -72,9 +72,9 @@ public class X_AD_TreeNodeCMM extends PO implements I_AD_TreeNodeCMM, I_Persiste return sb.toString(); } - public I_AD_Tree getAD_Tree() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_ID(), get_TrxName()); } /** Set Tree. @@ -100,6 +100,20 @@ public class X_AD_TreeNodeCMM extends PO implements I_AD_TreeNodeCMM, I_Persiste return ii.intValue(); } + /** Set AD_TreeNodeCMM_UU. + @param AD_TreeNodeCMM_UU AD_TreeNodeCMM_UU */ + public void setAD_TreeNodeCMM_UU (String AD_TreeNodeCMM_UU) + { + set_Value (COLUMNNAME_AD_TreeNodeCMM_UU, AD_TreeNodeCMM_UU); + } + + /** Get AD_TreeNodeCMM_UU. + @return AD_TreeNodeCMM_UU */ + public String getAD_TreeNodeCMM_UU () + { + return (String)get_Value(COLUMNNAME_AD_TreeNodeCMM_UU); + } + /** Set Node. @param Node_ID Node */ public void setNode_ID (int Node_ID) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeCMS.java b/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeCMS.java index 142c24976e..0788105bb2 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeCMS.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeCMS.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_TreeNodeCMS - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_TreeNodeCMS extends PO implements I_AD_TreeNodeCMS, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_TreeNodeCMS (Properties ctx, int AD_TreeNodeCMS_ID, String trxName) @@ -72,9 +72,9 @@ public class X_AD_TreeNodeCMS extends PO implements I_AD_TreeNodeCMS, I_Persiste return sb.toString(); } - public I_AD_Tree getAD_Tree() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_ID(), get_TrxName()); } /** Set Tree. @@ -100,6 +100,20 @@ public class X_AD_TreeNodeCMS extends PO implements I_AD_TreeNodeCMS, I_Persiste return ii.intValue(); } + /** Set AD_TreeNodeCMS_UU. + @param AD_TreeNodeCMS_UU AD_TreeNodeCMS_UU */ + public void setAD_TreeNodeCMS_UU (String AD_TreeNodeCMS_UU) + { + set_Value (COLUMNNAME_AD_TreeNodeCMS_UU, AD_TreeNodeCMS_UU); + } + + /** Get AD_TreeNodeCMS_UU. + @return AD_TreeNodeCMS_UU */ + public String getAD_TreeNodeCMS_UU () + { + return (String)get_Value(COLUMNNAME_AD_TreeNodeCMS_UU); + } + /** Set Node. @param Node_ID Node */ public void setNode_ID (int Node_ID) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeCMT.java b/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeCMT.java index c9551494bb..1e154eda09 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeCMT.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeCMT.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_TreeNodeCMT - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_TreeNodeCMT extends PO implements I_AD_TreeNodeCMT, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_TreeNodeCMT (Properties ctx, int AD_TreeNodeCMT_ID, String trxName) @@ -72,9 +72,9 @@ public class X_AD_TreeNodeCMT extends PO implements I_AD_TreeNodeCMT, I_Persiste return sb.toString(); } - public I_AD_Tree getAD_Tree() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_ID(), get_TrxName()); } /** Set Tree. @@ -100,6 +100,20 @@ public class X_AD_TreeNodeCMT extends PO implements I_AD_TreeNodeCMT, I_Persiste return ii.intValue(); } + /** Set AD_TreeNodeCMT_UU. + @param AD_TreeNodeCMT_UU AD_TreeNodeCMT_UU */ + public void setAD_TreeNodeCMT_UU (String AD_TreeNodeCMT_UU) + { + set_Value (COLUMNNAME_AD_TreeNodeCMT_UU, AD_TreeNodeCMT_UU); + } + + /** Get AD_TreeNodeCMT_UU. + @return AD_TreeNodeCMT_UU */ + public String getAD_TreeNodeCMT_UU () + { + return (String)get_Value(COLUMNNAME_AD_TreeNodeCMT_UU); + } + /** Set Node. @param Node_ID Node */ public void setNode_ID (int Node_ID) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeMM.java b/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeMM.java index 3dd8008fe5..2856d012f0 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeMM.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeMM.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_TreeNodeMM - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_TreeNodeMM extends PO implements I_AD_TreeNodeMM, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_TreeNodeMM (Properties ctx, int AD_TreeNodeMM_ID, String trxName) @@ -70,9 +70,9 @@ public class X_AD_TreeNodeMM extends PO implements I_AD_TreeNodeMM, I_Persistent return sb.toString(); } - public I_AD_Tree getAD_Tree() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_ID(), get_TrxName()); } /** Set Tree. @@ -98,6 +98,20 @@ public class X_AD_TreeNodeMM extends PO implements I_AD_TreeNodeMM, I_Persistent return ii.intValue(); } + /** Set AD_TreeNodeMM_UU. + @param AD_TreeNodeMM_UU AD_TreeNodeMM_UU */ + public void setAD_TreeNodeMM_UU (String AD_TreeNodeMM_UU) + { + set_Value (COLUMNNAME_AD_TreeNodeMM_UU, AD_TreeNodeMM_UU); + } + + /** Get AD_TreeNodeMM_UU. + @return AD_TreeNodeMM_UU */ + public String getAD_TreeNodeMM_UU () + { + return (String)get_Value(COLUMNNAME_AD_TreeNodeMM_UU); + } + /** Set Node. @param Node_ID Node */ public void setNode_ID (int Node_ID) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodePR.java b/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodePR.java index b6dbcc6a53..991311743b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodePR.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodePR.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_TreeNodePR - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_TreeNodePR extends PO implements I_AD_TreeNodePR, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_TreeNodePR (Properties ctx, int AD_TreeNodePR_ID, String trxName) @@ -70,9 +70,9 @@ public class X_AD_TreeNodePR extends PO implements I_AD_TreeNodePR, I_Persistent return sb.toString(); } - public I_AD_Tree getAD_Tree() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_ID(), get_TrxName()); } /** Set Tree. @@ -98,6 +98,20 @@ public class X_AD_TreeNodePR extends PO implements I_AD_TreeNodePR, I_Persistent return ii.intValue(); } + /** Set AD_TreeNodePR_UU. + @param AD_TreeNodePR_UU AD_TreeNodePR_UU */ + public void setAD_TreeNodePR_UU (String AD_TreeNodePR_UU) + { + set_Value (COLUMNNAME_AD_TreeNodePR_UU, AD_TreeNodePR_UU); + } + + /** Get AD_TreeNodePR_UU. + @return AD_TreeNodePR_UU */ + public String getAD_TreeNodePR_UU () + { + return (String)get_Value(COLUMNNAME_AD_TreeNodePR_UU); + } + /** Set Node. @param Node_ID Node */ public void setNode_ID (int Node_ID) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeU1.java b/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeU1.java index e1154c22d6..67af293e15 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeU1.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeU1.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_TreeNodeU1 - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_TreeNodeU1 extends PO implements I_AD_TreeNodeU1, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_TreeNodeU1 (Properties ctx, int AD_TreeNodeU1_ID, String trxName) @@ -72,9 +72,9 @@ public class X_AD_TreeNodeU1 extends PO implements I_AD_TreeNodeU1, I_Persistent return sb.toString(); } - public I_AD_Tree getAD_Tree() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_ID(), get_TrxName()); } /** Set Tree. @@ -100,6 +100,20 @@ public class X_AD_TreeNodeU1 extends PO implements I_AD_TreeNodeU1, I_Persistent return ii.intValue(); } + /** Set AD_TreeNodeU1_UU. + @param AD_TreeNodeU1_UU AD_TreeNodeU1_UU */ + public void setAD_TreeNodeU1_UU (String AD_TreeNodeU1_UU) + { + set_Value (COLUMNNAME_AD_TreeNodeU1_UU, AD_TreeNodeU1_UU); + } + + /** Get AD_TreeNodeU1_UU. + @return AD_TreeNodeU1_UU */ + public String getAD_TreeNodeU1_UU () + { + return (String)get_Value(COLUMNNAME_AD_TreeNodeU1_UU); + } + /** Set Node. @param Node_ID Node */ public void setNode_ID (int Node_ID) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeU2.java b/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeU2.java index 7b30377023..aa573ae234 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeU2.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeU2.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_TreeNodeU2 - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_TreeNodeU2 extends PO implements I_AD_TreeNodeU2, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_TreeNodeU2 (Properties ctx, int AD_TreeNodeU2_ID, String trxName) @@ -72,9 +72,9 @@ public class X_AD_TreeNodeU2 extends PO implements I_AD_TreeNodeU2, I_Persistent return sb.toString(); } - public I_AD_Tree getAD_Tree() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_ID(), get_TrxName()); } /** Set Tree. @@ -100,6 +100,20 @@ public class X_AD_TreeNodeU2 extends PO implements I_AD_TreeNodeU2, I_Persistent return ii.intValue(); } + /** Set AD_TreeNodeU2_UU. + @param AD_TreeNodeU2_UU AD_TreeNodeU2_UU */ + public void setAD_TreeNodeU2_UU (String AD_TreeNodeU2_UU) + { + set_Value (COLUMNNAME_AD_TreeNodeU2_UU, AD_TreeNodeU2_UU); + } + + /** Get AD_TreeNodeU2_UU. + @return AD_TreeNodeU2_UU */ + public String getAD_TreeNodeU2_UU () + { + return (String)get_Value(COLUMNNAME_AD_TreeNodeU2_UU); + } + /** Set Node. @param Node_ID Node */ public void setNode_ID (int Node_ID) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeU3.java b/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeU3.java index ac8066acdf..8f563d5fe1 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeU3.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeU3.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_TreeNodeU3 - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_TreeNodeU3 extends PO implements I_AD_TreeNodeU3, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_TreeNodeU3 (Properties ctx, int AD_TreeNodeU3_ID, String trxName) @@ -72,9 +72,9 @@ public class X_AD_TreeNodeU3 extends PO implements I_AD_TreeNodeU3, I_Persistent return sb.toString(); } - public I_AD_Tree getAD_Tree() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_ID(), get_TrxName()); } /** Set Tree. @@ -100,6 +100,20 @@ public class X_AD_TreeNodeU3 extends PO implements I_AD_TreeNodeU3, I_Persistent return ii.intValue(); } + /** Set AD_TreeNodeU3_UU. + @param AD_TreeNodeU3_UU AD_TreeNodeU3_UU */ + public void setAD_TreeNodeU3_UU (String AD_TreeNodeU3_UU) + { + set_Value (COLUMNNAME_AD_TreeNodeU3_UU, AD_TreeNodeU3_UU); + } + + /** Get AD_TreeNodeU3_UU. + @return AD_TreeNodeU3_UU */ + public String getAD_TreeNodeU3_UU () + { + return (String)get_Value(COLUMNNAME_AD_TreeNodeU3_UU); + } + /** Set Node. @param Node_ID Node */ public void setNode_ID (int Node_ID) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeU4.java b/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeU4.java index 28d40835dc..706b82bb64 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeU4.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_TreeNodeU4.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_TreeNodeU4 - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_TreeNodeU4 extends PO implements I_AD_TreeNodeU4, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_TreeNodeU4 (Properties ctx, int AD_TreeNodeU4_ID, String trxName) @@ -72,9 +72,9 @@ public class X_AD_TreeNodeU4 extends PO implements I_AD_TreeNodeU4, I_Persistent return sb.toString(); } - public I_AD_Tree getAD_Tree() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_ID(), get_TrxName()); } /** Set Tree. @@ -100,6 +100,20 @@ public class X_AD_TreeNodeU4 extends PO implements I_AD_TreeNodeU4, I_Persistent return ii.intValue(); } + /** Set AD_TreeNodeU4_UU. + @param AD_TreeNodeU4_UU AD_TreeNodeU4_UU */ + public void setAD_TreeNodeU4_UU (String AD_TreeNodeU4_UU) + { + set_Value (COLUMNNAME_AD_TreeNodeU4_UU, AD_TreeNodeU4_UU); + } + + /** Get AD_TreeNodeU4_UU. + @return AD_TreeNodeU4_UU */ + public String getAD_TreeNodeU4_UU () + { + return (String)get_Value(COLUMNNAME_AD_TreeNodeU4_UU); + } + /** Set Node. @param Node_ID Node */ public void setNode_ID (int Node_ID) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_User.java b/org.adempiere.base/src/org/compiere/model/X_AD_User.java index 1add249a9f..a429eb4f5f 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_User.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_User.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_User - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_User extends PO implements I_AD_User, I_Persistent { /** * */ - private static final long serialVersionUID = 20120910L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_User (Properties ctx, int AD_User_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_UserBPAccess.java b/org.adempiere.base/src/org/compiere/model/X_AD_UserBPAccess.java index 6519a019b8..6827bd46f0 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_UserBPAccess.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_UserBPAccess.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_UserBPAccess - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_UserBPAccess extends PO implements I_AD_UserBPAccess, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_UserBPAccess (Properties ctx, int AD_UserBPAccess_ID, String trxName) @@ -94,9 +94,23 @@ public class X_AD_UserBPAccess extends PO implements I_AD_UserBPAccess, I_Persis return ii.intValue(); } - public I_AD_User getAD_User() throws RuntimeException + /** Set AD_UserBPAccess_UU. + @param AD_UserBPAccess_UU AD_UserBPAccess_UU */ + public void setAD_UserBPAccess_UU (String AD_UserBPAccess_UU) + { + set_Value (COLUMNNAME_AD_UserBPAccess_UU, AD_UserBPAccess_UU); + } + + /** Get AD_UserBPAccess_UU. + @return AD_UserBPAccess_UU */ + public String getAD_UserBPAccess_UU () + { + return (String)get_Value(COLUMNNAME_AD_UserBPAccess_UU); + } + + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -226,9 +240,9 @@ public class X_AD_UserBPAccess extends PO implements I_AD_UserBPAccess, I_Persis return (String)get_Value(COLUMNNAME_DocBaseType); } - public I_R_RequestType getR_RequestType() throws RuntimeException + public org.compiere.model.I_R_RequestType getR_RequestType() throws RuntimeException { - return (I_R_RequestType)MTable.get(getCtx(), I_R_RequestType.Table_Name) + return (org.compiere.model.I_R_RequestType)MTable.get(getCtx(), org.compiere.model.I_R_RequestType.Table_Name) .getPO(getR_RequestType_ID(), get_TrxName()); } /** Set Request Type. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_UserDef_Field.java b/org.adempiere.base/src/org/compiere/model/X_AD_UserDef_Field.java index 6d84180dfb..be5f737ee1 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_UserDef_Field.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_UserDef_Field.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_UserDef_Field - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_UserDef_Field extends PO implements I_AD_UserDef_Field, I_Persistent { /** * */ - private static final long serialVersionUID = 20120404L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_UserDef_Field (Properties ctx, int AD_UserDef_Field_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_UserDef_Tab.java b/org.adempiere.base/src/org/compiere/model/X_AD_UserDef_Tab.java index ce1a236487..d93265bd69 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_UserDef_Tab.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_UserDef_Tab.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_UserDef_Tab - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_UserDef_Tab extends PO implements I_AD_UserDef_Tab, I_Persistent { /** * */ - private static final long serialVersionUID = 20120404L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_UserDef_Tab (Properties ctx, int AD_UserDef_Tab_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_UserDef_Win.java b/org.adempiere.base/src/org/compiere/model/X_AD_UserDef_Win.java index b954c014db..329d072bec 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_UserDef_Win.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_UserDef_Win.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_UserDef_Win - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_UserDef_Win extends PO implements I_AD_UserDef_Win, I_Persistent { /** * */ - private static final long serialVersionUID = 20120404L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_UserDef_Win (Properties ctx, int AD_UserDef_Win_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_UserMail.java b/org.adempiere.base/src/org/compiere/model/X_AD_UserMail.java index a2fa1fc5df..e724f48ca7 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_UserMail.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_UserMail.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_UserMail - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_UserMail extends PO implements I_AD_UserMail, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_UserMail (Properties ctx, int AD_UserMail_ID, String trxName) @@ -71,9 +71,9 @@ public class X_AD_UserMail extends PO implements I_AD_UserMail, I_Persistent return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -130,6 +130,20 @@ public class X_AD_UserMail extends PO implements I_AD_UserMail, I_Persistent return ii.intValue(); } + /** Set AD_UserMail_UU. + @param AD_UserMail_UU AD_UserMail_UU */ + public void setAD_UserMail_UU (String AD_UserMail_UU) + { + set_Value (COLUMNNAME_AD_UserMail_UU, AD_UserMail_UU); + } + + /** Get AD_UserMail_UU. + @return AD_UserMail_UU */ + public String getAD_UserMail_UU () + { + return (String)get_Value(COLUMNNAME_AD_UserMail_UU); + } + /** Set Delivery Confirmation. @param DeliveryConfirmation EMail Delivery confirmation @@ -202,9 +216,9 @@ public class X_AD_UserMail extends PO implements I_AD_UserMail, I_Persistent return (String)get_Value(COLUMNNAME_MessageID); } - public I_R_MailText getR_MailText() throws RuntimeException + public org.compiere.model.I_R_MailText getR_MailText() throws RuntimeException { - return (I_R_MailText)MTable.get(getCtx(), I_R_MailText.Table_Name) + return (org.compiere.model.I_R_MailText)MTable.get(getCtx(), org.compiere.model.I_R_MailText.Table_Name) .getPO(getR_MailText_ID(), get_TrxName()); } /** Set Mail Template. @@ -247,9 +261,9 @@ public class X_AD_UserMail extends PO implements I_AD_UserMail, I_Persistent return (String)get_Value(COLUMNNAME_Subject); } - public I_W_MailMsg getW_MailMsg() throws RuntimeException + public org.compiere.model.I_W_MailMsg getW_MailMsg() throws RuntimeException { - return (I_W_MailMsg)MTable.get(getCtx(), I_W_MailMsg.Table_Name) + return (org.compiere.model.I_W_MailMsg)MTable.get(getCtx(), org.compiere.model.I_W_MailMsg.Table_Name) .getPO(getW_MailMsg_ID(), get_TrxName()); } /** Set Mail Message. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_UserQuery.java b/org.adempiere.base/src/org/compiere/model/X_AD_UserQuery.java index 217cd36e05..bf669cad4b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_UserQuery.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_UserQuery.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_UserQuery - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_UserQuery extends PO implements I_AD_UserQuery, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_UserQuery (Properties ctx, int AD_UserQuery_ID, String trxName) @@ -73,9 +73,9 @@ public class X_AD_UserQuery extends PO implements I_AD_UserQuery, I_Persistent return sb.toString(); } - public I_AD_Tab getAD_Tab() throws RuntimeException + public org.compiere.model.I_AD_Tab getAD_Tab() throws RuntimeException { - return (I_AD_Tab)MTable.get(getCtx(), I_AD_Tab.Table_Name) + return (org.compiere.model.I_AD_Tab)MTable.get(getCtx(), org.compiere.model.I_AD_Tab.Table_Name) .getPO(getAD_Tab_ID(), get_TrxName()); } /** Set Tab. @@ -101,9 +101,9 @@ public class X_AD_UserQuery extends PO implements I_AD_UserQuery, I_Persistent return ii.intValue(); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @@ -129,9 +129,9 @@ public class X_AD_UserQuery extends PO implements I_AD_UserQuery, I_Persistent return ii.intValue(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -180,6 +180,20 @@ public class X_AD_UserQuery extends PO implements I_AD_UserQuery, I_Persistent return ii.intValue(); } + /** Set AD_UserQuery_UU. + @param AD_UserQuery_UU AD_UserQuery_UU */ + public void setAD_UserQuery_UU (String AD_UserQuery_UU) + { + set_Value (COLUMNNAME_AD_UserQuery_UU, AD_UserQuery_UU); + } + + /** Get AD_UserQuery_UU. + @return AD_UserQuery_UU */ + public String getAD_UserQuery_UU () + { + return (String)get_Value(COLUMNNAME_AD_UserQuery_UU); + } + /** Set Validation code. @param Code Validation Code diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_User_OrgAccess.java b/org.adempiere.base/src/org/compiere/model/X_AD_User_OrgAccess.java index 81ea6dcdb1..e465dff5ea 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_User_OrgAccess.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_User_OrgAccess.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_User_OrgAccess - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_User_OrgAccess extends PO implements I_AD_User_OrgAccess, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_User_OrgAccess (Properties ctx, int AD_User_OrgAccess_ID, String trxName) @@ -71,9 +71,9 @@ public class X_AD_User_OrgAccess extends PO implements I_AD_User_OrgAccess, I_Pe return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -99,6 +99,20 @@ public class X_AD_User_OrgAccess extends PO implements I_AD_User_OrgAccess, I_Pe return ii.intValue(); } + /** Set AD_User_OrgAccess_UU. + @param AD_User_OrgAccess_UU AD_User_OrgAccess_UU */ + public void setAD_User_OrgAccess_UU (String AD_User_OrgAccess_UU) + { + set_Value (COLUMNNAME_AD_User_OrgAccess_UU, AD_User_OrgAccess_UU); + } + + /** Get AD_User_OrgAccess_UU. + @return AD_User_OrgAccess_UU */ + public String getAD_User_OrgAccess_UU () + { + return (String)get_Value(COLUMNNAME_AD_User_OrgAccess_UU); + } + /** Set Read Only. @param IsReadOnly Field is read only diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_User_Roles.java b/org.adempiere.base/src/org/compiere/model/X_AD_User_Roles.java index 74a4e178dd..8d7e6360d2 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_User_Roles.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_User_Roles.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_User_Roles - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_User_Roles extends PO implements I_AD_User_Roles, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_User_Roles (Properties ctx, int AD_User_Roles_ID, String trxName) @@ -70,9 +70,9 @@ public class X_AD_User_Roles extends PO implements I_AD_User_Roles, I_Persistent return sb.toString(); } - public I_AD_Role getAD_Role() throws RuntimeException + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException { - return (I_AD_Role)MTable.get(getCtx(), I_AD_Role.Table_Name) + return (org.compiere.model.I_AD_Role)MTable.get(getCtx(), org.compiere.model.I_AD_Role.Table_Name) .getPO(getAD_Role_ID(), get_TrxName()); } /** Set Role. @@ -98,9 +98,9 @@ public class X_AD_User_Roles extends PO implements I_AD_User_Roles, I_Persistent return ii.intValue(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -125,4 +125,18 @@ public class X_AD_User_Roles extends PO implements I_AD_User_Roles, I_Persistent return 0; return ii.intValue(); } + + /** Set AD_User_Roles_UU. + @param AD_User_Roles_UU AD_User_Roles_UU */ + public void setAD_User_Roles_UU (String AD_User_Roles_UU) + { + set_Value (COLUMNNAME_AD_User_Roles_UU, AD_User_Roles_UU); + } + + /** Get AD_User_Roles_UU. + @return AD_User_Roles_UU */ + public String getAD_User_Roles_UU () + { + return (String)get_Value(COLUMNNAME_AD_User_Roles_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_User_Substitute.java b/org.adempiere.base/src/org/compiere/model/X_AD_User_Substitute.java index b1b39e3f73..87ec16a121 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_User_Substitute.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_User_Substitute.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_User_Substitute - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_User_Substitute extends PO implements I_AD_User_Substitute, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_User_Substitute (Properties ctx, int AD_User_Substitute_ID, String trxName) @@ -74,9 +74,9 @@ public class X_AD_User_Substitute extends PO implements I_AD_User_Substitute, I_ return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -125,6 +125,20 @@ public class X_AD_User_Substitute extends PO implements I_AD_User_Substitute, I_ return ii.intValue(); } + /** Set AD_User_Substitute_UU. + @param AD_User_Substitute_UU AD_User_Substitute_UU */ + public void setAD_User_Substitute_UU (String AD_User_Substitute_UU) + { + set_Value (COLUMNNAME_AD_User_Substitute_UU, AD_User_Substitute_UU); + } + + /** Get AD_User_Substitute_UU. + @return AD_User_Substitute_UU */ + public String getAD_User_Substitute_UU () + { + return (String)get_Value(COLUMNNAME_AD_User_Substitute_UU); + } + /** Set Description. @param Description Optional short description of the record @@ -167,9 +181,9 @@ public class X_AD_User_Substitute extends PO implements I_AD_User_Substitute, I_ return new KeyNamePair(get_ID(), getName()); } - public I_AD_User getSubstitute() throws RuntimeException + public org.compiere.model.I_AD_User getSubstitute() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getSubstitute_ID(), get_TrxName()); } /** Set Substitute. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Val_Rule.java b/org.adempiere.base/src/org/compiere/model/X_AD_Val_Rule.java index afc3bc4ba2..c306ad1bc9 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Val_Rule.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Val_Rule.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Val_Rule - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Val_Rule extends PO implements I_AD_Val_Rule, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Val_Rule (Properties ctx, int AD_Val_Rule_ID, String trxName) @@ -97,6 +97,20 @@ public class X_AD_Val_Rule extends PO implements I_AD_Val_Rule, I_Persistent return ii.intValue(); } + /** Set AD_Val_Rule_UU. + @param AD_Val_Rule_UU AD_Val_Rule_UU */ + public void setAD_Val_Rule_UU (String AD_Val_Rule_UU) + { + set_Value (COLUMNNAME_AD_Val_Rule_UU, AD_Val_Rule_UU); + } + + /** Get AD_Val_Rule_UU. + @return AD_Val_Rule_UU */ + public String getAD_Val_Rule_UU () + { + return (String)get_Value(COLUMNNAME_AD_Val_Rule_UU); + } + /** Set Validation code. @param Code Validation Code diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_WF_Activity.java b/org.adempiere.base/src/org/compiere/model/X_AD_WF_Activity.java index 5576e7b671..da75c88e29 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_WF_Activity.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_WF_Activity.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_WF_Activity - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_WF_Activity extends PO implements I_AD_WF_Activity, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_WF_Activity (Properties ctx, int AD_WF_Activity_ID, String trxName) @@ -78,9 +78,9 @@ public class X_AD_WF_Activity extends PO implements I_AD_WF_Activity, I_Persiste return sb.toString(); } - public I_AD_Message getAD_Message() throws RuntimeException + public org.compiere.model.I_AD_Message getAD_Message() throws RuntimeException { - return (I_AD_Message)MTable.get(getCtx(), I_AD_Message.Table_Name) + return (org.compiere.model.I_AD_Message)MTable.get(getCtx(), org.compiere.model.I_AD_Message.Table_Name) .getPO(getAD_Message_ID(), get_TrxName()); } /** Set Message. @@ -106,9 +106,9 @@ public class X_AD_WF_Activity extends PO implements I_AD_WF_Activity, I_Persiste return ii.intValue(); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @@ -134,9 +134,9 @@ public class X_AD_WF_Activity extends PO implements I_AD_WF_Activity, I_Persiste return ii.intValue(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -185,9 +185,23 @@ public class X_AD_WF_Activity extends PO implements I_AD_WF_Activity, I_Persiste return ii.intValue(); } - public I_AD_WF_Node getAD_WF_Node() throws RuntimeException + /** Set AD_WF_Activity_UU. + @param AD_WF_Activity_UU AD_WF_Activity_UU */ + public void setAD_WF_Activity_UU (String AD_WF_Activity_UU) + { + set_Value (COLUMNNAME_AD_WF_Activity_UU, AD_WF_Activity_UU); + } + + /** Get AD_WF_Activity_UU. + @return AD_WF_Activity_UU */ + public String getAD_WF_Activity_UU () + { + return (String)get_Value(COLUMNNAME_AD_WF_Activity_UU); + } + + public org.compiere.model.I_AD_WF_Node getAD_WF_Node() throws RuntimeException { - return (I_AD_WF_Node)MTable.get(getCtx(), I_AD_WF_Node.Table_Name) + return (org.compiere.model.I_AD_WF_Node)MTable.get(getCtx(), org.compiere.model.I_AD_WF_Node.Table_Name) .getPO(getAD_WF_Node_ID(), get_TrxName()); } /** Set Node. @@ -221,9 +235,9 @@ public class X_AD_WF_Activity extends PO implements I_AD_WF_Activity, I_Persiste return new KeyNamePair(get_ID(), String.valueOf(getAD_WF_Node_ID())); } - public I_AD_WF_Process getAD_WF_Process() throws RuntimeException + public org.compiere.model.I_AD_WF_Process getAD_WF_Process() throws RuntimeException { - return (I_AD_WF_Process)MTable.get(getCtx(), I_AD_WF_Process.Table_Name) + return (org.compiere.model.I_AD_WF_Process)MTable.get(getCtx(), org.compiere.model.I_AD_WF_Process.Table_Name) .getPO(getAD_WF_Process_ID(), get_TrxName()); } /** Set Workflow Process. @@ -249,9 +263,9 @@ public class X_AD_WF_Activity extends PO implements I_AD_WF_Activity, I_Persiste return ii.intValue(); } - public I_AD_WF_Responsible getAD_WF_Responsible() throws RuntimeException + public org.compiere.model.I_AD_WF_Responsible getAD_WF_Responsible() throws RuntimeException { - return (I_AD_WF_Responsible)MTable.get(getCtx(), I_AD_WF_Responsible.Table_Name) + return (org.compiere.model.I_AD_WF_Responsible)MTable.get(getCtx(), org.compiere.model.I_AD_WF_Responsible.Table_Name) .getPO(getAD_WF_Responsible_ID(), get_TrxName()); } /** Set Workflow Responsible. @@ -277,9 +291,9 @@ public class X_AD_WF_Activity extends PO implements I_AD_WF_Activity, I_Persiste return ii.intValue(); } - public I_AD_Workflow getAD_Workflow() throws RuntimeException + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException { - return (I_AD_Workflow)MTable.get(getCtx(), I_AD_Workflow.Table_Name) + return (org.compiere.model.I_AD_Workflow)MTable.get(getCtx(), org.compiere.model.I_AD_Workflow.Table_Name) .getPO(getAD_Workflow_ID(), get_TrxName()); } /** Set Workflow. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_WF_ActivityResult.java b/org.adempiere.base/src/org/compiere/model/X_AD_WF_ActivityResult.java index 1f48924284..0f7842339a 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_WF_ActivityResult.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_WF_ActivityResult.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_WF_ActivityResult - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_WF_ActivityResult extends PO implements I_AD_WF_ActivityResult, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_WF_ActivityResult (Properties ctx, int AD_WF_ActivityResult_ID, String trxName) @@ -72,9 +72,9 @@ public class X_AD_WF_ActivityResult extends PO implements I_AD_WF_ActivityResult return sb.toString(); } - public I_AD_WF_Activity getAD_WF_Activity() throws RuntimeException + public org.compiere.model.I_AD_WF_Activity getAD_WF_Activity() throws RuntimeException { - return (I_AD_WF_Activity)MTable.get(getCtx(), I_AD_WF_Activity.Table_Name) + return (org.compiere.model.I_AD_WF_Activity)MTable.get(getCtx(), org.compiere.model.I_AD_WF_Activity.Table_Name) .getPO(getAD_WF_Activity_ID(), get_TrxName()); } /** Set Workflow Activity. @@ -131,6 +131,20 @@ public class X_AD_WF_ActivityResult extends PO implements I_AD_WF_ActivityResult return ii.intValue(); } + /** Set AD_WF_ActivityResult_UU. + @param AD_WF_ActivityResult_UU AD_WF_ActivityResult_UU */ + public void setAD_WF_ActivityResult_UU (String AD_WF_ActivityResult_UU) + { + set_Value (COLUMNNAME_AD_WF_ActivityResult_UU, AD_WF_ActivityResult_UU); + } + + /** Get AD_WF_ActivityResult_UU. + @return AD_WF_ActivityResult_UU */ + public String getAD_WF_ActivityResult_UU () + { + return (String)get_Value(COLUMNNAME_AD_WF_ActivityResult_UU); + } + /** Set Attribute Name. @param AttributeName Name of the Attribute diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_WF_Block.java b/org.adempiere.base/src/org/compiere/model/X_AD_WF_Block.java index c70c3773a8..da9a93d961 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_WF_Block.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_WF_Block.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_WF_Block - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_WF_Block extends PO implements I_AD_WF_Block, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_WF_Block (Properties ctx, int AD_WF_Block_ID, String trxName) @@ -95,9 +95,23 @@ public class X_AD_WF_Block extends PO implements I_AD_WF_Block, I_Persistent return ii.intValue(); } - public I_AD_Workflow getAD_Workflow() throws RuntimeException + /** Set AD_WF_Block_UU. + @param AD_WF_Block_UU AD_WF_Block_UU */ + public void setAD_WF_Block_UU (String AD_WF_Block_UU) + { + set_Value (COLUMNNAME_AD_WF_Block_UU, AD_WF_Block_UU); + } + + /** Get AD_WF_Block_UU. + @return AD_WF_Block_UU */ + public String getAD_WF_Block_UU () + { + return (String)get_Value(COLUMNNAME_AD_WF_Block_UU); + } + + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException { - return (I_AD_Workflow)MTable.get(getCtx(), I_AD_Workflow.Table_Name) + return (org.compiere.model.I_AD_Workflow)MTable.get(getCtx(), org.compiere.model.I_AD_Workflow.Table_Name) .getPO(getAD_Workflow_ID(), get_TrxName()); } /** Set Workflow. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_WF_EventAudit.java b/org.adempiere.base/src/org/compiere/model/X_AD_WF_EventAudit.java index a9f9c1ef40..acd6f1e028 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_WF_EventAudit.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_WF_EventAudit.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for AD_WF_EventAudit - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_WF_EventAudit extends PO implements I_AD_WF_EventAudit, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_WF_EventAudit (Properties ctx, int AD_WF_EventAudit_ID, String trxName) @@ -80,9 +80,9 @@ public class X_AD_WF_EventAudit extends PO implements I_AD_WF_EventAudit, I_Pers return sb.toString(); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @@ -108,9 +108,9 @@ public class X_AD_WF_EventAudit extends PO implements I_AD_WF_EventAudit, I_Pers return ii.intValue(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -167,9 +167,23 @@ public class X_AD_WF_EventAudit extends PO implements I_AD_WF_EventAudit, I_Pers return new KeyNamePair(get_ID(), String.valueOf(getAD_WF_EventAudit_ID())); } - public I_AD_WF_Node getAD_WF_Node() throws RuntimeException + /** Set AD_WF_EventAudit_UU. + @param AD_WF_EventAudit_UU AD_WF_EventAudit_UU */ + public void setAD_WF_EventAudit_UU (String AD_WF_EventAudit_UU) + { + set_Value (COLUMNNAME_AD_WF_EventAudit_UU, AD_WF_EventAudit_UU); + } + + /** Get AD_WF_EventAudit_UU. + @return AD_WF_EventAudit_UU */ + public String getAD_WF_EventAudit_UU () + { + return (String)get_Value(COLUMNNAME_AD_WF_EventAudit_UU); + } + + public org.compiere.model.I_AD_WF_Node getAD_WF_Node() throws RuntimeException { - return (I_AD_WF_Node)MTable.get(getCtx(), I_AD_WF_Node.Table_Name) + return (org.compiere.model.I_AD_WF_Node)MTable.get(getCtx(), org.compiere.model.I_AD_WF_Node.Table_Name) .getPO(getAD_WF_Node_ID(), get_TrxName()); } /** Set Node. @@ -195,9 +209,9 @@ public class X_AD_WF_EventAudit extends PO implements I_AD_WF_EventAudit, I_Pers return ii.intValue(); } - public I_AD_WF_Process getAD_WF_Process() throws RuntimeException + public org.compiere.model.I_AD_WF_Process getAD_WF_Process() throws RuntimeException { - return (I_AD_WF_Process)MTable.get(getCtx(), I_AD_WF_Process.Table_Name) + return (org.compiere.model.I_AD_WF_Process)MTable.get(getCtx(), org.compiere.model.I_AD_WF_Process.Table_Name) .getPO(getAD_WF_Process_ID(), get_TrxName()); } /** Set Workflow Process. @@ -223,9 +237,9 @@ public class X_AD_WF_EventAudit extends PO implements I_AD_WF_EventAudit, I_Pers return ii.intValue(); } - public I_AD_WF_Responsible getAD_WF_Responsible() throws RuntimeException + public org.compiere.model.I_AD_WF_Responsible getAD_WF_Responsible() throws RuntimeException { - return (I_AD_WF_Responsible)MTable.get(getCtx(), I_AD_WF_Responsible.Table_Name) + return (org.compiere.model.I_AD_WF_Responsible)MTable.get(getCtx(), org.compiere.model.I_AD_WF_Responsible.Table_Name) .getPO(getAD_WF_Responsible_ID(), get_TrxName()); } /** Set Workflow Responsible. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_WF_NextCondition.java b/org.adempiere.base/src/org/compiere/model/X_AD_WF_NextCondition.java index 35ef1bdd42..d3e4e55fc4 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_WF_NextCondition.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_WF_NextCondition.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_WF_NextCondition - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_WF_NextCondition extends PO implements I_AD_WF_NextCondition, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_WF_NextCondition (Properties ctx, int AD_WF_NextCondition_ID, String trxName) @@ -80,9 +80,9 @@ public class X_AD_WF_NextCondition extends PO implements I_AD_WF_NextCondition, return sb.toString(); } - public I_AD_Column getAD_Column() throws RuntimeException + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException { - return (I_AD_Column)MTable.get(getCtx(), I_AD_Column.Table_Name) + return (org.compiere.model.I_AD_Column)MTable.get(getCtx(), org.compiere.model.I_AD_Column.Table_Name) .getPO(getAD_Column_ID(), get_TrxName()); } /** Set Column. @@ -131,9 +131,23 @@ public class X_AD_WF_NextCondition extends PO implements I_AD_WF_NextCondition, return ii.intValue(); } - public I_AD_WF_NodeNext getAD_WF_NodeNext() throws RuntimeException + /** Set AD_WF_NextCondition_UU. + @param AD_WF_NextCondition_UU AD_WF_NextCondition_UU */ + public void setAD_WF_NextCondition_UU (String AD_WF_NextCondition_UU) + { + set_Value (COLUMNNAME_AD_WF_NextCondition_UU, AD_WF_NextCondition_UU); + } + + /** Get AD_WF_NextCondition_UU. + @return AD_WF_NextCondition_UU */ + public String getAD_WF_NextCondition_UU () + { + return (String)get_Value(COLUMNNAME_AD_WF_NextCondition_UU); + } + + public org.compiere.model.I_AD_WF_NodeNext getAD_WF_NodeNext() throws RuntimeException { - return (I_AD_WF_NodeNext)MTable.get(getCtx(), I_AD_WF_NodeNext.Table_Name) + return (org.compiere.model.I_AD_WF_NodeNext)MTable.get(getCtx(), org.compiere.model.I_AD_WF_NodeNext.Table_Name) .getPO(getAD_WF_NodeNext_ID(), get_TrxName()); } /** Set Node Transition. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_WF_Node.java b/org.adempiere.base/src/org/compiere/model/X_AD_WF_Node.java index 0437a654f9..34d5bc53cc 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_WF_Node.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_WF_Node.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for AD_WF_Node - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_WF_Node extends PO implements I_AD_WF_Node, I_Persistent { /** * */ - private static final long serialVersionUID = 20120817L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_WF_Node (Properties ctx, int AD_WF_Node_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_WF_NodeNext.java b/org.adempiere.base/src/org/compiere/model/X_AD_WF_NodeNext.java index b423631dae..7028cd7e3c 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_WF_NodeNext.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_WF_NodeNext.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_WF_NodeNext - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_WF_NodeNext extends PO implements I_AD_WF_NodeNext, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_WF_NodeNext (Properties ctx, int AD_WF_NodeNext_ID, String trxName) @@ -77,9 +77,9 @@ public class X_AD_WF_NodeNext extends PO implements I_AD_WF_NodeNext, I_Persiste return sb.toString(); } - public I_AD_WF_Node getAD_WF_Next() throws RuntimeException + public org.compiere.model.I_AD_WF_Node getAD_WF_Next() throws RuntimeException { - return (I_AD_WF_Node)MTable.get(getCtx(), I_AD_WF_Node.Table_Name) + return (org.compiere.model.I_AD_WF_Node)MTable.get(getCtx(), org.compiere.model.I_AD_WF_Node.Table_Name) .getPO(getAD_WF_Next_ID(), get_TrxName()); } /** Set Next Node. @@ -105,9 +105,9 @@ public class X_AD_WF_NodeNext extends PO implements I_AD_WF_NodeNext, I_Persiste return ii.intValue(); } - public I_AD_WF_Node getAD_WF_Node() throws RuntimeException + public org.compiere.model.I_AD_WF_Node getAD_WF_Node() throws RuntimeException { - return (I_AD_WF_Node)MTable.get(getCtx(), I_AD_WF_Node.Table_Name) + return (org.compiere.model.I_AD_WF_Node)MTable.get(getCtx(), org.compiere.model.I_AD_WF_Node.Table_Name) .getPO(getAD_WF_Node_ID(), get_TrxName()); } /** Set Node. @@ -164,6 +164,20 @@ public class X_AD_WF_NodeNext extends PO implements I_AD_WF_NodeNext, I_Persiste return ii.intValue(); } + /** Set AD_WF_NodeNext_UU. + @param AD_WF_NodeNext_UU AD_WF_NodeNext_UU */ + public void setAD_WF_NodeNext_UU (String AD_WF_NodeNext_UU) + { + set_Value (COLUMNNAME_AD_WF_NodeNext_UU, AD_WF_NodeNext_UU); + } + + /** Get AD_WF_NodeNext_UU. + @return AD_WF_NodeNext_UU */ + public String getAD_WF_NodeNext_UU () + { + return (String)get_Value(COLUMNNAME_AD_WF_NodeNext_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_WF_Node_Para.java b/org.adempiere.base/src/org/compiere/model/X_AD_WF_Node_Para.java index 471b4695fa..ac0ff71a80 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_WF_Node_Para.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_WF_Node_Para.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_WF_Node_Para - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_WF_Node_Para extends PO implements I_AD_WF_Node_Para, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_WF_Node_Para (Properties ctx, int AD_WF_Node_Para_ID, String trxName) @@ -73,9 +73,9 @@ public class X_AD_WF_Node_Para extends PO implements I_AD_WF_Node_Para, I_Persis return sb.toString(); } - public I_AD_Process_Para getAD_Process_Para() throws RuntimeException + public org.compiere.model.I_AD_Process_Para getAD_Process_Para() throws RuntimeException { - return (I_AD_Process_Para)MTable.get(getCtx(), I_AD_Process_Para.Table_Name) + return (org.compiere.model.I_AD_Process_Para)MTable.get(getCtx(), org.compiere.model.I_AD_Process_Para.Table_Name) .getPO(getAD_Process_Para_ID(), get_TrxName()); } /** Set Process Parameter. @@ -98,9 +98,9 @@ public class X_AD_WF_Node_Para extends PO implements I_AD_WF_Node_Para, I_Persis return ii.intValue(); } - public I_AD_WF_Node getAD_WF_Node() throws RuntimeException + public org.compiere.model.I_AD_WF_Node getAD_WF_Node() throws RuntimeException { - return (I_AD_WF_Node)MTable.get(getCtx(), I_AD_WF_Node.Table_Name) + return (org.compiere.model.I_AD_WF_Node)MTable.get(getCtx(), org.compiere.model.I_AD_WF_Node.Table_Name) .getPO(getAD_WF_Node_ID(), get_TrxName()); } /** Set Node. @@ -157,6 +157,20 @@ public class X_AD_WF_Node_Para extends PO implements I_AD_WF_Node_Para, I_Persis return ii.intValue(); } + /** Set AD_WF_Node_Para_UU. + @param AD_WF_Node_Para_UU AD_WF_Node_Para_UU */ + public void setAD_WF_Node_Para_UU (String AD_WF_Node_Para_UU) + { + set_Value (COLUMNNAME_AD_WF_Node_Para_UU, AD_WF_Node_Para_UU); + } + + /** Get AD_WF_Node_Para_UU. + @return AD_WF_Node_Para_UU */ + public String getAD_WF_Node_Para_UU () + { + return (String)get_Value(COLUMNNAME_AD_WF_Node_Para_UU); + } + /** Set Attribute Name. @param AttributeName Name of the Attribute diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_WF_Process.java b/org.adempiere.base/src/org/compiere/model/X_AD_WF_Process.java index 33698676c9..7376e04787 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_WF_Process.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_WF_Process.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_WF_Process - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_WF_Process extends PO implements I_AD_WF_Process, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_WF_Process (Properties ctx, int AD_WF_Process_ID, String trxName) @@ -76,9 +76,9 @@ public class X_AD_WF_Process extends PO implements I_AD_WF_Process, I_Persistent return sb.toString(); } - public I_AD_Message getAD_Message() throws RuntimeException + public org.compiere.model.I_AD_Message getAD_Message() throws RuntimeException { - return (I_AD_Message)MTable.get(getCtx(), I_AD_Message.Table_Name) + return (org.compiere.model.I_AD_Message)MTable.get(getCtx(), org.compiere.model.I_AD_Message.Table_Name) .getPO(getAD_Message_ID(), get_TrxName()); } /** Set Message. @@ -104,9 +104,9 @@ public class X_AD_WF_Process extends PO implements I_AD_WF_Process, I_Persistent return ii.intValue(); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @@ -132,9 +132,9 @@ public class X_AD_WF_Process extends PO implements I_AD_WF_Process, I_Persistent return ii.intValue(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -183,9 +183,23 @@ public class X_AD_WF_Process extends PO implements I_AD_WF_Process, I_Persistent return ii.intValue(); } - public I_AD_WF_Responsible getAD_WF_Responsible() throws RuntimeException + /** Set AD_WF_Process_UU. + @param AD_WF_Process_UU AD_WF_Process_UU */ + public void setAD_WF_Process_UU (String AD_WF_Process_UU) + { + set_Value (COLUMNNAME_AD_WF_Process_UU, AD_WF_Process_UU); + } + + /** Get AD_WF_Process_UU. + @return AD_WF_Process_UU */ + public String getAD_WF_Process_UU () + { + return (String)get_Value(COLUMNNAME_AD_WF_Process_UU); + } + + public org.compiere.model.I_AD_WF_Responsible getAD_WF_Responsible() throws RuntimeException { - return (I_AD_WF_Responsible)MTable.get(getCtx(), I_AD_WF_Responsible.Table_Name) + return (org.compiere.model.I_AD_WF_Responsible)MTable.get(getCtx(), org.compiere.model.I_AD_WF_Responsible.Table_Name) .getPO(getAD_WF_Responsible_ID(), get_TrxName()); } /** Set Workflow Responsible. @@ -211,9 +225,9 @@ public class X_AD_WF_Process extends PO implements I_AD_WF_Process, I_Persistent return ii.intValue(); } - public I_AD_Workflow getAD_Workflow() throws RuntimeException + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException { - return (I_AD_Workflow)MTable.get(getCtx(), I_AD_Workflow.Table_Name) + return (org.compiere.model.I_AD_Workflow)MTable.get(getCtx(), org.compiere.model.I_AD_Workflow.Table_Name) .getPO(getAD_Workflow_ID(), get_TrxName()); } /** Set Workflow. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_WF_ProcessData.java b/org.adempiere.base/src/org/compiere/model/X_AD_WF_ProcessData.java index e7b12f6b33..14b6a26e38 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_WF_ProcessData.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_WF_ProcessData.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_WF_ProcessData - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_WF_ProcessData extends PO implements I_AD_WF_ProcessData, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_WF_ProcessData (Properties ctx, int AD_WF_ProcessData_ID, String trxName) @@ -95,9 +95,23 @@ public class X_AD_WF_ProcessData extends PO implements I_AD_WF_ProcessData, I_Pe return ii.intValue(); } - public I_AD_WF_Process getAD_WF_Process() throws RuntimeException + /** Set AD_WF_ProcessData_UU. + @param AD_WF_ProcessData_UU AD_WF_ProcessData_UU */ + public void setAD_WF_ProcessData_UU (String AD_WF_ProcessData_UU) + { + set_Value (COLUMNNAME_AD_WF_ProcessData_UU, AD_WF_ProcessData_UU); + } + + /** Get AD_WF_ProcessData_UU. + @return AD_WF_ProcessData_UU */ + public String getAD_WF_ProcessData_UU () + { + return (String)get_Value(COLUMNNAME_AD_WF_ProcessData_UU); + } + + public org.compiere.model.I_AD_WF_Process getAD_WF_Process() throws RuntimeException { - return (I_AD_WF_Process)MTable.get(getCtx(), I_AD_WF_Process.Table_Name) + return (org.compiere.model.I_AD_WF_Process)MTable.get(getCtx(), org.compiere.model.I_AD_WF_Process.Table_Name) .getPO(getAD_WF_Process_ID(), get_TrxName()); } /** Set Workflow Process. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_WF_Responsible.java b/org.adempiere.base/src/org/compiere/model/X_AD_WF_Responsible.java index 4c0f708e7a..cb613ab3b3 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_WF_Responsible.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_WF_Responsible.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_WF_Responsible - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_WF_Responsible extends PO implements I_AD_WF_Responsible, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_WF_Responsible (Properties ctx, int AD_WF_Responsible_ID, String trxName) @@ -75,9 +75,9 @@ public class X_AD_WF_Responsible extends PO implements I_AD_WF_Responsible, I_Pe return sb.toString(); } - public I_AD_Role getAD_Role() throws RuntimeException + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException { - return (I_AD_Role)MTable.get(getCtx(), I_AD_Role.Table_Name) + return (org.compiere.model.I_AD_Role)MTable.get(getCtx(), org.compiere.model.I_AD_Role.Table_Name) .getPO(getAD_Role_ID(), get_TrxName()); } /** Set Role. @@ -103,9 +103,9 @@ public class X_AD_WF_Responsible extends PO implements I_AD_WF_Responsible, I_Pe return ii.intValue(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -154,6 +154,20 @@ public class X_AD_WF_Responsible extends PO implements I_AD_WF_Responsible, I_Pe return ii.intValue(); } + /** Set AD_WF_Responsible_UU. + @param AD_WF_Responsible_UU AD_WF_Responsible_UU */ + public void setAD_WF_Responsible_UU (String AD_WF_Responsible_UU) + { + set_Value (COLUMNNAME_AD_WF_Responsible_UU, AD_WF_Responsible_UU); + } + + /** Get AD_WF_Responsible_UU. + @return AD_WF_Responsible_UU */ + public String getAD_WF_Responsible_UU () + { + return (String)get_Value(COLUMNNAME_AD_WF_Responsible_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Window.java b/org.adempiere.base/src/org/compiere/model/X_AD_Window.java index c8c0efa400..c39f1665ee 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Window.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Window.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Window - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Window extends PO implements I_AD_Window, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Window (Properties ctx, int AD_Window_ID, String trxName) @@ -79,9 +79,9 @@ public class X_AD_Window extends PO implements I_AD_Window, I_Persistent return sb.toString(); } - public I_AD_Color getAD_Color() throws RuntimeException + public org.compiere.model.I_AD_Color getAD_Color() throws RuntimeException { - return (I_AD_Color)MTable.get(getCtx(), I_AD_Color.Table_Name) + return (org.compiere.model.I_AD_Color)MTable.get(getCtx(), org.compiere.model.I_AD_Color.Table_Name) .getPO(getAD_Color_ID(), get_TrxName()); } /** Set System Color. @@ -107,9 +107,9 @@ public class X_AD_Window extends PO implements I_AD_Window, I_Persistent return ii.intValue(); } - public I_AD_Image getAD_Image() throws RuntimeException + public org.compiere.model.I_AD_Image getAD_Image() throws RuntimeException { - return (I_AD_Image)MTable.get(getCtx(), I_AD_Image.Table_Name) + return (org.compiere.model.I_AD_Image)MTable.get(getCtx(), org.compiere.model.I_AD_Image.Table_Name) .getPO(getAD_Image_ID(), get_TrxName()); } /** Set Image. @@ -158,6 +158,20 @@ public class X_AD_Window extends PO implements I_AD_Window, I_Persistent return ii.intValue(); } + /** Set AD_Window_UU. + @param AD_Window_UU AD_Window_UU */ + public void setAD_Window_UU (String AD_Window_UU) + { + set_Value (COLUMNNAME_AD_Window_UU, AD_Window_UU); + } + + /** Get AD_Window_UU. + @return AD_Window_UU */ + public String getAD_Window_UU () + { + return (String)get_Value(COLUMNNAME_AD_Window_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Window_Access.java b/org.adempiere.base/src/org/compiere/model/X_AD_Window_Access.java index c0d35270e2..6ebb32281e 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Window_Access.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Window_Access.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_Window_Access - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Window_Access extends PO implements I_AD_Window_Access, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Window_Access (Properties ctx, int AD_Window_Access_ID, String trxName) @@ -71,9 +71,9 @@ public class X_AD_Window_Access extends PO implements I_AD_Window_Access, I_Pers return sb.toString(); } - public I_AD_Role getAD_Role() throws RuntimeException + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException { - return (I_AD_Role)MTable.get(getCtx(), I_AD_Role.Table_Name) + return (org.compiere.model.I_AD_Role)MTable.get(getCtx(), org.compiere.model.I_AD_Role.Table_Name) .getPO(getAD_Role_ID(), get_TrxName()); } /** Set Role. @@ -99,9 +99,23 @@ public class X_AD_Window_Access extends PO implements I_AD_Window_Access, I_Pers return ii.intValue(); } - public I_AD_Window getAD_Window() throws RuntimeException + /** Set AD_Window_Access_UU. + @param AD_Window_Access_UU AD_Window_Access_UU */ + public void setAD_Window_Access_UU (String AD_Window_Access_UU) + { + set_Value (COLUMNNAME_AD_Window_Access_UU, AD_Window_Access_UU); + } + + /** Get AD_Window_Access_UU. + @return AD_Window_Access_UU */ + public String getAD_Window_Access_UU () + { + return (String)get_Value(COLUMNNAME_AD_Window_Access_UU); + } + + public org.compiere.model.I_AD_Window getAD_Window() throws RuntimeException { - return (I_AD_Window)MTable.get(getCtx(), I_AD_Window.Table_Name) + return (org.compiere.model.I_AD_Window)MTable.get(getCtx(), org.compiere.model.I_AD_Window.Table_Name) .getPO(getAD_Window_ID(), get_TrxName()); } /** Set Window. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_WizardProcess.java b/org.adempiere.base/src/org/compiere/model/X_AD_WizardProcess.java index 9e672cbd94..0ac85649fd 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_WizardProcess.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_WizardProcess.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_WizardProcess - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_WizardProcess extends PO implements I_AD_WizardProcess, I_Persistent { /** * */ - private static final long serialVersionUID = 20120816L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_WizardProcess (Properties ctx, int AD_WizardProcess_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Workbench.java b/org.adempiere.base/src/org/compiere/model/X_AD_Workbench.java index abc383ea28..e6fed9c473 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Workbench.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Workbench.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Workbench - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Workbench extends PO implements I_AD_Workbench, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Workbench (Properties ctx, int AD_Workbench_ID, String trxName) @@ -97,9 +97,9 @@ public class X_AD_Workbench extends PO implements I_AD_Workbench, I_Persistent return ii.intValue(); } - public I_AD_Column getAD_Column() throws RuntimeException + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException { - return (I_AD_Column)MTable.get(getCtx(), I_AD_Column.Table_Name) + return (org.compiere.model.I_AD_Column)MTable.get(getCtx(), org.compiere.model.I_AD_Column.Table_Name) .getPO(getAD_Column_ID(), get_TrxName()); } /** Set Column. @@ -171,6 +171,20 @@ public class X_AD_Workbench extends PO implements I_AD_Workbench, I_Persistent return ii.intValue(); } + /** Set AD_Workbench_UU. + @param AD_Workbench_UU AD_Workbench_UU */ + public void setAD_Workbench_UU (String AD_Workbench_UU) + { + set_Value (COLUMNNAME_AD_Workbench_UU, AD_Workbench_UU); + } + + /** Get AD_Workbench_UU. + @return AD_Workbench_UU */ + public String getAD_Workbench_UU () + { + return (String)get_Value(COLUMNNAME_AD_Workbench_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_WorkbenchWindow.java b/org.adempiere.base/src/org/compiere/model/X_AD_WorkbenchWindow.java index 7955891b7a..5b5857ceb7 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_WorkbenchWindow.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_WorkbenchWindow.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_WorkbenchWindow - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_WorkbenchWindow extends PO implements I_AD_WorkbenchWindow, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_WorkbenchWindow (Properties ctx, int AD_WorkbenchWindow_ID, String trxName) @@ -75,9 +75,9 @@ public class X_AD_WorkbenchWindow extends PO implements I_AD_WorkbenchWindow, I_ return sb.toString(); } - public I_AD_Form getAD_Form() throws RuntimeException + public org.compiere.model.I_AD_Form getAD_Form() throws RuntimeException { - return (I_AD_Form)MTable.get(getCtx(), I_AD_Form.Table_Name) + return (org.compiere.model.I_AD_Form)MTable.get(getCtx(), org.compiere.model.I_AD_Form.Table_Name) .getPO(getAD_Form_ID(), get_TrxName()); } /** Set Special Form. @@ -103,9 +103,9 @@ public class X_AD_WorkbenchWindow extends PO implements I_AD_WorkbenchWindow, I_ return ii.intValue(); } - public I_AD_Process getAD_Process() throws RuntimeException + public org.compiere.model.I_AD_Process getAD_Process() throws RuntimeException { - return (I_AD_Process)MTable.get(getCtx(), I_AD_Process.Table_Name) + return (org.compiere.model.I_AD_Process)MTable.get(getCtx(), org.compiere.model.I_AD_Process.Table_Name) .getPO(getAD_Process_ID(), get_TrxName()); } /** Set Process. @@ -131,9 +131,9 @@ public class X_AD_WorkbenchWindow extends PO implements I_AD_WorkbenchWindow, I_ return ii.intValue(); } - public I_AD_Task getAD_Task() throws RuntimeException + public org.compiere.model.I_AD_Task getAD_Task() throws RuntimeException { - return (I_AD_Task)MTable.get(getCtx(), I_AD_Task.Table_Name) + return (org.compiere.model.I_AD_Task)MTable.get(getCtx(), org.compiere.model.I_AD_Task.Table_Name) .getPO(getAD_Task_ID(), get_TrxName()); } /** Set OS Task. @@ -159,9 +159,9 @@ public class X_AD_WorkbenchWindow extends PO implements I_AD_WorkbenchWindow, I_ return ii.intValue(); } - public I_AD_Window getAD_Window() throws RuntimeException + public org.compiere.model.I_AD_Window getAD_Window() throws RuntimeException { - return (I_AD_Window)MTable.get(getCtx(), I_AD_Window.Table_Name) + return (org.compiere.model.I_AD_Window)MTable.get(getCtx(), org.compiere.model.I_AD_Window.Table_Name) .getPO(getAD_Window_ID(), get_TrxName()); } /** Set Window. @@ -187,9 +187,9 @@ public class X_AD_WorkbenchWindow extends PO implements I_AD_WorkbenchWindow, I_ return ii.intValue(); } - public I_AD_Workbench getAD_Workbench() throws RuntimeException + public org.compiere.model.I_AD_Workbench getAD_Workbench() throws RuntimeException { - return (I_AD_Workbench)MTable.get(getCtx(), I_AD_Workbench.Table_Name) + return (org.compiere.model.I_AD_Workbench)MTable.get(getCtx(), org.compiere.model.I_AD_Workbench.Table_Name) .getPO(getAD_Workbench_ID(), get_TrxName()); } /** Set Workbench. @@ -243,6 +243,20 @@ public class X_AD_WorkbenchWindow extends PO implements I_AD_WorkbenchWindow, I_ return new KeyNamePair(get_ID(), String.valueOf(getAD_WorkbenchWindow_ID())); } + /** Set AD_WorkbenchWindow_UU. + @param AD_WorkbenchWindow_UU AD_WorkbenchWindow_UU */ + public void setAD_WorkbenchWindow_UU (String AD_WorkbenchWindow_UU) + { + set_Value (COLUMNNAME_AD_WorkbenchWindow_UU, AD_WorkbenchWindow_UU); + } + + /** Get AD_WorkbenchWindow_UU. + @return AD_WorkbenchWindow_UU */ + public String getAD_WorkbenchWindow_UU () + { + return (String)get_Value(COLUMNNAME_AD_WorkbenchWindow_UU); + } + /** EntityType AD_Reference_ID=389 */ public static final int ENTITYTYPE_AD_Reference_ID=389; /** Set Entity Type. diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Workflow.java b/org.adempiere.base/src/org/compiere/model/X_AD_Workflow.java index cb14e82f61..60190b212c 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Workflow.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Workflow.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Workflow - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Workflow extends PO implements I_AD_Workflow, I_Persistent { /** * */ - private static final long serialVersionUID = 20120817L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Workflow (Properties ctx, int AD_Workflow_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_WorkflowProcessor.java b/org.adempiere.base/src/org/compiere/model/X_AD_WorkflowProcessor.java index 0c84002a3e..0ea2b21aa8 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_WorkflowProcessor.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_WorkflowProcessor.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for AD_WorkflowProcessor - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_WorkflowProcessor extends PO implements I_AD_WorkflowProcessor, I_Persistent { /** * */ - private static final long serialVersionUID = 20120920L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_WorkflowProcessor (Properties ctx, int AD_WorkflowProcessor_ID, String trxName) @@ -39,6 +39,7 @@ public class X_AD_WorkflowProcessor extends PO implements I_AD_WorkflowProcessor super (ctx, AD_WorkflowProcessor_ID, trxName); /** if (AD_WorkflowProcessor_ID == 0) { + setAD_Schedule_ID (0); setAD_WorkflowProcessor_ID (0); setKeepLogDays (0); // 7 @@ -80,8 +81,8 @@ public class X_AD_WorkflowProcessor extends PO implements I_AD_WorkflowProcessor return (org.compiere.model.I_AD_Schedule)MTable.get(getCtx(), org.compiere.model.I_AD_Schedule.Table_Name) .getPO(getAD_Schedule_ID(), get_TrxName()); } - /** Set AD_Schedule_ID. - @param AD_Schedule_ID AD_Schedule_ID */ + /** Set Schedule. + @param AD_Schedule_ID Schedule */ public void setAD_Schedule_ID (int AD_Schedule_ID) { if (AD_Schedule_ID < 1) @@ -90,8 +91,8 @@ public class X_AD_WorkflowProcessor extends PO implements I_AD_WorkflowProcessor set_Value (COLUMNNAME_AD_Schedule_ID, Integer.valueOf(AD_Schedule_ID)); } - /** Get AD_Schedule_ID. - @return AD_Schedule_ID */ + /** Get Schedule. + @return Schedule */ public int getAD_Schedule_ID () { Integer ii = (Integer)get_Value(COLUMNNAME_AD_Schedule_ID); diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_WorkflowProcessorLog.java b/org.adempiere.base/src/org/compiere/model/X_AD_WorkflowProcessorLog.java index 2b26000de5..fe24661784 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_WorkflowProcessorLog.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_WorkflowProcessorLog.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_WorkflowProcessorLog - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_WorkflowProcessorLog extends PO implements I_AD_WorkflowProcessorLog, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_WorkflowProcessorLog (Properties ctx, int AD_WorkflowProcessorLog_ID, String trxName) @@ -50,7 +50,7 @@ public class X_AD_WorkflowProcessorLog extends PO implements I_AD_WorkflowProces } /** AccessLevel - * @return 4 - System + * @return 6 - System - Client */ protected int get_AccessLevel() { @@ -71,9 +71,9 @@ public class X_AD_WorkflowProcessorLog extends PO implements I_AD_WorkflowProces return sb.toString(); } - public I_AD_WorkflowProcessor getAD_WorkflowProcessor() throws RuntimeException + public org.compiere.model.I_AD_WorkflowProcessor getAD_WorkflowProcessor() throws RuntimeException { - return (I_AD_WorkflowProcessor)MTable.get(getCtx(), I_AD_WorkflowProcessor.Table_Name) + return (org.compiere.model.I_AD_WorkflowProcessor)MTable.get(getCtx(), org.compiere.model.I_AD_WorkflowProcessor.Table_Name) .getPO(getAD_WorkflowProcessor_ID(), get_TrxName()); } /** Set Workflow Processor. @@ -122,6 +122,20 @@ public class X_AD_WorkflowProcessorLog extends PO implements I_AD_WorkflowProces return ii.intValue(); } + /** Set AD_WorkflowProcessorLog_UU. + @param AD_WorkflowProcessorLog_UU AD_WorkflowProcessorLog_UU */ + public void setAD_WorkflowProcessorLog_UU (String AD_WorkflowProcessorLog_UU) + { + set_Value (COLUMNNAME_AD_WorkflowProcessorLog_UU, AD_WorkflowProcessorLog_UU); + } + + /** Get AD_WorkflowProcessorLog_UU. + @return AD_WorkflowProcessorLog_UU */ + public String getAD_WorkflowProcessorLog_UU () + { + return (String)get_Value(COLUMNNAME_AD_WorkflowProcessorLog_UU); + } + /** Set Binary Data. @param BinaryData Binary Data diff --git a/org.adempiere.base/src/org/compiere/model/X_AD_Workflow_Access.java b/org.adempiere.base/src/org/compiere/model/X_AD_Workflow_Access.java index ffe8e67ac7..00d2a6f43f 100644 --- a/org.adempiere.base/src/org/compiere/model/X_AD_Workflow_Access.java +++ b/org.adempiere.base/src/org/compiere/model/X_AD_Workflow_Access.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for AD_Workflow_Access - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_AD_Workflow_Access extends PO implements I_AD_Workflow_Access, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_AD_Workflow_Access (Properties ctx, int AD_Workflow_Access_ID, String trxName) @@ -71,9 +71,9 @@ public class X_AD_Workflow_Access extends PO implements I_AD_Workflow_Access, I_ return sb.toString(); } - public I_AD_Role getAD_Role() throws RuntimeException + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException { - return (I_AD_Role)MTable.get(getCtx(), I_AD_Role.Table_Name) + return (org.compiere.model.I_AD_Role)MTable.get(getCtx(), org.compiere.model.I_AD_Role.Table_Name) .getPO(getAD_Role_ID(), get_TrxName()); } /** Set Role. @@ -99,9 +99,23 @@ public class X_AD_Workflow_Access extends PO implements I_AD_Workflow_Access, I_ return ii.intValue(); } - public I_AD_Workflow getAD_Workflow() throws RuntimeException + /** Set AD_Workflow_Access_UU. + @param AD_Workflow_Access_UU AD_Workflow_Access_UU */ + public void setAD_Workflow_Access_UU (String AD_Workflow_Access_UU) + { + set_Value (COLUMNNAME_AD_Workflow_Access_UU, AD_Workflow_Access_UU); + } + + /** Get AD_Workflow_Access_UU. + @return AD_Workflow_Access_UU */ + public String getAD_Workflow_Access_UU () + { + return (String)get_Value(COLUMNNAME_AD_Workflow_Access_UU); + } + + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException { - return (I_AD_Workflow)MTable.get(getCtx(), I_AD_Workflow.Table_Name) + return (org.compiere.model.I_AD_Workflow)MTable.get(getCtx(), org.compiere.model.I_AD_Workflow.Table_Name) .getPO(getAD_Workflow_ID(), get_TrxName()); } /** Set Workflow. diff --git a/org.adempiere.base/src/org/compiere/model/X_ASP_ClientException.java b/org.adempiere.base/src/org/compiere/model/X_ASP_ClientException.java index 96d5e13ff1..2711a307bc 100644 --- a/org.adempiere.base/src/org/compiere/model/X_ASP_ClientException.java +++ b/org.adempiere.base/src/org/compiere/model/X_ASP_ClientException.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for ASP_ClientException - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_ASP_ClientException extends PO implements I_ASP_ClientException, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_ASP_ClientException (Properties ctx, int ASP_ClientException_ID, String trxName) @@ -71,9 +71,9 @@ public class X_ASP_ClientException extends PO implements I_ASP_ClientException, return sb.toString(); } - public I_AD_Field getAD_Field() throws RuntimeException + public org.compiere.model.I_AD_Field getAD_Field() throws RuntimeException { - return (I_AD_Field)MTable.get(getCtx(), I_AD_Field.Table_Name) + return (org.compiere.model.I_AD_Field)MTable.get(getCtx(), org.compiere.model.I_AD_Field.Table_Name) .getPO(getAD_Field_ID(), get_TrxName()); } /** Set Field. @@ -99,9 +99,9 @@ public class X_ASP_ClientException extends PO implements I_ASP_ClientException, return ii.intValue(); } - public I_AD_Form getAD_Form() throws RuntimeException + public org.compiere.model.I_AD_Form getAD_Form() throws RuntimeException { - return (I_AD_Form)MTable.get(getCtx(), I_AD_Form.Table_Name) + return (org.compiere.model.I_AD_Form)MTable.get(getCtx(), org.compiere.model.I_AD_Form.Table_Name) .getPO(getAD_Form_ID(), get_TrxName()); } /** Set Special Form. @@ -127,9 +127,9 @@ public class X_ASP_ClientException extends PO implements I_ASP_ClientException, return ii.intValue(); } - public I_AD_Process getAD_Process() throws RuntimeException + public org.compiere.model.I_AD_Process getAD_Process() throws RuntimeException { - return (I_AD_Process)MTable.get(getCtx(), I_AD_Process.Table_Name) + return (org.compiere.model.I_AD_Process)MTable.get(getCtx(), org.compiere.model.I_AD_Process.Table_Name) .getPO(getAD_Process_ID(), get_TrxName()); } /** Set Process. @@ -155,9 +155,9 @@ public class X_ASP_ClientException extends PO implements I_ASP_ClientException, return ii.intValue(); } - public I_AD_Process_Para getAD_Process_Para() throws RuntimeException + public org.compiere.model.I_AD_Process_Para getAD_Process_Para() throws RuntimeException { - return (I_AD_Process_Para)MTable.get(getCtx(), I_AD_Process_Para.Table_Name) + return (org.compiere.model.I_AD_Process_Para)MTable.get(getCtx(), org.compiere.model.I_AD_Process_Para.Table_Name) .getPO(getAD_Process_Para_ID(), get_TrxName()); } /** Set Process Parameter. @@ -180,9 +180,9 @@ public class X_ASP_ClientException extends PO implements I_ASP_ClientException, return ii.intValue(); } - public I_AD_Tab getAD_Tab() throws RuntimeException + public org.compiere.model.I_AD_Tab getAD_Tab() throws RuntimeException { - return (I_AD_Tab)MTable.get(getCtx(), I_AD_Tab.Table_Name) + return (org.compiere.model.I_AD_Tab)MTable.get(getCtx(), org.compiere.model.I_AD_Tab.Table_Name) .getPO(getAD_Tab_ID(), get_TrxName()); } /** Set Tab. @@ -208,9 +208,9 @@ public class X_ASP_ClientException extends PO implements I_ASP_ClientException, return ii.intValue(); } - public I_AD_Task getAD_Task() throws RuntimeException + public org.compiere.model.I_AD_Task getAD_Task() throws RuntimeException { - return (I_AD_Task)MTable.get(getCtx(), I_AD_Task.Table_Name) + return (org.compiere.model.I_AD_Task)MTable.get(getCtx(), org.compiere.model.I_AD_Task.Table_Name) .getPO(getAD_Task_ID(), get_TrxName()); } /** Set OS Task. @@ -236,9 +236,9 @@ public class X_ASP_ClientException extends PO implements I_ASP_ClientException, return ii.intValue(); } - public I_AD_WF_Node getAD_WF_Node() throws RuntimeException + public org.compiere.model.I_AD_WF_Node getAD_WF_Node() throws RuntimeException { - return (I_AD_WF_Node)MTable.get(getCtx(), I_AD_WF_Node.Table_Name) + return (org.compiere.model.I_AD_WF_Node)MTable.get(getCtx(), org.compiere.model.I_AD_WF_Node.Table_Name) .getPO(getAD_WF_Node_ID(), get_TrxName()); } /** Set Node. @@ -264,9 +264,9 @@ public class X_ASP_ClientException extends PO implements I_ASP_ClientException, return ii.intValue(); } - public I_AD_Window getAD_Window() throws RuntimeException + public org.compiere.model.I_AD_Window getAD_Window() throws RuntimeException { - return (I_AD_Window)MTable.get(getCtx(), I_AD_Window.Table_Name) + return (org.compiere.model.I_AD_Window)MTable.get(getCtx(), org.compiere.model.I_AD_Window.Table_Name) .getPO(getAD_Window_ID(), get_TrxName()); } /** Set Window. @@ -292,9 +292,9 @@ public class X_ASP_ClientException extends PO implements I_ASP_ClientException, return ii.intValue(); } - public I_AD_Workflow getAD_Workflow() throws RuntimeException + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException { - return (I_AD_Workflow)MTable.get(getCtx(), I_AD_Workflow.Table_Name) + return (org.compiere.model.I_AD_Workflow)MTable.get(getCtx(), org.compiere.model.I_AD_Workflow.Table_Name) .getPO(getAD_Workflow_ID(), get_TrxName()); } /** Set Workflow. @@ -340,6 +340,20 @@ public class X_ASP_ClientException extends PO implements I_ASP_ClientException, return ii.intValue(); } + /** Set ASP_ClientException_UU. + @param ASP_ClientException_UU ASP_ClientException_UU */ + public void setASP_ClientException_UU (String ASP_ClientException_UU) + { + set_Value (COLUMNNAME_ASP_ClientException_UU, ASP_ClientException_UU); + } + + /** Get ASP_ClientException_UU. + @return ASP_ClientException_UU */ + public String getASP_ClientException_UU () + { + return (String)get_Value(COLUMNNAME_ASP_ClientException_UU); + } + /** ASP_Status AD_Reference_ID=53234 */ public static final int ASP_STATUS_AD_Reference_ID=53234; /** Hide = H */ diff --git a/org.adempiere.base/src/org/compiere/model/X_ASP_ClientLevel.java b/org.adempiere.base/src/org/compiere/model/X_ASP_ClientLevel.java index 28daa17196..20106f4b89 100644 --- a/org.adempiere.base/src/org/compiere/model/X_ASP_ClientLevel.java +++ b/org.adempiere.base/src/org/compiere/model/X_ASP_ClientLevel.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for ASP_ClientLevel - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_ASP_ClientLevel extends PO implements I_ASP_ClientLevel, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_ASP_ClientLevel (Properties ctx, int ASP_ClientLevel_ID, String trxName) @@ -91,9 +91,23 @@ public class X_ASP_ClientLevel extends PO implements I_ASP_ClientLevel, I_Persis return ii.intValue(); } - public I_ASP_Level getASP_Level() throws RuntimeException + /** Set ASP_ClientLevel_UU. + @param ASP_ClientLevel_UU ASP_ClientLevel_UU */ + public void setASP_ClientLevel_UU (String ASP_ClientLevel_UU) + { + set_Value (COLUMNNAME_ASP_ClientLevel_UU, ASP_ClientLevel_UU); + } + + /** Get ASP_ClientLevel_UU. + @return ASP_ClientLevel_UU */ + public String getASP_ClientLevel_UU () + { + return (String)get_Value(COLUMNNAME_ASP_ClientLevel_UU); + } + + public org.compiere.model.I_ASP_Level getASP_Level() throws RuntimeException { - return (I_ASP_Level)MTable.get(getCtx(), I_ASP_Level.Table_Name) + return (org.compiere.model.I_ASP_Level)MTable.get(getCtx(), org.compiere.model.I_ASP_Level.Table_Name) .getPO(getASP_Level_ID(), get_TrxName()); } /** Set ASP Level. @@ -116,9 +130,9 @@ public class X_ASP_ClientLevel extends PO implements I_ASP_ClientLevel, I_Persis return ii.intValue(); } - public I_ASP_Module getASP_Module() throws RuntimeException + public org.compiere.model.I_ASP_Module getASP_Module() throws RuntimeException { - return (I_ASP_Module)MTable.get(getCtx(), I_ASP_Module.Table_Name) + return (org.compiere.model.I_ASP_Module)MTable.get(getCtx(), org.compiere.model.I_ASP_Module.Table_Name) .getPO(getASP_Module_ID(), get_TrxName()); } /** Set ASP Module. diff --git a/org.adempiere.base/src/org/compiere/model/X_ASP_Field.java b/org.adempiere.base/src/org/compiere/model/X_ASP_Field.java index d997a7c896..3cba477340 100644 --- a/org.adempiere.base/src/org/compiere/model/X_ASP_Field.java +++ b/org.adempiere.base/src/org/compiere/model/X_ASP_Field.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for ASP_Field - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_ASP_Field extends PO implements I_ASP_Field, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_ASP_Field (Properties ctx, int ASP_Field_ID, String trxName) @@ -70,9 +70,9 @@ public class X_ASP_Field extends PO implements I_ASP_Field, I_Persistent return sb.toString(); } - public I_AD_Field getAD_Field() throws RuntimeException + public org.compiere.model.I_AD_Field getAD_Field() throws RuntimeException { - return (I_AD_Field)MTable.get(getCtx(), I_AD_Field.Table_Name) + return (org.compiere.model.I_AD_Field)MTable.get(getCtx(), org.compiere.model.I_AD_Field.Table_Name) .getPO(getAD_Field_ID(), get_TrxName()); } /** Set Field. @@ -118,6 +118,20 @@ public class X_ASP_Field extends PO implements I_ASP_Field, I_Persistent return ii.intValue(); } + /** Set ASP_Field_UU. + @param ASP_Field_UU ASP_Field_UU */ + public void setASP_Field_UU (String ASP_Field_UU) + { + set_Value (COLUMNNAME_ASP_Field_UU, ASP_Field_UU); + } + + /** Get ASP_Field_UU. + @return ASP_Field_UU */ + public String getASP_Field_UU () + { + return (String)get_Value(COLUMNNAME_ASP_Field_UU); + } + /** ASP_Status AD_Reference_ID=53234 */ public static final int ASP_STATUS_AD_Reference_ID=53234; /** Hide = H */ @@ -141,9 +155,9 @@ public class X_ASP_Field extends PO implements I_ASP_Field, I_Persistent return (String)get_Value(COLUMNNAME_ASP_Status); } - public I_ASP_Tab getASP_Tab() throws RuntimeException + public org.compiere.model.I_ASP_Tab getASP_Tab() throws RuntimeException { - return (I_ASP_Tab)MTable.get(getCtx(), I_ASP_Tab.Table_Name) + return (org.compiere.model.I_ASP_Tab)MTable.get(getCtx(), org.compiere.model.I_ASP_Tab.Table_Name) .getPO(getASP_Tab_ID(), get_TrxName()); } /** Set ASP Tab. diff --git a/org.adempiere.base/src/org/compiere/model/X_ASP_Form.java b/org.adempiere.base/src/org/compiere/model/X_ASP_Form.java index 0a15f5e3f6..e3e3624046 100644 --- a/org.adempiere.base/src/org/compiere/model/X_ASP_Form.java +++ b/org.adempiere.base/src/org/compiere/model/X_ASP_Form.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for ASP_Form - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_ASP_Form extends PO implements I_ASP_Form, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_ASP_Form (Properties ctx, int ASP_Form_ID, String trxName) @@ -72,9 +72,9 @@ public class X_ASP_Form extends PO implements I_ASP_Form, I_Persistent return sb.toString(); } - public I_AD_Form getAD_Form() throws RuntimeException + public org.compiere.model.I_AD_Form getAD_Form() throws RuntimeException { - return (I_AD_Form)MTable.get(getCtx(), I_AD_Form.Table_Name) + return (org.compiere.model.I_AD_Form)MTable.get(getCtx(), org.compiere.model.I_AD_Form.Table_Name) .getPO(getAD_Form_ID(), get_TrxName()); } /** Set Special Form. @@ -120,9 +120,23 @@ public class X_ASP_Form extends PO implements I_ASP_Form, I_Persistent return ii.intValue(); } - public I_ASP_Level getASP_Level() throws RuntimeException + /** Set ASP_Form_UU. + @param ASP_Form_UU ASP_Form_UU */ + public void setASP_Form_UU (String ASP_Form_UU) + { + set_Value (COLUMNNAME_ASP_Form_UU, ASP_Form_UU); + } + + /** Get ASP_Form_UU. + @return ASP_Form_UU */ + public String getASP_Form_UU () + { + return (String)get_Value(COLUMNNAME_ASP_Form_UU); + } + + public org.compiere.model.I_ASP_Level getASP_Level() throws RuntimeException { - return (I_ASP_Level)MTable.get(getCtx(), I_ASP_Level.Table_Name) + return (org.compiere.model.I_ASP_Level)MTable.get(getCtx(), org.compiere.model.I_ASP_Level.Table_Name) .getPO(getASP_Level_ID(), get_TrxName()); } /** Set ASP Level. diff --git a/org.adempiere.base/src/org/compiere/model/X_ASP_Level.java b/org.adempiere.base/src/org/compiere/model/X_ASP_Level.java index fa7653db74..bcbb17b414 100644 --- a/org.adempiere.base/src/org/compiere/model/X_ASP_Level.java +++ b/org.adempiere.base/src/org/compiere/model/X_ASP_Level.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for ASP_Level - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_ASP_Level extends PO implements I_ASP_Level, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_ASP_Level (Properties ctx, int ASP_Level_ID, String trxName) @@ -93,9 +93,23 @@ public class X_ASP_Level extends PO implements I_ASP_Level, I_Persistent return ii.intValue(); } - public I_ASP_Module getASP_Module() throws RuntimeException + /** Set ASP_Level_UU. + @param ASP_Level_UU ASP_Level_UU */ + public void setASP_Level_UU (String ASP_Level_UU) + { + set_Value (COLUMNNAME_ASP_Level_UU, ASP_Level_UU); + } + + /** Get ASP_Level_UU. + @return ASP_Level_UU */ + public String getASP_Level_UU () + { + return (String)get_Value(COLUMNNAME_ASP_Level_UU); + } + + public org.compiere.model.I_ASP_Module getASP_Module() throws RuntimeException { - return (I_ASP_Module)MTable.get(getCtx(), I_ASP_Module.Table_Name) + return (org.compiere.model.I_ASP_Module)MTable.get(getCtx(), org.compiere.model.I_ASP_Module.Table_Name) .getPO(getASP_Module_ID(), get_TrxName()); } /** Set ASP Module. diff --git a/org.adempiere.base/src/org/compiere/model/X_ASP_Module.java b/org.adempiere.base/src/org/compiere/model/X_ASP_Module.java index c8e6ec2085..cec7db2550 100644 --- a/org.adempiere.base/src/org/compiere/model/X_ASP_Module.java +++ b/org.adempiere.base/src/org/compiere/model/X_ASP_Module.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for ASP_Module - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_ASP_Module extends PO implements I_ASP_Module, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_ASP_Module (Properties ctx, int ASP_Module_ID, String trxName) @@ -92,6 +92,20 @@ public class X_ASP_Module extends PO implements I_ASP_Module, I_Persistent return ii.intValue(); } + /** Set ASP_Module_UU. + @param ASP_Module_UU ASP_Module_UU */ + public void setASP_Module_UU (String ASP_Module_UU) + { + set_Value (COLUMNNAME_ASP_Module_UU, ASP_Module_UU); + } + + /** Get ASP_Module_UU. + @return ASP_Module_UU */ + public String getASP_Module_UU () + { + return (String)get_Value(COLUMNNAME_ASP_Module_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_ASP_Process.java b/org.adempiere.base/src/org/compiere/model/X_ASP_Process.java index 81a6411a2c..46f5bbd40b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_ASP_Process.java +++ b/org.adempiere.base/src/org/compiere/model/X_ASP_Process.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for ASP_Process - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_ASP_Process extends PO implements I_ASP_Process, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_ASP_Process (Properties ctx, int ASP_Process_ID, String trxName) @@ -73,9 +73,9 @@ public class X_ASP_Process extends PO implements I_ASP_Process, I_Persistent return sb.toString(); } - public I_AD_Process getAD_Process() throws RuntimeException + public org.compiere.model.I_AD_Process getAD_Process() throws RuntimeException { - return (I_AD_Process)MTable.get(getCtx(), I_AD_Process.Table_Name) + return (org.compiere.model.I_AD_Process)MTable.get(getCtx(), org.compiere.model.I_AD_Process.Table_Name) .getPO(getAD_Process_ID(), get_TrxName()); } /** Set Process. @@ -101,9 +101,9 @@ public class X_ASP_Process extends PO implements I_ASP_Process, I_Persistent return ii.intValue(); } - public I_ASP_Level getASP_Level() throws RuntimeException + public org.compiere.model.I_ASP_Level getASP_Level() throws RuntimeException { - return (I_ASP_Level)MTable.get(getCtx(), I_ASP_Level.Table_Name) + return (org.compiere.model.I_ASP_Level)MTable.get(getCtx(), org.compiere.model.I_ASP_Level.Table_Name) .getPO(getASP_Level_ID(), get_TrxName()); } /** Set ASP Level. @@ -154,6 +154,20 @@ public class X_ASP_Process extends PO implements I_ASP_Process, I_Persistent return ii.intValue(); } + /** Set ASP_Process_UU. + @param ASP_Process_UU ASP_Process_UU */ + public void setASP_Process_UU (String ASP_Process_UU) + { + set_Value (COLUMNNAME_ASP_Process_UU, ASP_Process_UU); + } + + /** Get ASP_Process_UU. + @return ASP_Process_UU */ + public String getASP_Process_UU () + { + return (String)get_Value(COLUMNNAME_ASP_Process_UU); + } + /** ASP_Status AD_Reference_ID=53234 */ public static final int ASP_STATUS_AD_Reference_ID=53234; /** Hide = H */ diff --git a/org.adempiere.base/src/org/compiere/model/X_ASP_Process_Para.java b/org.adempiere.base/src/org/compiere/model/X_ASP_Process_Para.java index 625a905f7b..48f0451bc3 100644 --- a/org.adempiere.base/src/org/compiere/model/X_ASP_Process_Para.java +++ b/org.adempiere.base/src/org/compiere/model/X_ASP_Process_Para.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for ASP_Process_Para - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_ASP_Process_Para extends PO implements I_ASP_Process_Para, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_ASP_Process_Para (Properties ctx, int ASP_Process_Para_ID, String trxName) @@ -70,9 +70,9 @@ public class X_ASP_Process_Para extends PO implements I_ASP_Process_Para, I_Pers return sb.toString(); } - public I_AD_Process_Para getAD_Process_Para() throws RuntimeException + public org.compiere.model.I_AD_Process_Para getAD_Process_Para() throws RuntimeException { - return (I_AD_Process_Para)MTable.get(getCtx(), I_AD_Process_Para.Table_Name) + return (org.compiere.model.I_AD_Process_Para)MTable.get(getCtx(), org.compiere.model.I_AD_Process_Para.Table_Name) .getPO(getAD_Process_Para_ID(), get_TrxName()); } /** Set Process Parameter. @@ -95,9 +95,9 @@ public class X_ASP_Process_Para extends PO implements I_ASP_Process_Para, I_Pers return ii.intValue(); } - public I_ASP_Process getASP_Process() throws RuntimeException + public org.compiere.model.I_ASP_Process getASP_Process() throws RuntimeException { - return (I_ASP_Process)MTable.get(getCtx(), I_ASP_Process.Table_Name) + return (org.compiere.model.I_ASP_Process)MTable.get(getCtx(), org.compiere.model.I_ASP_Process.Table_Name) .getPO(getASP_Process_ID(), get_TrxName()); } /** Set ASP Process. @@ -140,6 +140,20 @@ public class X_ASP_Process_Para extends PO implements I_ASP_Process_Para, I_Pers return ii.intValue(); } + /** Set ASP_Process_Para_UU. + @param ASP_Process_Para_UU ASP_Process_Para_UU */ + public void setASP_Process_Para_UU (String ASP_Process_Para_UU) + { + set_Value (COLUMNNAME_ASP_Process_Para_UU, ASP_Process_Para_UU); + } + + /** Get ASP_Process_Para_UU. + @return ASP_Process_Para_UU */ + public String getASP_Process_Para_UU () + { + return (String)get_Value(COLUMNNAME_ASP_Process_Para_UU); + } + /** ASP_Status AD_Reference_ID=53234 */ public static final int ASP_STATUS_AD_Reference_ID=53234; /** Hide = H */ diff --git a/org.adempiere.base/src/org/compiere/model/X_ASP_Ref_List.java b/org.adempiere.base/src/org/compiere/model/X_ASP_Ref_List.java new file mode 100644 index 0000000000..c3921e59b3 --- /dev/null +++ b/org.adempiere.base/src/org/compiere/model/X_ASP_Ref_List.java @@ -0,0 +1,212 @@ +/****************************************************************************** + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * + * This program is free software, you can redistribute it and/or modify it * + * under the terms version 2 of the GNU General Public License as published * + * by the Free Software Foundation. This program is distributed in the hope * + * that it will be useful, but WITHOUT ANY WARRANTY, without even the implied * + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * + * See the GNU General Public License for more details. * + * You should have received a copy of the GNU General Public License along * + * with this program, if not, write to the Free Software Foundation, Inc., * + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * + * For the text or an alternative of this public license, you may reach us * + * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * + * or via info@compiere.org or http://www.compiere.org/license.html * + *****************************************************************************/ +/** Generated Model - DO NOT CHANGE */ +package org.compiere.model; + +import java.sql.ResultSet; +import java.util.Properties; + +/** Generated Model for ASP_Ref_List + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ +public class X_ASP_Ref_List extends PO implements I_ASP_Ref_List, I_Persistent +{ + + /** + * + */ + private static final long serialVersionUID = 20121031L; + + /** Standard Constructor */ + public X_ASP_Ref_List (Properties ctx, int ASP_Ref_List_ID, String trxName) + { + super (ctx, ASP_Ref_List_ID, trxName); + /** if (ASP_Ref_List_ID == 0) + { + setAD_Reference_ID (0); + setAD_Ref_List_ID (0); + setASP_Level_ID (0); + setASP_Ref_List_ID (0); + } */ + } + + /** Load Constructor */ + public X_ASP_Ref_List (Properties ctx, ResultSet rs, String trxName) + { + super (ctx, rs, trxName); + } + + /** AccessLevel + * @return 4 - System + */ + protected int get_AccessLevel() + { + return accessLevel.intValue(); + } + + /** Load Meta Data */ + protected POInfo initPO (Properties ctx) + { + POInfo poi = POInfo.getPOInfo (ctx, Table_ID, get_TrxName()); + return poi; + } + + public String toString() + { + StringBuffer sb = new StringBuffer ("X_ASP_Ref_List[") + .append(get_ID()).append("]"); + return sb.toString(); + } + + public org.compiere.model.I_AD_Reference getAD_Reference() throws RuntimeException + { + return (org.compiere.model.I_AD_Reference)MTable.get(getCtx(), org.compiere.model.I_AD_Reference.Table_Name) + .getPO(getAD_Reference_ID(), get_TrxName()); } + + /** Set Reference. + @param AD_Reference_ID + System Reference and Validation + */ + public void setAD_Reference_ID (int AD_Reference_ID) + { + if (AD_Reference_ID < 1) + set_Value (COLUMNNAME_AD_Reference_ID, null); + else + set_Value (COLUMNNAME_AD_Reference_ID, Integer.valueOf(AD_Reference_ID)); + } + + /** Get Reference. + @return System Reference and Validation + */ + public int getAD_Reference_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_AD_Reference_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + + public org.compiere.model.I_AD_Ref_List getAD_Ref_List() throws RuntimeException + { + return (org.compiere.model.I_AD_Ref_List)MTable.get(getCtx(), org.compiere.model.I_AD_Ref_List.Table_Name) + .getPO(getAD_Ref_List_ID(), get_TrxName()); } + + /** Set Reference List. + @param AD_Ref_List_ID + Reference List based on Table + */ + public void setAD_Ref_List_ID (int AD_Ref_List_ID) + { + if (AD_Ref_List_ID < 1) + set_Value (COLUMNNAME_AD_Ref_List_ID, null); + else + set_Value (COLUMNNAME_AD_Ref_List_ID, Integer.valueOf(AD_Ref_List_ID)); + } + + /** Get Reference List. + @return Reference List based on Table + */ + public int getAD_Ref_List_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_AD_Ref_List_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + + public org.compiere.model.I_ASP_Level getASP_Level() throws RuntimeException + { + return (org.compiere.model.I_ASP_Level)MTable.get(getCtx(), org.compiere.model.I_ASP_Level.Table_Name) + .getPO(getASP_Level_ID(), get_TrxName()); } + + /** Set ASP Level. + @param ASP_Level_ID ASP Level */ + public void setASP_Level_ID (int ASP_Level_ID) + { + if (ASP_Level_ID < 1) + set_Value (COLUMNNAME_ASP_Level_ID, null); + else + set_Value (COLUMNNAME_ASP_Level_ID, Integer.valueOf(ASP_Level_ID)); + } + + /** Get ASP Level. + @return ASP Level */ + public int getASP_Level_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_ASP_Level_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + + /** Set ASP_Ref_List. + @param ASP_Ref_List_ID ASP_Ref_List */ + public void setASP_Ref_List_ID (int ASP_Ref_List_ID) + { + if (ASP_Ref_List_ID < 1) + set_ValueNoCheck (COLUMNNAME_ASP_Ref_List_ID, null); + else + set_ValueNoCheck (COLUMNNAME_ASP_Ref_List_ID, Integer.valueOf(ASP_Ref_List_ID)); + } + + /** Get ASP_Ref_List. + @return ASP_Ref_List */ + public int getASP_Ref_List_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_ASP_Ref_List_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + + /** Set ASP_Ref_List_UU. + @param ASP_Ref_List_UU ASP_Ref_List_UU */ + public void setASP_Ref_List_UU (String ASP_Ref_List_UU) + { + set_Value (COLUMNNAME_ASP_Ref_List_UU, ASP_Ref_List_UU); + } + + /** Get ASP_Ref_List_UU. + @return ASP_Ref_List_UU */ + public String getASP_Ref_List_UU () + { + return (String)get_Value(COLUMNNAME_ASP_Ref_List_UU); + } + + /** ASP_Status AD_Reference_ID=53234 */ + public static final int ASP_STATUS_AD_Reference_ID=53234; + /** Hide = H */ + public static final String ASP_STATUS_Hide = "H"; + /** Show = S */ + public static final String ASP_STATUS_Show = "S"; + /** Undefined = U */ + public static final String ASP_STATUS_Undefined = "U"; + /** Set ASP Status. + @param ASP_Status ASP Status */ + public void setASP_Status (String ASP_Status) + { + + set_Value (COLUMNNAME_ASP_Status, ASP_Status); + } + + /** Get ASP Status. + @return ASP Status */ + public String getASP_Status () + { + return (String)get_Value(COLUMNNAME_ASP_Status); + } +} \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_ASP_Tab.java b/org.adempiere.base/src/org/compiere/model/X_ASP_Tab.java index d05886a6ef..0f3878cd69 100644 --- a/org.adempiere.base/src/org/compiere/model/X_ASP_Tab.java +++ b/org.adempiere.base/src/org/compiere/model/X_ASP_Tab.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for ASP_Tab - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_ASP_Tab extends PO implements I_ASP_Tab, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_ASP_Tab (Properties ctx, int ASP_Tab_ID, String trxName) @@ -72,9 +72,9 @@ public class X_ASP_Tab extends PO implements I_ASP_Tab, I_Persistent return sb.toString(); } - public I_AD_Tab getAD_Tab() throws RuntimeException + public org.compiere.model.I_AD_Tab getAD_Tab() throws RuntimeException { - return (I_AD_Tab)MTable.get(getCtx(), I_AD_Tab.Table_Name) + return (org.compiere.model.I_AD_Tab)MTable.get(getCtx(), org.compiere.model.I_AD_Tab.Table_Name) .getPO(getAD_Tab_ID(), get_TrxName()); } /** Set Tab. @@ -164,9 +164,23 @@ public class X_ASP_Tab extends PO implements I_ASP_Tab, I_Persistent return ii.intValue(); } - public I_ASP_Window getASP_Window() throws RuntimeException + /** Set ASP_Tab_UU. + @param ASP_Tab_UU ASP_Tab_UU */ + public void setASP_Tab_UU (String ASP_Tab_UU) + { + set_Value (COLUMNNAME_ASP_Tab_UU, ASP_Tab_UU); + } + + /** Get ASP_Tab_UU. + @return ASP_Tab_UU */ + public String getASP_Tab_UU () + { + return (String)get_Value(COLUMNNAME_ASP_Tab_UU); + } + + public org.compiere.model.I_ASP_Window getASP_Window() throws RuntimeException { - return (I_ASP_Window)MTable.get(getCtx(), I_ASP_Window.Table_Name) + return (org.compiere.model.I_ASP_Window)MTable.get(getCtx(), org.compiere.model.I_ASP_Window.Table_Name) .getPO(getASP_Window_ID(), get_TrxName()); } /** Set ASP Window. diff --git a/org.adempiere.base/src/org/compiere/model/X_ASP_Task.java b/org.adempiere.base/src/org/compiere/model/X_ASP_Task.java index fd088a5a34..52f96c25fd 100644 --- a/org.adempiere.base/src/org/compiere/model/X_ASP_Task.java +++ b/org.adempiere.base/src/org/compiere/model/X_ASP_Task.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for ASP_Task - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_ASP_Task extends PO implements I_ASP_Task, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_ASP_Task (Properties ctx, int ASP_Task_ID, String trxName) @@ -72,9 +72,9 @@ public class X_ASP_Task extends PO implements I_ASP_Task, I_Persistent return sb.toString(); } - public I_AD_Task getAD_Task() throws RuntimeException + public org.compiere.model.I_AD_Task getAD_Task() throws RuntimeException { - return (I_AD_Task)MTable.get(getCtx(), I_AD_Task.Table_Name) + return (org.compiere.model.I_AD_Task)MTable.get(getCtx(), org.compiere.model.I_AD_Task.Table_Name) .getPO(getAD_Task_ID(), get_TrxName()); } /** Set OS Task. @@ -100,9 +100,9 @@ public class X_ASP_Task extends PO implements I_ASP_Task, I_Persistent return ii.intValue(); } - public I_ASP_Level getASP_Level() throws RuntimeException + public org.compiere.model.I_ASP_Level getASP_Level() throws RuntimeException { - return (I_ASP_Level)MTable.get(getCtx(), I_ASP_Level.Table_Name) + return (org.compiere.model.I_ASP_Level)MTable.get(getCtx(), org.compiere.model.I_ASP_Level.Table_Name) .getPO(getASP_Level_ID(), get_TrxName()); } /** Set ASP Level. @@ -167,4 +167,18 @@ public class X_ASP_Task extends PO implements I_ASP_Task, I_Persistent return 0; return ii.intValue(); } + + /** Set ASP_Task_UU. + @param ASP_Task_UU ASP_Task_UU */ + public void setASP_Task_UU (String ASP_Task_UU) + { + set_Value (COLUMNNAME_ASP_Task_UU, ASP_Task_UU); + } + + /** Get ASP_Task_UU. + @return ASP_Task_UU */ + public String getASP_Task_UU () + { + return (String)get_Value(COLUMNNAME_ASP_Task_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_ASP_Window.java b/org.adempiere.base/src/org/compiere/model/X_ASP_Window.java index d2e7950069..709ce87cfa 100644 --- a/org.adempiere.base/src/org/compiere/model/X_ASP_Window.java +++ b/org.adempiere.base/src/org/compiere/model/X_ASP_Window.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for ASP_Window - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_ASP_Window extends PO implements I_ASP_Window, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_ASP_Window (Properties ctx, int ASP_Window_ID, String trxName) @@ -73,9 +73,9 @@ public class X_ASP_Window extends PO implements I_ASP_Window, I_Persistent return sb.toString(); } - public I_AD_Window getAD_Window() throws RuntimeException + public org.compiere.model.I_AD_Window getAD_Window() throws RuntimeException { - return (I_AD_Window)MTable.get(getCtx(), I_AD_Window.Table_Name) + return (org.compiere.model.I_AD_Window)MTable.get(getCtx(), org.compiere.model.I_AD_Window.Table_Name) .getPO(getAD_Window_ID(), get_TrxName()); } /** Set Window. @@ -101,9 +101,9 @@ public class X_ASP_Window extends PO implements I_ASP_Window, I_Persistent return ii.intValue(); } - public I_ASP_Level getASP_Level() throws RuntimeException + public org.compiere.model.I_ASP_Level getASP_Level() throws RuntimeException { - return (I_ASP_Level)MTable.get(getCtx(), I_ASP_Level.Table_Name) + return (org.compiere.model.I_ASP_Level)MTable.get(getCtx(), org.compiere.model.I_ASP_Level.Table_Name) .getPO(getASP_Level_ID(), get_TrxName()); } /** Set ASP Level. @@ -176,4 +176,18 @@ public class X_ASP_Window extends PO implements I_ASP_Window, I_Persistent return 0; return ii.intValue(); } + + /** Set ASP_Window_UU. + @param ASP_Window_UU ASP_Window_UU */ + public void setASP_Window_UU (String ASP_Window_UU) + { + set_Value (COLUMNNAME_ASP_Window_UU, ASP_Window_UU); + } + + /** Get ASP_Window_UU. + @return ASP_Window_UU */ + public String getASP_Window_UU () + { + return (String)get_Value(COLUMNNAME_ASP_Window_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_ASP_Workflow.java b/org.adempiere.base/src/org/compiere/model/X_ASP_Workflow.java index 3f72063152..43f4b59dd9 100644 --- a/org.adempiere.base/src/org/compiere/model/X_ASP_Workflow.java +++ b/org.adempiere.base/src/org/compiere/model/X_ASP_Workflow.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for ASP_Workflow - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_ASP_Workflow extends PO implements I_ASP_Workflow, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_ASP_Workflow (Properties ctx, int ASP_Workflow_ID, String trxName) @@ -72,9 +72,9 @@ public class X_ASP_Workflow extends PO implements I_ASP_Workflow, I_Persistent return sb.toString(); } - public I_AD_Workflow getAD_Workflow() throws RuntimeException + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException { - return (I_AD_Workflow)MTable.get(getCtx(), I_AD_Workflow.Table_Name) + return (org.compiere.model.I_AD_Workflow)MTable.get(getCtx(), org.compiere.model.I_AD_Workflow.Table_Name) .getPO(getAD_Workflow_ID(), get_TrxName()); } /** Set Workflow. @@ -100,9 +100,9 @@ public class X_ASP_Workflow extends PO implements I_ASP_Workflow, I_Persistent return ii.intValue(); } - public I_ASP_Level getASP_Level() throws RuntimeException + public org.compiere.model.I_ASP_Level getASP_Level() throws RuntimeException { - return (I_ASP_Level)MTable.get(getCtx(), I_ASP_Level.Table_Name) + return (org.compiere.model.I_ASP_Level)MTable.get(getCtx(), org.compiere.model.I_ASP_Level.Table_Name) .getPO(getASP_Level_ID(), get_TrxName()); } /** Set ASP Level. @@ -167,4 +167,18 @@ public class X_ASP_Workflow extends PO implements I_ASP_Workflow, I_Persistent return 0; return ii.intValue(); } + + /** Set ASP_Workflow_UU. + @param ASP_Workflow_UU ASP_Workflow_UU */ + public void setASP_Workflow_UU (String ASP_Workflow_UU) + { + set_Value (COLUMNNAME_ASP_Workflow_UU, ASP_Workflow_UU); + } + + /** Get ASP_Workflow_UU. + @return ASP_Workflow_UU */ + public String getASP_Workflow_UU () + { + return (String)get_Value(COLUMNNAME_ASP_Workflow_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Asset.java b/org.adempiere.base/src/org/compiere/model/X_A_Asset.java index e06ffbcdb7..045330831c 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Asset.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Asset.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for A_Asset - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Asset extends PO implements I_A_Asset, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Asset (Properties ctx, int A_Asset_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Acct.java b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Acct.java index df244f6ebc..ba71cbae17 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for A_Asset_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Asset_Acct extends PO implements I_A_Asset_Acct, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Asset_Acct (Properties ctx, int A_Asset_Acct_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Addition.java b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Addition.java index 32a1cf6630..9f17a658b7 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Addition.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Addition.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for A_Asset_Addition - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Asset_Addition extends PO implements I_A_Asset_Addition, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Asset_Addition (Properties ctx, int A_Asset_Addition_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Change.java b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Change.java index 3536fadf8d..f278a1fdd7 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Change.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Change.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for A_Asset_Change - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Asset_Change extends PO implements I_A_Asset_Change, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Asset_Change (Properties ctx, int A_Asset_Change_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Class.java b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Class.java index 27264add4d..96aece8cb6 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Class.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Class.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for A_Asset_Class - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Asset_Class extends PO implements I_A_Asset_Class, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Asset_Class (Properties ctx, int A_Asset_Class_ID, String trxName) @@ -93,6 +93,20 @@ public class X_A_Asset_Class extends PO implements I_A_Asset_Class, I_Persistent return ii.intValue(); } + /** Set A_Asset_Class_UU. + @param A_Asset_Class_UU A_Asset_Class_UU */ + public void setA_Asset_Class_UU (String A_Asset_Class_UU) + { + set_Value (COLUMNNAME_A_Asset_Class_UU, A_Asset_Class_UU); + } + + /** Get A_Asset_Class_UU. + @return A_Asset_Class_UU */ + public String getA_Asset_Class_UU () + { + return (String)get_Value(COLUMNNAME_A_Asset_Class_UU); + } + /** Set Life Periods 2004 (min). @param A_Life_Period_2004 Life Periods 2004 (min) */ public void setA_Life_Period_2004 (int A_Life_Period_2004) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Delivery.java b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Delivery.java index f57b79447d..d3b1a1409b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Delivery.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Delivery.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for A_Asset_Delivery - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Asset_Delivery extends PO implements I_A_Asset_Delivery, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Asset_Delivery (Properties ctx, int A_Asset_Delivery_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Disposed.java b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Disposed.java index 01c382f45f..9e8eb35873 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Disposed.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Disposed.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for A_Asset_Disposed - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Asset_Disposed extends PO implements I_A_Asset_Disposed, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Asset_Disposed (Properties ctx, int A_Asset_Disposed_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Group.java b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Group.java index ce8981084a..de422a9b2f 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Group.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Group.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for A_Asset_Group - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Asset_Group extends PO implements I_A_Asset_Group, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Asset_Group (Properties ctx, int A_Asset_Group_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Group_Acct.java b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Group_Acct.java index 472d2399e3..0f7f7dc52f 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Group_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Group_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for A_Asset_Group_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Asset_Group_Acct extends PO implements I_A_Asset_Group_Acct, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Asset_Group_Acct (Properties ctx, int A_Asset_Group_Acct_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Info_Fin.java b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Info_Fin.java index 8ff57efdc5..ff1a1d200a 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Info_Fin.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Info_Fin.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for A_Asset_Info_Fin - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Asset_Info_Fin extends PO implements I_A_Asset_Info_Fin, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Asset_Info_Fin (Properties ctx, int A_Asset_Info_Fin_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Info_Ins.java b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Info_Ins.java index 272a3182e4..13d03ab57b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Info_Ins.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Info_Ins.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for A_Asset_Info_Ins - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Asset_Info_Ins extends PO implements I_A_Asset_Info_Ins, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Asset_Info_Ins (Properties ctx, int A_Asset_Info_Ins_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Info_Lic.java b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Info_Lic.java index ce3818f238..009fb20f60 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Info_Lic.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Info_Lic.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for A_Asset_Info_Lic - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Asset_Info_Lic extends PO implements I_A_Asset_Info_Lic, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Asset_Info_Lic (Properties ctx, int A_Asset_Info_Lic_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Info_Oth.java b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Info_Oth.java index a1354b8356..93a636afe6 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Info_Oth.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Info_Oth.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for A_Asset_Info_Oth - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Asset_Info_Oth extends PO implements I_A_Asset_Info_Oth, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Asset_Info_Oth (Properties ctx, int A_Asset_Info_Oth_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Info_Tax.java b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Info_Tax.java index 2aa67ff6e8..7a2d9d5ec3 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Info_Tax.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Info_Tax.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for A_Asset_Info_Tax - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Asset_Info_Tax extends PO implements I_A_Asset_Info_Tax, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Asset_Info_Tax (Properties ctx, int A_Asset_Info_Tax_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Product.java b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Product.java index 50e392aa7e..b851ed29e0 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Product.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Product.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for A_Asset_Product - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Asset_Product extends PO implements I_A_Asset_Product, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Asset_Product (Properties ctx, int A_Asset_Product_ID, String trxName) @@ -124,6 +124,20 @@ public class X_A_Asset_Product extends PO implements I_A_Asset_Product, I_Persis return ii.intValue(); } + /** Set A_Asset_Product_UU. + @param A_Asset_Product_UU A_Asset_Product_UU */ + public void setA_Asset_Product_UU (String A_Asset_Product_UU) + { + set_Value (COLUMNNAME_A_Asset_Product_UU, A_Asset_Product_UU); + } + + /** Get A_Asset_Product_UU. + @return A_Asset_Product_UU */ + public String getA_Asset_Product_UU () + { + return (String)get_Value(COLUMNNAME_A_Asset_Product_UU); + } + /** Set Current Qty. @param A_QTY_Current Current Qty */ public void setA_QTY_Current (BigDecimal A_QTY_Current) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Retirement.java b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Retirement.java index 343d1d3a12..6488dd475e 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Retirement.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Retirement.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for A_Asset_Retirement - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Asset_Retirement extends PO implements I_A_Asset_Retirement, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Asset_Retirement (Properties ctx, int A_Asset_Retirement_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Reval.java b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Reval.java index 4764bbd9e6..be46b5c2a4 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Reval.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Reval.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for A_Asset_Reval - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Asset_Reval extends PO implements I_A_Asset_Reval, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Asset_Reval (Properties ctx, int A_Asset_Reval_ID, String trxName) @@ -197,6 +197,20 @@ public class X_A_Asset_Reval extends PO implements I_A_Asset_Reval, I_Persistent return new KeyNamePair(get_ID(), String.valueOf(getA_Asset_Reval_ID())); } + /** Set A_Asset_Reval_UU. + @param A_Asset_Reval_UU A_Asset_Reval_UU */ + public void setA_Asset_Reval_UU (String A_Asset_Reval_UU) + { + set_Value (COLUMNNAME_A_Asset_Reval_UU, A_Asset_Reval_UU); + } + + /** Get A_Asset_Reval_UU. + @return A_Asset_Reval_UU */ + public String getA_Asset_Reval_UU () + { + return (String)get_Value(COLUMNNAME_A_Asset_Reval_UU); + } + /** Set Change Acumulated Depreciation. @param A_Change_Acumulated_Depr Change Acumulated Depreciation */ public void setA_Change_Acumulated_Depr (BigDecimal A_Change_Acumulated_Depr) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Reval_Entry.java b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Reval_Entry.java index 7fe000a4e0..980839ae98 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Reval_Entry.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Reval_Entry.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for A_Asset_Reval_Entry - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Asset_Reval_Entry extends PO implements I_A_Asset_Reval_Entry, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Asset_Reval_Entry (Properties ctx, int A_Asset_Reval_Entry_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Reval_Index.java b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Reval_Index.java index 911c19e73c..39abb20f28 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Reval_Index.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Reval_Index.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for A_Asset_Reval_Index - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Asset_Reval_Index extends PO implements I_A_Asset_Reval_Index, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Asset_Reval_Index (Properties ctx, int A_Asset_Reval_Index_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Split.java b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Split.java index 6826a97c13..9b65e3cbc6 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Split.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Split.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for A_Asset_Split - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Asset_Split extends PO implements I_A_Asset_Split, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Asset_Split (Properties ctx, int A_Asset_Split_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Spread.java b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Spread.java index 33a08971f1..93f66c75a5 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Spread.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Spread.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for A_Asset_Spread - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Asset_Spread extends PO implements I_A_Asset_Spread, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Asset_Spread (Properties ctx, int A_Asset_Spread_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Transfer.java b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Transfer.java index e40c8c2bfc..5e8b9bc239 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Transfer.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Transfer.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for A_Asset_Transfer - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Asset_Transfer extends PO implements I_A_Asset_Transfer, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Asset_Transfer (Properties ctx, int A_Asset_Transfer_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Type.java b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Type.java index 0d374ec2ff..f286b69a9f 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Type.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Type.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for A_Asset_Type - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Asset_Type extends PO implements I_A_Asset_Type, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Asset_Type (Properties ctx, int A_Asset_Type_ID, String trxName) @@ -98,6 +98,20 @@ public class X_A_Asset_Type extends PO implements I_A_Asset_Type, I_Persistent return ii.intValue(); } + /** Set A_Asset_Type_UU. + @param A_Asset_Type_UU A_Asset_Type_UU */ + public void setA_Asset_Type_UU (String A_Asset_Type_UU) + { + set_Value (COLUMNNAME_A_Asset_Type_UU, A_Asset_Type_UU); + } + + /** Get A_Asset_Type_UU. + @return A_Asset_Type_UU */ + public String getA_Asset_Type_UU () + { + return (String)get_Value(COLUMNNAME_A_Asset_Type_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Use.java b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Use.java index 32264d440c..b764dcc247 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Asset_Use.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Asset_Use.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for A_Asset_Use - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Asset_Use extends PO implements I_A_Asset_Use, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Asset_Use (Properties ctx, int A_Asset_Use_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Depreciation.java b/org.adempiere.base/src/org/compiere/model/X_A_Depreciation.java index 550aece4c6..f868881c94 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Depreciation.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Depreciation.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for A_Depreciation - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Depreciation extends PO implements I_A_Depreciation, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Depreciation (Properties ctx, int A_Depreciation_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Build.java b/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Build.java index e7267b9f4f..33513895f3 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Build.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Build.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for A_Depreciation_Build - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Depreciation_Build extends PO implements I_A_Depreciation_Build, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Depreciation_Build (Properties ctx, int A_Depreciation_Build_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Convention.java b/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Convention.java index 0a1cbf27e2..a81a0fb29a 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Convention.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Convention.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for A_Depreciation_Convention - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Depreciation_Convention extends PO implements I_A_Depreciation_Convention, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Depreciation_Convention (Properties ctx, int A_Depreciation_Convention_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Entry.java b/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Entry.java index 08cd6c96e7..6e91359045 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Entry.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Entry.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for A_Depreciation_Entry - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Depreciation_Entry extends PO implements I_A_Depreciation_Entry, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Depreciation_Entry (Properties ctx, int A_Depreciation_Entry_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Exp.java b/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Exp.java index 98ea474d4d..b5da7725cf 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Exp.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Exp.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for A_Depreciation_Exp - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Depreciation_Exp extends PO implements I_A_Depreciation_Exp, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Depreciation_Exp (Properties ctx, int A_Depreciation_Exp_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Forecast.java b/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Forecast.java index 9f336a9704..6ce0314351 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Forecast.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Forecast.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for A_Depreciation_Forecast - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Depreciation_Forecast extends PO implements I_A_Depreciation_Forecast, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Depreciation_Forecast (Properties ctx, int A_Depreciation_Forecast_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Method.java b/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Method.java index d37573bd73..bc24f14d37 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Method.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Method.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for A_Depreciation_Method - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Depreciation_Method extends PO implements I_A_Depreciation_Method, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Depreciation_Method (Properties ctx, int A_Depreciation_Method_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Table_Detail.java b/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Table_Detail.java index aef1f810a6..75f10b79a0 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Table_Detail.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Table_Detail.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for A_Depreciation_Table_Detail - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Depreciation_Table_Detail extends PO implements I_A_Depreciation_Table_Detail, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Depreciation_Table_Detail (Properties ctx, int A_Depreciation_Table_Detail_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Table_Header.java b/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Table_Header.java index 810fbe5f54..67e63c92c3 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Table_Header.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Table_Header.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for A_Depreciation_Table_Header - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Depreciation_Table_Header extends PO implements I_A_Depreciation_Table_Header, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Depreciation_Table_Header (Properties ctx, int A_Depreciation_Table_Header_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Workfile.java b/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Workfile.java index 0b0a5dba52..408ea138db 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Workfile.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Depreciation_Workfile.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for A_Depreciation_Workfile - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Depreciation_Workfile extends PO implements I_A_Depreciation_Workfile, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Depreciation_Workfile (Properties ctx, int A_Depreciation_Workfile_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_A_FundingMode.java b/org.adempiere.base/src/org/compiere/model/X_A_FundingMode.java index cb06441e03..38a973b675 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_FundingMode.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_FundingMode.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for A_FundingMode - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_FundingMode extends PO implements I_A_FundingMode, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_FundingMode (Properties ctx, int A_FundingMode_ID, String trxName) @@ -92,6 +92,20 @@ public class X_A_FundingMode extends PO implements I_A_FundingMode, I_Persistent return ii.intValue(); } + /** Set A_FundingMode_UU. + @param A_FundingMode_UU A_FundingMode_UU */ + public void setA_FundingMode_UU (String A_FundingMode_UU) + { + set_Value (COLUMNNAME_A_FundingMode_UU, A_FundingMode_UU); + } + + /** Get A_FundingMode_UU. + @return A_FundingMode_UU */ + public String getA_FundingMode_UU () + { + return (String)get_Value(COLUMNNAME_A_FundingMode_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_A_FundingMode_Acct.java b/org.adempiere.base/src/org/compiere/model/X_A_FundingMode_Acct.java new file mode 100644 index 0000000000..de3b01f286 --- /dev/null +++ b/org.adempiere.base/src/org/compiere/model/X_A_FundingMode_Acct.java @@ -0,0 +1,162 @@ +/****************************************************************************** + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * + * This program is free software, you can redistribute it and/or modify it * + * under the terms version 2 of the GNU General Public License as published * + * by the Free Software Foundation. This program is distributed in the hope * + * that it will be useful, but WITHOUT ANY WARRANTY, without even the implied * + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * + * See the GNU General Public License for more details. * + * You should have received a copy of the GNU General Public License along * + * with this program, if not, write to the Free Software Foundation, Inc., * + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * + * For the text or an alternative of this public license, you may reach us * + * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * + * or via info@compiere.org or http://www.compiere.org/license.html * + *****************************************************************************/ +/** Generated Model - DO NOT CHANGE */ +package org.compiere.model; + +import java.sql.ResultSet; +import java.util.Properties; + +/** Generated Model for A_FundingMode_Acct + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ +public class X_A_FundingMode_Acct extends PO implements I_A_FundingMode_Acct, I_Persistent +{ + + /** + * + */ + private static final long serialVersionUID = 20121031L; + + /** Standard Constructor */ + public X_A_FundingMode_Acct (Properties ctx, int A_FundingMode_Acct_ID, String trxName) + { + super (ctx, A_FundingMode_Acct_ID, trxName); + /** if (A_FundingMode_Acct_ID == 0) + { + setA_FundingMode_Acct (0); + setA_FundingMode_ID (0); + setC_AcctSchema_ID (0); + } */ + } + + /** Load Constructor */ + public X_A_FundingMode_Acct (Properties ctx, ResultSet rs, String trxName) + { + super (ctx, rs, trxName); + } + + /** AccessLevel + * @return 3 - Client - Org + */ + protected int get_AccessLevel() + { + return accessLevel.intValue(); + } + + /** Load Meta Data */ + protected POInfo initPO (Properties ctx) + { + POInfo poi = POInfo.getPOInfo (ctx, Table_ID, get_TrxName()); + return poi; + } + + public String toString() + { + StringBuffer sb = new StringBuffer ("X_A_FundingMode_Acct[") + .append(get_ID()).append("]"); + return sb.toString(); + } + + public I_C_ValidCombination getA_FundingMode_A() throws RuntimeException + { + return (I_C_ValidCombination)MTable.get(getCtx(), I_C_ValidCombination.Table_Name) + .getPO(getA_FundingMode_Acct(), get_TrxName()); } + + /** Set Funding Mode Account. + @param A_FundingMode_Acct Funding Mode Account */ + public void setA_FundingMode_Acct (int A_FundingMode_Acct) + { + set_Value (COLUMNNAME_A_FundingMode_Acct, Integer.valueOf(A_FundingMode_Acct)); + } + + /** Get Funding Mode Account. + @return Funding Mode Account */ + public int getA_FundingMode_Acct () + { + Integer ii = (Integer)get_Value(COLUMNNAME_A_FundingMode_Acct); + if (ii == null) + return 0; + return ii.intValue(); + } + + /** Set A_FundingMode_Acct_UU. + @param A_FundingMode_Acct_UU A_FundingMode_Acct_UU */ + public void setA_FundingMode_Acct_UU (String A_FundingMode_Acct_UU) + { + set_Value (COLUMNNAME_A_FundingMode_Acct_UU, A_FundingMode_Acct_UU); + } + + /** Get A_FundingMode_Acct_UU. + @return A_FundingMode_Acct_UU */ + public String getA_FundingMode_Acct_UU () + { + return (String)get_Value(COLUMNNAME_A_FundingMode_Acct_UU); + } + + public org.compiere.model.I_A_FundingMode getA_FundingMode() throws RuntimeException + { + return (org.compiere.model.I_A_FundingMode)MTable.get(getCtx(), org.compiere.model.I_A_FundingMode.Table_Name) + .getPO(getA_FundingMode_ID(), get_TrxName()); } + + /** Set Asset Funding Mode. + @param A_FundingMode_ID Asset Funding Mode */ + public void setA_FundingMode_ID (int A_FundingMode_ID) + { + if (A_FundingMode_ID < 1) + set_ValueNoCheck (COLUMNNAME_A_FundingMode_ID, null); + else + set_ValueNoCheck (COLUMNNAME_A_FundingMode_ID, Integer.valueOf(A_FundingMode_ID)); + } + + /** Get Asset Funding Mode. + @return Asset Funding Mode */ + public int getA_FundingMode_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_A_FundingMode_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException + { + return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_Name) + .getPO(getC_AcctSchema_ID(), get_TrxName()); } + + /** Set Accounting Schema. + @param C_AcctSchema_ID + Rules for accounting + */ + public void setC_AcctSchema_ID (int C_AcctSchema_ID) + { + if (C_AcctSchema_ID < 1) + set_ValueNoCheck (COLUMNNAME_C_AcctSchema_ID, null); + else + set_ValueNoCheck (COLUMNNAME_C_AcctSchema_ID, Integer.valueOf(C_AcctSchema_ID)); + } + + /** Get Accounting Schema. + @return Rules for accounting + */ + public int getC_AcctSchema_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_C_AcctSchema_ID); + if (ii == null) + return 0; + return ii.intValue(); + } +} \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_A_Registration.java b/org.adempiere.base/src/org/compiere/model/X_A_Registration.java index db866922e3..9c3204484f 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_Registration.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_Registration.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for A_Registration - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_Registration extends PO implements I_A_Registration, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_Registration (Properties ctx, int A_Registration_ID, String trxName) @@ -76,9 +76,9 @@ public class X_A_Registration extends PO implements I_A_Registration, I_Persiste return sb.toString(); } - public I_A_Asset getA_Asset() throws RuntimeException + public org.compiere.model.I_A_Asset getA_Asset() throws RuntimeException { - return (I_A_Asset)MTable.get(getCtx(), I_A_Asset.Table_Name) + return (org.compiere.model.I_A_Asset)MTable.get(getCtx(), org.compiere.model.I_A_Asset.Table_Name) .getPO(getA_Asset_ID(), get_TrxName()); } /** Set Asset. @@ -104,9 +104,9 @@ public class X_A_Registration extends PO implements I_A_Registration, I_Persiste return ii.intValue(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -155,6 +155,20 @@ public class X_A_Registration extends PO implements I_A_Registration, I_Persiste return ii.intValue(); } + /** Set A_Registration_UU. + @param A_Registration_UU A_Registration_UU */ + public void setA_Registration_UU (String A_Registration_UU) + { + set_Value (COLUMNNAME_A_Registration_UU, A_Registration_UU); + } + + /** Get A_Registration_UU. + @return A_Registration_UU */ + public String getA_Registration_UU () + { + return (String)get_Value(COLUMNNAME_A_Registration_UU); + } + /** Set In Service Date. @param AssetServiceDate Date when Asset was put into service @@ -172,9 +186,9 @@ public class X_A_Registration extends PO implements I_A_Registration, I_Persiste return (Timestamp)get_Value(COLUMNNAME_AssetServiceDate); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -306,9 +320,9 @@ public class X_A_Registration extends PO implements I_A_Registration, I_Persiste return false; } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_A_RegistrationAttribute.java b/org.adempiere.base/src/org/compiere/model/X_A_RegistrationAttribute.java index 87e9515d56..33100b7a8d 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_RegistrationAttribute.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_RegistrationAttribute.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for A_RegistrationAttribute - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_RegistrationAttribute extends PO implements I_A_RegistrationAttribute, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_RegistrationAttribute (Properties ctx, int A_RegistrationAttribute_ID, String trxName) @@ -75,9 +75,9 @@ public class X_A_RegistrationAttribute extends PO implements I_A_RegistrationAtt return sb.toString(); } - public I_AD_Reference getAD_Reference() throws RuntimeException + public org.compiere.model.I_AD_Reference getAD_Reference() throws RuntimeException { - return (I_AD_Reference)MTable.get(getCtx(), I_AD_Reference.Table_Name) + return (org.compiere.model.I_AD_Reference)MTable.get(getCtx(), org.compiere.model.I_AD_Reference.Table_Name) .getPO(getAD_Reference_ID(), get_TrxName()); } /** Set Reference. @@ -103,9 +103,9 @@ public class X_A_RegistrationAttribute extends PO implements I_A_RegistrationAtt return ii.intValue(); } - public I_AD_Reference getAD_Reference_Value() throws RuntimeException + public org.compiere.model.I_AD_Reference getAD_Reference_Value() throws RuntimeException { - return (I_AD_Reference)MTable.get(getCtx(), I_AD_Reference.Table_Name) + return (org.compiere.model.I_AD_Reference)MTable.get(getCtx(), org.compiere.model.I_AD_Reference.Table_Name) .getPO(getAD_Reference_Value_ID(), get_TrxName()); } /** Set Reference Key. @@ -154,6 +154,20 @@ public class X_A_RegistrationAttribute extends PO implements I_A_RegistrationAtt return ii.intValue(); } + /** Set A_RegistrationAttribute_UU. + @param A_RegistrationAttribute_UU A_RegistrationAttribute_UU */ + public void setA_RegistrationAttribute_UU (String A_RegistrationAttribute_UU) + { + set_Value (COLUMNNAME_A_RegistrationAttribute_UU, A_RegistrationAttribute_UU); + } + + /** Get A_RegistrationAttribute_UU. + @return A_RegistrationAttribute_UU */ + public String getA_RegistrationAttribute_UU () + { + return (String)get_Value(COLUMNNAME_A_RegistrationAttribute_UU); + } + /** Set DB Column Name. @param ColumnName Name of the column in the database diff --git a/org.adempiere.base/src/org/compiere/model/X_A_RegistrationProduct.java b/org.adempiere.base/src/org/compiere/model/X_A_RegistrationProduct.java index 4fe936d020..8181646d41 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_RegistrationProduct.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_RegistrationProduct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for A_RegistrationProduct - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_RegistrationProduct extends PO implements I_A_RegistrationProduct, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_RegistrationProduct (Properties ctx, int A_RegistrationProduct_ID, String trxName) @@ -70,9 +70,9 @@ public class X_A_RegistrationProduct extends PO implements I_A_RegistrationProdu return sb.toString(); } - public I_A_RegistrationAttribute getA_RegistrationAttribute() throws RuntimeException + public org.compiere.model.I_A_RegistrationAttribute getA_RegistrationAttribute() throws RuntimeException { - return (I_A_RegistrationAttribute)MTable.get(getCtx(), I_A_RegistrationAttribute.Table_Name) + return (org.compiere.model.I_A_RegistrationAttribute)MTable.get(getCtx(), org.compiere.model.I_A_RegistrationAttribute.Table_Name) .getPO(getA_RegistrationAttribute_ID(), get_TrxName()); } /** Set Registration Attribute. @@ -98,6 +98,20 @@ public class X_A_RegistrationProduct extends PO implements I_A_RegistrationProdu return ii.intValue(); } + /** Set A_RegistrationProduct_UU. + @param A_RegistrationProduct_UU A_RegistrationProduct_UU */ + public void setA_RegistrationProduct_UU (String A_RegistrationProduct_UU) + { + set_Value (COLUMNNAME_A_RegistrationProduct_UU, A_RegistrationProduct_UU); + } + + /** Get A_RegistrationProduct_UU. + @return A_RegistrationProduct_UU */ + public String getA_RegistrationProduct_UU () + { + return (String)get_Value(COLUMNNAME_A_RegistrationProduct_UU); + } + /** Set Description. @param Description Optional short description of the record @@ -115,9 +129,9 @@ public class X_A_RegistrationProduct extends PO implements I_A_RegistrationProdu return (String)get_Value(COLUMNNAME_Description); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_A_RegistrationValue.java b/org.adempiere.base/src/org/compiere/model/X_A_RegistrationValue.java index 2f254a7bae..7f2bbad93b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_A_RegistrationValue.java +++ b/org.adempiere.base/src/org/compiere/model/X_A_RegistrationValue.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for A_RegistrationValue - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_A_RegistrationValue extends PO implements I_A_RegistrationValue, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_A_RegistrationValue (Properties ctx, int A_RegistrationValue_ID, String trxName) @@ -72,9 +72,9 @@ public class X_A_RegistrationValue extends PO implements I_A_RegistrationValue, return sb.toString(); } - public I_A_RegistrationAttribute getA_RegistrationAttribute() throws RuntimeException + public org.compiere.model.I_A_RegistrationAttribute getA_RegistrationAttribute() throws RuntimeException { - return (I_A_RegistrationAttribute)MTable.get(getCtx(), I_A_RegistrationAttribute.Table_Name) + return (org.compiere.model.I_A_RegistrationAttribute)MTable.get(getCtx(), org.compiere.model.I_A_RegistrationAttribute.Table_Name) .getPO(getA_RegistrationAttribute_ID(), get_TrxName()); } /** Set Registration Attribute. @@ -108,9 +108,9 @@ public class X_A_RegistrationValue extends PO implements I_A_RegistrationValue, return new KeyNamePair(get_ID(), String.valueOf(getA_RegistrationAttribute_ID())); } - public I_A_Registration getA_Registration() throws RuntimeException + public org.compiere.model.I_A_Registration getA_Registration() throws RuntimeException { - return (I_A_Registration)MTable.get(getCtx(), I_A_Registration.Table_Name) + return (org.compiere.model.I_A_Registration)MTable.get(getCtx(), org.compiere.model.I_A_Registration.Table_Name) .getPO(getA_Registration_ID(), get_TrxName()); } /** Set Registration. @@ -136,6 +136,20 @@ public class X_A_RegistrationValue extends PO implements I_A_RegistrationValue, return ii.intValue(); } + /** Set A_RegistrationValue_UU. + @param A_RegistrationValue_UU A_RegistrationValue_UU */ + public void setA_RegistrationValue_UU (String A_RegistrationValue_UU) + { + set_Value (COLUMNNAME_A_RegistrationValue_UU, A_RegistrationValue_UU); + } + + /** Get A_RegistrationValue_UU. + @return A_RegistrationValue_UU */ + public String getA_RegistrationValue_UU () + { + return (String)get_Value(COLUMNNAME_A_RegistrationValue_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_B_Bid.java b/org.adempiere.base/src/org/compiere/model/X_B_Bid.java index 2b5e4ee93e..87a5eb8248 100644 --- a/org.adempiere.base/src/org/compiere/model/X_B_Bid.java +++ b/org.adempiere.base/src/org/compiere/model/X_B_Bid.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for B_Bid - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_B_Bid extends PO implements I_B_Bid, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_B_Bid (Properties ctx, int B_Bid_ID, String trxName) @@ -75,9 +75,9 @@ public class X_B_Bid extends PO implements I_B_Bid, I_Persistent return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -126,9 +126,23 @@ public class X_B_Bid extends PO implements I_B_Bid, I_Persistent return ii.intValue(); } - public I_B_BuyerFunds getB_BuyerFunds() throws RuntimeException + /** Set B_Bid_UU. + @param B_Bid_UU B_Bid_UU */ + public void setB_Bid_UU (String B_Bid_UU) + { + set_Value (COLUMNNAME_B_Bid_UU, B_Bid_UU); + } + + /** Get B_Bid_UU. + @return B_Bid_UU */ + public String getB_Bid_UU () + { + return (String)get_Value(COLUMNNAME_B_Bid_UU); + } + + public org.compiere.model.I_B_BuyerFunds getB_BuyerFunds() throws RuntimeException { - return (I_B_BuyerFunds)MTable.get(getCtx(), I_B_BuyerFunds.Table_Name) + return (org.compiere.model.I_B_BuyerFunds)MTable.get(getCtx(), org.compiere.model.I_B_BuyerFunds.Table_Name) .getPO(getB_BuyerFunds_ID(), get_TrxName()); } /** Set Buyer Funds. @@ -154,9 +168,9 @@ public class X_B_Bid extends PO implements I_B_Bid, I_Persistent return ii.intValue(); } - public I_B_Topic getB_Topic() throws RuntimeException + public org.compiere.model.I_B_Topic getB_Topic() throws RuntimeException { - return (I_B_Topic)MTable.get(getCtx(), I_B_Topic.Table_Name) + return (org.compiere.model.I_B_Topic)MTable.get(getCtx(), org.compiere.model.I_B_Topic.Table_Name) .getPO(getB_Topic_ID(), get_TrxName()); } /** Set Topic. diff --git a/org.adempiere.base/src/org/compiere/model/X_B_BidComment.java b/org.adempiere.base/src/org/compiere/model/X_B_BidComment.java index 8a5208dba4..64a99befaf 100644 --- a/org.adempiere.base/src/org/compiere/model/X_B_BidComment.java +++ b/org.adempiere.base/src/org/compiere/model/X_B_BidComment.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for B_BidComment - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_B_BidComment extends PO implements I_B_BidComment, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_B_BidComment (Properties ctx, int B_BidComment_ID, String trxName) @@ -72,9 +72,9 @@ public class X_B_BidComment extends PO implements I_B_BidComment, I_Persistent return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -123,9 +123,23 @@ public class X_B_BidComment extends PO implements I_B_BidComment, I_Persistent return ii.intValue(); } - public I_B_Topic getB_Topic() throws RuntimeException + /** Set B_BidComment_UU. + @param B_BidComment_UU B_BidComment_UU */ + public void setB_BidComment_UU (String B_BidComment_UU) + { + set_Value (COLUMNNAME_B_BidComment_UU, B_BidComment_UU); + } + + /** Get B_BidComment_UU. + @return B_BidComment_UU */ + public String getB_BidComment_UU () + { + return (String)get_Value(COLUMNNAME_B_BidComment_UU); + } + + public org.compiere.model.I_B_Topic getB_Topic() throws RuntimeException { - return (I_B_Topic)MTable.get(getCtx(), I_B_Topic.Table_Name) + return (org.compiere.model.I_B_Topic)MTable.get(getCtx(), org.compiere.model.I_B_Topic.Table_Name) .getPO(getB_Topic_ID(), get_TrxName()); } /** Set Topic. diff --git a/org.adempiere.base/src/org/compiere/model/X_B_Buyer.java b/org.adempiere.base/src/org/compiere/model/X_B_Buyer.java index 5370d61601..ba0596bd7b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_B_Buyer.java +++ b/org.adempiere.base/src/org/compiere/model/X_B_Buyer.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for B_Buyer - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_B_Buyer extends PO implements I_B_Buyer, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_B_Buyer (Properties ctx, int B_Buyer_ID, String trxName) @@ -73,9 +73,9 @@ public class X_B_Buyer extends PO implements I_B_Buyer, I_Persistent return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -101,6 +101,20 @@ public class X_B_Buyer extends PO implements I_B_Buyer, I_Persistent return ii.intValue(); } + /** Set B_Buyer_UU. + @param B_Buyer_UU B_Buyer_UU */ + public void setB_Buyer_UU (String B_Buyer_UU) + { + set_Value (COLUMNNAME_B_Buyer_UU, B_Buyer_UU); + } + + /** Get B_Buyer_UU. + @return B_Buyer_UU */ + public String getB_Buyer_UU () + { + return (String)get_Value(COLUMNNAME_B_Buyer_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_B_BuyerFunds.java b/org.adempiere.base/src/org/compiere/model/X_B_BuyerFunds.java index d5ef88028b..f55a256f29 100644 --- a/org.adempiere.base/src/org/compiere/model/X_B_BuyerFunds.java +++ b/org.adempiere.base/src/org/compiere/model/X_B_BuyerFunds.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for B_BuyerFunds - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_B_BuyerFunds extends PO implements I_B_BuyerFunds, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_B_BuyerFunds (Properties ctx, int B_BuyerFunds_ID, String trxName) @@ -75,9 +75,9 @@ public class X_B_BuyerFunds extends PO implements I_B_BuyerFunds, I_Persistent return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -134,6 +134,20 @@ public class X_B_BuyerFunds extends PO implements I_B_BuyerFunds, I_Persistent return ii.intValue(); } + /** Set B_BuyerFunds_UU. + @param B_BuyerFunds_UU B_BuyerFunds_UU */ + public void setB_BuyerFunds_UU (String B_BuyerFunds_UU) + { + set_Value (COLUMNNAME_B_BuyerFunds_UU, B_BuyerFunds_UU); + } + + /** Get B_BuyerFunds_UU. + @return B_BuyerFunds_UU */ + public String getB_BuyerFunds_UU () + { + return (String)get_Value(COLUMNNAME_B_BuyerFunds_UU); + } + /** Set Committed Amount. @param CommittedAmt The (legal) commitment amount @@ -154,9 +168,9 @@ public class X_B_BuyerFunds extends PO implements I_B_BuyerFunds, I_Persistent return bd; } - public I_C_Order getC_Order() throws RuntimeException + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException { - return (I_C_Order)MTable.get(getCtx(), I_C_Order.Table_Name) + return (org.compiere.model.I_C_Order)MTable.get(getCtx(), org.compiere.model.I_C_Order.Table_Name) .getPO(getC_Order_ID(), get_TrxName()); } /** Set Order. @@ -182,9 +196,9 @@ public class X_B_BuyerFunds extends PO implements I_B_BuyerFunds, I_Persistent return ii.intValue(); } - public I_C_Payment getC_Payment() throws RuntimeException + public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException { - return (I_C_Payment)MTable.get(getCtx(), I_C_Payment.Table_Name) + return (org.compiere.model.I_C_Payment)MTable.get(getCtx(), org.compiere.model.I_C_Payment.Table_Name) .getPO(getC_Payment_ID(), get_TrxName()); } /** Set Payment. diff --git a/org.adempiere.base/src/org/compiere/model/X_B_Offer.java b/org.adempiere.base/src/org/compiere/model/X_B_Offer.java index d4d2e65ff4..82470a7344 100644 --- a/org.adempiere.base/src/org/compiere/model/X_B_Offer.java +++ b/org.adempiere.base/src/org/compiere/model/X_B_Offer.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for B_Offer - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_B_Offer extends PO implements I_B_Offer, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_B_Offer (Properties ctx, int B_Offer_ID, String trxName) @@ -75,9 +75,9 @@ public class X_B_Offer extends PO implements I_B_Offer, I_Persistent return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -126,9 +126,23 @@ public class X_B_Offer extends PO implements I_B_Offer, I_Persistent return ii.intValue(); } - public I_B_SellerFunds getB_SellerFunds() throws RuntimeException + /** Set B_Offer_UU. + @param B_Offer_UU B_Offer_UU */ + public void setB_Offer_UU (String B_Offer_UU) + { + set_Value (COLUMNNAME_B_Offer_UU, B_Offer_UU); + } + + /** Get B_Offer_UU. + @return B_Offer_UU */ + public String getB_Offer_UU () + { + return (String)get_Value(COLUMNNAME_B_Offer_UU); + } + + public org.compiere.model.I_B_SellerFunds getB_SellerFunds() throws RuntimeException { - return (I_B_SellerFunds)MTable.get(getCtx(), I_B_SellerFunds.Table_Name) + return (org.compiere.model.I_B_SellerFunds)MTable.get(getCtx(), org.compiere.model.I_B_SellerFunds.Table_Name) .getPO(getB_SellerFunds_ID(), get_TrxName()); } /** Set Seller Funds. @@ -154,9 +168,9 @@ public class X_B_Offer extends PO implements I_B_Offer, I_Persistent return ii.intValue(); } - public I_B_Topic getB_Topic() throws RuntimeException + public org.compiere.model.I_B_Topic getB_Topic() throws RuntimeException { - return (I_B_Topic)MTable.get(getCtx(), I_B_Topic.Table_Name) + return (org.compiere.model.I_B_Topic)MTable.get(getCtx(), org.compiere.model.I_B_Topic.Table_Name) .getPO(getB_Topic_ID(), get_TrxName()); } /** Set Topic. diff --git a/org.adempiere.base/src/org/compiere/model/X_B_Seller.java b/org.adempiere.base/src/org/compiere/model/X_B_Seller.java index 06a76b4a8c..6550b2bbf5 100644 --- a/org.adempiere.base/src/org/compiere/model/X_B_Seller.java +++ b/org.adempiere.base/src/org/compiere/model/X_B_Seller.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for B_Seller - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_B_Seller extends PO implements I_B_Seller, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_B_Seller (Properties ctx, int B_Seller_ID, String trxName) @@ -74,9 +74,9 @@ public class X_B_Seller extends PO implements I_B_Seller, I_Persistent return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -102,6 +102,20 @@ public class X_B_Seller extends PO implements I_B_Seller, I_Persistent return ii.intValue(); } + /** Set B_Seller_UU. + @param B_Seller_UU B_Seller_UU */ + public void setB_Seller_UU (String B_Seller_UU) + { + set_Value (COLUMNNAME_B_Seller_UU, B_Seller_UU); + } + + /** Get B_Seller_UU. + @return B_Seller_UU */ + public String getB_Seller_UU () + { + return (String)get_Value(COLUMNNAME_B_Seller_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_B_SellerFunds.java b/org.adempiere.base/src/org/compiere/model/X_B_SellerFunds.java index 148b087a3f..90573334c0 100644 --- a/org.adempiere.base/src/org/compiere/model/X_B_SellerFunds.java +++ b/org.adempiere.base/src/org/compiere/model/X_B_SellerFunds.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for B_SellerFunds - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_B_SellerFunds extends PO implements I_B_SellerFunds, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_B_SellerFunds (Properties ctx, int B_SellerFunds_ID, String trxName) @@ -75,9 +75,9 @@ public class X_B_SellerFunds extends PO implements I_B_SellerFunds, I_Persistent return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -134,6 +134,20 @@ public class X_B_SellerFunds extends PO implements I_B_SellerFunds, I_Persistent return ii.intValue(); } + /** Set B_SellerFunds_UU. + @param B_SellerFunds_UU B_SellerFunds_UU */ + public void setB_SellerFunds_UU (String B_SellerFunds_UU) + { + set_Value (COLUMNNAME_B_SellerFunds_UU, B_SellerFunds_UU); + } + + /** Get B_SellerFunds_UU. + @return B_SellerFunds_UU */ + public String getB_SellerFunds_UU () + { + return (String)get_Value(COLUMNNAME_B_SellerFunds_UU); + } + /** Set Committed Amount. @param CommittedAmt The (legal) commitment amount @@ -154,9 +168,9 @@ public class X_B_SellerFunds extends PO implements I_B_SellerFunds, I_Persistent return bd; } - public I_C_Order getC_Order() throws RuntimeException + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException { - return (I_C_Order)MTable.get(getCtx(), I_C_Order.Table_Name) + return (org.compiere.model.I_C_Order)MTable.get(getCtx(), org.compiere.model.I_C_Order.Table_Name) .getPO(getC_Order_ID(), get_TrxName()); } /** Set Order. @@ -182,9 +196,9 @@ public class X_B_SellerFunds extends PO implements I_B_SellerFunds, I_Persistent return ii.intValue(); } - public I_C_Payment getC_Payment() throws RuntimeException + public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException { - return (I_C_Payment)MTable.get(getCtx(), I_C_Payment.Table_Name) + return (org.compiere.model.I_C_Payment)MTable.get(getCtx(), org.compiere.model.I_C_Payment.Table_Name) .getPO(getC_Payment_ID(), get_TrxName()); } /** Set Payment. diff --git a/org.adempiere.base/src/org/compiere/model/X_B_Topic.java b/org.adempiere.base/src/org/compiere/model/X_B_Topic.java index 8730735dca..a64760a15c 100644 --- a/org.adempiere.base/src/org/compiere/model/X_B_Topic.java +++ b/org.adempiere.base/src/org/compiere/model/X_B_Topic.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for B_Topic - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_B_Topic extends PO implements I_B_Topic, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_B_Topic (Properties ctx, int B_Topic_ID, String trxName) @@ -80,9 +80,9 @@ public class X_B_Topic extends PO implements I_B_Topic, I_Persistent return sb.toString(); } - public I_B_TopicCategory getB_TopicCategory() throws RuntimeException + public org.compiere.model.I_B_TopicCategory getB_TopicCategory() throws RuntimeException { - return (I_B_TopicCategory)MTable.get(getCtx(), I_B_TopicCategory.Table_Name) + return (org.compiere.model.I_B_TopicCategory)MTable.get(getCtx(), org.compiere.model.I_B_TopicCategory.Table_Name) .getPO(getB_TopicCategory_ID(), get_TrxName()); } /** Set Topic Category. @@ -131,9 +131,9 @@ public class X_B_Topic extends PO implements I_B_Topic, I_Persistent return ii.intValue(); } - public I_B_TopicType getB_TopicType() throws RuntimeException + public org.compiere.model.I_B_TopicType getB_TopicType() throws RuntimeException { - return (I_B_TopicType)MTable.get(getCtx(), I_B_TopicType.Table_Name) + return (org.compiere.model.I_B_TopicType)MTable.get(getCtx(), org.compiere.model.I_B_TopicType.Table_Name) .getPO(getB_TopicType_ID(), get_TrxName()); } /** Set Topic Type. @@ -159,6 +159,20 @@ public class X_B_Topic extends PO implements I_B_Topic, I_Persistent return ii.intValue(); } + /** Set B_Topic_UU. + @param B_Topic_UU B_Topic_UU */ + public void setB_Topic_UU (String B_Topic_UU) + { + set_Value (COLUMNNAME_B_Topic_UU, B_Topic_UU); + } + + /** Get B_Topic_UU. + @return B_Topic_UU */ + public String getB_Topic_UU () + { + return (String)get_Value(COLUMNNAME_B_Topic_UU); + } + /** Set Decision date. @param DecisionDate Decision date */ public void setDecisionDate (Timestamp DecisionDate) diff --git a/org.adempiere.base/src/org/compiere/model/X_B_TopicCategory.java b/org.adempiere.base/src/org/compiere/model/X_B_TopicCategory.java index 86d855a87e..7e2d2933fc 100644 --- a/org.adempiere.base/src/org/compiere/model/X_B_TopicCategory.java +++ b/org.adempiere.base/src/org/compiere/model/X_B_TopicCategory.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for B_TopicCategory - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_B_TopicCategory extends PO implements I_B_TopicCategory, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_B_TopicCategory (Properties ctx, int B_TopicCategory_ID, String trxName) @@ -95,9 +95,23 @@ public class X_B_TopicCategory extends PO implements I_B_TopicCategory, I_Persis return ii.intValue(); } - public I_B_TopicType getB_TopicType() throws RuntimeException + /** Set B_TopicCategory_UU. + @param B_TopicCategory_UU B_TopicCategory_UU */ + public void setB_TopicCategory_UU (String B_TopicCategory_UU) + { + set_Value (COLUMNNAME_B_TopicCategory_UU, B_TopicCategory_UU); + } + + /** Get B_TopicCategory_UU. + @return B_TopicCategory_UU */ + public String getB_TopicCategory_UU () + { + return (String)get_Value(COLUMNNAME_B_TopicCategory_UU); + } + + public org.compiere.model.I_B_TopicType getB_TopicType() throws RuntimeException { - return (I_B_TopicType)MTable.get(getCtx(), I_B_TopicType.Table_Name) + return (org.compiere.model.I_B_TopicType)MTable.get(getCtx(), org.compiere.model.I_B_TopicType.Table_Name) .getPO(getB_TopicType_ID(), get_TrxName()); } /** Set Topic Type. diff --git a/org.adempiere.base/src/org/compiere/model/X_B_TopicType.java b/org.adempiere.base/src/org/compiere/model/X_B_TopicType.java index 4776034949..8c0ebe705d 100644 --- a/org.adempiere.base/src/org/compiere/model/X_B_TopicType.java +++ b/org.adempiere.base/src/org/compiere/model/X_B_TopicType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for B_TopicType - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_B_TopicType extends PO implements I_B_TopicType, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_B_TopicType (Properties ctx, int B_TopicType_ID, String trxName) @@ -112,6 +112,20 @@ public class X_B_TopicType extends PO implements I_B_TopicType, I_Persistent return ii.intValue(); } + /** Set B_TopicType_UU. + @param B_TopicType_UU B_TopicType_UU */ + public void setB_TopicType_UU (String B_TopicType_UU) + { + set_Value (COLUMNNAME_B_TopicType_UU, B_TopicType_UU); + } + + /** Get B_TopicType_UU. + @return B_TopicType_UU */ + public String getB_TopicType_UU () + { + return (String)get_Value(COLUMNNAME_B_TopicType_UU); + } + /** Set Description. @param Description Optional short description of the record @@ -146,9 +160,9 @@ public class X_B_TopicType extends PO implements I_B_TopicType, I_Persistent return (String)get_Value(COLUMNNAME_Help); } - public I_M_PriceList getM_PriceList() throws RuntimeException + public org.compiere.model.I_M_PriceList getM_PriceList() throws RuntimeException { - return (I_M_PriceList)MTable.get(getCtx(), I_M_PriceList.Table_Name) + return (org.compiere.model.I_M_PriceList)MTable.get(getCtx(), org.compiere.model.I_M_PriceList.Table_Name) .getPO(getM_PriceList_ID(), get_TrxName()); } /** Set Price List. @@ -174,9 +188,9 @@ public class X_B_TopicType extends PO implements I_B_TopicType, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -202,9 +216,9 @@ public class X_B_TopicType extends PO implements I_B_TopicType, I_Persistent return ii.intValue(); } - public I_M_Product getM_ProductMember() throws RuntimeException + public org.compiere.model.I_M_Product getM_ProductMember() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_ProductMember_ID(), get_TrxName()); } /** Set Membership. diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_AccessContainer.java b/org.adempiere.base/src/org/compiere/model/X_CM_AccessContainer.java index 351f9dea01..dc549c6ab9 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_AccessContainer.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_AccessContainer.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for CM_AccessContainer - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_AccessContainer extends PO implements I_CM_AccessContainer, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_AccessContainer (Properties ctx, int CM_AccessContainer_ID, String trxName) @@ -70,9 +70,23 @@ public class X_CM_AccessContainer extends PO implements I_CM_AccessContainer, I_ return sb.toString(); } - public I_CM_AccessProfile getCM_AccessProfile() throws RuntimeException + /** Set CM_AccessContainer_UU. + @param CM_AccessContainer_UU CM_AccessContainer_UU */ + public void setCM_AccessContainer_UU (String CM_AccessContainer_UU) + { + set_Value (COLUMNNAME_CM_AccessContainer_UU, CM_AccessContainer_UU); + } + + /** Get CM_AccessContainer_UU. + @return CM_AccessContainer_UU */ + public String getCM_AccessContainer_UU () + { + return (String)get_Value(COLUMNNAME_CM_AccessContainer_UU); + } + + public org.compiere.model.I_CM_AccessProfile getCM_AccessProfile() throws RuntimeException { - return (I_CM_AccessProfile)MTable.get(getCtx(), I_CM_AccessProfile.Table_Name) + return (org.compiere.model.I_CM_AccessProfile)MTable.get(getCtx(), org.compiere.model.I_CM_AccessProfile.Table_Name) .getPO(getCM_AccessProfile_ID(), get_TrxName()); } /** Set Web Access Profile. @@ -98,9 +112,9 @@ public class X_CM_AccessContainer extends PO implements I_CM_AccessContainer, I_ return ii.intValue(); } - public I_CM_Container getCM_Container() throws RuntimeException + public org.compiere.model.I_CM_Container getCM_Container() throws RuntimeException { - return (I_CM_Container)MTable.get(getCtx(), I_CM_Container.Table_Name) + return (org.compiere.model.I_CM_Container)MTable.get(getCtx(), org.compiere.model.I_CM_Container.Table_Name) .getPO(getCM_Container_ID(), get_TrxName()); } /** Set Web Container. diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_AccessListBPGroup.java b/org.adempiere.base/src/org/compiere/model/X_CM_AccessListBPGroup.java index 8ba0426d5a..aba4a1f7fe 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_AccessListBPGroup.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_AccessListBPGroup.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for CM_AccessListBPGroup - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_AccessListBPGroup extends PO implements I_CM_AccessListBPGroup, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_AccessListBPGroup (Properties ctx, int CM_AccessListBPGroup_ID, String trxName) @@ -70,9 +70,9 @@ public class X_CM_AccessListBPGroup extends PO implements I_CM_AccessListBPGroup return sb.toString(); } - public I_C_BP_Group getC_BP_Group() throws RuntimeException + public org.compiere.model.I_C_BP_Group getC_BP_Group() throws RuntimeException { - return (I_C_BP_Group)MTable.get(getCtx(), I_C_BP_Group.Table_Name) + return (org.compiere.model.I_C_BP_Group)MTable.get(getCtx(), org.compiere.model.I_C_BP_Group.Table_Name) .getPO(getC_BP_Group_ID(), get_TrxName()); } /** Set Business Partner Group. @@ -98,9 +98,23 @@ public class X_CM_AccessListBPGroup extends PO implements I_CM_AccessListBPGroup return ii.intValue(); } - public I_CM_AccessProfile getCM_AccessProfile() throws RuntimeException + /** Set CM_AccessListBPGroup_UU. + @param CM_AccessListBPGroup_UU CM_AccessListBPGroup_UU */ + public void setCM_AccessListBPGroup_UU (String CM_AccessListBPGroup_UU) + { + set_Value (COLUMNNAME_CM_AccessListBPGroup_UU, CM_AccessListBPGroup_UU); + } + + /** Get CM_AccessListBPGroup_UU. + @return CM_AccessListBPGroup_UU */ + public String getCM_AccessListBPGroup_UU () + { + return (String)get_Value(COLUMNNAME_CM_AccessListBPGroup_UU); + } + + public org.compiere.model.I_CM_AccessProfile getCM_AccessProfile() throws RuntimeException { - return (I_CM_AccessProfile)MTable.get(getCtx(), I_CM_AccessProfile.Table_Name) + return (org.compiere.model.I_CM_AccessProfile)MTable.get(getCtx(), org.compiere.model.I_CM_AccessProfile.Table_Name) .getPO(getCM_AccessProfile_ID(), get_TrxName()); } /** Set Web Access Profile. diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_AccessListRole.java b/org.adempiere.base/src/org/compiere/model/X_CM_AccessListRole.java index 9e0d48b1df..c3a1945edb 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_AccessListRole.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_AccessListRole.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for CM_AccessListRole - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_AccessListRole extends PO implements I_CM_AccessListRole, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_AccessListRole (Properties ctx, int CM_AccessListRole_ID, String trxName) @@ -70,9 +70,9 @@ public class X_CM_AccessListRole extends PO implements I_CM_AccessListRole, I_Pe return sb.toString(); } - public I_AD_Role getAD_Role() throws RuntimeException + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException { - return (I_AD_Role)MTable.get(getCtx(), I_AD_Role.Table_Name) + return (org.compiere.model.I_AD_Role)MTable.get(getCtx(), org.compiere.model.I_AD_Role.Table_Name) .getPO(getAD_Role_ID(), get_TrxName()); } /** Set Role. @@ -98,9 +98,23 @@ public class X_CM_AccessListRole extends PO implements I_CM_AccessListRole, I_Pe return ii.intValue(); } - public I_CM_AccessProfile getCM_AccessProfile() throws RuntimeException + /** Set CM_AccessListRole_UU. + @param CM_AccessListRole_UU CM_AccessListRole_UU */ + public void setCM_AccessListRole_UU (String CM_AccessListRole_UU) + { + set_Value (COLUMNNAME_CM_AccessListRole_UU, CM_AccessListRole_UU); + } + + /** Get CM_AccessListRole_UU. + @return CM_AccessListRole_UU */ + public String getCM_AccessListRole_UU () + { + return (String)get_Value(COLUMNNAME_CM_AccessListRole_UU); + } + + public org.compiere.model.I_CM_AccessProfile getCM_AccessProfile() throws RuntimeException { - return (I_CM_AccessProfile)MTable.get(getCtx(), I_CM_AccessProfile.Table_Name) + return (org.compiere.model.I_CM_AccessProfile)MTable.get(getCtx(), org.compiere.model.I_CM_AccessProfile.Table_Name) .getPO(getCM_AccessProfile_ID(), get_TrxName()); } /** Set Web Access Profile. diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_AccessMedia.java b/org.adempiere.base/src/org/compiere/model/X_CM_AccessMedia.java index bba6ee669b..633792f0f9 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_AccessMedia.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_AccessMedia.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for CM_AccessMedia - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_AccessMedia extends PO implements I_CM_AccessMedia, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_AccessMedia (Properties ctx, int CM_AccessMedia_ID, String trxName) @@ -70,9 +70,23 @@ public class X_CM_AccessMedia extends PO implements I_CM_AccessMedia, I_Persiste return sb.toString(); } - public I_CM_AccessProfile getCM_AccessProfile() throws RuntimeException + /** Set CM_AccessMedia_UU. + @param CM_AccessMedia_UU CM_AccessMedia_UU */ + public void setCM_AccessMedia_UU (String CM_AccessMedia_UU) + { + set_Value (COLUMNNAME_CM_AccessMedia_UU, CM_AccessMedia_UU); + } + + /** Get CM_AccessMedia_UU. + @return CM_AccessMedia_UU */ + public String getCM_AccessMedia_UU () + { + return (String)get_Value(COLUMNNAME_CM_AccessMedia_UU); + } + + public org.compiere.model.I_CM_AccessProfile getCM_AccessProfile() throws RuntimeException { - return (I_CM_AccessProfile)MTable.get(getCtx(), I_CM_AccessProfile.Table_Name) + return (org.compiere.model.I_CM_AccessProfile)MTable.get(getCtx(), org.compiere.model.I_CM_AccessProfile.Table_Name) .getPO(getCM_AccessProfile_ID(), get_TrxName()); } /** Set Web Access Profile. @@ -98,9 +112,9 @@ public class X_CM_AccessMedia extends PO implements I_CM_AccessMedia, I_Persiste return ii.intValue(); } - public I_CM_Media getCM_Media() throws RuntimeException + public org.compiere.model.I_CM_Media getCM_Media() throws RuntimeException { - return (I_CM_Media)MTable.get(getCtx(), I_CM_Media.Table_Name) + return (org.compiere.model.I_CM_Media)MTable.get(getCtx(), org.compiere.model.I_CM_Media.Table_Name) .getPO(getCM_Media_ID(), get_TrxName()); } /** Set Media Item. diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_AccessNewsChannel.java b/org.adempiere.base/src/org/compiere/model/X_CM_AccessNewsChannel.java index a298f30172..b0a707510a 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_AccessNewsChannel.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_AccessNewsChannel.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for CM_AccessNewsChannel - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_AccessNewsChannel extends PO implements I_CM_AccessNewsChannel, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_AccessNewsChannel (Properties ctx, int CM_AccessNewsChannel_ID, String trxName) @@ -70,9 +70,23 @@ public class X_CM_AccessNewsChannel extends PO implements I_CM_AccessNewsChannel return sb.toString(); } - public I_CM_AccessProfile getCM_AccessProfile() throws RuntimeException + /** Set CM_AccessNewsChannel_UU. + @param CM_AccessNewsChannel_UU CM_AccessNewsChannel_UU */ + public void setCM_AccessNewsChannel_UU (String CM_AccessNewsChannel_UU) + { + set_Value (COLUMNNAME_CM_AccessNewsChannel_UU, CM_AccessNewsChannel_UU); + } + + /** Get CM_AccessNewsChannel_UU. + @return CM_AccessNewsChannel_UU */ + public String getCM_AccessNewsChannel_UU () + { + return (String)get_Value(COLUMNNAME_CM_AccessNewsChannel_UU); + } + + public org.compiere.model.I_CM_AccessProfile getCM_AccessProfile() throws RuntimeException { - return (I_CM_AccessProfile)MTable.get(getCtx(), I_CM_AccessProfile.Table_Name) + return (org.compiere.model.I_CM_AccessProfile)MTable.get(getCtx(), org.compiere.model.I_CM_AccessProfile.Table_Name) .getPO(getCM_AccessProfile_ID(), get_TrxName()); } /** Set Web Access Profile. @@ -98,9 +112,9 @@ public class X_CM_AccessNewsChannel extends PO implements I_CM_AccessNewsChannel return ii.intValue(); } - public I_CM_NewsChannel getCM_NewsChannel() throws RuntimeException + public org.compiere.model.I_CM_NewsChannel getCM_NewsChannel() throws RuntimeException { - return (I_CM_NewsChannel)MTable.get(getCtx(), I_CM_NewsChannel.Table_Name) + return (org.compiere.model.I_CM_NewsChannel)MTable.get(getCtx(), org.compiere.model.I_CM_NewsChannel.Table_Name) .getPO(getCM_NewsChannel_ID(), get_TrxName()); } /** Set News Channel. diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_AccessProfile.java b/org.adempiere.base/src/org/compiere/model/X_CM_AccessProfile.java index ecd548bd35..ca70ceb289 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_AccessProfile.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_AccessProfile.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for CM_AccessProfile - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_AccessProfile extends PO implements I_CM_AccessProfile, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_AccessProfile (Properties ctx, int CM_AccessProfile_ID, String trxName) @@ -96,6 +96,20 @@ public class X_CM_AccessProfile extends PO implements I_CM_AccessProfile, I_Pers return ii.intValue(); } + /** Set CM_AccessProfile_UU. + @param CM_AccessProfile_UU CM_AccessProfile_UU */ + public void setCM_AccessProfile_UU (String CM_AccessProfile_UU) + { + set_Value (COLUMNNAME_CM_AccessProfile_UU, CM_AccessProfile_UU); + } + + /** Get CM_AccessProfile_UU. + @return CM_AccessProfile_UU */ + public String getCM_AccessProfile_UU () + { + return (String)get_Value(COLUMNNAME_CM_AccessProfile_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_AccessStage.java b/org.adempiere.base/src/org/compiere/model/X_CM_AccessStage.java index 79556a35d3..d78d58446c 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_AccessStage.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_AccessStage.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for CM_AccessStage - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_AccessStage extends PO implements I_CM_AccessStage, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_AccessStage (Properties ctx, int CM_AccessStage_ID, String trxName) @@ -70,9 +70,9 @@ public class X_CM_AccessStage extends PO implements I_CM_AccessStage, I_Persiste return sb.toString(); } - public I_CM_AccessProfile getCM_AccessProfile() throws RuntimeException + public org.compiere.model.I_CM_AccessProfile getCM_AccessProfile() throws RuntimeException { - return (I_CM_AccessProfile)MTable.get(getCtx(), I_CM_AccessProfile.Table_Name) + return (org.compiere.model.I_CM_AccessProfile)MTable.get(getCtx(), org.compiere.model.I_CM_AccessProfile.Table_Name) .getPO(getCM_AccessProfile_ID(), get_TrxName()); } /** Set Web Access Profile. @@ -98,9 +98,23 @@ public class X_CM_AccessStage extends PO implements I_CM_AccessStage, I_Persiste return ii.intValue(); } - public I_CM_CStage getCM_CStage() throws RuntimeException + /** Set CM_AccessStage_UU. + @param CM_AccessStage_UU CM_AccessStage_UU */ + public void setCM_AccessStage_UU (String CM_AccessStage_UU) + { + set_Value (COLUMNNAME_CM_AccessStage_UU, CM_AccessStage_UU); + } + + /** Get CM_AccessStage_UU. + @return CM_AccessStage_UU */ + public String getCM_AccessStage_UU () + { + return (String)get_Value(COLUMNNAME_CM_AccessStage_UU); + } + + public org.compiere.model.I_CM_CStage getCM_CStage() throws RuntimeException { - return (I_CM_CStage)MTable.get(getCtx(), I_CM_CStage.Table_Name) + return (org.compiere.model.I_CM_CStage)MTable.get(getCtx(), org.compiere.model.I_CM_CStage.Table_Name) .getPO(getCM_CStage_ID(), get_TrxName()); } /** Set Web Container Stage. diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_Ad.java b/org.adempiere.base/src/org/compiere/model/X_CM_Ad.java index 7bee01806c..14130b9b53 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_Ad.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_Ad.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for CM_Ad - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_Ad extends PO implements I_CM_Ad, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_Ad (Properties ctx, int CM_Ad_ID, String trxName) @@ -123,9 +123,9 @@ public class X_CM_Ad extends PO implements I_CM_Ad, I_Persistent return ii.intValue(); } - public I_CM_Ad_Cat getCM_Ad_Cat() throws RuntimeException + public org.compiere.model.I_CM_Ad_Cat getCM_Ad_Cat() throws RuntimeException { - return (I_CM_Ad_Cat)MTable.get(getCtx(), I_CM_Ad_Cat.Table_Name) + return (org.compiere.model.I_CM_Ad_Cat)MTable.get(getCtx(), org.compiere.model.I_CM_Ad_Cat.Table_Name) .getPO(getCM_Ad_Cat_ID(), get_TrxName()); } /** Set Advertisement Category. @@ -174,9 +174,23 @@ public class X_CM_Ad extends PO implements I_CM_Ad, I_Persistent return ii.intValue(); } - public I_CM_Media getCM_Media() throws RuntimeException + /** Set CM_Ad_UU. + @param CM_Ad_UU CM_Ad_UU */ + public void setCM_Ad_UU (String CM_Ad_UU) + { + set_Value (COLUMNNAME_CM_Ad_UU, CM_Ad_UU); + } + + /** Get CM_Ad_UU. + @return CM_Ad_UU */ + public String getCM_Ad_UU () + { + return (String)get_Value(COLUMNNAME_CM_Ad_UU); + } + + public org.compiere.model.I_CM_Media getCM_Media() throws RuntimeException { - return (I_CM_Media)MTable.get(getCtx(), I_CM_Media.Table_Name) + return (org.compiere.model.I_CM_Media)MTable.get(getCtx(), org.compiere.model.I_CM_Media.Table_Name) .getPO(getCM_Media_ID(), get_TrxName()); } /** Set Media Item. diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_Ad_Cat.java b/org.adempiere.base/src/org/compiere/model/X_CM_Ad_Cat.java index f61bf07ef6..606ae57d2c 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_Ad_Cat.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_Ad_Cat.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for CM_Ad_Cat - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_Ad_Cat extends PO implements I_CM_Ad_Cat, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_Ad_Cat (Properties ctx, int CM_Ad_Cat_ID, String trxName) @@ -95,9 +95,23 @@ public class X_CM_Ad_Cat extends PO implements I_CM_Ad_Cat, I_Persistent return ii.intValue(); } - public I_CM_WebProject getCM_WebProject() throws RuntimeException + /** Set CM_Ad_Cat_UU. + @param CM_Ad_Cat_UU CM_Ad_Cat_UU */ + public void setCM_Ad_Cat_UU (String CM_Ad_Cat_UU) + { + set_Value (COLUMNNAME_CM_Ad_Cat_UU, CM_Ad_Cat_UU); + } + + /** Get CM_Ad_Cat_UU. + @return CM_Ad_Cat_UU */ + public String getCM_Ad_Cat_UU () + { + return (String)get_Value(COLUMNNAME_CM_Ad_Cat_UU); + } + + public org.compiere.model.I_CM_WebProject getCM_WebProject() throws RuntimeException { - return (I_CM_WebProject)MTable.get(getCtx(), I_CM_WebProject.Table_Name) + return (org.compiere.model.I_CM_WebProject)MTable.get(getCtx(), org.compiere.model.I_CM_WebProject.Table_Name) .getPO(getCM_WebProject_ID(), get_TrxName()); } /** Set Web Project. diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_BroadcastServer.java b/org.adempiere.base/src/org/compiere/model/X_CM_BroadcastServer.java index e0c45b4f3e..5b2101eb88 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_BroadcastServer.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_BroadcastServer.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for CM_BroadcastServer - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_BroadcastServer extends PO implements I_CM_BroadcastServer, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_BroadcastServer (Properties ctx, int CM_BroadcastServer_ID, String trxName) @@ -96,9 +96,23 @@ public class X_CM_BroadcastServer extends PO implements I_CM_BroadcastServer, I_ return ii.intValue(); } - public I_CM_WebProject getCM_WebProject() throws RuntimeException + /** Set CM_BroadcastServer_UU. + @param CM_BroadcastServer_UU CM_BroadcastServer_UU */ + public void setCM_BroadcastServer_UU (String CM_BroadcastServer_UU) + { + set_Value (COLUMNNAME_CM_BroadcastServer_UU, CM_BroadcastServer_UU); + } + + /** Get CM_BroadcastServer_UU. + @return CM_BroadcastServer_UU */ + public String getCM_BroadcastServer_UU () + { + return (String)get_Value(COLUMNNAME_CM_BroadcastServer_UU); + } + + public org.compiere.model.I_CM_WebProject getCM_WebProject() throws RuntimeException { - return (I_CM_WebProject)MTable.get(getCtx(), I_CM_WebProject.Table_Name) + return (org.compiere.model.I_CM_WebProject)MTable.get(getCtx(), org.compiere.model.I_CM_WebProject.Table_Name) .getPO(getCM_WebProject_ID(), get_TrxName()); } /** Set Web Project. diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_CStage.java b/org.adempiere.base/src/org/compiere/model/X_CM_CStage.java index 4310d55c26..f6930dd3d4 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_CStage.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_CStage.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for CM_CStage - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_CStage extends PO implements I_CM_CStage, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_CStage (Properties ctx, int CM_CStage_ID, String trxName) @@ -107,9 +107,9 @@ public class X_CM_CStage extends PO implements I_CM_CStage, I_Persistent return ii.intValue(); } - public I_CM_CStage getCM_CStageLink() throws RuntimeException + public org.compiere.model.I_CM_CStage getCM_CStageLink() throws RuntimeException { - return (I_CM_CStage)MTable.get(getCtx(), I_CM_CStage.Table_Name) + return (org.compiere.model.I_CM_CStage)MTable.get(getCtx(), org.compiere.model.I_CM_CStage.Table_Name) .getPO(getCM_CStageLink_ID(), get_TrxName()); } /** Set Container Link. @@ -135,9 +135,23 @@ public class X_CM_CStage extends PO implements I_CM_CStage, I_Persistent return ii.intValue(); } - public I_CM_Template getCM_Template() throws RuntimeException + /** Set CM_CStage_UU. + @param CM_CStage_UU CM_CStage_UU */ + public void setCM_CStage_UU (String CM_CStage_UU) + { + set_Value (COLUMNNAME_CM_CStage_UU, CM_CStage_UU); + } + + /** Get CM_CStage_UU. + @return CM_CStage_UU */ + public String getCM_CStage_UU () + { + return (String)get_Value(COLUMNNAME_CM_CStage_UU); + } + + public org.compiere.model.I_CM_Template getCM_Template() throws RuntimeException { - return (I_CM_Template)MTable.get(getCtx(), I_CM_Template.Table_Name) + return (org.compiere.model.I_CM_Template)MTable.get(getCtx(), org.compiere.model.I_CM_Template.Table_Name) .getPO(getCM_Template_ID(), get_TrxName()); } /** Set Template. @@ -163,9 +177,9 @@ public class X_CM_CStage extends PO implements I_CM_CStage, I_Persistent return ii.intValue(); } - public I_CM_WebProject getCM_WebProject() throws RuntimeException + public org.compiere.model.I_CM_WebProject getCM_WebProject() throws RuntimeException { - return (I_CM_WebProject)MTable.get(getCtx(), I_CM_WebProject.Table_Name) + return (org.compiere.model.I_CM_WebProject)MTable.get(getCtx(), org.compiere.model.I_CM_WebProject.Table_Name) .getPO(getCM_WebProject_ID(), get_TrxName()); } /** Set Web Project. diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_CStageTTable.java b/org.adempiere.base/src/org/compiere/model/X_CM_CStageTTable.java index ce2804ddf3..6375d77938 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_CStageTTable.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_CStageTTable.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for CM_CStageTTable - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_CStageTTable extends PO implements I_CM_CStageTTable, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_CStageTTable (Properties ctx, int CM_CStageTTable_ID, String trxName) @@ -73,9 +73,9 @@ public class X_CM_CStageTTable extends PO implements I_CM_CStageTTable, I_Persis return sb.toString(); } - public I_CM_CStage getCM_CStage() throws RuntimeException + public org.compiere.model.I_CM_CStage getCM_CStage() throws RuntimeException { - return (I_CM_CStage)MTable.get(getCtx(), I_CM_CStage.Table_Name) + return (org.compiere.model.I_CM_CStage)MTable.get(getCtx(), org.compiere.model.I_CM_CStage.Table_Name) .getPO(getCM_CStage_ID(), get_TrxName()); } /** Set Web Container Stage. @@ -124,9 +124,23 @@ public class X_CM_CStageTTable extends PO implements I_CM_CStageTTable, I_Persis return ii.intValue(); } - public I_CM_TemplateTable getCM_TemplateTable() throws RuntimeException + /** Set CM_CStageTTable_UU. + @param CM_CStageTTable_UU CM_CStageTTable_UU */ + public void setCM_CStageTTable_UU (String CM_CStageTTable_UU) + { + set_Value (COLUMNNAME_CM_CStageTTable_UU, CM_CStageTTable_UU); + } + + /** Get CM_CStageTTable_UU. + @return CM_CStageTTable_UU */ + public String getCM_CStageTTable_UU () + { + return (String)get_Value(COLUMNNAME_CM_CStageTTable_UU); + } + + public org.compiere.model.I_CM_TemplateTable getCM_TemplateTable() throws RuntimeException { - return (I_CM_TemplateTable)MTable.get(getCtx(), I_CM_TemplateTable.Table_Name) + return (org.compiere.model.I_CM_TemplateTable)MTable.get(getCtx(), org.compiere.model.I_CM_TemplateTable.Table_Name) .getPO(getCM_TemplateTable_ID(), get_TrxName()); } /** Set Template Table. diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_CStage_Element.java b/org.adempiere.base/src/org/compiere/model/X_CM_CStage_Element.java index 64419fc173..8e2a21ed42 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_CStage_Element.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_CStage_Element.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for CM_CStage_Element - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_CStage_Element extends PO implements I_CM_CStage_Element, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_CStage_Element (Properties ctx, int CM_CStage_Element_ID, String trxName) @@ -95,9 +95,23 @@ public class X_CM_CStage_Element extends PO implements I_CM_CStage_Element, I_Pe return ii.intValue(); } - public I_CM_CStage getCM_CStage() throws RuntimeException + /** Set CM_CStage_Element_UU. + @param CM_CStage_Element_UU CM_CStage_Element_UU */ + public void setCM_CStage_Element_UU (String CM_CStage_Element_UU) + { + set_Value (COLUMNNAME_CM_CStage_Element_UU, CM_CStage_Element_UU); + } + + /** Get CM_CStage_Element_UU. + @return CM_CStage_Element_UU */ + public String getCM_CStage_Element_UU () + { + return (String)get_Value(COLUMNNAME_CM_CStage_Element_UU); + } + + public org.compiere.model.I_CM_CStage getCM_CStage() throws RuntimeException { - return (I_CM_CStage)MTable.get(getCtx(), I_CM_CStage.Table_Name) + return (org.compiere.model.I_CM_CStage)MTable.get(getCtx(), org.compiere.model.I_CM_CStage.Table_Name) .getPO(getCM_CStage_ID(), get_TrxName()); } /** Set Web Container Stage. diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_Chat.java b/org.adempiere.base/src/org/compiere/model/X_CM_Chat.java index 9526e5f494..cb2b63c613 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_Chat.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_Chat.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for CM_Chat - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_Chat extends PO implements I_CM_Chat, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_Chat (Properties ctx, int CM_Chat_ID, String trxName) @@ -74,9 +74,9 @@ public class X_CM_Chat extends PO implements I_CM_Chat, I_Persistent return sb.toString(); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @@ -125,9 +125,9 @@ public class X_CM_Chat extends PO implements I_CM_Chat, I_Persistent return ii.intValue(); } - public I_CM_ChatType getCM_ChatType() throws RuntimeException + public org.compiere.model.I_CM_ChatType getCM_ChatType() throws RuntimeException { - return (I_CM_ChatType)MTable.get(getCtx(), I_CM_ChatType.Table_Name) + return (org.compiere.model.I_CM_ChatType)MTable.get(getCtx(), org.compiere.model.I_CM_ChatType.Table_Name) .getPO(getCM_ChatType_ID(), get_TrxName()); } /** Set Chat Type. @@ -153,6 +153,20 @@ public class X_CM_Chat extends PO implements I_CM_Chat, I_Persistent return ii.intValue(); } + /** Set CM_Chat_UU. + @param CM_Chat_UU CM_Chat_UU */ + public void setCM_Chat_UU (String CM_Chat_UU) + { + set_Value (COLUMNNAME_CM_Chat_UU, CM_Chat_UU); + } + + /** Get CM_Chat_UU. + @return CM_Chat_UU */ + public String getCM_Chat_UU () + { + return (String)get_Value(COLUMNNAME_CM_Chat_UU); + } + /** ConfidentialType AD_Reference_ID=340 */ public static final int CONFIDENTIALTYPE_AD_Reference_ID=340; /** Public Information = A */ diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_ChatEntry.java b/org.adempiere.base/src/org/compiere/model/X_CM_ChatEntry.java index 57da4b37da..a541ba5626 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_ChatEntry.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_ChatEntry.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for CM_ChatEntry - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_ChatEntry extends PO implements I_CM_ChatEntry, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_ChatEntry (Properties ctx, int CM_ChatEntry_ID, String trxName) @@ -75,9 +75,9 @@ public class X_CM_ChatEntry extends PO implements I_CM_ChatEntry, I_Persistent return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -146,9 +146,9 @@ public class X_CM_ChatEntry extends PO implements I_CM_ChatEntry, I_Persistent return (String)get_Value(COLUMNNAME_ChatEntryType); } - public I_CM_ChatEntry getCM_ChatEntryGrandParent() throws RuntimeException + public org.compiere.model.I_CM_ChatEntry getCM_ChatEntryGrandParent() throws RuntimeException { - return (I_CM_ChatEntry)MTable.get(getCtx(), I_CM_ChatEntry.Table_Name) + return (org.compiere.model.I_CM_ChatEntry)MTable.get(getCtx(), org.compiere.model.I_CM_ChatEntry.Table_Name) .getPO(getCM_ChatEntryGrandParent_ID(), get_TrxName()); } /** Set Chat Entry Grandparent. @@ -205,9 +205,9 @@ public class X_CM_ChatEntry extends PO implements I_CM_ChatEntry, I_Persistent return new KeyNamePair(get_ID(), String.valueOf(getCM_ChatEntry_ID())); } - public I_CM_ChatEntry getCM_ChatEntryParent() throws RuntimeException + public org.compiere.model.I_CM_ChatEntry getCM_ChatEntryParent() throws RuntimeException { - return (I_CM_ChatEntry)MTable.get(getCtx(), I_CM_ChatEntry.Table_Name) + return (org.compiere.model.I_CM_ChatEntry)MTable.get(getCtx(), org.compiere.model.I_CM_ChatEntry.Table_Name) .getPO(getCM_ChatEntryParent_ID(), get_TrxName()); } /** Set Chat Entry Parent. @@ -233,9 +233,23 @@ public class X_CM_ChatEntry extends PO implements I_CM_ChatEntry, I_Persistent return ii.intValue(); } - public I_CM_Chat getCM_Chat() throws RuntimeException + /** Set CM_ChatEntry_UU. + @param CM_ChatEntry_UU CM_ChatEntry_UU */ + public void setCM_ChatEntry_UU (String CM_ChatEntry_UU) + { + set_Value (COLUMNNAME_CM_ChatEntry_UU, CM_ChatEntry_UU); + } + + /** Get CM_ChatEntry_UU. + @return CM_ChatEntry_UU */ + public String getCM_ChatEntry_UU () + { + return (String)get_Value(COLUMNNAME_CM_ChatEntry_UU); + } + + public org.compiere.model.I_CM_Chat getCM_Chat() throws RuntimeException { - return (I_CM_Chat)MTable.get(getCtx(), I_CM_Chat.Table_Name) + return (org.compiere.model.I_CM_Chat)MTable.get(getCtx(), org.compiere.model.I_CM_Chat.Table_Name) .getPO(getCM_Chat_ID(), get_TrxName()); } /** Set Chat. diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_ChatType.java b/org.adempiere.base/src/org/compiere/model/X_CM_ChatType.java index c3652bbe00..491261807a 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_ChatType.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_ChatType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for CM_ChatType - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_ChatType extends PO implements I_CM_ChatType, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_ChatType (Properties ctx, int CM_ChatType_ID, String trxName) @@ -72,9 +72,9 @@ public class X_CM_ChatType extends PO implements I_CM_ChatType, I_Persistent return sb.toString(); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @@ -123,6 +123,20 @@ public class X_CM_ChatType extends PO implements I_CM_ChatType, I_Persistent return ii.intValue(); } + /** Set CM_ChatType_UU. + @param CM_ChatType_UU CM_ChatType_UU */ + public void setCM_ChatType_UU (String CM_ChatType_UU) + { + set_Value (COLUMNNAME_CM_ChatType_UU, CM_ChatType_UU); + } + + /** Get CM_ChatType_UU. + @return CM_ChatType_UU */ + public String getCM_ChatType_UU () + { + return (String)get_Value(COLUMNNAME_CM_ChatType_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_ChatTypeUpdate.java b/org.adempiere.base/src/org/compiere/model/X_CM_ChatTypeUpdate.java index 0f7da3a251..fca1175df4 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_ChatTypeUpdate.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_ChatTypeUpdate.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for CM_ChatTypeUpdate - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_ChatTypeUpdate extends PO implements I_CM_ChatTypeUpdate, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_ChatTypeUpdate (Properties ctx, int CM_ChatTypeUpdate_ID, String trxName) @@ -71,9 +71,9 @@ public class X_CM_ChatTypeUpdate extends PO implements I_CM_ChatTypeUpdate, I_Pe return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -99,9 +99,9 @@ public class X_CM_ChatTypeUpdate extends PO implements I_CM_ChatTypeUpdate, I_Pe return ii.intValue(); } - public I_CM_ChatType getCM_ChatType() throws RuntimeException + public org.compiere.model.I_CM_ChatType getCM_ChatType() throws RuntimeException { - return (I_CM_ChatType)MTable.get(getCtx(), I_CM_ChatType.Table_Name) + return (org.compiere.model.I_CM_ChatType)MTable.get(getCtx(), org.compiere.model.I_CM_ChatType.Table_Name) .getPO(getCM_ChatType_ID(), get_TrxName()); } /** Set Chat Type. @@ -127,6 +127,20 @@ public class X_CM_ChatTypeUpdate extends PO implements I_CM_ChatTypeUpdate, I_Pe return ii.intValue(); } + /** Set CM_ChatTypeUpdate_UU. + @param CM_ChatTypeUpdate_UU CM_ChatTypeUpdate_UU */ + public void setCM_ChatTypeUpdate_UU (String CM_ChatTypeUpdate_UU) + { + set_Value (COLUMNNAME_CM_ChatTypeUpdate_UU, CM_ChatTypeUpdate_UU); + } + + /** Get CM_ChatTypeUpdate_UU. + @return CM_ChatTypeUpdate_UU */ + public String getCM_ChatTypeUpdate_UU () + { + return (String)get_Value(COLUMNNAME_CM_ChatTypeUpdate_UU); + } + /** Set Self-Service. @param IsSelfService This is a Self-Service entry or this entry can be changed via Self-Service diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_ChatUpdate.java b/org.adempiere.base/src/org/compiere/model/X_CM_ChatUpdate.java index efaa1421dc..eb9f3e9e8b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_ChatUpdate.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_ChatUpdate.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for CM_ChatUpdate - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_ChatUpdate extends PO implements I_CM_ChatUpdate, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_ChatUpdate (Properties ctx, int CM_ChatUpdate_ID, String trxName) @@ -71,9 +71,9 @@ public class X_CM_ChatUpdate extends PO implements I_CM_ChatUpdate, I_Persistent return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -99,9 +99,9 @@ public class X_CM_ChatUpdate extends PO implements I_CM_ChatUpdate, I_Persistent return ii.intValue(); } - public I_CM_Chat getCM_Chat() throws RuntimeException + public org.compiere.model.I_CM_Chat getCM_Chat() throws RuntimeException { - return (I_CM_Chat)MTable.get(getCtx(), I_CM_Chat.Table_Name) + return (org.compiere.model.I_CM_Chat)MTable.get(getCtx(), org.compiere.model.I_CM_Chat.Table_Name) .getPO(getCM_Chat_ID(), get_TrxName()); } /** Set Chat. @@ -127,6 +127,20 @@ public class X_CM_ChatUpdate extends PO implements I_CM_ChatUpdate, I_Persistent return ii.intValue(); } + /** Set CM_ChatUpdate_UU. + @param CM_ChatUpdate_UU CM_ChatUpdate_UU */ + public void setCM_ChatUpdate_UU (String CM_ChatUpdate_UU) + { + set_Value (COLUMNNAME_CM_ChatUpdate_UU, CM_ChatUpdate_UU); + } + + /** Get CM_ChatUpdate_UU. + @return CM_ChatUpdate_UU */ + public String getCM_ChatUpdate_UU () + { + return (String)get_Value(COLUMNNAME_CM_ChatUpdate_UU); + } + /** Set Self-Service. @param IsSelfService This is a Self-Service entry or this entry can be changed via Self-Service diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_Container.java b/org.adempiere.base/src/org/compiere/model/X_CM_Container.java index e006885a16..ce5a960f35 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_Container.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_Container.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for CM_Container - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_Container extends PO implements I_CM_Container, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_Container (Properties ctx, int CM_Container_ID, String trxName) @@ -105,9 +105,9 @@ public class X_CM_Container extends PO implements I_CM_Container, I_Persistent return ii.intValue(); } - public I_CM_Container getCM_ContainerLink() throws RuntimeException + public org.compiere.model.I_CM_Container getCM_ContainerLink() throws RuntimeException { - return (I_CM_Container)MTable.get(getCtx(), I_CM_Container.Table_Name) + return (org.compiere.model.I_CM_Container)MTable.get(getCtx(), org.compiere.model.I_CM_Container.Table_Name) .getPO(getCM_ContainerLink_ID(), get_TrxName()); } /** Set Container Link. @@ -133,9 +133,23 @@ public class X_CM_Container extends PO implements I_CM_Container, I_Persistent return ii.intValue(); } - public I_CM_Template getCM_Template() throws RuntimeException + /** Set CM_Container_UU. + @param CM_Container_UU CM_Container_UU */ + public void setCM_Container_UU (String CM_Container_UU) + { + set_Value (COLUMNNAME_CM_Container_UU, CM_Container_UU); + } + + /** Get CM_Container_UU. + @return CM_Container_UU */ + public String getCM_Container_UU () + { + return (String)get_Value(COLUMNNAME_CM_Container_UU); + } + + public org.compiere.model.I_CM_Template getCM_Template() throws RuntimeException { - return (I_CM_Template)MTable.get(getCtx(), I_CM_Template.Table_Name) + return (org.compiere.model.I_CM_Template)MTable.get(getCtx(), org.compiere.model.I_CM_Template.Table_Name) .getPO(getCM_Template_ID(), get_TrxName()); } /** Set Template. @@ -161,9 +175,9 @@ public class X_CM_Container extends PO implements I_CM_Container, I_Persistent return ii.intValue(); } - public I_CM_WebProject getCM_WebProject() throws RuntimeException + public org.compiere.model.I_CM_WebProject getCM_WebProject() throws RuntimeException { - return (I_CM_WebProject)MTable.get(getCtx(), I_CM_WebProject.Table_Name) + return (org.compiere.model.I_CM_WebProject)MTable.get(getCtx(), org.compiere.model.I_CM_WebProject.Table_Name) .getPO(getCM_WebProject_ID(), get_TrxName()); } /** Set Web Project. diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_ContainerTTable.java b/org.adempiere.base/src/org/compiere/model/X_CM_ContainerTTable.java index 4ecd506d59..8d29de7fd7 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_ContainerTTable.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_ContainerTTable.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for CM_ContainerTTable - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_ContainerTTable extends PO implements I_CM_ContainerTTable, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_ContainerTTable (Properties ctx, int CM_ContainerTTable_ID, String trxName) @@ -73,9 +73,9 @@ public class X_CM_ContainerTTable extends PO implements I_CM_ContainerTTable, I_ return sb.toString(); } - public I_CM_Container getCM_Container() throws RuntimeException + public org.compiere.model.I_CM_Container getCM_Container() throws RuntimeException { - return (I_CM_Container)MTable.get(getCtx(), I_CM_Container.Table_Name) + return (org.compiere.model.I_CM_Container)MTable.get(getCtx(), org.compiere.model.I_CM_Container.Table_Name) .getPO(getCM_Container_ID(), get_TrxName()); } /** Set Web Container. @@ -124,9 +124,23 @@ public class X_CM_ContainerTTable extends PO implements I_CM_ContainerTTable, I_ return ii.intValue(); } - public I_CM_TemplateTable getCM_TemplateTable() throws RuntimeException + /** Set CM_ContainerTTable_UU. + @param CM_ContainerTTable_UU CM_ContainerTTable_UU */ + public void setCM_ContainerTTable_UU (String CM_ContainerTTable_UU) + { + set_Value (COLUMNNAME_CM_ContainerTTable_UU, CM_ContainerTTable_UU); + } + + /** Get CM_ContainerTTable_UU. + @return CM_ContainerTTable_UU */ + public String getCM_ContainerTTable_UU () + { + return (String)get_Value(COLUMNNAME_CM_ContainerTTable_UU); + } + + public org.compiere.model.I_CM_TemplateTable getCM_TemplateTable() throws RuntimeException { - return (I_CM_TemplateTable)MTable.get(getCtx(), I_CM_TemplateTable.Table_Name) + return (org.compiere.model.I_CM_TemplateTable)MTable.get(getCtx(), org.compiere.model.I_CM_TemplateTable.Table_Name) .getPO(getCM_TemplateTable_ID(), get_TrxName()); } /** Set Template Table. diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_Container_Element.java b/org.adempiere.base/src/org/compiere/model/X_CM_Container_Element.java index c7af325096..a835ecbe7a 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_Container_Element.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_Container_Element.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for CM_Container_Element - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_Container_Element extends PO implements I_CM_Container_Element, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_Container_Element (Properties ctx, int CM_Container_Element_ID, String trxName) @@ -95,9 +95,23 @@ public class X_CM_Container_Element extends PO implements I_CM_Container_Element return ii.intValue(); } - public I_CM_Container getCM_Container() throws RuntimeException + /** Set CM_Container_Element_UU. + @param CM_Container_Element_UU CM_Container_Element_UU */ + public void setCM_Container_Element_UU (String CM_Container_Element_UU) + { + set_Value (COLUMNNAME_CM_Container_Element_UU, CM_Container_Element_UU); + } + + /** Get CM_Container_Element_UU. + @return CM_Container_Element_UU */ + public String getCM_Container_Element_UU () + { + return (String)get_Value(COLUMNNAME_CM_Container_Element_UU); + } + + public org.compiere.model.I_CM_Container getCM_Container() throws RuntimeException { - return (I_CM_Container)MTable.get(getCtx(), I_CM_Container.Table_Name) + return (org.compiere.model.I_CM_Container)MTable.get(getCtx(), org.compiere.model.I_CM_Container.Table_Name) .getPO(getCM_Container_ID(), get_TrxName()); } /** Set Web Container. diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_Container_URL.java b/org.adempiere.base/src/org/compiere/model/X_CM_Container_URL.java index dff7cf354c..94d5709ad1 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_Container_URL.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_Container_URL.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.sql.Timestamp; import java.util.Properties; /** Generated Model for CM_Container_URL - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_Container_URL extends PO implements I_CM_Container_URL, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_Container_URL (Properties ctx, int CM_Container_URL_ID, String trxName) @@ -91,9 +91,9 @@ public class X_CM_Container_URL extends PO implements I_CM_Container_URL, I_Pers return (Timestamp)get_Value(COLUMNNAME_Checked); } - public I_CM_Container getCM_Container() throws RuntimeException + public org.compiere.model.I_CM_Container getCM_Container() throws RuntimeException { - return (I_CM_Container)MTable.get(getCtx(), I_CM_Container.Table_Name) + return (org.compiere.model.I_CM_Container)MTable.get(getCtx(), org.compiere.model.I_CM_Container.Table_Name) .getPO(getCM_Container_ID(), get_TrxName()); } /** Set Web Container. @@ -142,6 +142,20 @@ public class X_CM_Container_URL extends PO implements I_CM_Container_URL, I_Pers return ii.intValue(); } + /** Set CM_Container_URL_UU. + @param CM_Container_URL_UU CM_Container_URL_UU */ + public void setCM_Container_URL_UU (String CM_Container_URL_UU) + { + set_Value (COLUMNNAME_CM_Container_URL_UU, CM_Container_URL_UU); + } + + /** Get CM_Container_URL_UU. + @return CM_Container_URL_UU */ + public String getCM_Container_URL_UU () + { + return (String)get_Value(COLUMNNAME_CM_Container_URL_UU); + } + /** Set Last Result. @param Last_Result Contains data on the last check result diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_Media.java b/org.adempiere.base/src/org/compiere/model/X_CM_Media.java index 5612ec46b5..36714c7870 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_Media.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_Media.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for CM_Media - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_Media extends PO implements I_CM_Media, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_Media (Properties ctx, int CM_Media_ID, String trxName) @@ -119,9 +119,23 @@ public class X_CM_Media extends PO implements I_CM_Media, I_Persistent return ii.intValue(); } - public I_CM_WebProject getCM_WebProject() throws RuntimeException + /** Set CM_Media_UU. + @param CM_Media_UU CM_Media_UU */ + public void setCM_Media_UU (String CM_Media_UU) + { + set_Value (COLUMNNAME_CM_Media_UU, CM_Media_UU); + } + + /** Get CM_Media_UU. + @return CM_Media_UU */ + public String getCM_Media_UU () + { + return (String)get_Value(COLUMNNAME_CM_Media_UU); + } + + public org.compiere.model.I_CM_WebProject getCM_WebProject() throws RuntimeException { - return (I_CM_WebProject)MTable.get(getCtx(), I_CM_WebProject.Table_Name) + return (org.compiere.model.I_CM_WebProject)MTable.get(getCtx(), org.compiere.model.I_CM_WebProject.Table_Name) .getPO(getCM_WebProject_ID(), get_TrxName()); } /** Set Web Project. diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_MediaDeploy.java b/org.adempiere.base/src/org/compiere/model/X_CM_MediaDeploy.java index c1d2acc90c..c5223e2b9c 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_MediaDeploy.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_MediaDeploy.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.sql.Timestamp; import java.util.Properties; /** Generated Model for CM_MediaDeploy - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_MediaDeploy extends PO implements I_CM_MediaDeploy, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_MediaDeploy (Properties ctx, int CM_MediaDeploy_ID, String trxName) @@ -96,9 +96,23 @@ public class X_CM_MediaDeploy extends PO implements I_CM_MediaDeploy, I_Persiste return ii.intValue(); } - public I_CM_Media getCM_Media() throws RuntimeException + /** Set CM_MediaDeploy_UU. + @param CM_MediaDeploy_UU CM_MediaDeploy_UU */ + public void setCM_MediaDeploy_UU (String CM_MediaDeploy_UU) + { + set_Value (COLUMNNAME_CM_MediaDeploy_UU, CM_MediaDeploy_UU); + } + + /** Get CM_MediaDeploy_UU. + @return CM_MediaDeploy_UU */ + public String getCM_MediaDeploy_UU () + { + return (String)get_Value(COLUMNNAME_CM_MediaDeploy_UU); + } + + public org.compiere.model.I_CM_Media getCM_Media() throws RuntimeException { - return (I_CM_Media)MTable.get(getCtx(), I_CM_Media.Table_Name) + return (org.compiere.model.I_CM_Media)MTable.get(getCtx(), org.compiere.model.I_CM_Media.Table_Name) .getPO(getCM_Media_ID(), get_TrxName()); } /** Set Media Item. @@ -124,9 +138,9 @@ public class X_CM_MediaDeploy extends PO implements I_CM_MediaDeploy, I_Persiste return ii.intValue(); } - public I_CM_Media_Server getCM_Media_Server() throws RuntimeException + public org.compiere.model.I_CM_Media_Server getCM_Media_Server() throws RuntimeException { - return (I_CM_Media_Server)MTable.get(getCtx(), I_CM_Media_Server.Table_Name) + return (org.compiere.model.I_CM_Media_Server)MTable.get(getCtx(), org.compiere.model.I_CM_Media_Server.Table_Name) .getPO(getCM_Media_Server_ID(), get_TrxName()); } /** Set Media Server. diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_Media_Server.java b/org.adempiere.base/src/org/compiere/model/X_CM_Media_Server.java index a984bbcc53..20cf114742 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_Media_Server.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_Media_Server.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for CM_Media_Server - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_Media_Server extends PO implements I_CM_Media_Server, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_Media_Server (Properties ctx, int CM_Media_Server_ID, String trxName) @@ -96,9 +96,23 @@ public class X_CM_Media_Server extends PO implements I_CM_Media_Server, I_Persis return ii.intValue(); } - public I_CM_WebProject getCM_WebProject() throws RuntimeException + /** Set CM_Media_Server_UU. + @param CM_Media_Server_UU CM_Media_Server_UU */ + public void setCM_Media_Server_UU (String CM_Media_Server_UU) + { + set_Value (COLUMNNAME_CM_Media_Server_UU, CM_Media_Server_UU); + } + + /** Get CM_Media_Server_UU. + @return CM_Media_Server_UU */ + public String getCM_Media_Server_UU () + { + return (String)get_Value(COLUMNNAME_CM_Media_Server_UU); + } + + public org.compiere.model.I_CM_WebProject getCM_WebProject() throws RuntimeException { - return (I_CM_WebProject)MTable.get(getCtx(), I_CM_WebProject.Table_Name) + return (org.compiere.model.I_CM_WebProject)MTable.get(getCtx(), org.compiere.model.I_CM_WebProject.Table_Name) .getPO(getCM_WebProject_ID(), get_TrxName()); } /** Set Web Project. @@ -260,7 +274,7 @@ public class X_CM_Media_Server extends PO implements I_CM_Media_Server, I_Persis /** Set URL. @param URL - Full URL address - e.g. http://www.adempiere.org + Full URL address - e.g. http://www.idempiere.org */ public void setURL (String URL) { @@ -268,7 +282,7 @@ public class X_CM_Media_Server extends PO implements I_CM_Media_Server, I_Persis } /** Get URL. - @return Full URL address - e.g. http://www.adempiere.org + @return Full URL address - e.g. http://www.idempiere.org */ public String getURL () { diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_NewsChannel.java b/org.adempiere.base/src/org/compiere/model/X_CM_NewsChannel.java index d3b24ba5c6..1e6678272b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_NewsChannel.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_NewsChannel.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for CM_NewsChannel - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_NewsChannel extends PO implements I_CM_NewsChannel, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_NewsChannel (Properties ctx, int CM_NewsChannel_ID, String trxName) @@ -116,9 +116,23 @@ public class X_CM_NewsChannel extends PO implements I_CM_NewsChannel, I_Persiste return ii.intValue(); } - public I_CM_WebProject getCM_WebProject() throws RuntimeException + /** Set CM_NewsChannel_UU. + @param CM_NewsChannel_UU CM_NewsChannel_UU */ + public void setCM_NewsChannel_UU (String CM_NewsChannel_UU) + { + set_Value (COLUMNNAME_CM_NewsChannel_UU, CM_NewsChannel_UU); + } + + /** Get CM_NewsChannel_UU. + @return CM_NewsChannel_UU */ + public String getCM_NewsChannel_UU () + { + return (String)get_Value(COLUMNNAME_CM_NewsChannel_UU); + } + + public org.compiere.model.I_CM_WebProject getCM_WebProject() throws RuntimeException { - return (I_CM_WebProject)MTable.get(getCtx(), I_CM_WebProject.Table_Name) + return (org.compiere.model.I_CM_WebProject)MTable.get(getCtx(), org.compiere.model.I_CM_WebProject.Table_Name) .getPO(getCM_WebProject_ID(), get_TrxName()); } /** Set Web Project. diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_NewsItem.java b/org.adempiere.base/src/org/compiere/model/X_CM_NewsItem.java index 7c15ef46de..7a26575d0c 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_NewsItem.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_NewsItem.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.sql.Timestamp; import java.util.Properties; /** Generated Model for CM_NewsItem - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_NewsItem extends PO implements I_CM_NewsItem, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_NewsItem (Properties ctx, int CM_NewsItem_ID, String trxName) @@ -88,9 +88,9 @@ public class X_CM_NewsItem extends PO implements I_CM_NewsItem, I_Persistent return (String)get_Value(COLUMNNAME_Author); } - public I_CM_NewsChannel getCM_NewsChannel() throws RuntimeException + public org.compiere.model.I_CM_NewsChannel getCM_NewsChannel() throws RuntimeException { - return (I_CM_NewsChannel)MTable.get(getCtx(), I_CM_NewsChannel.Table_Name) + return (org.compiere.model.I_CM_NewsChannel)MTable.get(getCtx(), org.compiere.model.I_CM_NewsChannel.Table_Name) .getPO(getCM_NewsChannel_ID(), get_TrxName()); } /** Set News Channel. @@ -139,6 +139,20 @@ public class X_CM_NewsItem extends PO implements I_CM_NewsItem, I_Persistent return ii.intValue(); } + /** Set CM_NewsItem_UU. + @param CM_NewsItem_UU CM_NewsItem_UU */ + public void setCM_NewsItem_UU (String CM_NewsItem_UU) + { + set_Value (COLUMNNAME_CM_NewsItem_UU, CM_NewsItem_UU); + } + + /** Get CM_NewsItem_UU. + @return CM_NewsItem_UU */ + public String getCM_NewsItem_UU () + { + return (String)get_Value(COLUMNNAME_CM_NewsItem_UU); + } + /** Set Content HTML. @param ContentHTML Contains the content itself diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_Template.java b/org.adempiere.base/src/org/compiere/model/X_CM_Template.java index 89fac70582..cd475e5aae 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_Template.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_Template.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for CM_Template - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_Template extends PO implements I_CM_Template, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_Template (Properties ctx, int CM_Template_ID, String trxName) @@ -100,9 +100,23 @@ public class X_CM_Template extends PO implements I_CM_Template, I_Persistent return ii.intValue(); } - public I_CM_WebProject getCM_WebProject() throws RuntimeException + /** Set CM_Template_UU. + @param CM_Template_UU CM_Template_UU */ + public void setCM_Template_UU (String CM_Template_UU) + { + set_Value (COLUMNNAME_CM_Template_UU, CM_Template_UU); + } + + /** Get CM_Template_UU. + @return CM_Template_UU */ + public String getCM_Template_UU () + { + return (String)get_Value(COLUMNNAME_CM_Template_UU); + } + + public org.compiere.model.I_CM_WebProject getCM_WebProject() throws RuntimeException { - return (I_CM_WebProject)MTable.get(getCtx(), I_CM_WebProject.Table_Name) + return (org.compiere.model.I_CM_WebProject)MTable.get(getCtx(), org.compiere.model.I_CM_WebProject.Table_Name) .getPO(getCM_WebProject_ID(), get_TrxName()); } /** Set Web Project. diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_TemplateTable.java b/org.adempiere.base/src/org/compiere/model/X_CM_TemplateTable.java index e61cf9ba28..a36419eb7a 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_TemplateTable.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_TemplateTable.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for CM_TemplateTable - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_TemplateTable extends PO implements I_CM_TemplateTable, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_TemplateTable (Properties ctx, int CM_TemplateTable_ID, String trxName) @@ -73,9 +73,9 @@ public class X_CM_TemplateTable extends PO implements I_CM_TemplateTable, I_Pers return sb.toString(); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @@ -101,9 +101,9 @@ public class X_CM_TemplateTable extends PO implements I_CM_TemplateTable, I_Pers return ii.intValue(); } - public I_CM_Template getCM_Template() throws RuntimeException + public org.compiere.model.I_CM_Template getCM_Template() throws RuntimeException { - return (I_CM_Template)MTable.get(getCtx(), I_CM_Template.Table_Name) + return (org.compiere.model.I_CM_Template)MTable.get(getCtx(), org.compiere.model.I_CM_Template.Table_Name) .getPO(getCM_Template_ID(), get_TrxName()); } /** Set Template. @@ -152,6 +152,20 @@ public class X_CM_TemplateTable extends PO implements I_CM_TemplateTable, I_Pers return ii.intValue(); } + /** Set CM_TemplateTable_UU. + @param CM_TemplateTable_UU CM_TemplateTable_UU */ + public void setCM_TemplateTable_UU (String CM_TemplateTable_UU) + { + set_Value (COLUMNNAME_CM_TemplateTable_UU, CM_TemplateTable_UU); + } + + /** Get CM_TemplateTable_UU. + @return CM_TemplateTable_UU */ + public String getCM_TemplateTable_UU () + { + return (String)get_Value(COLUMNNAME_CM_TemplateTable_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_Template_Ad_Cat.java b/org.adempiere.base/src/org/compiere/model/X_CM_Template_Ad_Cat.java index 910f331e07..d9669933b8 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_Template_Ad_Cat.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_Template_Ad_Cat.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for CM_Template_Ad_Cat - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_Template_Ad_Cat extends PO implements I_CM_Template_Ad_Cat, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_Template_Ad_Cat (Properties ctx, int CM_Template_Ad_Cat_ID, String trxName) @@ -72,9 +72,9 @@ public class X_CM_Template_Ad_Cat extends PO implements I_CM_Template_Ad_Cat, I_ return sb.toString(); } - public I_CM_Ad_Cat getCM_Ad_Cat() throws RuntimeException + public org.compiere.model.I_CM_Ad_Cat getCM_Ad_Cat() throws RuntimeException { - return (I_CM_Ad_Cat)MTable.get(getCtx(), I_CM_Ad_Cat.Table_Name) + return (org.compiere.model.I_CM_Ad_Cat)MTable.get(getCtx(), org.compiere.model.I_CM_Ad_Cat.Table_Name) .getPO(getCM_Ad_Cat_ID(), get_TrxName()); } /** Set Advertisement Category. @@ -100,9 +100,23 @@ public class X_CM_Template_Ad_Cat extends PO implements I_CM_Template_Ad_Cat, I_ return ii.intValue(); } - public I_CM_Template getCM_Template() throws RuntimeException + /** Set CM_Template_Ad_Cat_UU. + @param CM_Template_Ad_Cat_UU CM_Template_Ad_Cat_UU */ + public void setCM_Template_Ad_Cat_UU (String CM_Template_Ad_Cat_UU) + { + set_Value (COLUMNNAME_CM_Template_Ad_Cat_UU, CM_Template_Ad_Cat_UU); + } + + /** Get CM_Template_Ad_Cat_UU. + @return CM_Template_Ad_Cat_UU */ + public String getCM_Template_Ad_Cat_UU () + { + return (String)get_Value(COLUMNNAME_CM_Template_Ad_Cat_UU); + } + + public org.compiere.model.I_CM_Template getCM_Template() throws RuntimeException { - return (I_CM_Template)MTable.get(getCtx(), I_CM_Template.Table_Name) + return (org.compiere.model.I_CM_Template)MTable.get(getCtx(), org.compiere.model.I_CM_Template.Table_Name) .getPO(getCM_Template_ID(), get_TrxName()); } /** Set Template. diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_WebAccessLog.java b/org.adempiere.base/src/org/compiere/model/X_CM_WebAccessLog.java index 7725cba9ea..39b2bd4b2c 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_WebAccessLog.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_WebAccessLog.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for CM_WebAccessLog - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_WebAccessLog extends PO implements I_CM_WebAccessLog, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_WebAccessLog (Properties ctx, int CM_WebAccessLog_ID, String trxName) @@ -92,9 +92,9 @@ public class X_CM_WebAccessLog extends PO implements I_CM_WebAccessLog, I_Persis return (String)get_Value(COLUMNNAME_AcceptLanguage); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -120,9 +120,9 @@ public class X_CM_WebAccessLog extends PO implements I_CM_WebAccessLog, I_Persis return ii.intValue(); } - public I_CM_BroadcastServer getCM_BroadcastServer() throws RuntimeException + public org.compiere.model.I_CM_BroadcastServer getCM_BroadcastServer() throws RuntimeException { - return (I_CM_BroadcastServer)MTable.get(getCtx(), I_CM_BroadcastServer.Table_Name) + return (org.compiere.model.I_CM_BroadcastServer)MTable.get(getCtx(), org.compiere.model.I_CM_BroadcastServer.Table_Name) .getPO(getCM_BroadcastServer_ID(), get_TrxName()); } /** Set Broadcast Server. @@ -148,9 +148,9 @@ public class X_CM_WebAccessLog extends PO implements I_CM_WebAccessLog, I_Persis return ii.intValue(); } - public I_CM_Media getCM_Media() throws RuntimeException + public org.compiere.model.I_CM_Media getCM_Media() throws RuntimeException { - return (I_CM_Media)MTable.get(getCtx(), I_CM_Media.Table_Name) + return (org.compiere.model.I_CM_Media)MTable.get(getCtx(), org.compiere.model.I_CM_Media.Table_Name) .getPO(getCM_Media_ID(), get_TrxName()); } /** Set Media Item. @@ -199,9 +199,23 @@ public class X_CM_WebAccessLog extends PO implements I_CM_WebAccessLog, I_Persis return ii.intValue(); } - public I_CM_WebProject getCM_WebProject() throws RuntimeException + /** Set CM_WebAccessLog_UU. + @param CM_WebAccessLog_UU CM_WebAccessLog_UU */ + public void setCM_WebAccessLog_UU (String CM_WebAccessLog_UU) + { + set_Value (COLUMNNAME_CM_WebAccessLog_UU, CM_WebAccessLog_UU); + } + + /** Get CM_WebAccessLog_UU. + @return CM_WebAccessLog_UU */ + public String getCM_WebAccessLog_UU () + { + return (String)get_Value(COLUMNNAME_CM_WebAccessLog_UU); + } + + public org.compiere.model.I_CM_WebProject getCM_WebProject() throws RuntimeException { - return (I_CM_WebProject)MTable.get(getCtx(), I_CM_WebProject.Table_Name) + return (org.compiere.model.I_CM_WebProject)MTable.get(getCtx(), org.compiere.model.I_CM_WebProject.Table_Name) .getPO(getCM_WebProject_ID(), get_TrxName()); } /** Set Web Project. diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_WebProject.java b/org.adempiere.base/src/org/compiere/model/X_CM_WebProject.java index cc1db1e52e..34f117a827 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_WebProject.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_WebProject.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for CM_WebProject - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_WebProject extends PO implements I_CM_WebProject, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_WebProject (Properties ctx, int CM_WebProject_ID, String trxName) @@ -81,9 +81,9 @@ public class X_CM_WebProject extends PO implements I_CM_WebProject, I_Persistent return sb.toString(); } - public I_AD_Tree getAD_TreeCMC() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_TreeCMC() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_TreeCMC_ID(), get_TrxName()); } /** Set Container Tree. @@ -109,9 +109,9 @@ public class X_CM_WebProject extends PO implements I_CM_WebProject, I_Persistent return ii.intValue(); } - public I_AD_Tree getAD_TreeCMM() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_TreeCMM() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_TreeCMM_ID(), get_TrxName()); } /** Set Media Tree. @@ -137,9 +137,9 @@ public class X_CM_WebProject extends PO implements I_CM_WebProject, I_Persistent return ii.intValue(); } - public I_AD_Tree getAD_TreeCMS() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_TreeCMS() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_TreeCMS_ID(), get_TrxName()); } /** Set Stage Tree. @@ -165,9 +165,9 @@ public class X_CM_WebProject extends PO implements I_CM_WebProject, I_Persistent return ii.intValue(); } - public I_AD_Tree getAD_TreeCMT() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_TreeCMT() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_TreeCMT_ID(), get_TrxName()); } /** Set Template Tree. @@ -216,6 +216,20 @@ public class X_CM_WebProject extends PO implements I_CM_WebProject, I_Persistent return ii.intValue(); } + /** Set CM_WebProject_UU. + @param CM_WebProject_UU CM_WebProject_UU */ + public void setCM_WebProject_UU (String CM_WebProject_UU) + { + set_Value (COLUMNNAME_CM_WebProject_UU, CM_WebProject_UU); + } + + /** Get CM_WebProject_UU. + @return CM_WebProject_UU */ + public String getCM_WebProject_UU () + { + return (String)get_Value(COLUMNNAME_CM_WebProject_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_WebProject_Domain.java b/org.adempiere.base/src/org/compiere/model/X_CM_WebProject_Domain.java index 5a6fe55f70..b41e789af8 100644 --- a/org.adempiere.base/src/org/compiere/model/X_CM_WebProject_Domain.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_WebProject_Domain.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for CM_WebProject_Domain - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_WebProject_Domain extends PO implements I_CM_WebProject_Domain, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_WebProject_Domain (Properties ctx, int CM_WebProject_Domain_ID, String trxName) @@ -73,9 +73,9 @@ public class X_CM_WebProject_Domain extends PO implements I_CM_WebProject_Domain return sb.toString(); } - public I_CM_Container getCM_Container() throws RuntimeException + public org.compiere.model.I_CM_Container getCM_Container() throws RuntimeException { - return (I_CM_Container)MTable.get(getCtx(), I_CM_Container.Table_Name) + return (org.compiere.model.I_CM_Container)MTable.get(getCtx(), org.compiere.model.I_CM_Container.Table_Name) .getPO(getCM_Container_ID(), get_TrxName()); } /** Set Web Container. @@ -124,9 +124,23 @@ public class X_CM_WebProject_Domain extends PO implements I_CM_WebProject_Domain return ii.intValue(); } - public I_CM_WebProject getCM_WebProject() throws RuntimeException + /** Set CM_WebProject_Domain_UU. + @param CM_WebProject_Domain_UU CM_WebProject_Domain_UU */ + public void setCM_WebProject_Domain_UU (String CM_WebProject_Domain_UU) + { + set_Value (COLUMNNAME_CM_WebProject_Domain_UU, CM_WebProject_Domain_UU); + } + + /** Get CM_WebProject_Domain_UU. + @return CM_WebProject_Domain_UU */ + public String getCM_WebProject_Domain_UU () + { + return (String)get_Value(COLUMNNAME_CM_WebProject_Domain_UU); + } + + public org.compiere.model.I_CM_WebProject getCM_WebProject() throws RuntimeException { - return (I_CM_WebProject)MTable.get(getCtx(), I_CM_WebProject.Table_Name) + return (org.compiere.model.I_CM_WebProject)MTable.get(getCtx(), org.compiere.model.I_CM_WebProject.Table_Name) .getPO(getCM_WebProject_ID(), get_TrxName()); } /** Set Web Project. diff --git a/org.adempiere.base/src/org/compiere/model/X_CM_WikiToken.java b/org.adempiere.base/src/org/compiere/model/X_CM_WikiToken.java index 44224e3865..368b4f5b31 100755 --- a/org.adempiere.base/src/org/compiere/model/X_CM_WikiToken.java +++ b/org.adempiere.base/src/org/compiere/model/X_CM_WikiToken.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for CM_WikiToken - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_CM_WikiToken extends PO implements I_CM_WikiToken, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_CM_WikiToken (Properties ctx, int CM_WikiToken_ID, String trxName) @@ -73,9 +73,9 @@ public class X_CM_WikiToken extends PO implements I_CM_WikiToken, I_Persistent return sb.toString(); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @@ -124,6 +124,20 @@ public class X_CM_WikiToken extends PO implements I_CM_WikiToken, I_Persistent return ii.intValue(); } + /** Set CM_WikiToken_UU. + @param CM_WikiToken_UU CM_WikiToken_UU */ + public void setCM_WikiToken_UU (String CM_WikiToken_UU) + { + set_Value (COLUMNNAME_CM_WikiToken_UU, CM_WikiToken_UU); + } + + /** Get CM_WikiToken_UU. + @return CM_WikiToken_UU */ + public String getCM_WikiToken_UU () + { + return (String)get_Value(COLUMNNAME_CM_WikiToken_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_AcctProcessor.java b/org.adempiere.base/src/org/compiere/model/X_C_AcctProcessor.java index 6d7565dce3..5e6f33e969 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_AcctProcessor.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_AcctProcessor.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_AcctProcessor - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_AcctProcessor extends PO implements I_C_AcctProcessor, I_Persistent { /** * */ - private static final long serialVersionUID = 20120920L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_AcctProcessor (Properties ctx, int C_AcctProcessor_ID, String trxName) @@ -39,6 +39,7 @@ public class X_C_AcctProcessor extends PO implements I_C_AcctProcessor, I_Persis super (ctx, C_AcctProcessor_ID, trxName); /** if (C_AcctProcessor_ID == 0) { + setAD_Schedule_ID (0); setC_AcctProcessor_ID (0); setKeepLogDays (0); // 7 @@ -80,8 +81,8 @@ public class X_C_AcctProcessor extends PO implements I_C_AcctProcessor, I_Persis return (org.compiere.model.I_AD_Schedule)MTable.get(getCtx(), org.compiere.model.I_AD_Schedule.Table_Name) .getPO(getAD_Schedule_ID(), get_TrxName()); } - /** Set AD_Schedule_ID. - @param AD_Schedule_ID AD_Schedule_ID */ + /** Set Schedule. + @param AD_Schedule_ID Schedule */ public void setAD_Schedule_ID (int AD_Schedule_ID) { if (AD_Schedule_ID < 1) @@ -90,8 +91,8 @@ public class X_C_AcctProcessor extends PO implements I_C_AcctProcessor, I_Persis set_Value (COLUMNNAME_AD_Schedule_ID, Integer.valueOf(AD_Schedule_ID)); } - /** Get AD_Schedule_ID. - @return AD_Schedule_ID */ + /** Get Schedule. + @return Schedule */ public int getAD_Schedule_ID () { Integer ii = (Integer)get_Value(COLUMNNAME_AD_Schedule_ID); diff --git a/org.adempiere.base/src/org/compiere/model/X_C_AcctProcessorLog.java b/org.adempiere.base/src/org/compiere/model/X_C_AcctProcessorLog.java index 596321a32a..daace5da2d 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_AcctProcessorLog.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_AcctProcessorLog.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for C_AcctProcessorLog - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_AcctProcessorLog extends PO implements I_C_AcctProcessorLog, I_Persistent { /** * */ - private static final long serialVersionUID = 20120920L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_AcctProcessorLog (Properties ctx, int C_AcctProcessorLog_ID, String trxName) @@ -139,6 +139,20 @@ public class X_C_AcctProcessorLog extends PO implements I_C_AcctProcessorLog, I_ return ii.intValue(); } + /** Set C_AcctProcessorLog_UU. + @param C_AcctProcessorLog_UU C_AcctProcessorLog_UU */ + public void setC_AcctProcessorLog_UU (String C_AcctProcessorLog_UU) + { + set_Value (COLUMNNAME_C_AcctProcessorLog_UU, C_AcctProcessorLog_UU); + } + + /** Get C_AcctProcessorLog_UU. + @return C_AcctProcessorLog_UU */ + public String getC_AcctProcessorLog_UU () + { + return (String)get_Value(COLUMNNAME_C_AcctProcessorLog_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_AcctSchema.java b/org.adempiere.base/src/org/compiere/model/X_C_AcctSchema.java index 810c5a5f52..28bc961e34 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_AcctSchema.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_AcctSchema.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_AcctSchema - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_AcctSchema extends PO implements I_C_AcctSchema, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_AcctSchema (Properties ctx, int C_AcctSchema_ID, String trxName) @@ -165,9 +165,23 @@ public class X_C_AcctSchema extends PO implements I_C_AcctSchema, I_Persistent return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + /** Set C_AcctSchema_UU. + @param C_AcctSchema_UU C_AcctSchema_UU */ + public void setC_AcctSchema_UU (String C_AcctSchema_UU) + { + set_Value (COLUMNNAME_C_AcctSchema_UU, C_AcctSchema_UU); + } + + /** Get C_AcctSchema_UU. + @return C_AcctSchema_UU */ + public String getC_AcctSchema_UU () + { + return (String)get_Value(COLUMNNAME_C_AcctSchema_UU); + } + + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -289,9 +303,9 @@ public class X_C_AcctSchema extends PO implements I_C_AcctSchema, I_Persistent return (String)get_Value(COLUMNNAME_CostingMethod); } - public I_C_Period getC_Period() throws RuntimeException + public org.compiere.model.I_C_Period getC_Period() throws RuntimeException { - return (I_C_Period)MTable.get(getCtx(), I_C_Period.Table_Name) + return (org.compiere.model.I_C_Period)MTable.get(getCtx(), org.compiere.model.I_C_Period.Table_Name) .getPO(getC_Period_ID(), get_TrxName()); } /** Set Period. @@ -604,9 +618,9 @@ public class X_C_AcctSchema extends PO implements I_C_AcctSchema, I_Persistent return false; } - public I_M_CostType getM_CostType() throws RuntimeException + public org.compiere.model.I_M_CostType getM_CostType() throws RuntimeException { - return (I_M_CostType)MTable.get(getCtx(), I_M_CostType.Table_Name) + return (org.compiere.model.I_M_CostType)MTable.get(getCtx(), org.compiere.model.I_M_CostType.Table_Name) .getPO(getM_CostType_ID(), get_TrxName()); } /** Set Cost Type. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_AcctSchema_Default.java b/org.adempiere.base/src/org/compiere/model/X_C_AcctSchema_Default.java index 7ca91ce8ef..935928ff35 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_AcctSchema_Default.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_AcctSchema_Default.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_AcctSchema_Default - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_AcctSchema_Default extends PO implements I_C_AcctSchema_Default, I_Persistent { /** * */ - private static final long serialVersionUID = 20120928L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_AcctSchema_Default (Properties ctx, int C_AcctSchema_Default_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_AcctSchema_Element.java b/org.adempiere.base/src/org/compiere/model/X_C_AcctSchema_Element.java index 817b54de4e..b182040197 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_AcctSchema_Element.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_AcctSchema_Element.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_AcctSchema_Element - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_AcctSchema_Element extends PO implements I_C_AcctSchema_Element, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_AcctSchema_Element (Properties ctx, int C_AcctSchema_Element_ID, String trxName) @@ -79,9 +79,9 @@ public class X_C_AcctSchema_Element extends PO implements I_C_AcctSchema_Element return sb.toString(); } - public I_AD_Column getAD_Column() throws RuntimeException + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException { - return (I_AD_Column)MTable.get(getCtx(), I_AD_Column.Table_Name) + return (org.compiere.model.I_AD_Column)MTable.get(getCtx(), org.compiere.model.I_AD_Column.Table_Name) .getPO(getAD_Column_ID(), get_TrxName()); } /** Set Column. @@ -127,9 +127,23 @@ public class X_C_AcctSchema_Element extends PO implements I_C_AcctSchema_Element return ii.intValue(); } - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException + /** Set C_AcctSchema_Element_UU. + @param C_AcctSchema_Element_UU C_AcctSchema_Element_UU */ + public void setC_AcctSchema_Element_UU (String C_AcctSchema_Element_UU) + { + set_Value (COLUMNNAME_C_AcctSchema_Element_UU, C_AcctSchema_Element_UU); + } + + /** Get C_AcctSchema_Element_UU. + @return C_AcctSchema_Element_UU */ + public String getC_AcctSchema_Element_UU () + { + return (String)get_Value(COLUMNNAME_C_AcctSchema_Element_UU); + } + + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException { - return (I_C_AcctSchema)MTable.get(getCtx(), I_C_AcctSchema.Table_Name) + return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_Name) .getPO(getC_AcctSchema_ID(), get_TrxName()); } /** Set Accounting Schema. @@ -155,9 +169,9 @@ public class X_C_AcctSchema_Element extends PO implements I_C_AcctSchema_Element return ii.intValue(); } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -183,9 +197,9 @@ public class X_C_AcctSchema_Element extends PO implements I_C_AcctSchema_Element return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -211,9 +225,9 @@ public class X_C_AcctSchema_Element extends PO implements I_C_AcctSchema_Element return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -239,9 +253,9 @@ public class X_C_AcctSchema_Element extends PO implements I_C_AcctSchema_Element return ii.intValue(); } - public I_C_Element getC_Element() throws RuntimeException + public org.compiere.model.I_C_Element getC_Element() throws RuntimeException { - return (I_C_Element)MTable.get(getCtx(), I_C_Element.Table_Name) + return (org.compiere.model.I_C_Element)MTable.get(getCtx(), org.compiere.model.I_C_Element.Table_Name) .getPO(getC_Element_ID(), get_TrxName()); } /** Set Element. @@ -267,9 +281,9 @@ public class X_C_AcctSchema_Element extends PO implements I_C_AcctSchema_Element return ii.intValue(); } - public I_C_ElementValue getC_ElementValue() throws RuntimeException + public org.compiere.model.I_C_ElementValue getC_ElementValue() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getC_ElementValue_ID(), get_TrxName()); } /** Set Account Element. @@ -323,9 +337,9 @@ public class X_C_AcctSchema_Element extends PO implements I_C_AcctSchema_Element return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -351,9 +365,9 @@ public class X_C_AcctSchema_Element extends PO implements I_C_AcctSchema_Element return ii.intValue(); } - public I_C_SalesRegion getC_SalesRegion() throws RuntimeException + public org.compiere.model.I_C_SalesRegion getC_SalesRegion() throws RuntimeException { - return (I_C_SalesRegion)MTable.get(getCtx(), I_C_SalesRegion.Table_Name) + return (org.compiere.model.I_C_SalesRegion)MTable.get(getCtx(), org.compiere.model.I_C_SalesRegion.Table_Name) .getPO(getC_SalesRegion_ID(), get_TrxName()); } /** Set Sales Region. @@ -476,9 +490,9 @@ public class X_C_AcctSchema_Element extends PO implements I_C_AcctSchema_Element return false; } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_AcctSchema_GL.java b/org.adempiere.base/src/org/compiere/model/X_C_AcctSchema_GL.java index 313b353a1a..4c80e54cf7 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_AcctSchema_GL.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_AcctSchema_GL.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_AcctSchema_GL - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_AcctSchema_GL extends PO implements I_C_AcctSchema_GL, I_Persistent { /** * */ - private static final long serialVersionUID = 20120928L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_AcctSchema_GL (Properties ctx, int C_AcctSchema_GL_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Activity.java b/org.adempiere.base/src/org/compiere/model/X_C_Activity.java index 02b44ffdcb..965236490e 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Activity.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Activity.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_Activity - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Activity extends PO implements I_C_Activity, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Activity (Properties ctx, int C_Activity_ID, String trxName) @@ -96,6 +96,20 @@ public class X_C_Activity extends PO implements I_C_Activity, I_Persistent return ii.intValue(); } + /** Set C_Activity_UU. + @param C_Activity_UU C_Activity_UU */ + public void setC_Activity_UU (String C_Activity_UU) + { + set_Value (COLUMNNAME_C_Activity_UU, C_Activity_UU); + } + + /** Get C_Activity_UU. + @return C_Activity_UU */ + public String getC_Activity_UU () + { + return (String)get_Value(COLUMNNAME_C_Activity_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_AllocationHdr.java b/org.adempiere.base/src/org/compiere/model/X_C_AllocationHdr.java index e558876c1c..6553b1b320 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_AllocationHdr.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_AllocationHdr.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_AllocationHdr - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_AllocationHdr extends PO implements I_C_AllocationHdr, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_AllocationHdr (Properties ctx, int C_AllocationHdr_ID, String trxName) @@ -129,9 +129,23 @@ public class X_C_AllocationHdr extends PO implements I_C_AllocationHdr, I_Persis return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + /** Set C_AllocationHdr_UU. + @param C_AllocationHdr_UU C_AllocationHdr_UU */ + public void setC_AllocationHdr_UU (String C_AllocationHdr_UU) + { + set_Value (COLUMNNAME_C_AllocationHdr_UU, C_AllocationHdr_UU); + } + + /** Get C_AllocationHdr_UU. + @return C_AllocationHdr_UU */ + public String getC_AllocationHdr_UU () + { + return (String)get_Value(COLUMNNAME_C_AllocationHdr_UU); + } + + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_AllocationLine.java b/org.adempiere.base/src/org/compiere/model/X_C_AllocationLine.java index 3622382a96..29004bbe21 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_AllocationLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_AllocationLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_AllocationLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_AllocationLine extends PO implements I_C_AllocationLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_AllocationLine (Properties ctx, int C_AllocationLine_ID, String trxName) @@ -97,9 +97,9 @@ public class X_C_AllocationLine extends PO implements I_C_AllocationLine, I_Pers return bd; } - public I_C_AllocationHdr getC_AllocationHdr() throws RuntimeException + public org.compiere.model.I_C_AllocationHdr getC_AllocationHdr() throws RuntimeException { - return (I_C_AllocationHdr)MTable.get(getCtx(), I_C_AllocationHdr.Table_Name) + return (org.compiere.model.I_C_AllocationHdr)MTable.get(getCtx(), org.compiere.model.I_C_AllocationHdr.Table_Name) .getPO(getC_AllocationHdr_ID(), get_TrxName()); } /** Set Allocation. @@ -148,9 +148,23 @@ public class X_C_AllocationLine extends PO implements I_C_AllocationLine, I_Pers return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + /** Set C_AllocationLine_UU. + @param C_AllocationLine_UU C_AllocationLine_UU */ + public void setC_AllocationLine_UU (String C_AllocationLine_UU) + { + set_Value (COLUMNNAME_C_AllocationLine_UU, C_AllocationLine_UU); + } + + /** Get C_AllocationLine_UU. + @return C_AllocationLine_UU */ + public String getC_AllocationLine_UU () + { + return (String)get_Value(COLUMNNAME_C_AllocationLine_UU); + } + + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -176,9 +190,9 @@ public class X_C_AllocationLine extends PO implements I_C_AllocationLine, I_Pers return ii.intValue(); } - public I_C_CashLine getC_CashLine() throws RuntimeException + public org.compiere.model.I_C_CashLine getC_CashLine() throws RuntimeException { - return (I_C_CashLine)MTable.get(getCtx(), I_C_CashLine.Table_Name) + return (org.compiere.model.I_C_CashLine)MTable.get(getCtx(), org.compiere.model.I_C_CashLine.Table_Name) .getPO(getC_CashLine_ID(), get_TrxName()); } /** Set Cash Journal Line. @@ -204,9 +218,37 @@ public class X_C_AllocationLine extends PO implements I_C_AllocationLine, I_Pers return ii.intValue(); } - public I_C_Invoice getC_Invoice() throws RuntimeException + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException { - return (I_C_Invoice)MTable.get(getCtx(), I_C_Invoice.Table_Name) + return (org.compiere.model.I_C_Charge)MTable.get(getCtx(), org.compiere.model.I_C_Charge.Table_Name) + .getPO(getC_Charge_ID(), get_TrxName()); } + + /** Set Charge. + @param C_Charge_ID + Additional document charges + */ + public void setC_Charge_ID (int C_Charge_ID) + { + if (C_Charge_ID < 1) + set_ValueNoCheck (COLUMNNAME_C_Charge_ID, null); + else + set_ValueNoCheck (COLUMNNAME_C_Charge_ID, Integer.valueOf(C_Charge_ID)); + } + + /** Get Charge. + @return Additional document charges + */ + public int getC_Charge_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_C_Charge_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException + { + return (org.compiere.model.I_C_Invoice)MTable.get(getCtx(), org.compiere.model.I_C_Invoice.Table_Name) .getPO(getC_Invoice_ID(), get_TrxName()); } /** Set Invoice. @@ -240,9 +282,9 @@ public class X_C_AllocationLine extends PO implements I_C_AllocationLine, I_Pers return new KeyNamePair(get_ID(), String.valueOf(getC_Invoice_ID())); } - public I_C_Order getC_Order() throws RuntimeException + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException { - return (I_C_Order)MTable.get(getCtx(), I_C_Order.Table_Name) + return (org.compiere.model.I_C_Order)MTable.get(getCtx(), org.compiere.model.I_C_Order.Table_Name) .getPO(getC_Order_ID(), get_TrxName()); } /** Set Order. @@ -268,9 +310,9 @@ public class X_C_AllocationLine extends PO implements I_C_AllocationLine, I_Pers return ii.intValue(); } - public I_C_Payment getC_Payment() throws RuntimeException + public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException { - return (I_C_Payment)MTable.get(getCtx(), I_C_Payment.Table_Name) + return (org.compiere.model.I_C_Payment)MTable.get(getCtx(), org.compiere.model.I_C_Payment.Table_Name) .getPO(getC_Payment_ID(), get_TrxName()); } /** Set Payment. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_BP_BankAccount.java b/org.adempiere.base/src/org/compiere/model/X_C_BP_BankAccount.java index da67a349a6..74f237b106 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_BP_BankAccount.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_BP_BankAccount.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_BP_BankAccount - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_BP_BankAccount extends PO implements I_C_BP_BankAccount, I_Persistent { /** * */ - private static final long serialVersionUID = 20121012L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_BP_BankAccount (Properties ctx, int C_BP_BankAccount_ID, String trxName) @@ -39,8 +39,8 @@ public class X_C_BP_BankAccount extends PO implements I_C_BP_BankAccount, I_Pers /** if (C_BP_BankAccount_ID == 0) { setA_Name (null); - setC_BP_BankAccount_ID (0); setC_BPartner_ID (0); + setC_BP_BankAccount_ID (0); setIsACH (false); } */ } @@ -73,6 +73,23 @@ public class X_C_BP_BankAccount extends PO implements I_C_BP_BankAccount, I_Pers return sb.toString(); } + /** Set Account No. + @param AccountNo + Account Number + */ + public void setAccountNo (String AccountNo) + { + set_Value (COLUMNNAME_AccountNo, AccountNo); + } + + /** Get Account No. + @return Account Number + */ + public String getAccountNo () + { + return (String)get_Value(COLUMNNAME_AccountNo); + } + /** Set Account City. @param A_City City or the Credit Card or Account Holder @@ -107,6 +124,34 @@ public class X_C_BP_BankAccount extends PO implements I_C_BP_BankAccount, I_Pers return (String)get_Value(COLUMNNAME_A_Country); } + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException + { + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) + .getPO(getAD_User_ID(), get_TrxName()); } + + /** Set User/Contact. + @param AD_User_ID + User within the system - Internal or Business Partner Contact + */ + public void setAD_User_ID (int AD_User_ID) + { + if (AD_User_ID < 1) + set_Value (COLUMNNAME_AD_User_ID, null); + else + set_Value (COLUMNNAME_AD_User_ID, Integer.valueOf(AD_User_ID)); + } + + /** Get User/Contact. + @return User within the system - Internal or Business Partner Contact + */ + public int getAD_User_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_AD_User_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + /** Set Account EMail. @param A_EMail Email Address @@ -234,51 +279,6 @@ public class X_C_BP_BankAccount extends PO implements I_C_BP_BankAccount, I_Pers return (String)get_Value(COLUMNNAME_A_Zip); } - /** Set Account No. - @param AccountNo - Account Number - */ - public void setAccountNo (String AccountNo) - { - set_Value (COLUMNNAME_AccountNo, AccountNo); - } - - /** Get Account No. - @return Account Number - */ - public String getAccountNo () - { - return (String)get_Value(COLUMNNAME_AccountNo); - } - - public org.compiere.model.I_AD_User getAD_User() throws RuntimeException - { - return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) - .getPO(getAD_User_ID(), get_TrxName()); } - - /** Set User/Contact. - @param AD_User_ID - User within the system - Internal or Business Partner Contact - */ - public void setAD_User_ID (int AD_User_ID) - { - if (AD_User_ID < 1) - set_Value (COLUMNNAME_AD_User_ID, null); - else - set_Value (COLUMNNAME_AD_User_ID, Integer.valueOf(AD_User_ID)); - } - - /** Get User/Contact. - @return User within the system - Internal or Business Partner Contact - */ - public int getAD_User_ID () - { - Integer ii = (Integer)get_Value(COLUMNNAME_AD_User_ID); - if (ii == null) - return 0; - return ii.intValue(); - } - /** BankAccountType AD_Reference_ID=216 */ public static final int BANKACCOUNTTYPE_AD_Reference_ID=216; /** Checking = C */ @@ -363,6 +363,34 @@ public class X_C_BP_BankAccount extends PO implements I_C_BP_BankAccount, I_Pers return ii.intValue(); } + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException + { + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) + .getPO(getC_BPartner_ID(), get_TrxName()); } + + /** Set Business Partner . + @param C_BPartner_ID + Identifies a Business Partner + */ + public void setC_BPartner_ID (int C_BPartner_ID) + { + if (C_BPartner_ID < 1) + set_ValueNoCheck (COLUMNNAME_C_BPartner_ID, null); + else + set_ValueNoCheck (COLUMNNAME_C_BPartner_ID, Integer.valueOf(C_BPartner_ID)); + } + + /** Get Business Partner . + @return Identifies a Business Partner + */ + public int getC_BPartner_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_C_BPartner_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + /** Set Partner Bank Account. @param C_BP_BankAccount_ID Bank Account of the Business Partner @@ -400,34 +428,6 @@ public class X_C_BP_BankAccount extends PO implements I_C_BP_BankAccount, I_Pers return (String)get_Value(COLUMNNAME_C_BP_BankAccount_UU); } - public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException - { - return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) - .getPO(getC_BPartner_ID(), get_TrxName()); } - - /** Set Business Partner . - @param C_BPartner_ID - Identifies a Business Partner - */ - public void setC_BPartner_ID (int C_BPartner_ID) - { - if (C_BPartner_ID < 1) - set_ValueNoCheck (COLUMNNAME_C_BPartner_ID, null); - else - set_ValueNoCheck (COLUMNNAME_C_BPartner_ID, Integer.valueOf(C_BPartner_ID)); - } - - /** Get Business Partner . - @return Identifies a Business Partner - */ - public int getC_BPartner_ID () - { - Integer ii = (Integer)get_Value(COLUMNNAME_C_BPartner_ID); - if (ii == null) - return 0; - return ii.intValue(); - } - /** Set Exp. Month. @param CreditCardExpMM Expiry Month diff --git a/org.adempiere.base/src/org/compiere/model/X_C_BP_Customer_Acct.java b/org.adempiere.base/src/org/compiere/model/X_C_BP_Customer_Acct.java index 2a4737d8db..9ba5a06fd3 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_BP_Customer_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_BP_Customer_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for C_BP_Customer_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_BP_Customer_Acct extends PO implements I_C_BP_Customer_Acct, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_BP_Customer_Acct (Properties ctx, int C_BP_Customer_Acct_ID, String trxName) @@ -73,9 +73,9 @@ public class X_C_BP_Customer_Acct extends PO implements I_C_BP_Customer_Acct, I_ return sb.toString(); } - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException { - return (I_C_AcctSchema)MTable.get(getCtx(), I_C_AcctSchema.Table_Name) + return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_Name) .getPO(getC_AcctSchema_ID(), get_TrxName()); } /** Set Accounting Schema. @@ -101,9 +101,9 @@ public class X_C_BP_Customer_Acct extends PO implements I_C_BP_Customer_Acct, I_ return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -129,6 +129,20 @@ public class X_C_BP_Customer_Acct extends PO implements I_C_BP_Customer_Acct, I_ return ii.intValue(); } + /** Set C_BP_Customer_Acct_UU. + @param C_BP_Customer_Acct_UU C_BP_Customer_Acct_UU */ + public void setC_BP_Customer_Acct_UU (String C_BP_Customer_Acct_UU) + { + set_Value (COLUMNNAME_C_BP_Customer_Acct_UU, C_BP_Customer_Acct_UU); + } + + /** Get C_BP_Customer_Acct_UU. + @return C_BP_Customer_Acct_UU */ + public String getC_BP_Customer_Acct_UU () + { + return (String)get_Value(COLUMNNAME_C_BP_Customer_Acct_UU); + } + public I_C_ValidCombination getC_Prepayment_A() throws RuntimeException { return (I_C_ValidCombination)MTable.get(getCtx(), I_C_ValidCombination.Table_Name) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_BP_EDI.java b/org.adempiere.base/src/org/compiere/model/X_C_BP_EDI.java index d1ef7a7d43..520bc05d6e 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_BP_EDI.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_BP_EDI.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_BP_EDI - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_BP_EDI extends PO implements I_C_BP_EDI, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_BP_EDI (Properties ctx, int C_BP_EDI_ID, String trxName) @@ -84,9 +84,9 @@ public class X_C_BP_EDI extends PO implements I_C_BP_EDI, I_Persistent return sb.toString(); } - public I_AD_Sequence getAD_Sequence() throws RuntimeException + public org.compiere.model.I_AD_Sequence getAD_Sequence() throws RuntimeException { - return (I_AD_Sequence)MTable.get(getCtx(), I_AD_Sequence.Table_Name) + return (org.compiere.model.I_AD_Sequence)MTable.get(getCtx(), org.compiere.model.I_AD_Sequence.Table_Name) .getPO(getAD_Sequence_ID(), get_TrxName()); } /** Set Sequence. @@ -112,9 +112,9 @@ public class X_C_BP_EDI extends PO implements I_C_BP_EDI, I_Persistent return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -163,6 +163,20 @@ public class X_C_BP_EDI extends PO implements I_C_BP_EDI, I_Persistent return ii.intValue(); } + /** Set C_BP_EDI_UU. + @param C_BP_EDI_UU C_BP_EDI_UU */ + public void setC_BP_EDI_UU (String C_BP_EDI_UU) + { + set_Value (COLUMNNAME_C_BP_EDI_UU, C_BP_EDI_UU); + } + + /** Get C_BP_EDI_UU. + @return C_BP_EDI_UU */ + public String getC_BP_EDI_UU () + { + return (String)get_Value(COLUMNNAME_C_BP_EDI_UU); + } + /** Set Customer No. @param CustomerNo EDI Identification Number @@ -370,9 +384,9 @@ public class X_C_BP_EDI extends PO implements I_C_BP_EDI, I_Persistent return false; } - public I_M_Warehouse getM_Warehouse() throws RuntimeException + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_Warehouse_ID(), get_TrxName()); } /** Set Warehouse. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_BP_Employee_Acct.java b/org.adempiere.base/src/org/compiere/model/X_C_BP_Employee_Acct.java index 72b850df48..69e13abb5f 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_BP_Employee_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_BP_Employee_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for C_BP_Employee_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_BP_Employee_Acct extends PO implements I_C_BP_Employee_Acct, I_Persistent { /** * */ - private static final long serialVersionUID = 20120928L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_BP_Employee_Acct (Properties ctx, int C_BP_Employee_Acct_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_BP_Group.java b/org.adempiere.base/src/org/compiere/model/X_C_BP_Group.java index 14b70e51d4..46b02ac3c3 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_BP_Group.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_BP_Group.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_BP_Group - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_BP_Group extends PO implements I_C_BP_Group, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_BP_Group (Properties ctx, int C_BP_Group_ID, String trxName) @@ -77,9 +77,9 @@ public class X_C_BP_Group extends PO implements I_C_BP_Group, I_Persistent return sb.toString(); } - public I_AD_PrintColor getAD_PrintColor() throws RuntimeException + public org.compiere.model.I_AD_PrintColor getAD_PrintColor() throws RuntimeException { - return (I_AD_PrintColor)MTable.get(getCtx(), I_AD_PrintColor.Table_Name) + return (org.compiere.model.I_AD_PrintColor)MTable.get(getCtx(), org.compiere.model.I_AD_PrintColor.Table_Name) .getPO(getAD_PrintColor_ID(), get_TrxName()); } /** Set Print Color. @@ -128,9 +128,23 @@ public class X_C_BP_Group extends PO implements I_C_BP_Group, I_Persistent return ii.intValue(); } - public I_C_Dunning getC_Dunning() throws RuntimeException + /** Set C_BP_Group_UU. + @param C_BP_Group_UU C_BP_Group_UU */ + public void setC_BP_Group_UU (String C_BP_Group_UU) + { + set_Value (COLUMNNAME_C_BP_Group_UU, C_BP_Group_UU); + } + + /** Get C_BP_Group_UU. + @return C_BP_Group_UU */ + public String getC_BP_Group_UU () + { + return (String)get_Value(COLUMNNAME_C_BP_Group_UU); + } + + public org.compiere.model.I_C_Dunning getC_Dunning() throws RuntimeException { - return (I_C_Dunning)MTable.get(getCtx(), I_C_Dunning.Table_Name) + return (org.compiere.model.I_C_Dunning)MTable.get(getCtx(), org.compiere.model.I_C_Dunning.Table_Name) .getPO(getC_Dunning_ID(), get_TrxName()); } /** Set Dunning. @@ -241,9 +255,9 @@ public class X_C_BP_Group extends PO implements I_C_BP_Group, I_Persistent return false; } - public I_M_DiscountSchema getM_DiscountSchema() throws RuntimeException + public org.compiere.model.I_M_DiscountSchema getM_DiscountSchema() throws RuntimeException { - return (I_M_DiscountSchema)MTable.get(getCtx(), I_M_DiscountSchema.Table_Name) + return (org.compiere.model.I_M_DiscountSchema)MTable.get(getCtx(), org.compiere.model.I_M_DiscountSchema.Table_Name) .getPO(getM_DiscountSchema_ID(), get_TrxName()); } /** Set Discount Schema. @@ -269,9 +283,9 @@ public class X_C_BP_Group extends PO implements I_C_BP_Group, I_Persistent return ii.intValue(); } - public I_M_PriceList getM_PriceList() throws RuntimeException + public org.compiere.model.I_M_PriceList getM_PriceList() throws RuntimeException { - return (I_M_PriceList)MTable.get(getCtx(), I_M_PriceList.Table_Name) + return (org.compiere.model.I_M_PriceList)MTable.get(getCtx(), org.compiere.model.I_M_PriceList.Table_Name) .getPO(getM_PriceList_ID(), get_TrxName()); } /** Set Price List. @@ -322,9 +336,9 @@ public class X_C_BP_Group extends PO implements I_C_BP_Group, I_Persistent return new KeyNamePair(get_ID(), getName()); } - public I_M_DiscountSchema getPO_DiscountSchema() throws RuntimeException + public org.compiere.model.I_M_DiscountSchema getPO_DiscountSchema() throws RuntimeException { - return (I_M_DiscountSchema)MTable.get(getCtx(), I_M_DiscountSchema.Table_Name) + return (org.compiere.model.I_M_DiscountSchema)MTable.get(getCtx(), org.compiere.model.I_M_DiscountSchema.Table_Name) .getPO(getPO_DiscountSchema_ID(), get_TrxName()); } /** Set PO Discount Schema. @@ -350,9 +364,9 @@ public class X_C_BP_Group extends PO implements I_C_BP_Group, I_Persistent return ii.intValue(); } - public I_M_PriceList getPO_PriceList() throws RuntimeException + public org.compiere.model.I_M_PriceList getPO_PriceList() throws RuntimeException { - return (I_M_PriceList)MTable.get(getCtx(), I_M_PriceList.Table_Name) + return (org.compiere.model.I_M_PriceList)MTable.get(getCtx(), org.compiere.model.I_M_PriceList.Table_Name) .getPO(getPO_PriceList_ID(), get_TrxName()); } /** Set Purchase Pricelist. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_BP_Group_Acct.java b/org.adempiere.base/src/org/compiere/model/X_C_BP_Group_Acct.java index aacaee6a33..bf18c9775b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_BP_Group_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_BP_Group_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_BP_Group_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_BP_Group_Acct extends PO implements I_C_BP_Group_Acct, I_Persistent { /** * */ - private static final long serialVersionUID = 20120928L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_BP_Group_Acct (Properties ctx, int C_BP_Group_Acct_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_BP_Relation.java b/org.adempiere.base/src/org/compiere/model/X_C_BP_Relation.java index fb2fc520ce..e534cb540d 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_BP_Relation.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_BP_Relation.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_BP_Relation - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_BP_Relation extends PO implements I_C_BP_Relation, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_BP_Relation (Properties ctx, int C_BP_Relation_ID, String trxName) @@ -79,9 +79,9 @@ public class X_C_BP_Relation extends PO implements I_C_BP_Relation, I_Persistent return sb.toString(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -107,9 +107,9 @@ public class X_C_BP_Relation extends PO implements I_C_BP_Relation, I_Persistent return ii.intValue(); } - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException { - return (I_C_BPartner_Location)MTable.get(getCtx(), I_C_BPartner_Location.Table_Name) + return (org.compiere.model.I_C_BPartner_Location)MTable.get(getCtx(), org.compiere.model.I_C_BPartner_Location.Table_Name) .getPO(getC_BPartner_Location_ID(), get_TrxName()); } /** Set Partner Location. @@ -135,9 +135,9 @@ public class X_C_BP_Relation extends PO implements I_C_BP_Relation, I_Persistent return ii.intValue(); } - public I_C_BPartner getC_BPartnerRelation() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartnerRelation() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartnerRelation_ID(), get_TrxName()); } /** Set Related Partner. @@ -163,9 +163,9 @@ public class X_C_BP_Relation extends PO implements I_C_BP_Relation, I_Persistent return ii.intValue(); } - public I_C_BPartner_Location getC_BPartnerRelation_Location() throws RuntimeException + public org.compiere.model.I_C_BPartner_Location getC_BPartnerRelation_Location() throws RuntimeException { - return (I_C_BPartner_Location)MTable.get(getCtx(), I_C_BPartner_Location.Table_Name) + return (org.compiere.model.I_C_BPartner_Location)MTable.get(getCtx(), org.compiere.model.I_C_BPartner_Location.Table_Name) .getPO(getC_BPartnerRelation_Location_ID(), get_TrxName()); } /** Set Related Partner Location. @@ -214,6 +214,20 @@ public class X_C_BP_Relation extends PO implements I_C_BP_Relation, I_Persistent return ii.intValue(); } + /** Set C_BP_Relation_UU. + @param C_BP_Relation_UU C_BP_Relation_UU */ + public void setC_BP_Relation_UU (String C_BP_Relation_UU) + { + set_Value (COLUMNNAME_C_BP_Relation_UU, C_BP_Relation_UU); + } + + /** Get C_BP_Relation_UU. + @return C_BP_Relation_UU */ + public String getC_BP_Relation_UU () + { + return (String)get_Value(COLUMNNAME_C_BP_Relation_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_BP_Vendor_Acct.java b/org.adempiere.base/src/org/compiere/model/X_C_BP_Vendor_Acct.java index 447b17ef51..eed13be427 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_BP_Vendor_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_BP_Vendor_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for C_BP_Vendor_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_BP_Vendor_Acct extends PO implements I_C_BP_Vendor_Acct, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_BP_Vendor_Acct (Properties ctx, int C_BP_Vendor_Acct_ID, String trxName) @@ -72,9 +72,9 @@ public class X_C_BP_Vendor_Acct extends PO implements I_C_BP_Vendor_Acct, I_Pers return sb.toString(); } - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException { - return (I_C_AcctSchema)MTable.get(getCtx(), I_C_AcctSchema.Table_Name) + return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_Name) .getPO(getC_AcctSchema_ID(), get_TrxName()); } /** Set Accounting Schema. @@ -100,9 +100,9 @@ public class X_C_BP_Vendor_Acct extends PO implements I_C_BP_Vendor_Acct, I_Pers return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -128,6 +128,20 @@ public class X_C_BP_Vendor_Acct extends PO implements I_C_BP_Vendor_Acct, I_Pers return ii.intValue(); } + /** Set C_BP_Vendor_Acct_UU. + @param C_BP_Vendor_Acct_UU C_BP_Vendor_Acct_UU */ + public void setC_BP_Vendor_Acct_UU (String C_BP_Vendor_Acct_UU) + { + set_Value (COLUMNNAME_C_BP_Vendor_Acct_UU, C_BP_Vendor_Acct_UU); + } + + /** Get C_BP_Vendor_Acct_UU. + @return C_BP_Vendor_Acct_UU */ + public String getC_BP_Vendor_Acct_UU () + { + return (String)get_Value(COLUMNNAME_C_BP_Vendor_Acct_UU); + } + public I_C_ValidCombination getV_Liability_A() throws RuntimeException { return (I_C_ValidCombination)MTable.get(getCtx(), I_C_ValidCombination.Table_Name) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_BP_Withholding.java b/org.adempiere.base/src/org/compiere/model/X_C_BP_Withholding.java index 8ed2fcf60a..b47cb14184 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_BP_Withholding.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_BP_Withholding.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_BP_Withholding - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_BP_Withholding extends PO implements I_C_BP_Withholding, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_BP_Withholding (Properties ctx, int C_BP_Withholding_ID, String trxName) @@ -73,9 +73,9 @@ public class X_C_BP_Withholding extends PO implements I_C_BP_Withholding, I_Pers return sb.toString(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -109,9 +109,23 @@ public class X_C_BP_Withholding extends PO implements I_C_BP_Withholding, I_Pers return new KeyNamePair(get_ID(), String.valueOf(getC_BPartner_ID())); } - public I_C_Withholding getC_Withholding() throws RuntimeException + /** Set C_BP_Withholding_UU. + @param C_BP_Withholding_UU C_BP_Withholding_UU */ + public void setC_BP_Withholding_UU (String C_BP_Withholding_UU) + { + set_Value (COLUMNNAME_C_BP_Withholding_UU, C_BP_Withholding_UU); + } + + /** Get C_BP_Withholding_UU. + @return C_BP_Withholding_UU */ + public String getC_BP_Withholding_UU () + { + return (String)get_Value(COLUMNNAME_C_BP_Withholding_UU); + } + + public org.compiere.model.I_C_Withholding getC_Withholding() throws RuntimeException { - return (I_C_Withholding)MTable.get(getCtx(), I_C_Withholding.Table_Name) + return (org.compiere.model.I_C_Withholding)MTable.get(getCtx(), org.compiere.model.I_C_Withholding.Table_Name) .getPO(getC_Withholding_ID(), get_TrxName()); } /** Set Withholding. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_BPartner.java b/org.adempiere.base/src/org/compiere/model/X_C_BPartner.java index 263df44c89..7e66fbe424 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_BPartner.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_BPartner.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_BPartner - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_BPartner extends PO implements I_C_BPartner, I_Persistent { /** * */ - private static final long serialVersionUID = 20121012L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_BPartner (Properties ctx, int C_BPartner_ID, String trxName) @@ -41,8 +41,8 @@ public class X_C_BPartner extends PO implements I_C_BPartner, I_Persistent super (ctx, C_BPartner_ID, trxName); /** if (C_BPartner_ID == 0) { - setC_BP_Group_ID (0); setC_BPartner_ID (0); + setC_BP_Group_ID (0); setIsCustomer (false); setIsEmployee (false); setIsOneTime (false); @@ -188,34 +188,6 @@ public class X_C_BPartner extends PO implements I_C_BPartner, I_Persistent return ii.intValue(); } - public org.compiere.model.I_C_BP_Group getC_BP_Group() throws RuntimeException - { - return (org.compiere.model.I_C_BP_Group)MTable.get(getCtx(), org.compiere.model.I_C_BP_Group.Table_Name) - .getPO(getC_BP_Group_ID(), get_TrxName()); } - - /** Set Business Partner Group. - @param C_BP_Group_ID - Business Partner Group - */ - public void setC_BP_Group_ID (int C_BP_Group_ID) - { - if (C_BP_Group_ID < 1) - set_Value (COLUMNNAME_C_BP_Group_ID, null); - else - set_Value (COLUMNNAME_C_BP_Group_ID, Integer.valueOf(C_BP_Group_ID)); - } - - /** Get Business Partner Group. - @return Business Partner Group - */ - public int getC_BP_Group_ID () - { - Integer ii = (Integer)get_Value(COLUMNNAME_C_BP_Group_ID); - if (ii == null) - return 0; - return ii.intValue(); - } - /** Set Business Partner . @param C_BPartner_ID Identifies a Business Partner @@ -253,6 +225,34 @@ public class X_C_BPartner extends PO implements I_C_BPartner, I_Persistent return (String)get_Value(COLUMNNAME_C_BPartner_UU); } + public org.compiere.model.I_C_BP_Group getC_BP_Group() throws RuntimeException + { + return (org.compiere.model.I_C_BP_Group)MTable.get(getCtx(), org.compiere.model.I_C_BP_Group.Table_Name) + .getPO(getC_BP_Group_ID(), get_TrxName()); } + + /** Set Business Partner Group. + @param C_BP_Group_ID + Business Partner Group + */ + public void setC_BP_Group_ID (int C_BP_Group_ID) + { + if (C_BP_Group_ID < 1) + set_Value (COLUMNNAME_C_BP_Group_ID, null); + else + set_Value (COLUMNNAME_C_BP_Group_ID, Integer.valueOf(C_BP_Group_ID)); + } + + /** Get Business Partner Group. + @return Business Partner Group + */ + public int getC_BP_Group_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_C_BP_Group_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + public org.compiere.model.I_C_Dunning getC_Dunning() throws RuntimeException { return (org.compiere.model.I_C_Dunning)MTable.get(getCtx(), org.compiere.model.I_C_Dunning.Table_Name) @@ -1422,6 +1422,36 @@ public class X_C_BPartner extends PO implements I_C_BPartner, I_Persistent return bd; } + /** SOCreditStatus AD_Reference_ID=289 */ + public static final int SOCREDITSTATUS_AD_Reference_ID=289; + /** Credit Stop = S */ + public static final String SOCREDITSTATUS_CreditStop = "S"; + /** Credit Hold = H */ + public static final String SOCREDITSTATUS_CreditHold = "H"; + /** Credit Watch = W */ + public static final String SOCREDITSTATUS_CreditWatch = "W"; + /** No Credit Check = X */ + public static final String SOCREDITSTATUS_NoCreditCheck = "X"; + /** Credit OK = O */ + public static final String SOCREDITSTATUS_CreditOK = "O"; + /** Set Credit Status. + @param SOCreditStatus + Business Partner Credit Status + */ + public void setSOCreditStatus (String SOCreditStatus) + { + + set_Value (COLUMNNAME_SOCreditStatus, SOCreditStatus); + } + + /** Get Credit Status. + @return Business Partner Credit Status + */ + public String getSOCreditStatus () + { + return (String)get_Value(COLUMNNAME_SOCreditStatus); + } + /** Set Credit Used. @param SO_CreditUsed Current open balance @@ -1459,36 +1489,6 @@ public class X_C_BPartner extends PO implements I_C_BPartner, I_Persistent return (String)get_Value(COLUMNNAME_SO_Description); } - /** SOCreditStatus AD_Reference_ID=289 */ - public static final int SOCREDITSTATUS_AD_Reference_ID=289; - /** Credit Stop = S */ - public static final String SOCREDITSTATUS_CreditStop = "S"; - /** Credit Hold = H */ - public static final String SOCREDITSTATUS_CreditHold = "H"; - /** Credit Watch = W */ - public static final String SOCREDITSTATUS_CreditWatch = "W"; - /** No Credit Check = X */ - public static final String SOCREDITSTATUS_NoCreditCheck = "X"; - /** Credit OK = O */ - public static final String SOCREDITSTATUS_CreditOK = "O"; - /** Set Credit Status. - @param SOCreditStatus - Business Partner Credit Status - */ - public void setSOCreditStatus (String SOCreditStatus) - { - - set_Value (COLUMNNAME_SOCreditStatus, SOCreditStatus); - } - - /** Get Credit Status. - @return Business Partner Credit Status - */ - public String getSOCreditStatus () - { - return (String)get_Value(COLUMNNAME_SOCreditStatus); - } - /** Set Tax ID. @param TaxID Tax Identification @@ -1528,7 +1528,7 @@ public class X_C_BPartner extends PO implements I_C_BPartner, I_Persistent /** Set URL. @param URL - Full URL address - e.g. http://www.adempiere.org + Full URL address - e.g. http://www.idempiere.org */ public void setURL (String URL) { @@ -1536,7 +1536,7 @@ public class X_C_BPartner extends PO implements I_C_BPartner, I_Persistent } /** Get URL. - @return Full URL address - e.g. http://www.adempiere.org + @return Full URL address - e.g. http://www.idempiere.org */ public String getURL () { diff --git a/org.adempiere.base/src/org/compiere/model/X_C_BPartner_Location.java b/org.adempiere.base/src/org/compiere/model/X_C_BPartner_Location.java index 9d5f4a9574..fd09e6b44f 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_BPartner_Location.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_BPartner_Location.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_BPartner_Location - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_BPartner_Location extends PO implements I_C_BPartner_Location, I_Persistent { /** * */ - private static final long serialVersionUID = 20121012L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_BPartner_Location (Properties ctx, int C_BPartner_Location_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_BPartner_Product.java b/org.adempiere.base/src/org/compiere/model/X_C_BPartner_Product.java index e6f04ee845..08a21f9ac0 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_BPartner_Product.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_BPartner_Product.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for C_BPartner_Product - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_BPartner_Product extends PO implements I_C_BPartner_Product, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_BPartner_Product (Properties ctx, int C_BPartner_Product_ID, String trxName) @@ -41,6 +41,7 @@ public class X_C_BPartner_Product extends PO implements I_C_BPartner_Product, I_ { setC_BPartner_ID (0); setIsManufacturer (false); +// N setM_Product_ID (0); setShelfLifeMinDays (0); setShelfLifeMinPct (0); @@ -75,9 +76,9 @@ public class X_C_BPartner_Product extends PO implements I_C_BPartner_Product, I_ return sb.toString(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -103,6 +104,20 @@ public class X_C_BPartner_Product extends PO implements I_C_BPartner_Product, I_ return ii.intValue(); } + /** Set C_BPartner_Product_UU. + @param C_BPartner_Product_UU C_BPartner_Product_UU */ + public void setC_BPartner_Product_UU (String C_BPartner_Product_UU) + { + set_Value (COLUMNNAME_C_BPartner_Product_UU, C_BPartner_Product_UU); + } + + /** Get C_BPartner_Product_UU. + @return C_BPartner_Product_UU */ + public String getC_BPartner_Product_UU () + { + return (String)get_Value(COLUMNNAME_C_BPartner_Product_UU); + } + /** Set Description. @param Description Optional short description of the record @@ -161,9 +176,9 @@ public class X_C_BPartner_Product extends PO implements I_C_BPartner_Product, I_ return (String)get_Value(COLUMNNAME_Manufacturer); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Bank.java b/org.adempiere.base/src/org/compiere/model/X_C_Bank.java index 3da238368e..22be22ae84 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Bank.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Bank.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_Bank - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Bank extends PO implements I_C_Bank, I_Persistent { /** * */ - private static final long serialVersionUID = 20110325L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Bank (Properties ctx, int C_Bank_ID, String trxName) @@ -97,6 +97,20 @@ public class X_C_Bank extends PO implements I_C_Bank, I_Persistent return ii.intValue(); } + /** Set C_Bank_UU. + @param C_Bank_UU C_Bank_UU */ + public void setC_Bank_UU (String C_Bank_UU) + { + set_Value (COLUMNNAME_C_Bank_UU, C_Bank_UU); + } + + /** Get C_Bank_UU. + @return C_Bank_UU */ + public String getC_Bank_UU () + { + return (String)get_Value(COLUMNNAME_C_Bank_UU); + } + public I_C_Location getC_Location() throws RuntimeException { return (I_C_Location)MTable.get(getCtx(), I_C_Location.Table_Name) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_BankAccount.java b/org.adempiere.base/src/org/compiere/model/X_C_BankAccount.java index 1ca8b9a5a0..07370d0c48 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_BankAccount.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_BankAccount.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_BankAccount - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_BankAccount extends PO implements I_C_BankAccount, I_Persistent { /** * */ - private static final long serialVersionUID = 20121017L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_BankAccount (Properties ctx, int C_BankAccount_ID, String trxName) @@ -42,8 +42,8 @@ public class X_C_BankAccount extends PO implements I_C_BankAccount, I_Persistent { setAccountNo (null); setBankAccountType (null); - setC_Bank_ID (0); setC_BankAccount_ID (0); + setC_Bank_ID (0); setC_Currency_ID (0); setCreditLimit (Env.ZERO); setCurrentBalance (Env.ZERO); @@ -143,34 +143,6 @@ public class X_C_BankAccount extends PO implements I_C_BankAccount, I_Persistent return (String)get_Value(COLUMNNAME_BBAN); } - public org.compiere.model.I_C_Bank getC_Bank() throws RuntimeException - { - return (org.compiere.model.I_C_Bank)MTable.get(getCtx(), org.compiere.model.I_C_Bank.Table_Name) - .getPO(getC_Bank_ID(), get_TrxName()); } - - /** Set Bank. - @param C_Bank_ID - Bank - */ - public void setC_Bank_ID (int C_Bank_ID) - { - if (C_Bank_ID < 1) - set_ValueNoCheck (COLUMNNAME_C_Bank_ID, null); - else - set_ValueNoCheck (COLUMNNAME_C_Bank_ID, Integer.valueOf(C_Bank_ID)); - } - - /** Get Bank. - @return Bank - */ - public int getC_Bank_ID () - { - Integer ii = (Integer)get_Value(COLUMNNAME_C_Bank_ID); - if (ii == null) - return 0; - return ii.intValue(); - } - /** Set Bank Account. @param C_BankAccount_ID Account at the Bank @@ -208,6 +180,34 @@ public class X_C_BankAccount extends PO implements I_C_BankAccount, I_Persistent return (String)get_Value(COLUMNNAME_C_BankAccount_UU); } + public org.compiere.model.I_C_Bank getC_Bank() throws RuntimeException + { + return (org.compiere.model.I_C_Bank)MTable.get(getCtx(), org.compiere.model.I_C_Bank.Table_Name) + .getPO(getC_Bank_ID(), get_TrxName()); } + + /** Set Bank. + @param C_Bank_ID + Bank + */ + public void setC_Bank_ID (int C_Bank_ID) + { + if (C_Bank_ID < 1) + set_ValueNoCheck (COLUMNNAME_C_Bank_ID, null); + else + set_ValueNoCheck (COLUMNNAME_C_Bank_ID, Integer.valueOf(C_Bank_ID)); + } + + /** Get Bank. + @return Bank + */ + public int getC_Bank_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_C_Bank_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_BankAccountDoc.java b/org.adempiere.base/src/org/compiere/model/X_C_BankAccountDoc.java index 2cee4d4617..580b39056c 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_BankAccountDoc.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_BankAccountDoc.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_BankAccountDoc - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_BankAccountDoc extends PO implements I_C_BankAccountDoc, I_Persistent { /** * */ - private static final long serialVersionUID = 20120906L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_BankAccountDoc (Properties ctx, int C_BankAccountDoc_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_BankAccount_Acct.java b/org.adempiere.base/src/org/compiere/model/X_C_BankAccount_Acct.java index a0ac41d168..483f48bd44 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_BankAccount_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_BankAccount_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for C_BankAccount_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_BankAccount_Acct extends PO implements I_C_BankAccount_Acct, I_Persistent { /** * */ - private static final long serialVersionUID = 20120928L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_BankAccount_Acct (Properties ctx, int C_BankAccount_Acct_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_BankAccount_Processor.java b/org.adempiere.base/src/org/compiere/model/X_C_BankAccount_Processor.java index f2a6c56f4d..566617edc9 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_BankAccount_Processor.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_BankAccount_Processor.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for C_BankAccount_Processor - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_BankAccount_Processor extends PO implements I_C_BankAccount_Processor, I_Persistent { /** * */ - private static final long serialVersionUID = 20121017L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_BankAccount_Processor (Properties ctx, int C_BankAccount_Processor_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_BankStatement.java b/org.adempiere.base/src/org/compiere/model/X_C_BankStatement.java index c6cb721ece..5d090a4f7a 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_BankStatement.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_BankStatement.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_BankStatement - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_BankStatement extends PO implements I_C_BankStatement, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_BankStatement (Properties ctx, int C_BankStatement_ID, String trxName) @@ -110,9 +110,9 @@ public class X_C_BankStatement extends PO implements I_C_BankStatement, I_Persis return bd; } - public I_C_BankAccount getC_BankAccount() throws RuntimeException + public org.compiere.model.I_C_BankAccount getC_BankAccount() throws RuntimeException { - return (I_C_BankAccount)MTable.get(getCtx(), I_C_BankAccount.Table_Name) + return (org.compiere.model.I_C_BankAccount)MTable.get(getCtx(), org.compiere.model.I_C_BankAccount.Table_Name) .getPO(getC_BankAccount_ID(), get_TrxName()); } /** Set Bank Account. @@ -161,6 +161,20 @@ public class X_C_BankStatement extends PO implements I_C_BankStatement, I_Persis return ii.intValue(); } + /** Set C_BankStatement_UU. + @param C_BankStatement_UU C_BankStatement_UU */ + public void setC_BankStatement_UU (String C_BankStatement_UU) + { + set_Value (COLUMNNAME_C_BankStatement_UU, C_BankStatement_UU); + } + + /** Get C_BankStatement_UU. + @return C_BankStatement_UU */ + public String getC_BankStatement_UU () + { + return (String)get_Value(COLUMNNAME_C_BankStatement_UU); + } + /** Set Create lines from. @param CreateFrom Process which will generate a new document lines based on an existing document diff --git a/org.adempiere.base/src/org/compiere/model/X_C_BankStatementLine.java b/org.adempiere.base/src/org/compiere/model/X_C_BankStatementLine.java index 95523a9666..8b40c9a70f 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_BankStatementLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_BankStatementLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_BankStatementLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_BankStatementLine extends PO implements I_C_BankStatementLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_BankStatementLine (Properties ctx, int C_BankStatementLine_ID, String trxName) @@ -93,9 +93,9 @@ public class X_C_BankStatementLine extends PO implements I_C_BankStatementLine, return sb.toString(); } - public I_C_BankStatement getC_BankStatement() throws RuntimeException + public org.compiere.model.I_C_BankStatement getC_BankStatement() throws RuntimeException { - return (I_C_BankStatement)MTable.get(getCtx(), I_C_BankStatement.Table_Name) + return (org.compiere.model.I_C_BankStatement)MTable.get(getCtx(), org.compiere.model.I_C_BankStatement.Table_Name) .getPO(getC_BankStatement_ID(), get_TrxName()); } /** Set Bank Statement. @@ -144,9 +144,23 @@ public class X_C_BankStatementLine extends PO implements I_C_BankStatementLine, return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + /** Set C_BankStatementLine_UU. + @param C_BankStatementLine_UU C_BankStatementLine_UU */ + public void setC_BankStatementLine_UU (String C_BankStatementLine_UU) + { + set_Value (COLUMNNAME_C_BankStatementLine_UU, C_BankStatementLine_UU); + } + + /** Get C_BankStatementLine_UU. + @return C_BankStatementLine_UU */ + public String getC_BankStatementLine_UU () + { + return (String)get_Value(COLUMNNAME_C_BankStatementLine_UU); + } + + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -172,9 +186,9 @@ public class X_C_BankStatementLine extends PO implements I_C_BankStatementLine, return ii.intValue(); } - public I_C_Charge getC_Charge() throws RuntimeException + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException { - return (I_C_Charge)MTable.get(getCtx(), I_C_Charge.Table_Name) + return (org.compiere.model.I_C_Charge)MTable.get(getCtx(), org.compiere.model.I_C_Charge.Table_Name) .getPO(getC_Charge_ID(), get_TrxName()); } /** Set Charge. @@ -200,9 +214,9 @@ public class X_C_BankStatementLine extends PO implements I_C_BankStatementLine, return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -248,9 +262,9 @@ public class X_C_BankStatementLine extends PO implements I_C_BankStatementLine, return bd; } - public I_C_Invoice getC_Invoice() throws RuntimeException + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException { - return (I_C_Invoice)MTable.get(getCtx(), I_C_Invoice.Table_Name) + return (org.compiere.model.I_C_Invoice)MTable.get(getCtx(), org.compiere.model.I_C_Invoice.Table_Name) .getPO(getC_Invoice_ID(), get_TrxName()); } /** Set Invoice. @@ -276,9 +290,9 @@ public class X_C_BankStatementLine extends PO implements I_C_BankStatementLine, return ii.intValue(); } - public I_C_Payment getC_Payment() throws RuntimeException + public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException { - return (I_C_Payment)MTable.get(getCtx(), I_C_Payment.Table_Name) + return (org.compiere.model.I_C_Payment)MTable.get(getCtx(), org.compiere.model.I_C_Payment.Table_Name) .getPO(getC_Payment_ID(), get_TrxName()); } /** Set Payment. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_BankStatementLoader.java b/org.adempiere.base/src/org/compiere/model/X_C_BankStatementLoader.java index 0739a8e83f..f2bf552974 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_BankStatementLoader.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_BankStatementLoader.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_BankStatementLoader - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_BankStatementLoader extends PO implements I_C_BankStatementLoader, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_BankStatementLoader (Properties ctx, int C_BankStatementLoader_ID, String trxName) @@ -107,9 +107,9 @@ public class X_C_BankStatementLoader extends PO implements I_C_BankStatementLoad return (String)get_Value(COLUMNNAME_BranchID); } - public I_C_BankAccount getC_BankAccount() throws RuntimeException + public org.compiere.model.I_C_BankAccount getC_BankAccount() throws RuntimeException { - return (I_C_BankAccount)MTable.get(getCtx(), I_C_BankAccount.Table_Name) + return (org.compiere.model.I_C_BankAccount)MTable.get(getCtx(), org.compiere.model.I_C_BankAccount.Table_Name) .getPO(getC_BankAccount_ID(), get_TrxName()); } /** Set Bank Account. @@ -158,6 +158,20 @@ public class X_C_BankStatementLoader extends PO implements I_C_BankStatementLoad return ii.intValue(); } + /** Set C_BankStatementLoader_UU. + @param C_BankStatementLoader_UU C_BankStatementLoader_UU */ + public void setC_BankStatementLoader_UU (String C_BankStatementLoader_UU) + { + set_Value (COLUMNNAME_C_BankStatementLoader_UU, C_BankStatementLoader_UU); + } + + /** Get C_BankStatementLoader_UU. + @return C_BankStatementLoader_UU */ + public String getC_BankStatementLoader_UU () + { + return (String)get_Value(COLUMNNAME_C_BankStatementLoader_UU); + } + /** Set Date Format. @param DateFormat Date format used in the input format diff --git a/org.adempiere.base/src/org/compiere/model/X_C_BankStatementMatcher.java b/org.adempiere.base/src/org/compiere/model/X_C_BankStatementMatcher.java index 3d6e41057a..b2f0889aa4 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_BankStatementMatcher.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_BankStatementMatcher.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_BankStatementMatcher - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_BankStatementMatcher extends PO implements I_C_BankStatementMatcher, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_BankStatementMatcher (Properties ctx, int C_BankStatementMatcher_ID, String trxName) @@ -96,6 +96,20 @@ public class X_C_BankStatementMatcher extends PO implements I_C_BankStatementMat return ii.intValue(); } + /** Set C_BankStatementMatcher_UU. + @param C_BankStatementMatcher_UU C_BankStatementMatcher_UU */ + public void setC_BankStatementMatcher_UU (String C_BankStatementMatcher_UU) + { + set_Value (COLUMNNAME_C_BankStatementMatcher_UU, C_BankStatementMatcher_UU); + } + + /** Get C_BankStatementMatcher_UU. + @return C_BankStatementMatcher_UU */ + public String getC_BankStatementMatcher_UU () + { + return (String)get_Value(COLUMNNAME_C_BankStatementMatcher_UU); + } + /** Set Classname. @param Classname Java Classname diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Calendar.java b/org.adempiere.base/src/org/compiere/model/X_C_Calendar.java index fbb4fea8cf..37f4dfd22f 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Calendar.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Calendar.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_Calendar - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Calendar extends PO implements I_C_Calendar, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Calendar (Properties ctx, int C_Calendar_ID, String trxName) @@ -94,6 +94,20 @@ public class X_C_Calendar extends PO implements I_C_Calendar, I_Persistent return ii.intValue(); } + /** Set C_Calendar_UU. + @param C_Calendar_UU C_Calendar_UU */ + public void setC_Calendar_UU (String C_Calendar_UU) + { + set_Value (COLUMNNAME_C_Calendar_UU, C_Calendar_UU); + } + + /** Get C_Calendar_UU. + @return C_Calendar_UU */ + public String getC_Calendar_UU () + { + return (String)get_Value(COLUMNNAME_C_Calendar_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Campaign.java b/org.adempiere.base/src/org/compiere/model/X_C_Campaign.java index 6f5e223656..fca06ecc2b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Campaign.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Campaign.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_Campaign - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Campaign extends PO implements I_C_Campaign, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Campaign (Properties ctx, int C_Campaign_ID, String trxName) @@ -100,9 +100,23 @@ public class X_C_Campaign extends PO implements I_C_Campaign, I_Persistent return ii.intValue(); } - public I_C_Channel getC_Channel() throws RuntimeException + /** Set C_Campaign_UU. + @param C_Campaign_UU C_Campaign_UU */ + public void setC_Campaign_UU (String C_Campaign_UU) + { + set_Value (COLUMNNAME_C_Campaign_UU, C_Campaign_UU); + } + + /** Get C_Campaign_UU. + @return C_Campaign_UU */ + public String getC_Campaign_UU () + { + return (String)get_Value(COLUMNNAME_C_Campaign_UU); + } + + public org.compiere.model.I_C_Channel getC_Channel() throws RuntimeException { - return (I_C_Channel)MTable.get(getCtx(), I_C_Channel.Table_Name) + return (org.compiere.model.I_C_Channel)MTable.get(getCtx(), org.compiere.model.I_C_Channel.Table_Name) .getPO(getC_Channel_ID(), get_TrxName()); } /** Set Channel. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Cash.java b/org.adempiere.base/src/org/compiere/model/X_C_Cash.java index 57a44f63bf..9b41accf2b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Cash.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Cash.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_Cash - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Cash extends PO implements I_C_Cash, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Cash (Properties ctx, int C_Cash_ID, String trxName) @@ -133,9 +133,9 @@ public class X_C_Cash extends PO implements I_C_Cash, I_Persistent return bd; } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -161,9 +161,9 @@ public class X_C_Cash extends PO implements I_C_Cash, I_Persistent return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -189,9 +189,9 @@ public class X_C_Cash extends PO implements I_C_Cash, I_Persistent return ii.intValue(); } - public I_C_CashBook getC_CashBook() throws RuntimeException + public org.compiere.model.I_C_CashBook getC_CashBook() throws RuntimeException { - return (I_C_CashBook)MTable.get(getCtx(), I_C_CashBook.Table_Name) + return (org.compiere.model.I_C_CashBook)MTable.get(getCtx(), org.compiere.model.I_C_CashBook.Table_Name) .getPO(getC_CashBook_ID(), get_TrxName()); } /** Set Cash Book. @@ -240,9 +240,23 @@ public class X_C_Cash extends PO implements I_C_Cash, I_Persistent return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + /** Set C_Cash_UU. + @param C_Cash_UU C_Cash_UU */ + public void setC_Cash_UU (String C_Cash_UU) + { + set_Value (COLUMNNAME_C_Cash_UU, C_Cash_UU); + } + + /** Get C_Cash_UU. + @return C_Cash_UU */ + public String getC_Cash_UU () + { + return (String)get_Value(COLUMNNAME_C_Cash_UU); + } + + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -589,9 +603,9 @@ public class X_C_Cash extends PO implements I_C_Cash, I_Persistent return bd; } - public I_C_ElementValue getUser1() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser1_ID(), get_TrxName()); } /** Set User List 1. @@ -617,9 +631,9 @@ public class X_C_Cash extends PO implements I_C_Cash, I_Persistent return ii.intValue(); } - public I_C_ElementValue getUser2() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser2_ID(), get_TrxName()); } /** Set User List 2. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_CashBook.java b/org.adempiere.base/src/org/compiere/model/X_C_CashBook.java index b0f208833c..0c3876d0c3 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_CashBook.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_CashBook.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_CashBook - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_CashBook extends PO implements I_C_CashBook, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_CashBook (Properties ctx, int C_CashBook_ID, String trxName) @@ -96,9 +96,23 @@ public class X_C_CashBook extends PO implements I_C_CashBook, I_Persistent return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + /** Set C_CashBook_UU. + @param C_CashBook_UU C_CashBook_UU */ + public void setC_CashBook_UU (String C_CashBook_UU) + { + set_Value (COLUMNNAME_C_CashBook_UU, C_CashBook_UU); + } + + /** Get C_CashBook_UU. + @return C_CashBook_UU */ + public String getC_CashBook_UU () + { + return (String)get_Value(COLUMNNAME_C_CashBook_UU); + } + + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_CashBook_Acct.java b/org.adempiere.base/src/org/compiere/model/X_C_CashBook_Acct.java index 1a0da5ba5a..179c01fa44 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_CashBook_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_CashBook_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for C_CashBook_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_CashBook_Acct extends PO implements I_C_CashBook_Acct, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_CashBook_Acct (Properties ctx, int C_CashBook_Acct_ID, String trxName) @@ -75,9 +75,9 @@ public class X_C_CashBook_Acct extends PO implements I_C_CashBook_Acct, I_Persis return sb.toString(); } - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException { - return (I_C_AcctSchema)MTable.get(getCtx(), I_C_AcctSchema.Table_Name) + return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_Name) .getPO(getC_AcctSchema_ID(), get_TrxName()); } /** Set Accounting Schema. @@ -228,9 +228,23 @@ public class X_C_CashBook_Acct extends PO implements I_C_CashBook_Acct, I_Persis return ii.intValue(); } - public I_C_CashBook getC_CashBook() throws RuntimeException + /** Set C_CashBook_Acct_UU. + @param C_CashBook_Acct_UU C_CashBook_Acct_UU */ + public void setC_CashBook_Acct_UU (String C_CashBook_Acct_UU) + { + set_Value (COLUMNNAME_C_CashBook_Acct_UU, C_CashBook_Acct_UU); + } + + /** Get C_CashBook_Acct_UU. + @return C_CashBook_Acct_UU */ + public String getC_CashBook_Acct_UU () + { + return (String)get_Value(COLUMNNAME_C_CashBook_Acct_UU); + } + + public org.compiere.model.I_C_CashBook getC_CashBook() throws RuntimeException { - return (I_C_CashBook)MTable.get(getCtx(), I_C_CashBook.Table_Name) + return (org.compiere.model.I_C_CashBook)MTable.get(getCtx(), org.compiere.model.I_C_CashBook.Table_Name) .getPO(getC_CashBook_ID(), get_TrxName()); } /** Set Cash Book. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_CashLine.java b/org.adempiere.base/src/org/compiere/model/X_C_CashLine.java index 6248e5c0a6..7652e2932e 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_CashLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_CashLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_CashLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_CashLine extends PO implements I_C_CashLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_CashLine (Properties ctx, int C_CashLine_ID, String trxName) @@ -131,9 +131,9 @@ public class X_C_CashLine extends PO implements I_C_CashLine, I_Persistent return (String)get_Value(COLUMNNAME_CashType); } - public I_C_BankAccount getC_BankAccount() throws RuntimeException + public org.compiere.model.I_C_BankAccount getC_BankAccount() throws RuntimeException { - return (I_C_BankAccount)MTable.get(getCtx(), I_C_BankAccount.Table_Name) + return (org.compiere.model.I_C_BankAccount)MTable.get(getCtx(), org.compiere.model.I_C_BankAccount.Table_Name) .getPO(getC_BankAccount_ID(), get_TrxName()); } /** Set Bank Account. @@ -159,9 +159,9 @@ public class X_C_CashLine extends PO implements I_C_CashLine, I_Persistent return ii.intValue(); } - public I_C_Cash getC_Cash() throws RuntimeException + public org.compiere.model.I_C_Cash getC_Cash() throws RuntimeException { - return (I_C_Cash)MTable.get(getCtx(), I_C_Cash.Table_Name) + return (org.compiere.model.I_C_Cash)MTable.get(getCtx(), org.compiere.model.I_C_Cash.Table_Name) .getPO(getC_Cash_ID(), get_TrxName()); } /** Set Cash Journal. @@ -218,9 +218,23 @@ public class X_C_CashLine extends PO implements I_C_CashLine, I_Persistent return ii.intValue(); } - public I_C_Charge getC_Charge() throws RuntimeException + /** Set C_CashLine_UU. + @param C_CashLine_UU C_CashLine_UU */ + public void setC_CashLine_UU (String C_CashLine_UU) + { + set_Value (COLUMNNAME_C_CashLine_UU, C_CashLine_UU); + } + + /** Get C_CashLine_UU. + @return C_CashLine_UU */ + public String getC_CashLine_UU () + { + return (String)get_Value(COLUMNNAME_C_CashLine_UU); + } + + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException { - return (I_C_Charge)MTable.get(getCtx(), I_C_Charge.Table_Name) + return (org.compiere.model.I_C_Charge)MTable.get(getCtx(), org.compiere.model.I_C_Charge.Table_Name) .getPO(getC_Charge_ID(), get_TrxName()); } /** Set Charge. @@ -246,9 +260,9 @@ public class X_C_CashLine extends PO implements I_C_CashLine, I_Persistent return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -274,9 +288,9 @@ public class X_C_CashLine extends PO implements I_C_CashLine, I_Persistent return ii.intValue(); } - public I_C_Invoice getC_Invoice() throws RuntimeException + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException { - return (I_C_Invoice)MTable.get(getCtx(), I_C_Invoice.Table_Name) + return (org.compiere.model.I_C_Invoice)MTable.get(getCtx(), org.compiere.model.I_C_Invoice.Table_Name) .getPO(getC_Invoice_ID(), get_TrxName()); } /** Set Invoice. @@ -302,9 +316,9 @@ public class X_C_CashLine extends PO implements I_C_CashLine, I_Persistent return ii.intValue(); } - public I_C_Payment getC_Payment() throws RuntimeException + public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException { - return (I_C_Payment)MTable.get(getCtx(), I_C_Payment.Table_Name) + return (org.compiere.model.I_C_Payment)MTable.get(getCtx(), org.compiere.model.I_C_Payment.Table_Name) .getPO(getC_Payment_ID(), get_TrxName()); } /** Set Payment. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_CashPlan.java b/org.adempiere.base/src/org/compiere/model/X_C_CashPlan.java index 78e73cb443..dd5e2ac7ef 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_CashPlan.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_CashPlan.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_CashPlan - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_CashPlan extends PO implements I_C_CashPlan, I_Persistent { /** * */ - private static final long serialVersionUID = 20110325L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_CashPlan (Properties ctx, int C_CashPlan_ID, String trxName) @@ -231,6 +231,20 @@ public class X_C_CashPlan extends PO implements I_C_CashPlan, I_Persistent return ii.intValue(); } + /** Set C_CashPlan_UU. + @param C_CashPlan_UU C_CashPlan_UU */ + public void setC_CashPlan_UU (String C_CashPlan_UU) + { + set_Value (COLUMNNAME_C_CashPlan_UU, C_CashPlan_UU); + } + + /** Get C_CashPlan_UU. + @return C_CashPlan_UU */ + public String getC_CashPlan_UU () + { + return (String)get_Value(COLUMNNAME_C_CashPlan_UU); + } + /** Set Copy From. @param CopyFrom Copy From Record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_CashPlanLine.java b/org.adempiere.base/src/org/compiere/model/X_C_CashPlanLine.java index e5e645b6c6..c5b91ab1b1 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_CashPlanLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_CashPlanLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_CashPlanLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_CashPlanLine extends PO implements I_C_CashPlanLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20110325L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_CashPlanLine (Properties ctx, int C_CashPlanLine_ID, String trxName) @@ -240,6 +240,20 @@ public class X_C_CashPlanLine extends PO implements I_C_CashPlanLine, I_Persiste return ii.intValue(); } + /** Set C_CashPlanLine_UU. + @param C_CashPlanLine_UU C_CashPlanLine_UU */ + public void setC_CashPlanLine_UU (String C_CashPlanLine_UU) + { + set_Value (COLUMNNAME_C_CashPlanLine_UU, C_CashPlanLine_UU); + } + + /** Get C_CashPlanLine_UU. + @return C_CashPlanLine_UU */ + public String getC_CashPlanLine_UU () + { + return (String)get_Value(COLUMNNAME_C_CashPlanLine_UU); + } + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException { return (org.compiere.model.I_C_Charge)MTable.get(getCtx(), org.compiere.model.I_C_Charge.Table_Name) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Channel.java b/org.adempiere.base/src/org/compiere/model/X_C_Channel.java index e091d03fc0..4942608d30 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Channel.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Channel.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_Channel - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Channel extends PO implements I_C_Channel, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Channel (Properties ctx, int C_Channel_ID, String trxName) @@ -71,9 +71,9 @@ public class X_C_Channel extends PO implements I_C_Channel, I_Persistent return sb.toString(); } - public I_AD_PrintColor getAD_PrintColor() throws RuntimeException + public org.compiere.model.I_AD_PrintColor getAD_PrintColor() throws RuntimeException { - return (I_AD_PrintColor)MTable.get(getCtx(), I_AD_PrintColor.Table_Name) + return (org.compiere.model.I_AD_PrintColor)MTable.get(getCtx(), org.compiere.model.I_AD_PrintColor.Table_Name) .getPO(getAD_PrintColor_ID(), get_TrxName()); } /** Set Print Color. @@ -122,6 +122,20 @@ public class X_C_Channel extends PO implements I_C_Channel, I_Persistent return ii.intValue(); } + /** Set C_Channel_UU. + @param C_Channel_UU C_Channel_UU */ + public void setC_Channel_UU (String C_Channel_UU) + { + set_Value (COLUMNNAME_C_Channel_UU, C_Channel_UU); + } + + /** Get C_Channel_UU. + @return C_Channel_UU */ + public String getC_Channel_UU () + { + return (String)get_Value(COLUMNNAME_C_Channel_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Charge.java b/org.adempiere.base/src/org/compiere/model/X_C_Charge.java index 915d3ce5d0..04e49eb0bd 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Charge.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Charge.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_Charge - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Charge extends PO implements I_C_Charge, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Charge (Properties ctx, int C_Charge_ID, String trxName) @@ -79,9 +79,9 @@ public class X_C_Charge extends PO implements I_C_Charge, I_Persistent return sb.toString(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -130,9 +130,9 @@ public class X_C_Charge extends PO implements I_C_Charge, I_Persistent return ii.intValue(); } - public I_C_ChargeType getC_ChargeType() throws RuntimeException + public org.compiere.model.I_C_ChargeType getC_ChargeType() throws RuntimeException { - return (I_C_ChargeType)MTable.get(getCtx(), I_C_ChargeType.Table_Name) + return (org.compiere.model.I_C_ChargeType)MTable.get(getCtx(), org.compiere.model.I_C_ChargeType.Table_Name) .getPO(getC_ChargeType_ID(), get_TrxName()); } /** Set Charge Type. @@ -155,6 +155,20 @@ public class X_C_Charge extends PO implements I_C_Charge, I_Persistent return ii.intValue(); } + /** Set C_Charge_UU. + @param C_Charge_UU C_Charge_UU */ + public void setC_Charge_UU (String C_Charge_UU) + { + set_Value (COLUMNNAME_C_Charge_UU, C_Charge_UU); + } + + /** Get C_Charge_UU. + @return C_Charge_UU */ + public String getC_Charge_UU () + { + return (String)get_Value(COLUMNNAME_C_Charge_UU); + } + /** Set Charge amount. @param ChargeAmt Charge Amount @@ -175,9 +189,9 @@ public class X_C_Charge extends PO implements I_C_Charge, I_Persistent return bd; } - public I_C_TaxCategory getC_TaxCategory() throws RuntimeException + public org.compiere.model.I_C_TaxCategory getC_TaxCategory() throws RuntimeException { - return (I_C_TaxCategory)MTable.get(getCtx(), I_C_TaxCategory.Table_Name) + return (org.compiere.model.I_C_TaxCategory)MTable.get(getCtx(), org.compiere.model.I_C_TaxCategory.Table_Name) .getPO(getC_TaxCategory_ID(), get_TrxName()); } /** Set Tax Category. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_ChargeType.java b/org.adempiere.base/src/org/compiere/model/X_C_ChargeType.java index 31e8085c30..7e4c81ab51 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_ChargeType.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_ChargeType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_ChargeType - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_ChargeType extends PO implements I_C_ChargeType, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_ChargeType (Properties ctx, int C_ChargeType_ID, String trxName) @@ -92,6 +92,20 @@ public class X_C_ChargeType extends PO implements I_C_ChargeType, I_Persistent return ii.intValue(); } + /** Set C_ChargeType_UU. + @param C_ChargeType_UU C_ChargeType_UU */ + public void setC_ChargeType_UU (String C_ChargeType_UU) + { + set_Value (COLUMNNAME_C_ChargeType_UU, C_ChargeType_UU); + } + + /** Get C_ChargeType_UU. + @return C_ChargeType_UU */ + public String getC_ChargeType_UU () + { + return (String)get_Value(COLUMNNAME_C_ChargeType_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_ChargeType_DocType.java b/org.adempiere.base/src/org/compiere/model/X_C_ChargeType_DocType.java index 4d05d06a4e..e6e50c0e68 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_ChargeType_DocType.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_ChargeType_DocType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for C_ChargeType_DocType - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_ChargeType_DocType extends PO implements I_C_ChargeType_DocType, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_ChargeType_DocType (Properties ctx, int C_ChargeType_DocType_ID, String trxName) @@ -74,9 +74,23 @@ public class X_C_ChargeType_DocType extends PO implements I_C_ChargeType_DocType return sb.toString(); } - public I_C_ChargeType getC_ChargeType() throws RuntimeException + /** Set C_ChargeType_DocType_UU. + @param C_ChargeType_DocType_UU C_ChargeType_DocType_UU */ + public void setC_ChargeType_DocType_UU (String C_ChargeType_DocType_UU) + { + set_Value (COLUMNNAME_C_ChargeType_DocType_UU, C_ChargeType_DocType_UU); + } + + /** Get C_ChargeType_DocType_UU. + @return C_ChargeType_DocType_UU */ + public String getC_ChargeType_DocType_UU () + { + return (String)get_Value(COLUMNNAME_C_ChargeType_DocType_UU); + } + + public org.compiere.model.I_C_ChargeType getC_ChargeType() throws RuntimeException { - return (I_C_ChargeType)MTable.get(getCtx(), I_C_ChargeType.Table_Name) + return (org.compiere.model.I_C_ChargeType)MTable.get(getCtx(), org.compiere.model.I_C_ChargeType.Table_Name) .getPO(getC_ChargeType_ID(), get_TrxName()); } /** Set Charge Type. @@ -99,9 +113,9 @@ public class X_C_ChargeType_DocType extends PO implements I_C_ChargeType_DocType return ii.intValue(); } - public I_C_DocType getC_DocType() throws RuntimeException + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocType_ID(), get_TrxName()); } /** Set Document Type. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Charge_Acct.java b/org.adempiere.base/src/org/compiere/model/X_C_Charge_Acct.java index d53152f0c0..fa5bfaf541 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Charge_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Charge_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for C_Charge_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Charge_Acct extends PO implements I_C_Charge_Acct, I_Persistent { /** * */ - private static final long serialVersionUID = 20120817L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Charge_Acct (Properties ctx, int C_Charge_Acct_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_City.java b/org.adempiere.base/src/org/compiere/model/X_C_City.java index be14ad9a10..da73c96b1c 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_City.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_City.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_City - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_City extends PO implements I_C_City, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_City (Properties ctx, int C_City_ID, String trxName) @@ -111,9 +111,23 @@ public class X_C_City extends PO implements I_C_City, I_Persistent return ii.intValue(); } - public I_C_Country getC_Country() throws RuntimeException + /** Set C_City_UU. + @param C_City_UU C_City_UU */ + public void setC_City_UU (String C_City_UU) + { + set_Value (COLUMNNAME_C_City_UU, C_City_UU); + } + + /** Get C_City_UU. + @return C_City_UU */ + public String getC_City_UU () + { + return (String)get_Value(COLUMNNAME_C_City_UU); + } + + public org.compiere.model.I_C_Country getC_Country() throws RuntimeException { - return (I_C_Country)MTable.get(getCtx(), I_C_Country.Table_Name) + return (org.compiere.model.I_C_Country)MTable.get(getCtx(), org.compiere.model.I_C_Country.Table_Name) .getPO(getC_Country_ID(), get_TrxName()); } /** Set Country. @@ -156,9 +170,9 @@ public class X_C_City extends PO implements I_C_City, I_Persistent return (String)get_Value(COLUMNNAME_Coordinates); } - public I_C_Region getC_Region() throws RuntimeException + public org.compiere.model.I_C_Region getC_Region() throws RuntimeException { - return (I_C_Region)MTable.get(getCtx(), I_C_Region.Table_Name) + return (org.compiere.model.I_C_Region)MTable.get(getCtx(), org.compiere.model.I_C_Region.Table_Name) .getPO(getC_Region_ID(), get_TrxName()); } /** Set Region. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Commission.java b/org.adempiere.base/src/org/compiere/model/X_C_Commission.java index 662682a878..4e4179f350 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Commission.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Commission.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_Commission - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Commission extends PO implements I_C_Commission, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Commission (Properties ctx, int C_Commission_ID, String trxName) @@ -80,9 +80,9 @@ public class X_C_Commission extends PO implements I_C_Commission, I_Persistent return sb.toString(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -108,9 +108,9 @@ public class X_C_Commission extends PO implements I_C_Commission, I_Persistent return ii.intValue(); } - public I_C_Charge getC_Charge() throws RuntimeException + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException { - return (I_C_Charge)MTable.get(getCtx(), I_C_Charge.Table_Name) + return (org.compiere.model.I_C_Charge)MTable.get(getCtx(), org.compiere.model.I_C_Charge.Table_Name) .getPO(getC_Charge_ID(), get_TrxName()); } /** Set Charge. @@ -159,9 +159,23 @@ public class X_C_Commission extends PO implements I_C_Commission, I_Persistent return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + /** Set C_Commission_UU. + @param C_Commission_UU C_Commission_UU */ + public void setC_Commission_UU (String C_Commission_UU) + { + set_Value (COLUMNNAME_C_Commission_UU, C_Commission_UU); + } + + /** Get C_Commission_UU. + @return C_Commission_UU */ + public String getC_Commission_UU () + { + return (String)get_Value(COLUMNNAME_C_Commission_UU); + } + + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_CommissionAmt.java b/org.adempiere.base/src/org/compiere/model/X_C_CommissionAmt.java index 7c2cdd3ad1..ab0f45b77a 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_CommissionAmt.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_CommissionAmt.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_CommissionAmt - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_CommissionAmt extends PO implements I_C_CommissionAmt, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_CommissionAmt (Properties ctx, int C_CommissionAmt_ID, String trxName) @@ -120,9 +120,23 @@ public class X_C_CommissionAmt extends PO implements I_C_CommissionAmt, I_Persis return ii.intValue(); } - public I_C_CommissionLine getC_CommissionLine() throws RuntimeException + /** Set C_CommissionAmt_UU. + @param C_CommissionAmt_UU C_CommissionAmt_UU */ + public void setC_CommissionAmt_UU (String C_CommissionAmt_UU) + { + set_Value (COLUMNNAME_C_CommissionAmt_UU, C_CommissionAmt_UU); + } + + /** Get C_CommissionAmt_UU. + @return C_CommissionAmt_UU */ + public String getC_CommissionAmt_UU () + { + return (String)get_Value(COLUMNNAME_C_CommissionAmt_UU); + } + + public org.compiere.model.I_C_CommissionLine getC_CommissionLine() throws RuntimeException { - return (I_C_CommissionLine)MTable.get(getCtx(), I_C_CommissionLine.Table_Name) + return (org.compiere.model.I_C_CommissionLine)MTable.get(getCtx(), org.compiere.model.I_C_CommissionLine.Table_Name) .getPO(getC_CommissionLine_ID(), get_TrxName()); } /** Set Commission Line. @@ -148,9 +162,9 @@ public class X_C_CommissionAmt extends PO implements I_C_CommissionAmt, I_Persis return ii.intValue(); } - public I_C_CommissionRun getC_CommissionRun() throws RuntimeException + public org.compiere.model.I_C_CommissionRun getC_CommissionRun() throws RuntimeException { - return (I_C_CommissionRun)MTable.get(getCtx(), I_C_CommissionRun.Table_Name) + return (org.compiere.model.I_C_CommissionRun)MTable.get(getCtx(), org.compiere.model.I_C_CommissionRun.Table_Name) .getPO(getC_CommissionRun_ID(), get_TrxName()); } /** Set Commission Run. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_CommissionDetail.java b/org.adempiere.base/src/org/compiere/model/X_C_CommissionDetail.java index 2352dd6fd6..66c9c2f885 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_CommissionDetail.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_CommissionDetail.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_CommissionDetail - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_CommissionDetail extends PO implements I_C_CommissionDetail, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_CommissionDetail (Properties ctx, int C_CommissionDetail_ID, String trxName) @@ -117,9 +117,9 @@ public class X_C_CommissionDetail extends PO implements I_C_CommissionDetail, I_ return bd; } - public I_C_CommissionAmt getC_CommissionAmt() throws RuntimeException + public org.compiere.model.I_C_CommissionAmt getC_CommissionAmt() throws RuntimeException { - return (I_C_CommissionAmt)MTable.get(getCtx(), I_C_CommissionAmt.Table_Name) + return (org.compiere.model.I_C_CommissionAmt)MTable.get(getCtx(), org.compiere.model.I_C_CommissionAmt.Table_Name) .getPO(getC_CommissionAmt_ID(), get_TrxName()); } /** Set Commission Amount. @@ -168,9 +168,23 @@ public class X_C_CommissionDetail extends PO implements I_C_CommissionDetail, I_ return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + /** Set C_CommissionDetail_UU. + @param C_CommissionDetail_UU C_CommissionDetail_UU */ + public void setC_CommissionDetail_UU (String C_CommissionDetail_UU) + { + set_Value (COLUMNNAME_C_CommissionDetail_UU, C_CommissionDetail_UU); + } + + /** Get C_CommissionDetail_UU. + @return C_CommissionDetail_UU */ + public String getC_CommissionDetail_UU () + { + return (String)get_Value(COLUMNNAME_C_CommissionDetail_UU); + } + + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -196,9 +210,9 @@ public class X_C_CommissionDetail extends PO implements I_C_CommissionDetail, I_ return ii.intValue(); } - public I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException + public org.compiere.model.I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException { - return (I_C_InvoiceLine)MTable.get(getCtx(), I_C_InvoiceLine.Table_Name) + return (org.compiere.model.I_C_InvoiceLine)MTable.get(getCtx(), org.compiere.model.I_C_InvoiceLine.Table_Name) .getPO(getC_InvoiceLine_ID(), get_TrxName()); } /** Set Invoice Line. @@ -244,9 +258,9 @@ public class X_C_CommissionDetail extends PO implements I_C_CommissionDetail, I_ return bd; } - public I_C_OrderLine getC_OrderLine() throws RuntimeException + public org.compiere.model.I_C_OrderLine getC_OrderLine() throws RuntimeException { - return (I_C_OrderLine)MTable.get(getCtx(), I_C_OrderLine.Table_Name) + return (org.compiere.model.I_C_OrderLine)MTable.get(getCtx(), org.compiere.model.I_C_OrderLine.Table_Name) .getPO(getC_OrderLine_ID(), get_TrxName()); } /** Set Sales Order Line. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_CommissionLine.java b/org.adempiere.base/src/org/compiere/model/X_C_CommissionLine.java index bae37cfe99..e31806b57a 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_CommissionLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_CommissionLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_CommissionLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_CommissionLine extends PO implements I_C_CommissionLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20120906L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_CommissionLine (Properties ctx, int C_CommissionLine_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_CommissionRun.java b/org.adempiere.base/src/org/compiere/model/X_C_CommissionRun.java index e430d2a35c..bbff240f87 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_CommissionRun.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_CommissionRun.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_CommissionRun - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_CommissionRun extends PO implements I_C_CommissionRun, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_CommissionRun (Properties ctx, int C_CommissionRun_ID, String trxName) @@ -78,9 +78,9 @@ public class X_C_CommissionRun extends PO implements I_C_CommissionRun, I_Persis return sb.toString(); } - public I_C_Commission getC_Commission() throws RuntimeException + public org.compiere.model.I_C_Commission getC_Commission() throws RuntimeException { - return (I_C_Commission)MTable.get(getCtx(), I_C_Commission.Table_Name) + return (org.compiere.model.I_C_Commission)MTable.get(getCtx(), org.compiere.model.I_C_Commission.Table_Name) .getPO(getC_Commission_ID(), get_TrxName()); } /** Set Commission. @@ -129,6 +129,20 @@ public class X_C_CommissionRun extends PO implements I_C_CommissionRun, I_Persis return ii.intValue(); } + /** Set C_CommissionRun_UU. + @param C_CommissionRun_UU C_CommissionRun_UU */ + public void setC_CommissionRun_UU (String C_CommissionRun_UU) + { + set_Value (COLUMNNAME_C_CommissionRun_UU, C_CommissionRun_UU); + } + + /** Get C_CommissionRun_UU. + @return C_CommissionRun_UU */ + public String getC_CommissionRun_UU () + { + return (String)get_Value(COLUMNNAME_C_CommissionRun_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_ConversionType.java b/org.adempiere.base/src/org/compiere/model/X_C_ConversionType.java index f1d912d62b..ecc8283bd8 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_ConversionType.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_ConversionType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_ConversionType - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_ConversionType extends PO implements I_C_ConversionType, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_ConversionType (Properties ctx, int C_ConversionType_ID, String trxName) @@ -96,6 +96,20 @@ public class X_C_ConversionType extends PO implements I_C_ConversionType, I_Pers return ii.intValue(); } + /** Set C_ConversionType_UU. + @param C_ConversionType_UU C_ConversionType_UU */ + public void setC_ConversionType_UU (String C_ConversionType_UU) + { + set_Value (COLUMNNAME_C_ConversionType_UU, C_ConversionType_UU); + } + + /** Get C_ConversionType_UU. + @return C_ConversionType_UU */ + public String getC_ConversionType_UU () + { + return (String)get_Value(COLUMNNAME_C_ConversionType_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Conversion_Rate.java b/org.adempiere.base/src/org/compiere/model/X_C_Conversion_Rate.java index 51bc086fae..c0ceed533f 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Conversion_Rate.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Conversion_Rate.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_Conversion_Rate - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Conversion_Rate extends PO implements I_C_Conversion_Rate, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Conversion_Rate (Properties ctx, int C_Conversion_Rate_ID, String trxName) @@ -110,9 +110,23 @@ public class X_C_Conversion_Rate extends PO implements I_C_Conversion_Rate, I_Pe return new KeyNamePair(get_ID(), String.valueOf(getC_Conversion_Rate_ID())); } - public I_C_ConversionType getC_ConversionType() throws RuntimeException + /** Set C_Conversion_Rate_UU. + @param C_Conversion_Rate_UU C_Conversion_Rate_UU */ + public void setC_Conversion_Rate_UU (String C_Conversion_Rate_UU) + { + set_Value (COLUMNNAME_C_Conversion_Rate_UU, C_Conversion_Rate_UU); + } + + /** Get C_Conversion_Rate_UU. + @return C_Conversion_Rate_UU */ + public String getC_Conversion_Rate_UU () + { + return (String)get_Value(COLUMNNAME_C_Conversion_Rate_UU); + } + + public org.compiere.model.I_C_ConversionType getC_ConversionType() throws RuntimeException { - return (I_C_ConversionType)MTable.get(getCtx(), I_C_ConversionType.Table_Name) + return (org.compiere.model.I_C_ConversionType)MTable.get(getCtx(), org.compiere.model.I_C_ConversionType.Table_Name) .getPO(getC_ConversionType_ID(), get_TrxName()); } /** Set Currency Type. @@ -138,9 +152,9 @@ public class X_C_Conversion_Rate extends PO implements I_C_Conversion_Rate, I_Pe return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -166,9 +180,9 @@ public class X_C_Conversion_Rate extends PO implements I_C_Conversion_Rate, I_Pe return ii.intValue(); } - public I_C_Currency getC_Currency_To() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency_To() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID_To(), get_TrxName()); } /** Set Currency To. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Country.java b/org.adempiere.base/src/org/compiere/model/X_C_Country.java index a550163da9..2e4b4df976 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Country.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Country.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_Country - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Country extends PO implements I_C_Country, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Country (Properties ctx, int C_Country_ID, String trxName) @@ -159,9 +159,23 @@ public class X_C_Country extends PO implements I_C_Country, I_Persistent return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + /** Set C_Country_UU. + @param C_Country_UU C_Country_UU */ + public void setC_Country_UU (String C_Country_UU) + { + set_Value (COLUMNNAME_C_Country_UU, C_Country_UU); + } + + /** Get C_Country_UU. + @return C_Country_UU */ + public String getC_Country_UU () + { + return (String)get_Value(COLUMNNAME_C_Country_UU); + } + + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Currency.java b/org.adempiere.base/src/org/compiere/model/X_C_Currency.java index ee75ebfd20..fd7f32dfb6 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Currency.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Currency.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_Currency - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Currency extends PO implements I_C_Currency, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Currency (Properties ctx, int C_Currency_ID, String trxName) @@ -108,6 +108,20 @@ public class X_C_Currency extends PO implements I_C_Currency, I_Persistent return ii.intValue(); } + /** Set C_Currency_UU. + @param C_Currency_UU C_Currency_UU */ + public void setC_Currency_UU (String C_Currency_UU) + { + set_Value (COLUMNNAME_C_Currency_UU, C_Currency_UU); + } + + /** Get C_Currency_UU. + @return C_Currency_UU */ + public String getC_Currency_UU () + { + return (String)get_Value(COLUMNNAME_C_Currency_UU); + } + /** Set Costing Precision. @param CostingPrecision Rounding used costing calculations diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Currency_Acct.java b/org.adempiere.base/src/org/compiere/model/X_C_Currency_Acct.java index be54e29445..e182504a16 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Currency_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Currency_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for C_Currency_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Currency_Acct extends PO implements I_C_Currency_Acct, I_Persistent { /** * */ - private static final long serialVersionUID = 20120928L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Currency_Acct (Properties ctx, int C_Currency_Acct_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Cycle.java b/org.adempiere.base/src/org/compiere/model/X_C_Cycle.java index c8f9c45fbf..488a2331e8 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Cycle.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Cycle.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_Cycle - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Cycle extends PO implements I_C_Cycle, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Cycle (Properties ctx, int C_Cycle_ID, String trxName) @@ -72,9 +72,9 @@ public class X_C_Cycle extends PO implements I_C_Cycle, I_Persistent return sb.toString(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -123,6 +123,20 @@ public class X_C_Cycle extends PO implements I_C_Cycle, I_Persistent return ii.intValue(); } + /** Set C_Cycle_UU. + @param C_Cycle_UU C_Cycle_UU */ + public void setC_Cycle_UU (String C_Cycle_UU) + { + set_Value (COLUMNNAME_C_Cycle_UU, C_Cycle_UU); + } + + /** Get C_Cycle_UU. + @return C_Cycle_UU */ + public String getC_Cycle_UU () + { + return (String)get_Value(COLUMNNAME_C_Cycle_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_CyclePhase.java b/org.adempiere.base/src/org/compiere/model/X_C_CyclePhase.java index b041961b11..ba80375ba5 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_CyclePhase.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_CyclePhase.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for C_CyclePhase - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_CyclePhase extends PO implements I_C_CyclePhase, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_CyclePhase (Properties ctx, int C_CyclePhase_ID, String trxName) @@ -70,9 +70,23 @@ public class X_C_CyclePhase extends PO implements I_C_CyclePhase, I_Persistent return sb.toString(); } - public I_C_CycleStep getC_CycleStep() throws RuntimeException + /** Set C_CyclePhase_UU. + @param C_CyclePhase_UU C_CyclePhase_UU */ + public void setC_CyclePhase_UU (String C_CyclePhase_UU) + { + set_Value (COLUMNNAME_C_CyclePhase_UU, C_CyclePhase_UU); + } + + /** Get C_CyclePhase_UU. + @return C_CyclePhase_UU */ + public String getC_CyclePhase_UU () + { + return (String)get_Value(COLUMNNAME_C_CyclePhase_UU); + } + + public org.compiere.model.I_C_CycleStep getC_CycleStep() throws RuntimeException { - return (I_C_CycleStep)MTable.get(getCtx(), I_C_CycleStep.Table_Name) + return (org.compiere.model.I_C_CycleStep)MTable.get(getCtx(), org.compiere.model.I_C_CycleStep.Table_Name) .getPO(getC_CycleStep_ID(), get_TrxName()); } /** Set Cycle Step. @@ -98,9 +112,9 @@ public class X_C_CyclePhase extends PO implements I_C_CyclePhase, I_Persistent return ii.intValue(); } - public I_C_Phase getC_Phase() throws RuntimeException + public org.compiere.model.I_C_Phase getC_Phase() throws RuntimeException { - return (I_C_Phase)MTable.get(getCtx(), I_C_Phase.Table_Name) + return (org.compiere.model.I_C_Phase)MTable.get(getCtx(), org.compiere.model.I_C_Phase.Table_Name) .getPO(getC_Phase_ID(), get_TrxName()); } /** Set Standard Phase. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_CycleStep.java b/org.adempiere.base/src/org/compiere/model/X_C_CycleStep.java index a1175a177a..eef314489b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_CycleStep.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_CycleStep.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_CycleStep - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_CycleStep extends PO implements I_C_CycleStep, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_CycleStep (Properties ctx, int C_CycleStep_ID, String trxName) @@ -78,9 +78,9 @@ public class X_C_CycleStep extends PO implements I_C_CycleStep, I_Persistent return sb.toString(); } - public I_C_Cycle getC_Cycle() throws RuntimeException + public org.compiere.model.I_C_Cycle getC_Cycle() throws RuntimeException { - return (I_C_Cycle)MTable.get(getCtx(), I_C_Cycle.Table_Name) + return (org.compiere.model.I_C_Cycle)MTable.get(getCtx(), org.compiere.model.I_C_Cycle.Table_Name) .getPO(getC_Cycle_ID(), get_TrxName()); } /** Set Project Cycle. @@ -129,6 +129,20 @@ public class X_C_CycleStep extends PO implements I_C_CycleStep, I_Persistent return ii.intValue(); } + /** Set C_CycleStep_UU. + @param C_CycleStep_UU C_CycleStep_UU */ + public void setC_CycleStep_UU (String C_CycleStep_UU) + { + set_Value (COLUMNNAME_C_CycleStep_UU, C_CycleStep_UU); + } + + /** Get C_CycleStep_UU. + @return C_CycleStep_UU */ + public String getC_CycleStep_UU () + { + return (String)get_Value(COLUMNNAME_C_CycleStep_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_C_DocType.java b/org.adempiere.base/src/org/compiere/model/X_C_DocType.java index 8bdee4923d..197543a83b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_DocType.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_DocType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_DocType - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_DocType extends PO implements I_C_DocType, I_Persistent { /** * */ - private static final long serialVersionUID = 20120307L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_DocType (Properties ctx, int C_DocType_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_DocTypeCounter.java b/org.adempiere.base/src/org/compiere/model/X_C_DocTypeCounter.java index 461f985a48..dc2a5d1fe6 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_DocTypeCounter.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_DocTypeCounter.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_DocTypeCounter - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_DocTypeCounter extends PO implements I_C_DocTypeCounter, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_DocTypeCounter (Properties ctx, int C_DocTypeCounter_ID, String trxName) @@ -99,9 +99,23 @@ public class X_C_DocTypeCounter extends PO implements I_C_DocTypeCounter, I_Pers return ii.intValue(); } - public I_C_DocType getC_DocType() throws RuntimeException + /** Set C_DocTypeCounter_UU. + @param C_DocTypeCounter_UU C_DocTypeCounter_UU */ + public void setC_DocTypeCounter_UU (String C_DocTypeCounter_UU) + { + set_Value (COLUMNNAME_C_DocTypeCounter_UU, C_DocTypeCounter_UU); + } + + /** Get C_DocTypeCounter_UU. + @return C_DocTypeCounter_UU */ + public String getC_DocTypeCounter_UU () + { + return (String)get_Value(COLUMNNAME_C_DocTypeCounter_UU); + } + + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocType_ID(), get_TrxName()); } /** Set Document Type. @@ -127,9 +141,9 @@ public class X_C_DocTypeCounter extends PO implements I_C_DocTypeCounter, I_Pers return ii.intValue(); } - public I_C_DocType getCounter_C_DocType() throws RuntimeException + public org.compiere.model.I_C_DocType getCounter_C_DocType() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getCounter_C_DocType_ID(), get_TrxName()); } /** Set Counter Document Type. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Dunning.java b/org.adempiere.base/src/org/compiere/model/X_C_Dunning.java index 90ecdb7912..5c66935fed 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Dunning.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Dunning.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_Dunning - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Dunning extends PO implements I_C_Dunning, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Dunning (Properties ctx, int C_Dunning_ID, String trxName) @@ -97,6 +97,20 @@ public class X_C_Dunning extends PO implements I_C_Dunning, I_Persistent return ii.intValue(); } + /** Set C_Dunning_UU. + @param C_Dunning_UU C_Dunning_UU */ + public void setC_Dunning_UU (String C_Dunning_UU) + { + set_Value (COLUMNNAME_C_Dunning_UU, C_Dunning_UU); + } + + /** Get C_Dunning_UU. + @return C_Dunning_UU */ + public String getC_Dunning_UU () + { + return (String)get_Value(COLUMNNAME_C_Dunning_UU); + } + /** Set Create levels sequentially. @param CreateLevelsSequentially Create Dunning Letter by level sequentially diff --git a/org.adempiere.base/src/org/compiere/model/X_C_DunningLevel.java b/org.adempiere.base/src/org/compiere/model/X_C_DunningLevel.java index c8f0ed3875..168d162156 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_DunningLevel.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_DunningLevel.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_DunningLevel - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_DunningLevel extends PO implements I_C_DunningLevel, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_DunningLevel (Properties ctx, int C_DunningLevel_ID, String trxName) @@ -85,9 +85,9 @@ public class X_C_DunningLevel extends PO implements I_C_DunningLevel, I_Persiste return sb.toString(); } - public I_C_Dunning getC_Dunning() throws RuntimeException + public org.compiere.model.I_C_Dunning getC_Dunning() throws RuntimeException { - return (I_C_Dunning)MTable.get(getCtx(), I_C_Dunning.Table_Name) + return (org.compiere.model.I_C_Dunning)MTable.get(getCtx(), org.compiere.model.I_C_Dunning.Table_Name) .getPO(getC_Dunning_ID(), get_TrxName()); } /** Set Dunning. @@ -133,6 +133,20 @@ public class X_C_DunningLevel extends PO implements I_C_DunningLevel, I_Persiste return ii.intValue(); } + /** Set C_DunningLevel_UU. + @param C_DunningLevel_UU C_DunningLevel_UU */ + public void setC_DunningLevel_UU (String C_DunningLevel_UU) + { + set_Value (COLUMNNAME_C_DunningLevel_UU, C_DunningLevel_UU); + } + + /** Get C_DunningLevel_UU. + @return C_DunningLevel_UU */ + public String getC_DunningLevel_UU () + { + return (String)get_Value(COLUMNNAME_C_DunningLevel_UU); + } + /** Set Charge fee. @param ChargeFee Indicates if fees will be charged for overdue invoices @@ -181,9 +195,9 @@ public class X_C_DunningLevel extends PO implements I_C_DunningLevel, I_Persiste return false; } - public I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException + public org.compiere.model.I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException { - return (I_C_PaymentTerm)MTable.get(getCtx(), I_C_PaymentTerm.Table_Name) + return (org.compiere.model.I_C_PaymentTerm)MTable.get(getCtx(), org.compiere.model.I_C_PaymentTerm.Table_Name) .getPO(getC_PaymentTerm_ID(), get_TrxName()); } /** Set Payment Term. @@ -266,9 +280,9 @@ public class X_C_DunningLevel extends PO implements I_C_DunningLevel, I_Persiste return (String)get_Value(COLUMNNAME_Description); } - public I_AD_PrintFormat getDunning_PrintFormat() throws RuntimeException + public org.compiere.model.I_AD_PrintFormat getDunning_PrintFormat() throws RuntimeException { - return (I_AD_PrintFormat)MTable.get(getCtx(), I_AD_PrintFormat.Table_Name) + return (org.compiere.model.I_AD_PrintFormat)MTable.get(getCtx(), org.compiere.model.I_AD_PrintFormat.Table_Name) .getPO(getDunning_PrintFormat_ID(), get_TrxName()); } /** Set Dunning Print Format. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_DunningRun.java b/org.adempiere.base/src/org/compiere/model/X_C_DunningRun.java index af11b0b73e..f02d1f9765 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_DunningRun.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_DunningRun.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_DunningRun - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_DunningRun extends PO implements I_C_DunningRun, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_DunningRun (Properties ctx, int C_DunningRun_ID, String trxName) @@ -75,9 +75,9 @@ public class X_C_DunningRun extends PO implements I_C_DunningRun, I_Persistent return sb.toString(); } - public I_C_Dunning getC_Dunning() throws RuntimeException + public org.compiere.model.I_C_Dunning getC_Dunning() throws RuntimeException { - return (I_C_Dunning)MTable.get(getCtx(), I_C_Dunning.Table_Name) + return (org.compiere.model.I_C_Dunning)MTable.get(getCtx(), org.compiere.model.I_C_Dunning.Table_Name) .getPO(getC_Dunning_ID(), get_TrxName()); } /** Set Dunning. @@ -103,9 +103,9 @@ public class X_C_DunningRun extends PO implements I_C_DunningRun, I_Persistent return ii.intValue(); } - public I_C_DunningLevel getC_DunningLevel() throws RuntimeException + public org.compiere.model.I_C_DunningLevel getC_DunningLevel() throws RuntimeException { - return (I_C_DunningLevel)MTable.get(getCtx(), I_C_DunningLevel.Table_Name) + return (org.compiere.model.I_C_DunningLevel)MTable.get(getCtx(), org.compiere.model.I_C_DunningLevel.Table_Name) .getPO(getC_DunningLevel_ID(), get_TrxName()); } /** Set Dunning Level. @@ -151,6 +151,20 @@ public class X_C_DunningRun extends PO implements I_C_DunningRun, I_Persistent return ii.intValue(); } + /** Set C_DunningRun_UU. + @param C_DunningRun_UU C_DunningRun_UU */ + public void setC_DunningRun_UU (String C_DunningRun_UU) + { + set_Value (COLUMNNAME_C_DunningRun_UU, C_DunningRun_UU); + } + + /** Get C_DunningRun_UU. + @return C_DunningRun_UU */ + public String getC_DunningRun_UU () + { + return (String)get_Value(COLUMNNAME_C_DunningRun_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_DunningRunEntry.java b/org.adempiere.base/src/org/compiere/model/X_C_DunningRunEntry.java index e899314ceb..9740f8b488 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_DunningRunEntry.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_DunningRunEntry.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_DunningRunEntry - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_DunningRunEntry extends PO implements I_C_DunningRunEntry, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_DunningRunEntry (Properties ctx, int C_DunningRunEntry_ID, String trxName) @@ -82,9 +82,9 @@ public class X_C_DunningRunEntry extends PO implements I_C_DunningRunEntry, I_Pe return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -130,9 +130,9 @@ public class X_C_DunningRunEntry extends PO implements I_C_DunningRunEntry, I_Pe return bd; } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -158,9 +158,9 @@ public class X_C_DunningRunEntry extends PO implements I_C_DunningRunEntry, I_Pe return ii.intValue(); } - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException { - return (I_C_BPartner_Location)MTable.get(getCtx(), I_C_BPartner_Location.Table_Name) + return (org.compiere.model.I_C_BPartner_Location)MTable.get(getCtx(), org.compiere.model.I_C_BPartner_Location.Table_Name) .getPO(getC_BPartner_Location_ID(), get_TrxName()); } /** Set Partner Location. @@ -186,9 +186,9 @@ public class X_C_DunningRunEntry extends PO implements I_C_DunningRunEntry, I_Pe return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -214,9 +214,9 @@ public class X_C_DunningRunEntry extends PO implements I_C_DunningRunEntry, I_Pe return ii.intValue(); } - public I_C_DunningLevel getC_DunningLevel() throws RuntimeException + public org.compiere.model.I_C_DunningLevel getC_DunningLevel() throws RuntimeException { - return (I_C_DunningLevel)MTable.get(getCtx(), I_C_DunningLevel.Table_Name) + return (org.compiere.model.I_C_DunningLevel)MTable.get(getCtx(), org.compiere.model.I_C_DunningLevel.Table_Name) .getPO(getC_DunningLevel_ID(), get_TrxName()); } /** Set Dunning Level. @@ -262,9 +262,23 @@ public class X_C_DunningRunEntry extends PO implements I_C_DunningRunEntry, I_Pe return ii.intValue(); } - public I_C_DunningRun getC_DunningRun() throws RuntimeException + /** Set C_DunningRunEntry_UU. + @param C_DunningRunEntry_UU C_DunningRunEntry_UU */ + public void setC_DunningRunEntry_UU (String C_DunningRunEntry_UU) + { + set_Value (COLUMNNAME_C_DunningRunEntry_UU, C_DunningRunEntry_UU); + } + + /** Get C_DunningRunEntry_UU. + @return C_DunningRunEntry_UU */ + public String getC_DunningRunEntry_UU () + { + return (String)get_Value(COLUMNNAME_C_DunningRunEntry_UU); + } + + public org.compiere.model.I_C_DunningRun getC_DunningRun() throws RuntimeException { - return (I_C_DunningRun)MTable.get(getCtx(), I_C_DunningRun.Table_Name) + return (org.compiere.model.I_C_DunningRun)MTable.get(getCtx(), org.compiere.model.I_C_DunningRun.Table_Name) .getPO(getC_DunningRun_ID(), get_TrxName()); } /** Set Dunning Run. @@ -359,9 +373,9 @@ public class X_C_DunningRunEntry extends PO implements I_C_DunningRunEntry, I_Pe return bd; } - public I_AD_User getSalesRep() throws RuntimeException + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getSalesRep_ID(), get_TrxName()); } /** Set Sales Representative. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_DunningRunLine.java b/org.adempiere.base/src/org/compiere/model/X_C_DunningRunLine.java index 53ee8a5236..54d85c81be 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_DunningRunLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_DunningRunLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_DunningRunLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_DunningRunLine extends PO implements I_C_DunningRunLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_DunningRunLine (Properties ctx, int C_DunningRunLine_ID, String trxName) @@ -103,9 +103,9 @@ public class X_C_DunningRunLine extends PO implements I_C_DunningRunLine, I_Pers return bd; } - public I_C_DunningRunEntry getC_DunningRunEntry() throws RuntimeException + public org.compiere.model.I_C_DunningRunEntry getC_DunningRunEntry() throws RuntimeException { - return (I_C_DunningRunEntry)MTable.get(getCtx(), I_C_DunningRunEntry.Table_Name) + return (org.compiere.model.I_C_DunningRunEntry)MTable.get(getCtx(), org.compiere.model.I_C_DunningRunEntry.Table_Name) .getPO(getC_DunningRunEntry_ID(), get_TrxName()); } /** Set Dunning Run Entry. @@ -154,9 +154,23 @@ public class X_C_DunningRunLine extends PO implements I_C_DunningRunLine, I_Pers return ii.intValue(); } - public I_C_Invoice getC_Invoice() throws RuntimeException + /** Set C_DunningRunLine_UU. + @param C_DunningRunLine_UU C_DunningRunLine_UU */ + public void setC_DunningRunLine_UU (String C_DunningRunLine_UU) + { + set_Value (COLUMNNAME_C_DunningRunLine_UU, C_DunningRunLine_UU); + } + + /** Get C_DunningRunLine_UU. + @return C_DunningRunLine_UU */ + public String getC_DunningRunLine_UU () + { + return (String)get_Value(COLUMNNAME_C_DunningRunLine_UU); + } + + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException { - return (I_C_Invoice)MTable.get(getCtx(), I_C_Invoice.Table_Name) + return (org.compiere.model.I_C_Invoice)MTable.get(getCtx(), org.compiere.model.I_C_Invoice.Table_Name) .getPO(getC_Invoice_ID(), get_TrxName()); } /** Set Invoice. @@ -190,9 +204,9 @@ public class X_C_DunningRunLine extends PO implements I_C_DunningRunLine, I_Pers return new KeyNamePair(get_ID(), String.valueOf(getC_Invoice_ID())); } - public I_C_InvoicePaySchedule getC_InvoicePaySchedule() throws RuntimeException + public org.compiere.model.I_C_InvoicePaySchedule getC_InvoicePaySchedule() throws RuntimeException { - return (I_C_InvoicePaySchedule)MTable.get(getCtx(), I_C_InvoicePaySchedule.Table_Name) + return (org.compiere.model.I_C_InvoicePaySchedule)MTable.get(getCtx(), org.compiere.model.I_C_InvoicePaySchedule.Table_Name) .getPO(getC_InvoicePaySchedule_ID(), get_TrxName()); } /** Set Invoice Payment Schedule. @@ -238,9 +252,9 @@ public class X_C_DunningRunLine extends PO implements I_C_DunningRunLine, I_Pers return bd; } - public I_C_Payment getC_Payment() throws RuntimeException + public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException { - return (I_C_Payment)MTable.get(getCtx(), I_C_Payment.Table_Name) + return (org.compiere.model.I_C_Payment)MTable.get(getCtx(), org.compiere.model.I_C_Payment.Table_Name) .getPO(getC_Payment_ID(), get_TrxName()); } /** Set Payment. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Element.java b/org.adempiere.base/src/org/compiere/model/X_C_Element.java index ac8d1af1f5..747b6379e3 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Element.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Element.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_Element - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Element extends PO implements I_C_Element, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Element (Properties ctx, int C_Element_ID, String trxName) @@ -76,9 +76,9 @@ public class X_C_Element extends PO implements I_C_Element, I_Persistent return sb.toString(); } - public I_AD_Tree getAD_Tree() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_Tree() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_ID(), get_TrxName()); } /** Set Tree. @@ -127,6 +127,20 @@ public class X_C_Element extends PO implements I_C_Element, I_Persistent return ii.intValue(); } + /** Set C_Element_UU. + @param C_Element_UU C_Element_UU */ + public void setC_Element_UU (String C_Element_UU) + { + set_Value (COLUMNNAME_C_Element_UU, C_Element_UU); + } + + /** Get C_Element_UU. + @return C_Element_UU */ + public String getC_Element_UU () + { + return (String)get_Value(COLUMNNAME_C_Element_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_ElementValue.java b/org.adempiere.base/src/org/compiere/model/X_C_ElementValue.java index d7a8a4c8c0..d7e822b570 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_ElementValue.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_ElementValue.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_ElementValue - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_ElementValue extends PO implements I_C_ElementValue, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_ElementValue (Properties ctx, int C_ElementValue_ID, String trxName) @@ -145,9 +145,9 @@ public class X_C_ElementValue extends PO implements I_C_ElementValue, I_Persiste return (String)get_Value(COLUMNNAME_AccountType); } - public I_C_BankAccount getC_BankAccount() throws RuntimeException + public org.compiere.model.I_C_BankAccount getC_BankAccount() throws RuntimeException { - return (I_C_BankAccount)MTable.get(getCtx(), I_C_BankAccount.Table_Name) + return (org.compiere.model.I_C_BankAccount)MTable.get(getCtx(), org.compiere.model.I_C_BankAccount.Table_Name) .getPO(getC_BankAccount_ID(), get_TrxName()); } /** Set Bank Account. @@ -173,9 +173,9 @@ public class X_C_ElementValue extends PO implements I_C_ElementValue, I_Persiste return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -201,9 +201,9 @@ public class X_C_ElementValue extends PO implements I_C_ElementValue, I_Persiste return ii.intValue(); } - public I_C_Element getC_Element() throws RuntimeException + public org.compiere.model.I_C_Element getC_Element() throws RuntimeException { - return (I_C_Element)MTable.get(getCtx(), I_C_Element.Table_Name) + return (org.compiere.model.I_C_Element)MTable.get(getCtx(), org.compiere.model.I_C_Element.Table_Name) .getPO(getC_Element_ID(), get_TrxName()); } /** Set Element. @@ -252,6 +252,20 @@ public class X_C_ElementValue extends PO implements I_C_ElementValue, I_Persiste return ii.intValue(); } + /** Set C_ElementValue_UU. + @param C_ElementValue_UU C_ElementValue_UU */ + public void setC_ElementValue_UU (String C_ElementValue_UU) + { + set_Value (COLUMNNAME_C_ElementValue_UU, C_ElementValue_UU); + } + + /** Get C_ElementValue_UU. + @return C_ElementValue_UU */ + public String getC_ElementValue_UU () + { + return (String)get_Value(COLUMNNAME_C_ElementValue_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Greeting.java b/org.adempiere.base/src/org/compiere/model/X_C_Greeting.java index 01307b20b8..ac8112fe9f 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Greeting.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Greeting.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_Greeting - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Greeting extends PO implements I_C_Greeting, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Greeting (Properties ctx, int C_Greeting_ID, String trxName) @@ -96,6 +96,20 @@ public class X_C_Greeting extends PO implements I_C_Greeting, I_Persistent return ii.intValue(); } + /** Set C_Greeting_UU. + @param C_Greeting_UU C_Greeting_UU */ + public void setC_Greeting_UU (String C_Greeting_UU) + { + set_Value (COLUMNNAME_C_Greeting_UU, C_Greeting_UU); + } + + /** Get C_Greeting_UU. + @return C_Greeting_UU */ + public String getC_Greeting_UU () + { + return (String)get_Value(COLUMNNAME_C_Greeting_UU); + } + /** Set Greeting. @param Greeting For letters, e.g. "Dear {0}" or "Dear Mr. {0}" - At runtime, "{0}" is replaced by the name diff --git a/org.adempiere.base/src/org/compiere/model/X_C_InterOrg_Acct.java b/org.adempiere.base/src/org/compiere/model/X_C_InterOrg_Acct.java index d1279152ab..1076291a05 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_InterOrg_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_InterOrg_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for C_InterOrg_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_InterOrg_Acct extends PO implements I_C_InterOrg_Acct, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_InterOrg_Acct (Properties ctx, int C_InterOrg_Acct_ID, String trxName) @@ -95,9 +95,9 @@ public class X_C_InterOrg_Acct extends PO implements I_C_InterOrg_Acct, I_Persis return ii.intValue(); } - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException { - return (I_C_AcctSchema)MTable.get(getCtx(), I_C_AcctSchema.Table_Name) + return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_Name) .getPO(getC_AcctSchema_ID(), get_TrxName()); } /** Set Accounting Schema. @@ -123,6 +123,20 @@ public class X_C_InterOrg_Acct extends PO implements I_C_InterOrg_Acct, I_Persis return ii.intValue(); } + /** Set C_InterOrg_Acct_UU. + @param C_InterOrg_Acct_UU C_InterOrg_Acct_UU */ + public void setC_InterOrg_Acct_UU (String C_InterOrg_Acct_UU) + { + set_Value (COLUMNNAME_C_InterOrg_Acct_UU, C_InterOrg_Acct_UU); + } + + /** Get C_InterOrg_Acct_UU. + @return C_InterOrg_Acct_UU */ + public String getC_InterOrg_Acct_UU () + { + return (String)get_Value(COLUMNNAME_C_InterOrg_Acct_UU); + } + public I_C_ValidCombination getIntercompanyDueFrom_A() throws RuntimeException { return (I_C_ValidCombination)MTable.get(getCtx(), I_C_ValidCombination.Table_Name) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Invoice.java b/org.adempiere.base/src/org/compiere/model/X_C_Invoice.java index 039f2158b0..4eb32438f6 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Invoice.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Invoice.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_Invoice - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Invoice extends PO implements I_C_Invoice, I_Persistent { /** * */ - private static final long serialVersionUID = 20120906L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Invoice (Properties ctx, int C_Invoice_ID, String trxName) @@ -1025,6 +1025,27 @@ public class X_C_Invoice extends PO implements I_C_Invoice, I_Persistent return false; } + /** Set IsFixedAssetInvoice. + @param IsFixedAssetInvoice IsFixedAssetInvoice */ + public void setIsFixedAssetInvoice (boolean IsFixedAssetInvoice) + { + set_Value (COLUMNNAME_IsFixedAssetInvoice, Boolean.valueOf(IsFixedAssetInvoice)); + } + + /** Get IsFixedAssetInvoice. + @return IsFixedAssetInvoice */ + public boolean isFixedAssetInvoice () + { + Object oo = get_Value(COLUMNNAME_IsFixedAssetInvoice); + if (oo != null) + { + if (oo instanceof Boolean) + return ((Boolean)oo).booleanValue(); + return "Y".equals(oo); + } + return false; + } + /** Set In Dispute. @param IsInDispute Document is in dispute diff --git a/org.adempiere.base/src/org/compiere/model/X_C_InvoiceBatch.java b/org.adempiere.base/src/org/compiere/model/X_C_InvoiceBatch.java index c4472418f4..51af31bba2 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_InvoiceBatch.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_InvoiceBatch.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_InvoiceBatch - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_InvoiceBatch extends PO implements I_C_InvoiceBatch, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_InvoiceBatch (Properties ctx, int C_InvoiceBatch_ID, String trxName) @@ -85,9 +85,9 @@ public class X_C_InvoiceBatch extends PO implements I_C_InvoiceBatch, I_Persiste return sb.toString(); } - public I_C_ConversionType getC_ConversionType() throws RuntimeException + public org.compiere.model.I_C_ConversionType getC_ConversionType() throws RuntimeException { - return (I_C_ConversionType)MTable.get(getCtx(), I_C_ConversionType.Table_Name) + return (org.compiere.model.I_C_ConversionType)MTable.get(getCtx(), org.compiere.model.I_C_ConversionType.Table_Name) .getPO(getC_ConversionType_ID(), get_TrxName()); } /** Set Currency Type. @@ -113,9 +113,9 @@ public class X_C_InvoiceBatch extends PO implements I_C_InvoiceBatch, I_Persiste return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -164,6 +164,20 @@ public class X_C_InvoiceBatch extends PO implements I_C_InvoiceBatch, I_Persiste return ii.intValue(); } + /** Set C_InvoiceBatch_UU. + @param C_InvoiceBatch_UU C_InvoiceBatch_UU */ + public void setC_InvoiceBatch_UU (String C_InvoiceBatch_UU) + { + set_Value (COLUMNNAME_C_InvoiceBatch_UU, C_InvoiceBatch_UU); + } + + /** Get C_InvoiceBatch_UU. + @return C_InvoiceBatch_UU */ + public String getC_InvoiceBatch_UU () + { + return (String)get_Value(COLUMNNAME_C_InvoiceBatch_UU); + } + /** Set Control Amount. @param ControlAmt If not zero, the Debit amount of the document must be equal this amount @@ -332,9 +346,9 @@ public class X_C_InvoiceBatch extends PO implements I_C_InvoiceBatch, I_Persiste return false; } - public I_AD_User getSalesRep() throws RuntimeException + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getSalesRep_ID(), get_TrxName()); } /** Set Sales Representative. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_InvoiceBatchLine.java b/org.adempiere.base/src/org/compiere/model/X_C_InvoiceBatchLine.java index c1d3da2849..38ebc2b4a9 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_InvoiceBatchLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_InvoiceBatchLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_InvoiceBatchLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_InvoiceBatchLine extends PO implements I_C_InvoiceBatchLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_InvoiceBatchLine (Properties ctx, int C_InvoiceBatchLine_ID, String trxName) @@ -122,9 +122,9 @@ public class X_C_InvoiceBatchLine extends PO implements I_C_InvoiceBatchLine, I_ return ii.intValue(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -150,9 +150,9 @@ public class X_C_InvoiceBatchLine extends PO implements I_C_InvoiceBatchLine, I_ return ii.intValue(); } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -178,9 +178,9 @@ public class X_C_InvoiceBatchLine extends PO implements I_C_InvoiceBatchLine, I_ return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -206,9 +206,9 @@ public class X_C_InvoiceBatchLine extends PO implements I_C_InvoiceBatchLine, I_ return ii.intValue(); } - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException { - return (I_C_BPartner_Location)MTable.get(getCtx(), I_C_BPartner_Location.Table_Name) + return (org.compiere.model.I_C_BPartner_Location)MTable.get(getCtx(), org.compiere.model.I_C_BPartner_Location.Table_Name) .getPO(getC_BPartner_Location_ID(), get_TrxName()); } /** Set Partner Location. @@ -234,9 +234,9 @@ public class X_C_InvoiceBatchLine extends PO implements I_C_InvoiceBatchLine, I_ return ii.intValue(); } - public I_C_Charge getC_Charge() throws RuntimeException + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException { - return (I_C_Charge)MTable.get(getCtx(), I_C_Charge.Table_Name) + return (org.compiere.model.I_C_Charge)MTable.get(getCtx(), org.compiere.model.I_C_Charge.Table_Name) .getPO(getC_Charge_ID(), get_TrxName()); } /** Set Charge. @@ -262,9 +262,9 @@ public class X_C_InvoiceBatchLine extends PO implements I_C_InvoiceBatchLine, I_ return ii.intValue(); } - public I_C_DocType getC_DocType() throws RuntimeException + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocType_ID(), get_TrxName()); } /** Set Document Type. @@ -290,9 +290,9 @@ public class X_C_InvoiceBatchLine extends PO implements I_C_InvoiceBatchLine, I_ return ii.intValue(); } - public I_C_InvoiceBatch getC_InvoiceBatch() throws RuntimeException + public org.compiere.model.I_C_InvoiceBatch getC_InvoiceBatch() throws RuntimeException { - return (I_C_InvoiceBatch)MTable.get(getCtx(), I_C_InvoiceBatch.Table_Name) + return (org.compiere.model.I_C_InvoiceBatch)MTable.get(getCtx(), org.compiere.model.I_C_InvoiceBatch.Table_Name) .getPO(getC_InvoiceBatch_ID(), get_TrxName()); } /** Set Invoice Batch. @@ -341,9 +341,23 @@ public class X_C_InvoiceBatchLine extends PO implements I_C_InvoiceBatchLine, I_ return ii.intValue(); } - public I_C_Invoice getC_Invoice() throws RuntimeException + /** Set C_InvoiceBatchLine_UU. + @param C_InvoiceBatchLine_UU C_InvoiceBatchLine_UU */ + public void setC_InvoiceBatchLine_UU (String C_InvoiceBatchLine_UU) + { + set_Value (COLUMNNAME_C_InvoiceBatchLine_UU, C_InvoiceBatchLine_UU); + } + + /** Get C_InvoiceBatchLine_UU. + @return C_InvoiceBatchLine_UU */ + public String getC_InvoiceBatchLine_UU () + { + return (String)get_Value(COLUMNNAME_C_InvoiceBatchLine_UU); + } + + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException { - return (I_C_Invoice)MTable.get(getCtx(), I_C_Invoice.Table_Name) + return (org.compiere.model.I_C_Invoice)MTable.get(getCtx(), org.compiere.model.I_C_Invoice.Table_Name) .getPO(getC_Invoice_ID(), get_TrxName()); } /** Set Invoice. @@ -369,9 +383,9 @@ public class X_C_InvoiceBatchLine extends PO implements I_C_InvoiceBatchLine, I_ return ii.intValue(); } - public I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException + public org.compiere.model.I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException { - return (I_C_InvoiceLine)MTable.get(getCtx(), I_C_InvoiceLine.Table_Name) + return (org.compiere.model.I_C_InvoiceLine)MTable.get(getCtx(), org.compiere.model.I_C_InvoiceLine.Table_Name) .getPO(getC_InvoiceLine_ID(), get_TrxName()); } /** Set Invoice Line. @@ -397,9 +411,9 @@ public class X_C_InvoiceBatchLine extends PO implements I_C_InvoiceBatchLine, I_ return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -425,9 +439,9 @@ public class X_C_InvoiceBatchLine extends PO implements I_C_InvoiceBatchLine, I_ return ii.intValue(); } - public I_C_Tax getC_Tax() throws RuntimeException + public org.compiere.model.I_C_Tax getC_Tax() throws RuntimeException { - return (I_C_Tax)MTable.get(getCtx(), I_C_Tax.Table_Name) + return (org.compiere.model.I_C_Tax)MTable.get(getCtx(), org.compiere.model.I_C_Tax.Table_Name) .getPO(getC_Tax_ID(), get_TrxName()); } /** Set Tax. @@ -697,9 +711,9 @@ public class X_C_InvoiceBatchLine extends PO implements I_C_InvoiceBatchLine, I_ return bd; } - public I_C_ElementValue getUser1() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser1_ID(), get_TrxName()); } /** Set User List 1. @@ -725,9 +739,9 @@ public class X_C_InvoiceBatchLine extends PO implements I_C_InvoiceBatchLine, I_ return ii.intValue(); } - public I_C_ElementValue getUser2() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser2_ID(), get_TrxName()); } /** Set User List 2. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_InvoiceLine.java b/org.adempiere.base/src/org/compiere/model/X_C_InvoiceLine.java index 2302dc879a..98a17d8a29 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_InvoiceLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_InvoiceLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_InvoiceLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_InvoiceLine extends PO implements I_C_InvoiceLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_InvoiceLine (Properties ctx, int C_InvoiceLine_ID, String trxName) @@ -92,9 +92,9 @@ public class X_C_InvoiceLine extends PO implements I_C_InvoiceLine, I_Persistent return sb.toString(); } - public I_A_Asset_Group getA_Asset_Group() throws RuntimeException + public org.compiere.model.I_A_Asset_Group getA_Asset_Group() throws RuntimeException { - return (I_A_Asset_Group)MTable.get(getCtx(), I_A_Asset_Group.Table_Name) + return (org.compiere.model.I_A_Asset_Group)MTable.get(getCtx(), org.compiere.model.I_A_Asset_Group.Table_Name) .getPO(getA_Asset_Group_ID(), get_TrxName()); } /** Set Asset Group. @@ -120,9 +120,9 @@ public class X_C_InvoiceLine extends PO implements I_C_InvoiceLine, I_Persistent return ii.intValue(); } - public I_A_Asset getA_Asset() throws RuntimeException + public org.compiere.model.I_A_Asset getA_Asset() throws RuntimeException { - return (I_A_Asset)MTable.get(getCtx(), I_A_Asset.Table_Name) + return (org.compiere.model.I_A_Asset)MTable.get(getCtx(), org.compiere.model.I_A_Asset.Table_Name) .getPO(getA_Asset_ID(), get_TrxName()); } /** Set Asset. @@ -154,30 +154,30 @@ public class X_C_InvoiceLine extends PO implements I_C_InvoiceLine, I_Persistent public static final String A_CAPVSEXP_Capital = "Cap"; /** Expense = Exp */ public static final String A_CAPVSEXP_Expense = "Exp"; - /** Set Capital vs Expense. - @param A_CapvsExp Capital vs Expense */ + /** Set Capital/Expense. + @param A_CapvsExp Capital/Expense */ public void setA_CapvsExp (String A_CapvsExp) { set_Value (COLUMNNAME_A_CapvsExp, A_CapvsExp); } - /** Get Capital vs Expense. - @return Capital vs Expense */ + /** Get Capital/Expense. + @return Capital/Expense */ public String getA_CapvsExp () { return (String)get_Value(COLUMNNAME_A_CapvsExp); } - /** Set Asset Related?. - @param A_CreateAsset Asset Related? */ + /** Set Create Asset. + @param A_CreateAsset Create Asset */ public void setA_CreateAsset (boolean A_CreateAsset) { set_Value (COLUMNNAME_A_CreateAsset, Boolean.valueOf(A_CreateAsset)); } - /** Get Asset Related?. - @return Asset Related? */ + /** Get Create Asset. + @return Create Asset */ public boolean isA_CreateAsset () { Object oo = get_Value(COLUMNNAME_A_CreateAsset); @@ -234,9 +234,9 @@ public class X_C_InvoiceLine extends PO implements I_C_InvoiceLine, I_Persistent return false; } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -262,9 +262,9 @@ public class X_C_InvoiceLine extends PO implements I_C_InvoiceLine, I_Persistent return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -290,9 +290,9 @@ public class X_C_InvoiceLine extends PO implements I_C_InvoiceLine, I_Persistent return ii.intValue(); } - public I_C_Charge getC_Charge() throws RuntimeException + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException { - return (I_C_Charge)MTable.get(getCtx(), I_C_Charge.Table_Name) + return (org.compiere.model.I_C_Charge)MTable.get(getCtx(), org.compiere.model.I_C_Charge.Table_Name) .getPO(getC_Charge_ID(), get_TrxName()); } /** Set Charge. @@ -318,9 +318,9 @@ public class X_C_InvoiceLine extends PO implements I_C_InvoiceLine, I_Persistent return ii.intValue(); } - public I_C_Invoice getC_Invoice() throws RuntimeException + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException { - return (I_C_Invoice)MTable.get(getCtx(), I_C_Invoice.Table_Name) + return (org.compiere.model.I_C_Invoice)MTable.get(getCtx(), org.compiere.model.I_C_Invoice.Table_Name) .getPO(getC_Invoice_ID(), get_TrxName()); } /** Set Invoice. @@ -377,9 +377,23 @@ public class X_C_InvoiceLine extends PO implements I_C_InvoiceLine, I_Persistent return ii.intValue(); } - public I_C_OrderLine getC_OrderLine() throws RuntimeException + /** Set C_InvoiceLine_UU. + @param C_InvoiceLine_UU C_InvoiceLine_UU */ + public void setC_InvoiceLine_UU (String C_InvoiceLine_UU) + { + set_Value (COLUMNNAME_C_InvoiceLine_UU, C_InvoiceLine_UU); + } + + /** Get C_InvoiceLine_UU. + @return C_InvoiceLine_UU */ + public String getC_InvoiceLine_UU () + { + return (String)get_Value(COLUMNNAME_C_InvoiceLine_UU); + } + + public org.compiere.model.I_C_OrderLine getC_OrderLine() throws RuntimeException { - return (I_C_OrderLine)MTable.get(getCtx(), I_C_OrderLine.Table_Name) + return (org.compiere.model.I_C_OrderLine)MTable.get(getCtx(), org.compiere.model.I_C_OrderLine.Table_Name) .getPO(getC_OrderLine_ID(), get_TrxName()); } /** Set Sales Order Line. @@ -405,9 +419,9 @@ public class X_C_InvoiceLine extends PO implements I_C_InvoiceLine, I_Persistent return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -433,9 +447,9 @@ public class X_C_InvoiceLine extends PO implements I_C_InvoiceLine, I_Persistent return ii.intValue(); } - public I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException + public org.compiere.model.I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException { - return (I_C_ProjectPhase)MTable.get(getCtx(), I_C_ProjectPhase.Table_Name) + return (org.compiere.model.I_C_ProjectPhase)MTable.get(getCtx(), org.compiere.model.I_C_ProjectPhase.Table_Name) .getPO(getC_ProjectPhase_ID(), get_TrxName()); } /** Set Project Phase. @@ -461,9 +475,9 @@ public class X_C_InvoiceLine extends PO implements I_C_InvoiceLine, I_Persistent return ii.intValue(); } - public I_C_ProjectTask getC_ProjectTask() throws RuntimeException + public org.compiere.model.I_C_ProjectTask getC_ProjectTask() throws RuntimeException { - return (I_C_ProjectTask)MTable.get(getCtx(), I_C_ProjectTask.Table_Name) + return (org.compiere.model.I_C_ProjectTask)MTable.get(getCtx(), org.compiere.model.I_C_ProjectTask.Table_Name) .getPO(getC_ProjectTask_ID(), get_TrxName()); } /** Set Project Task. @@ -489,9 +503,9 @@ public class X_C_InvoiceLine extends PO implements I_C_InvoiceLine, I_Persistent return ii.intValue(); } - public I_C_Tax getC_Tax() throws RuntimeException + public org.compiere.model.I_C_Tax getC_Tax() throws RuntimeException { - return (I_C_Tax)MTable.get(getCtx(), I_C_Tax.Table_Name) + return (org.compiere.model.I_C_Tax)MTable.get(getCtx(), org.compiere.model.I_C_Tax.Table_Name) .getPO(getC_Tax_ID(), get_TrxName()); } /** Set Tax. @@ -517,9 +531,9 @@ public class X_C_InvoiceLine extends PO implements I_C_InvoiceLine, I_Persistent return ii.intValue(); } - public I_C_UOM getC_UOM() throws RuntimeException + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_ID(), get_TrxName()); } /** Set UOM. @@ -586,6 +600,27 @@ public class X_C_InvoiceLine extends PO implements I_C_InvoiceLine, I_Persistent return false; } + /** Set IsFixedAssetInvoice. + @param IsFixedAssetInvoice IsFixedAssetInvoice */ + public void setIsFixedAssetInvoice (boolean IsFixedAssetInvoice) + { + set_Value (COLUMNNAME_IsFixedAssetInvoice, Boolean.valueOf(IsFixedAssetInvoice)); + } + + /** Get IsFixedAssetInvoice. + @return IsFixedAssetInvoice */ + public boolean isFixedAssetInvoice () + { + Object oo = get_Value(COLUMNNAME_IsFixedAssetInvoice); + if (oo != null) + { + if (oo instanceof Boolean) + return ((Boolean)oo).booleanValue(); + return "Y".equals(oo); + } + return false; + } + /** Set Printed. @param IsPrinted Indicates if this document / line is printed @@ -698,9 +733,9 @@ public class X_C_InvoiceLine extends PO implements I_C_InvoiceLine, I_Persistent return ii.intValue(); } - public I_M_InOutLine getM_InOutLine() throws RuntimeException + public org.compiere.model.I_M_InOutLine getM_InOutLine() throws RuntimeException { - return (I_M_InOutLine)MTable.get(getCtx(), I_M_InOutLine.Table_Name) + return (org.compiere.model.I_M_InOutLine)MTable.get(getCtx(), org.compiere.model.I_M_InOutLine.Table_Name) .getPO(getM_InOutLine_ID(), get_TrxName()); } /** Set Shipment/Receipt Line. @@ -726,9 +761,9 @@ public class X_C_InvoiceLine extends PO implements I_C_InvoiceLine, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -754,9 +789,9 @@ public class X_C_InvoiceLine extends PO implements I_C_InvoiceLine, I_Persistent return ii.intValue(); } - public I_M_RMALine getM_RMALine() throws RuntimeException + public org.compiere.model.I_M_RMALine getM_RMALine() throws RuntimeException { - return (I_M_RMALine)MTable.get(getCtx(), I_M_RMALine.Table_Name) + return (org.compiere.model.I_M_RMALine)MTable.get(getCtx(), org.compiere.model.I_M_RMALine.Table_Name) .getPO(getM_RMALine_ID(), get_TrxName()); } /** Set RMA Line. @@ -1026,9 +1061,9 @@ public class X_C_InvoiceLine extends PO implements I_C_InvoiceLine, I_Persistent return bd; } - public I_C_ElementValue getUser1() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser1_ID(), get_TrxName()); } /** Set User List 1. @@ -1054,9 +1089,9 @@ public class X_C_InvoiceLine extends PO implements I_C_InvoiceLine, I_Persistent return ii.intValue(); } - public I_C_ElementValue getUser2() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser2_ID(), get_TrxName()); } /** Set User List 2. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_InvoicePaySchedule.java b/org.adempiere.base/src/org/compiere/model/X_C_InvoicePaySchedule.java index ced9ed5371..eaf942c4c6 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_InvoicePaySchedule.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_InvoicePaySchedule.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_InvoicePaySchedule - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_InvoicePaySchedule extends PO implements I_C_InvoicePaySchedule, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_InvoicePaySchedule (Properties ctx, int C_InvoicePaySchedule_ID, String trxName) @@ -80,9 +80,9 @@ public class X_C_InvoicePaySchedule extends PO implements I_C_InvoicePaySchedule return sb.toString(); } - public I_C_Invoice getC_Invoice() throws RuntimeException + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException { - return (I_C_Invoice)MTable.get(getCtx(), I_C_Invoice.Table_Name) + return (org.compiere.model.I_C_Invoice)MTable.get(getCtx(), org.compiere.model.I_C_Invoice.Table_Name) .getPO(getC_Invoice_ID(), get_TrxName()); } /** Set Invoice. @@ -131,9 +131,23 @@ public class X_C_InvoicePaySchedule extends PO implements I_C_InvoicePaySchedule return ii.intValue(); } - public I_C_PaySchedule getC_PaySchedule() throws RuntimeException + /** Set C_InvoicePaySchedule_UU. + @param C_InvoicePaySchedule_UU C_InvoicePaySchedule_UU */ + public void setC_InvoicePaySchedule_UU (String C_InvoicePaySchedule_UU) + { + set_Value (COLUMNNAME_C_InvoicePaySchedule_UU, C_InvoicePaySchedule_UU); + } + + /** Get C_InvoicePaySchedule_UU. + @return C_InvoicePaySchedule_UU */ + public String getC_InvoicePaySchedule_UU () + { + return (String)get_Value(COLUMNNAME_C_InvoicePaySchedule_UU); + } + + public org.compiere.model.I_C_PaySchedule getC_PaySchedule() throws RuntimeException { - return (I_C_PaySchedule)MTable.get(getCtx(), I_C_PaySchedule.Table_Name) + return (org.compiere.model.I_C_PaySchedule)MTable.get(getCtx(), org.compiere.model.I_C_PaySchedule.Table_Name) .getPO(getC_PaySchedule_ID(), get_TrxName()); } /** Set Payment Schedule. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_InvoiceSchedule.java b/org.adempiere.base/src/org/compiere/model/X_C_InvoiceSchedule.java index d64badc70b..d3867a420b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_InvoiceSchedule.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_InvoiceSchedule.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_InvoiceSchedule - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_InvoiceSchedule extends PO implements I_C_InvoiceSchedule, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_InvoiceSchedule (Properties ctx, int C_InvoiceSchedule_ID, String trxName) @@ -123,6 +123,20 @@ public class X_C_InvoiceSchedule extends PO implements I_C_InvoiceSchedule, I_Pe return ii.intValue(); } + /** Set C_InvoiceSchedule_UU. + @param C_InvoiceSchedule_UU C_InvoiceSchedule_UU */ + public void setC_InvoiceSchedule_UU (String C_InvoiceSchedule_UU) + { + set_Value (COLUMNNAME_C_InvoiceSchedule_UU, C_InvoiceSchedule_UU); + } + + /** Get C_InvoiceSchedule_UU. + @return C_InvoiceSchedule_UU */ + public String getC_InvoiceSchedule_UU () + { + return (String)get_Value(COLUMNNAME_C_InvoiceSchedule_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_InvoiceTax.java b/org.adempiere.base/src/org/compiere/model/X_C_InvoiceTax.java index fedd73df40..0589fa8cc9 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_InvoiceTax.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_InvoiceTax.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for C_InvoiceTax - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_InvoiceTax extends PO implements I_C_InvoiceTax, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_InvoiceTax (Properties ctx, int C_InvoiceTax_ID, String trxName) @@ -76,9 +76,9 @@ public class X_C_InvoiceTax extends PO implements I_C_InvoiceTax, I_Persistent return sb.toString(); } - public I_C_Invoice getC_Invoice() throws RuntimeException + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException { - return (I_C_Invoice)MTable.get(getCtx(), I_C_Invoice.Table_Name) + return (org.compiere.model.I_C_Invoice)MTable.get(getCtx(), org.compiere.model.I_C_Invoice.Table_Name) .getPO(getC_Invoice_ID(), get_TrxName()); } /** Set Invoice. @@ -104,9 +104,23 @@ public class X_C_InvoiceTax extends PO implements I_C_InvoiceTax, I_Persistent return ii.intValue(); } - public I_C_Tax getC_Tax() throws RuntimeException + /** Set C_InvoiceTax_UU. + @param C_InvoiceTax_UU C_InvoiceTax_UU */ + public void setC_InvoiceTax_UU (String C_InvoiceTax_UU) + { + set_Value (COLUMNNAME_C_InvoiceTax_UU, C_InvoiceTax_UU); + } + + /** Get C_InvoiceTax_UU. + @return C_InvoiceTax_UU */ + public String getC_InvoiceTax_UU () + { + return (String)get_Value(COLUMNNAME_C_InvoiceTax_UU); + } + + public org.compiere.model.I_C_Tax getC_Tax() throws RuntimeException { - return (I_C_Tax)MTable.get(getCtx(), I_C_Tax.Table_Name) + return (org.compiere.model.I_C_Tax)MTable.get(getCtx(), org.compiere.model.I_C_Tax.Table_Name) .getPO(getC_Tax_ID(), get_TrxName()); } /** Set Tax. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Job.java b/org.adempiere.base/src/org/compiere/model/X_C_Job.java index ef029a46f7..3118552da5 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Job.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Job.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_Job - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Job extends PO implements I_C_Job, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Job (Properties ctx, int C_Job_ID, String trxName) @@ -74,9 +74,9 @@ public class X_C_Job extends PO implements I_C_Job, I_Persistent return sb.toString(); } - public I_C_JobCategory getC_JobCategory() throws RuntimeException + public org.compiere.model.I_C_JobCategory getC_JobCategory() throws RuntimeException { - return (I_C_JobCategory)MTable.get(getCtx(), I_C_JobCategory.Table_Name) + return (org.compiere.model.I_C_JobCategory)MTable.get(getCtx(), org.compiere.model.I_C_JobCategory.Table_Name) .getPO(getC_JobCategory_ID(), get_TrxName()); } /** Set Position Category. @@ -125,6 +125,20 @@ public class X_C_Job extends PO implements I_C_Job, I_Persistent return ii.intValue(); } + /** Set C_Job_UU. + @param C_Job_UU C_Job_UU */ + public void setC_Job_UU (String C_Job_UU) + { + set_Value (COLUMNNAME_C_Job_UU, C_Job_UU); + } + + /** Get C_Job_UU. + @return C_Job_UU */ + public String getC_Job_UU () + { + return (String)get_Value(COLUMNNAME_C_Job_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_JobAssignment.java b/org.adempiere.base/src/org/compiere/model/X_C_JobAssignment.java index df1db1847d..3c982b3558 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_JobAssignment.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_JobAssignment.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_JobAssignment - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_JobAssignment extends PO implements I_C_JobAssignment, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_JobAssignment (Properties ctx, int C_JobAssignment_ID, String trxName) @@ -74,9 +74,9 @@ public class X_C_JobAssignment extends PO implements I_C_JobAssignment, I_Persis return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -125,9 +125,23 @@ public class X_C_JobAssignment extends PO implements I_C_JobAssignment, I_Persis return ii.intValue(); } - public I_C_Job getC_Job() throws RuntimeException + /** Set C_JobAssignment_UU. + @param C_JobAssignment_UU C_JobAssignment_UU */ + public void setC_JobAssignment_UU (String C_JobAssignment_UU) + { + set_Value (COLUMNNAME_C_JobAssignment_UU, C_JobAssignment_UU); + } + + /** Get C_JobAssignment_UU. + @return C_JobAssignment_UU */ + public String getC_JobAssignment_UU () + { + return (String)get_Value(COLUMNNAME_C_JobAssignment_UU); + } + + public org.compiere.model.I_C_Job getC_Job() throws RuntimeException { - return (I_C_Job)MTable.get(getCtx(), I_C_Job.Table_Name) + return (org.compiere.model.I_C_Job)MTable.get(getCtx(), org.compiere.model.I_C_Job.Table_Name) .getPO(getC_Job_ID(), get_TrxName()); } /** Set Position. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_JobCategory.java b/org.adempiere.base/src/org/compiere/model/X_C_JobCategory.java index ae9c5b03a8..283d32a524 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_JobCategory.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_JobCategory.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_JobCategory - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_JobCategory extends PO implements I_C_JobCategory, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_JobCategory (Properties ctx, int C_JobCategory_ID, String trxName) @@ -94,6 +94,20 @@ public class X_C_JobCategory extends PO implements I_C_JobCategory, I_Persistent return ii.intValue(); } + /** Set C_JobCategory_UU. + @param C_JobCategory_UU C_JobCategory_UU */ + public void setC_JobCategory_UU (String C_JobCategory_UU) + { + set_Value (COLUMNNAME_C_JobCategory_UU, C_JobCategory_UU); + } + + /** Get C_JobCategory_UU. + @return C_JobCategory_UU */ + public String getC_JobCategory_UU () + { + return (String)get_Value(COLUMNNAME_C_JobCategory_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_JobRemuneration.java b/org.adempiere.base/src/org/compiere/model/X_C_JobRemuneration.java index 2c2980951b..162ed28288 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_JobRemuneration.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_JobRemuneration.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_JobRemuneration - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_JobRemuneration extends PO implements I_C_JobRemuneration, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_JobRemuneration (Properties ctx, int C_JobRemuneration_ID, String trxName) @@ -74,9 +74,9 @@ public class X_C_JobRemuneration extends PO implements I_C_JobRemuneration, I_Pe return sb.toString(); } - public I_C_Job getC_Job() throws RuntimeException + public org.compiere.model.I_C_Job getC_Job() throws RuntimeException { - return (I_C_Job)MTable.get(getCtx(), I_C_Job.Table_Name) + return (org.compiere.model.I_C_Job)MTable.get(getCtx(), org.compiere.model.I_C_Job.Table_Name) .getPO(getC_Job_ID(), get_TrxName()); } /** Set Position. @@ -133,9 +133,23 @@ public class X_C_JobRemuneration extends PO implements I_C_JobRemuneration, I_Pe return ii.intValue(); } - public I_C_Remuneration getC_Remuneration() throws RuntimeException + /** Set C_JobRemuneration_UU. + @param C_JobRemuneration_UU C_JobRemuneration_UU */ + public void setC_JobRemuneration_UU (String C_JobRemuneration_UU) + { + set_Value (COLUMNNAME_C_JobRemuneration_UU, C_JobRemuneration_UU); + } + + /** Get C_JobRemuneration_UU. + @return C_JobRemuneration_UU */ + public String getC_JobRemuneration_UU () + { + return (String)get_Value(COLUMNNAME_C_JobRemuneration_UU); + } + + public org.compiere.model.I_C_Remuneration getC_Remuneration() throws RuntimeException { - return (I_C_Remuneration)MTable.get(getCtx(), I_C_Remuneration.Table_Name) + return (org.compiere.model.I_C_Remuneration)MTable.get(getCtx(), org.compiere.model.I_C_Remuneration.Table_Name) .getPO(getC_Remuneration_ID(), get_TrxName()); } /** Set Remuneration. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_LandedCost.java b/org.adempiere.base/src/org/compiere/model/X_C_LandedCost.java index e88d50b270..704584b979 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_LandedCost.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_LandedCost.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_LandedCost - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_LandedCost extends PO implements I_C_LandedCost, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_LandedCost (Properties ctx, int C_LandedCost_ID, String trxName) @@ -74,9 +74,9 @@ public class X_C_LandedCost extends PO implements I_C_LandedCost, I_Persistent return sb.toString(); } - public I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException + public org.compiere.model.I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException { - return (I_C_InvoiceLine)MTable.get(getCtx(), I_C_InvoiceLine.Table_Name) + return (org.compiere.model.I_C_InvoiceLine)MTable.get(getCtx(), org.compiere.model.I_C_InvoiceLine.Table_Name) .getPO(getC_InvoiceLine_ID(), get_TrxName()); } /** Set Invoice Line. @@ -133,6 +133,20 @@ public class X_C_LandedCost extends PO implements I_C_LandedCost, I_Persistent return ii.intValue(); } + /** Set C_LandedCost_UU. + @param C_LandedCost_UU C_LandedCost_UU */ + public void setC_LandedCost_UU (String C_LandedCost_UU) + { + set_Value (COLUMNNAME_C_LandedCost_UU, C_LandedCost_UU); + } + + /** Get C_LandedCost_UU. + @return C_LandedCost_UU */ + public String getC_LandedCost_UU () + { + return (String)get_Value(COLUMNNAME_C_LandedCost_UU); + } + /** Set Description. @param Description Optional short description of the record @@ -180,9 +194,9 @@ public class X_C_LandedCost extends PO implements I_C_LandedCost, I_Persistent return (String)get_Value(COLUMNNAME_LandedCostDistribution); } - public I_M_CostElement getM_CostElement() throws RuntimeException + public org.compiere.model.I_M_CostElement getM_CostElement() throws RuntimeException { - return (I_M_CostElement)MTable.get(getCtx(), I_M_CostElement.Table_Name) + return (org.compiere.model.I_M_CostElement)MTable.get(getCtx(), org.compiere.model.I_M_CostElement.Table_Name) .getPO(getM_CostElement_ID(), get_TrxName()); } /** Set Cost Element. @@ -208,9 +222,9 @@ public class X_C_LandedCost extends PO implements I_C_LandedCost, I_Persistent return ii.intValue(); } - public I_M_InOut getM_InOut() throws RuntimeException + public org.compiere.model.I_M_InOut getM_InOut() throws RuntimeException { - return (I_M_InOut)MTable.get(getCtx(), I_M_InOut.Table_Name) + return (org.compiere.model.I_M_InOut)MTable.get(getCtx(), org.compiere.model.I_M_InOut.Table_Name) .getPO(getM_InOut_ID(), get_TrxName()); } /** Set Shipment/Receipt. @@ -236,9 +250,9 @@ public class X_C_LandedCost extends PO implements I_C_LandedCost, I_Persistent return ii.intValue(); } - public I_M_InOutLine getM_InOutLine() throws RuntimeException + public org.compiere.model.I_M_InOutLine getM_InOutLine() throws RuntimeException { - return (I_M_InOutLine)MTable.get(getCtx(), I_M_InOutLine.Table_Name) + return (org.compiere.model.I_M_InOutLine)MTable.get(getCtx(), org.compiere.model.I_M_InOutLine.Table_Name) .getPO(getM_InOutLine_ID(), get_TrxName()); } /** Set Shipment/Receipt Line. @@ -264,9 +278,9 @@ public class X_C_LandedCost extends PO implements I_C_LandedCost, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_LandedCostAllocation.java b/org.adempiere.base/src/org/compiere/model/X_C_LandedCostAllocation.java index 7c53e22db9..1ae29ef51f 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_LandedCostAllocation.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_LandedCostAllocation.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_LandedCostAllocation - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_LandedCostAllocation extends PO implements I_C_LandedCostAllocation, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_LandedCostAllocation (Properties ctx, int C_LandedCostAllocation_ID, String trxName) @@ -118,9 +118,9 @@ public class X_C_LandedCostAllocation extends PO implements I_C_LandedCostAlloca return bd; } - public I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException + public org.compiere.model.I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException { - return (I_C_InvoiceLine)MTable.get(getCtx(), I_C_InvoiceLine.Table_Name) + return (org.compiere.model.I_C_InvoiceLine)MTable.get(getCtx(), org.compiere.model.I_C_InvoiceLine.Table_Name) .getPO(getC_InvoiceLine_ID(), get_TrxName()); } /** Set Invoice Line. @@ -177,6 +177,20 @@ public class X_C_LandedCostAllocation extends PO implements I_C_LandedCostAlloca return ii.intValue(); } + /** Set C_LandedCostAllocation_UU. + @param C_LandedCostAllocation_UU C_LandedCostAllocation_UU */ + public void setC_LandedCostAllocation_UU (String C_LandedCostAllocation_UU) + { + set_Value (COLUMNNAME_C_LandedCostAllocation_UU, C_LandedCostAllocation_UU); + } + + /** Get C_LandedCostAllocation_UU. + @return C_LandedCostAllocation_UU */ + public String getC_LandedCostAllocation_UU () + { + return (String)get_Value(COLUMNNAME_C_LandedCostAllocation_UU); + } + public I_M_AttributeSetInstance getM_AttributeSetInstance() throws RuntimeException { return (I_M_AttributeSetInstance)MTable.get(getCtx(), I_M_AttributeSetInstance.Table_Name) @@ -205,9 +219,9 @@ public class X_C_LandedCostAllocation extends PO implements I_C_LandedCostAlloca return ii.intValue(); } - public I_M_CostElement getM_CostElement() throws RuntimeException + public org.compiere.model.I_M_CostElement getM_CostElement() throws RuntimeException { - return (I_M_CostElement)MTable.get(getCtx(), I_M_CostElement.Table_Name) + return (org.compiere.model.I_M_CostElement)MTable.get(getCtx(), org.compiere.model.I_M_CostElement.Table_Name) .getPO(getM_CostElement_ID(), get_TrxName()); } /** Set Cost Element. @@ -233,9 +247,9 @@ public class X_C_LandedCostAllocation extends PO implements I_C_LandedCostAlloca return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Location.java b/org.adempiere.base/src/org/compiere/model/X_C_Location.java index 4b3a70d98d..a204888e66 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Location.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Location.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_Location - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Location extends PO implements I_C_Location, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Location (Properties ctx, int C_Location_ID, String trxName) @@ -139,9 +139,9 @@ public class X_C_Location extends PO implements I_C_Location, I_Persistent return (String)get_Value(COLUMNNAME_Address4); } - public I_C_City getC_City() throws RuntimeException + public org.compiere.model.I_C_City getC_City() throws RuntimeException { - return (I_C_City)MTable.get(getCtx(), I_C_City.Table_Name) + return (org.compiere.model.I_C_City)MTable.get(getCtx(), org.compiere.model.I_C_City.Table_Name) .getPO(getC_City_ID(), get_TrxName()); } /** Set City. @@ -167,9 +167,9 @@ public class X_C_Location extends PO implements I_C_Location, I_Persistent return ii.intValue(); } - public I_C_Country getC_Country() throws RuntimeException + public org.compiere.model.I_C_Country getC_Country() throws RuntimeException { - return (I_C_Country)MTable.get(getCtx(), I_C_Country.Table_Name) + return (org.compiere.model.I_C_Country)MTable.get(getCtx(), org.compiere.model.I_C_Country.Table_Name) .getPO(getC_Country_ID(), get_TrxName()); } /** Set Country. @@ -243,9 +243,23 @@ public class X_C_Location extends PO implements I_C_Location, I_Persistent return ii.intValue(); } - public I_C_Region getC_Region() throws RuntimeException + /** Set C_Location_UU. + @param C_Location_UU C_Location_UU */ + public void setC_Location_UU (String C_Location_UU) + { + set_Value (COLUMNNAME_C_Location_UU, C_Location_UU); + } + + /** Get C_Location_UU. + @return C_Location_UU */ + public String getC_Location_UU () + { + return (String)get_Value(COLUMNNAME_C_Location_UU); + } + + public org.compiere.model.I_C_Region getC_Region() throws RuntimeException { - return (I_C_Region)MTable.get(getCtx(), I_C_Region.Table_Name) + return (org.compiere.model.I_C_Region)MTable.get(getCtx(), org.compiere.model.I_C_Region.Table_Name) .getPO(getC_Region_ID(), get_TrxName()); } /** Set Region. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_NonBusinessDay.java b/org.adempiere.base/src/org/compiere/model/X_C_NonBusinessDay.java index 0cd118fd80..f94a90011f 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_NonBusinessDay.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_NonBusinessDay.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_NonBusinessDay - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_NonBusinessDay extends PO implements I_C_NonBusinessDay, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_NonBusinessDay (Properties ctx, int C_NonBusinessDay_ID, String trxName) @@ -73,9 +73,9 @@ public class X_C_NonBusinessDay extends PO implements I_C_NonBusinessDay, I_Pers return sb.toString(); } - public I_C_Calendar getC_Calendar() throws RuntimeException + public org.compiere.model.I_C_Calendar getC_Calendar() throws RuntimeException { - return (I_C_Calendar)MTable.get(getCtx(), I_C_Calendar.Table_Name) + return (org.compiere.model.I_C_Calendar)MTable.get(getCtx(), org.compiere.model.I_C_Calendar.Table_Name) .getPO(getC_Calendar_ID(), get_TrxName()); } /** Set Calendar. @@ -124,6 +124,20 @@ public class X_C_NonBusinessDay extends PO implements I_C_NonBusinessDay, I_Pers return ii.intValue(); } + /** Set C_NonBusinessDay_UU. + @param C_NonBusinessDay_UU C_NonBusinessDay_UU */ + public void setC_NonBusinessDay_UU (String C_NonBusinessDay_UU) + { + set_Value (COLUMNNAME_C_NonBusinessDay_UU, C_NonBusinessDay_UU); + } + + /** Get C_NonBusinessDay_UU. + @return C_NonBusinessDay_UU */ + public String getC_NonBusinessDay_UU () + { + return (String)get_Value(COLUMNNAME_C_NonBusinessDay_UU); + } + /** Set Date. @param Date1 Date when business is not conducted diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Order.java b/org.adempiere.base/src/org/compiere/model/X_C_Order.java index 97bc7ac7f1..6a5aa4b14c 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Order.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Order.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_Order - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Order extends PO implements I_C_Order, I_Persistent { /** * */ - private static final long serialVersionUID = 20120906L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Order (Properties ctx, int C_Order_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_OrderLine.java b/org.adempiere.base/src/org/compiere/model/X_C_OrderLine.java index 48458226c9..000db2bbf4 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_OrderLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_OrderLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_OrderLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_OrderLine extends PO implements I_C_OrderLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_OrderLine (Properties ctx, int C_OrderLine_ID, String trxName) @@ -128,9 +128,9 @@ public class X_C_OrderLine extends PO implements I_C_OrderLine, I_Persistent return ii.intValue(); } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -156,9 +156,9 @@ public class X_C_OrderLine extends PO implements I_C_OrderLine, I_Persistent return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -184,9 +184,9 @@ public class X_C_OrderLine extends PO implements I_C_OrderLine, I_Persistent return ii.intValue(); } - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException { - return (I_C_BPartner_Location)MTable.get(getCtx(), I_C_BPartner_Location.Table_Name) + return (org.compiere.model.I_C_BPartner_Location)MTable.get(getCtx(), org.compiere.model.I_C_BPartner_Location.Table_Name) .getPO(getC_BPartner_Location_ID(), get_TrxName()); } /** Set Partner Location. @@ -212,9 +212,9 @@ public class X_C_OrderLine extends PO implements I_C_OrderLine, I_Persistent return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -240,9 +240,9 @@ public class X_C_OrderLine extends PO implements I_C_OrderLine, I_Persistent return ii.intValue(); } - public I_C_Charge getC_Charge() throws RuntimeException + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException { - return (I_C_Charge)MTable.get(getCtx(), I_C_Charge.Table_Name) + return (org.compiere.model.I_C_Charge)MTable.get(getCtx(), org.compiere.model.I_C_Charge.Table_Name) .getPO(getC_Charge_ID(), get_TrxName()); } /** Set Charge. @@ -268,9 +268,9 @@ public class X_C_OrderLine extends PO implements I_C_OrderLine, I_Persistent return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -296,9 +296,9 @@ public class X_C_OrderLine extends PO implements I_C_OrderLine, I_Persistent return ii.intValue(); } - public I_C_Order getC_Order() throws RuntimeException + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException { - return (I_C_Order)MTable.get(getCtx(), I_C_Order.Table_Name) + return (org.compiere.model.I_C_Order)MTable.get(getCtx(), org.compiere.model.I_C_Order.Table_Name) .getPO(getC_Order_ID(), get_TrxName()); } /** Set Order. @@ -355,9 +355,23 @@ public class X_C_OrderLine extends PO implements I_C_OrderLine, I_Persistent return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + /** Set C_OrderLine_UU. + @param C_OrderLine_UU C_OrderLine_UU */ + public void setC_OrderLine_UU (String C_OrderLine_UU) + { + set_Value (COLUMNNAME_C_OrderLine_UU, C_OrderLine_UU); + } + + /** Get C_OrderLine_UU. + @return C_OrderLine_UU */ + public String getC_OrderLine_UU () + { + return (String)get_Value(COLUMNNAME_C_OrderLine_UU); + } + + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -383,9 +397,9 @@ public class X_C_OrderLine extends PO implements I_C_OrderLine, I_Persistent return ii.intValue(); } - public I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException + public org.compiere.model.I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException { - return (I_C_ProjectPhase)MTable.get(getCtx(), I_C_ProjectPhase.Table_Name) + return (org.compiere.model.I_C_ProjectPhase)MTable.get(getCtx(), org.compiere.model.I_C_ProjectPhase.Table_Name) .getPO(getC_ProjectPhase_ID(), get_TrxName()); } /** Set Project Phase. @@ -411,9 +425,9 @@ public class X_C_OrderLine extends PO implements I_C_OrderLine, I_Persistent return ii.intValue(); } - public I_C_ProjectTask getC_ProjectTask() throws RuntimeException + public org.compiere.model.I_C_ProjectTask getC_ProjectTask() throws RuntimeException { - return (I_C_ProjectTask)MTable.get(getCtx(), I_C_ProjectTask.Table_Name) + return (org.compiere.model.I_C_ProjectTask)MTable.get(getCtx(), org.compiere.model.I_C_ProjectTask.Table_Name) .getPO(getC_ProjectTask_ID(), get_TrxName()); } /** Set Project Task. @@ -439,9 +453,37 @@ public class X_C_OrderLine extends PO implements I_C_OrderLine, I_Persistent return ii.intValue(); } - public I_C_Tax getC_Tax() throws RuntimeException + /** Set Create Production. + @param CreateProduction Create Production */ + public void setCreateProduction (String CreateProduction) + { + set_Value (COLUMNNAME_CreateProduction, CreateProduction); + } + + /** Get Create Production. + @return Create Production */ + public String getCreateProduction () + { + return (String)get_Value(COLUMNNAME_CreateProduction); + } + + /** Set Create Shipment. + @param CreateShipment Create Shipment */ + public void setCreateShipment (String CreateShipment) + { + set_Value (COLUMNNAME_CreateShipment, CreateShipment); + } + + /** Get Create Shipment. + @return Create Shipment */ + public String getCreateShipment () + { + return (String)get_Value(COLUMNNAME_CreateShipment); + } + + public org.compiere.model.I_C_Tax getC_Tax() throws RuntimeException { - return (I_C_Tax)MTable.get(getCtx(), I_C_Tax.Table_Name) + return (org.compiere.model.I_C_Tax)MTable.get(getCtx(), org.compiere.model.I_C_Tax.Table_Name) .getPO(getC_Tax_ID(), get_TrxName()); } /** Set Tax. @@ -467,9 +509,9 @@ public class X_C_OrderLine extends PO implements I_C_OrderLine, I_Persistent return ii.intValue(); } - public I_C_UOM getC_UOM() throws RuntimeException + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_ID(), get_TrxName()); } /** Set UOM. @@ -684,9 +726,9 @@ public class X_C_OrderLine extends PO implements I_C_OrderLine, I_Persistent return bd; } - public I_C_OrderLine getLink_OrderLine() throws RuntimeException + public org.compiere.model.I_C_OrderLine getLink_OrderLine() throws RuntimeException { - return (I_C_OrderLine)MTable.get(getCtx(), I_C_OrderLine.Table_Name) + return (org.compiere.model.I_C_OrderLine)MTable.get(getCtx(), org.compiere.model.I_C_OrderLine.Table_Name) .getPO(getLink_OrderLine_ID(), get_TrxName()); } /** Set Linked Order Line. @@ -740,9 +782,9 @@ public class X_C_OrderLine extends PO implements I_C_OrderLine, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -768,9 +810,9 @@ public class X_C_OrderLine extends PO implements I_C_OrderLine, I_Persistent return ii.intValue(); } - public I_M_Promotion getM_Promotion() throws RuntimeException + public org.compiere.model.I_M_Promotion getM_Promotion() throws RuntimeException { - return (I_M_Promotion)MTable.get(getCtx(), I_M_Promotion.Table_Name) + return (org.compiere.model.I_M_Promotion)MTable.get(getCtx(), org.compiere.model.I_M_Promotion.Table_Name) .getPO(getM_Promotion_ID(), get_TrxName()); } /** Set Promotion. @@ -793,9 +835,9 @@ public class X_C_OrderLine extends PO implements I_C_OrderLine, I_Persistent return ii.intValue(); } - public I_M_Shipper getM_Shipper() throws RuntimeException + public org.compiere.model.I_M_Shipper getM_Shipper() throws RuntimeException { - return (I_M_Shipper)MTable.get(getCtx(), I_M_Shipper.Table_Name) + return (org.compiere.model.I_M_Shipper)MTable.get(getCtx(), org.compiere.model.I_M_Shipper.Table_Name) .getPO(getM_Shipper_ID(), get_TrxName()); } /** Set Shipper. @@ -821,9 +863,9 @@ public class X_C_OrderLine extends PO implements I_C_OrderLine, I_Persistent return ii.intValue(); } - public I_M_Warehouse getM_Warehouse() throws RuntimeException + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_Warehouse_ID(), get_TrxName()); } /** Set Warehouse. @@ -1118,9 +1160,9 @@ public class X_C_OrderLine extends PO implements I_C_OrderLine, I_Persistent return bd; } - public I_C_OrderLine getRef_OrderLine() throws RuntimeException + public org.compiere.model.I_C_OrderLine getRef_OrderLine() throws RuntimeException { - return (I_C_OrderLine)MTable.get(getCtx(), I_C_OrderLine.Table_Name) + return (org.compiere.model.I_C_OrderLine)MTable.get(getCtx(), org.compiere.model.I_C_OrderLine.Table_Name) .getPO(getRef_OrderLine_ID(), get_TrxName()); } /** Set Referenced Order Line. @@ -1206,9 +1248,9 @@ public class X_C_OrderLine extends PO implements I_C_OrderLine, I_Persistent return ii.intValue(); } - public I_C_ElementValue getUser1() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser1_ID(), get_TrxName()); } /** Set User List 1. @@ -1234,9 +1276,9 @@ public class X_C_OrderLine extends PO implements I_C_OrderLine, I_Persistent return ii.intValue(); } - public I_C_ElementValue getUser2() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser2_ID(), get_TrxName()); } /** Set User List 2. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_OrderPaySchedule.java b/org.adempiere.base/src/org/compiere/model/X_C_OrderPaySchedule.java index 1acc5cadf8..232504c635 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_OrderPaySchedule.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_OrderPaySchedule.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_OrderPaySchedule - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_OrderPaySchedule extends PO implements I_C_OrderPaySchedule, I_Persistent { /** * */ - private static final long serialVersionUID = 20110325L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_OrderPaySchedule (Properties ctx, int C_OrderPaySchedule_ID, String trxName) @@ -128,6 +128,20 @@ public class X_C_OrderPaySchedule extends PO implements I_C_OrderPaySchedule, I_ return ii.intValue(); } + /** Set C_OrderPaySchedule_UU. + @param C_OrderPaySchedule_UU C_OrderPaySchedule_UU */ + public void setC_OrderPaySchedule_UU (String C_OrderPaySchedule_UU) + { + set_Value (COLUMNNAME_C_OrderPaySchedule_UU, C_OrderPaySchedule_UU); + } + + /** Get C_OrderPaySchedule_UU. + @return C_OrderPaySchedule_UU */ + public String getC_OrderPaySchedule_UU () + { + return (String)get_Value(COLUMNNAME_C_OrderPaySchedule_UU); + } + public org.compiere.model.I_C_PaySchedule getC_PaySchedule() throws RuntimeException { return (org.compiere.model.I_C_PaySchedule)MTable.get(getCtx(), org.compiere.model.I_C_PaySchedule.Table_Name) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_OrderSource.java b/org.adempiere.base/src/org/compiere/model/X_C_OrderSource.java index 83c10cd936..a0c3279888 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_OrderSource.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_OrderSource.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for C_OrderSource - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_OrderSource extends PO implements I_C_OrderSource, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_OrderSource (Properties ctx, int C_OrderSource_ID, String trxName) @@ -91,6 +91,20 @@ public class X_C_OrderSource extends PO implements I_C_OrderSource, I_Persistent return ii.intValue(); } + /** Set C_OrderSource_UU. + @param C_OrderSource_UU C_OrderSource_UU */ + public void setC_OrderSource_UU (String C_OrderSource_UU) + { + set_Value (COLUMNNAME_C_OrderSource_UU, C_OrderSource_UU); + } + + /** Get C_OrderSource_UU. + @return C_OrderSource_UU */ + public String getC_OrderSource_UU () + { + return (String)get_Value(COLUMNNAME_C_OrderSource_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_OrderTax.java b/org.adempiere.base/src/org/compiere/model/X_C_OrderTax.java index 43dac78af3..9d46e92370 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_OrderTax.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_OrderTax.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for C_OrderTax - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_OrderTax extends PO implements I_C_OrderTax, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_OrderTax (Properties ctx, int C_OrderTax_ID, String trxName) @@ -76,9 +76,9 @@ public class X_C_OrderTax extends PO implements I_C_OrderTax, I_Persistent return sb.toString(); } - public I_C_Order getC_Order() throws RuntimeException + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException { - return (I_C_Order)MTable.get(getCtx(), I_C_Order.Table_Name) + return (org.compiere.model.I_C_Order)MTable.get(getCtx(), org.compiere.model.I_C_Order.Table_Name) .getPO(getC_Order_ID(), get_TrxName()); } /** Set Order. @@ -104,9 +104,23 @@ public class X_C_OrderTax extends PO implements I_C_OrderTax, I_Persistent return ii.intValue(); } - public I_C_Tax getC_Tax() throws RuntimeException + /** Set C_OrderTax_UU. + @param C_OrderTax_UU C_OrderTax_UU */ + public void setC_OrderTax_UU (String C_OrderTax_UU) + { + set_Value (COLUMNNAME_C_OrderTax_UU, C_OrderTax_UU); + } + + /** Get C_OrderTax_UU. + @return C_OrderTax_UU */ + public String getC_OrderTax_UU () + { + return (String)get_Value(COLUMNNAME_C_OrderTax_UU); + } + + public org.compiere.model.I_C_Tax getC_Tax() throws RuntimeException { - return (I_C_Tax)MTable.get(getCtx(), I_C_Tax.Table_Name) + return (org.compiere.model.I_C_Tax)MTable.get(getCtx(), org.compiere.model.I_C_Tax.Table_Name) .getPO(getC_Tax_ID(), get_TrxName()); } /** Set Tax. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_OrgAssignment.java b/org.adempiere.base/src/org/compiere/model/X_C_OrgAssignment.java index ba62ec791a..094bfef755 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_OrgAssignment.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_OrgAssignment.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.sql.Timestamp; import java.util.Properties; /** Generated Model for C_OrgAssignment - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_OrgAssignment extends PO implements I_C_OrgAssignment, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_OrgAssignment (Properties ctx, int C_OrgAssignment_ID, String trxName) @@ -72,9 +72,9 @@ public class X_C_OrgAssignment extends PO implements I_C_OrgAssignment, I_Persis return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -123,6 +123,20 @@ public class X_C_OrgAssignment extends PO implements I_C_OrgAssignment, I_Persis return ii.intValue(); } + /** Set C_OrgAssignment_UU. + @param C_OrgAssignment_UU C_OrgAssignment_UU */ + public void setC_OrgAssignment_UU (String C_OrgAssignment_UU) + { + set_Value (COLUMNNAME_C_OrgAssignment_UU, C_OrgAssignment_UU); + } + + /** Get C_OrgAssignment_UU. + @return C_OrgAssignment_UU */ + public String getC_OrgAssignment_UU () + { + return (String)get_Value(COLUMNNAME_C_OrgAssignment_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_POS.java b/org.adempiere.base/src/org/compiere/model/X_C_POS.java index 8c83d3aae8..b3303e96b4 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_POS.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_POS.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_POS - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_POS extends PO implements I_C_POS, I_Persistent { /** * */ - private static final long serialVersionUID = 20110815L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_POS (Properties ctx, int C_POS_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_POSKey.java b/org.adempiere.base/src/org/compiere/model/X_C_POSKey.java index eb00dd6dfe..f70aec73bf 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_POSKey.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_POSKey.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_POSKey - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_POSKey extends PO implements I_C_POSKey, I_Persistent { /** * */ - private static final long serialVersionUID = 20110815L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_POSKey (Properties ctx, int C_POSKey_ID, String trxName) @@ -398,15 +398,15 @@ public class X_C_POSKey extends PO implements I_C_POSKey, I_Persistent return ii.intValue(); } - /** Set Text. - @param Text Text */ + /** Set Description. + @param Text Description */ public void setText (String Text) { set_Value (COLUMNNAME_Text, Text); } - /** Get Text. - @return Text */ + /** Get Description. + @return Description */ public String getText () { return (String)get_Value(COLUMNNAME_Text); diff --git a/org.adempiere.base/src/org/compiere/model/X_C_POSKeyLayout.java b/org.adempiere.base/src/org/compiere/model/X_C_POSKeyLayout.java index 97567e44c0..8fd4bd93f8 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_POSKeyLayout.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_POSKeyLayout.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_POSKeyLayout - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_POSKeyLayout extends PO implements I_C_POSKeyLayout, I_Persistent { /** * */ - private static final long serialVersionUID = 20110815L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_POSKeyLayout (Properties ctx, int C_POSKeyLayout_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_POSPayment.java b/org.adempiere.base/src/org/compiere/model/X_C_POSPayment.java index 78b6400cdc..9175ae8024 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_POSPayment.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_POSPayment.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for C_POSPayment - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_POSPayment extends PO implements I_C_POSPayment, I_Persistent { /** * */ - private static final long serialVersionUID = 20120906L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_POSPayment (Properties ctx, int C_POSPayment_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_POSTenderType.java b/org.adempiere.base/src/org/compiere/model/X_C_POSTenderType.java index ea73f1c3a0..6379a64159 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_POSTenderType.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_POSTenderType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_POSTenderType - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_POSTenderType extends PO implements I_C_POSTenderType, I_Persistent { /** * */ - private static final long serialVersionUID = 20120906L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_POSTenderType (Properties ctx, int C_POSTenderType_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_PaySchedule.java b/org.adempiere.base/src/org/compiere/model/X_C_PaySchedule.java index 05d7669d98..b366db9bfc 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_PaySchedule.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_PaySchedule.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_PaySchedule - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_PaySchedule extends PO implements I_C_PaySchedule, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_PaySchedule (Properties ctx, int C_PaySchedule_ID, String trxName) @@ -79,9 +79,9 @@ public class X_C_PaySchedule extends PO implements I_C_PaySchedule, I_Persistent return sb.toString(); } - public I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException + public org.compiere.model.I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException { - return (I_C_PaymentTerm)MTable.get(getCtx(), I_C_PaymentTerm.Table_Name) + return (org.compiere.model.I_C_PaymentTerm)MTable.get(getCtx(), org.compiere.model.I_C_PaymentTerm.Table_Name) .getPO(getC_PaymentTerm_ID(), get_TrxName()); } /** Set Payment Term. @@ -138,6 +138,20 @@ public class X_C_PaySchedule extends PO implements I_C_PaySchedule, I_Persistent return ii.intValue(); } + /** Set C_PaySchedule_UU. + @param C_PaySchedule_UU C_PaySchedule_UU */ + public void setC_PaySchedule_UU (String C_PaySchedule_UU) + { + set_Value (COLUMNNAME_C_PaySchedule_UU, C_PaySchedule_UU); + } + + /** Get C_PaySchedule_UU. + @return C_PaySchedule_UU */ + public String getC_PaySchedule_UU () + { + return (String)get_Value(COLUMNNAME_C_PaySchedule_UU); + } + /** Set Discount %. @param Discount Discount in percent diff --git a/org.adempiere.base/src/org/compiere/model/X_C_PaySelection.java b/org.adempiere.base/src/org/compiere/model/X_C_PaySelection.java index 3fd95dff56..c0a1badc71 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_PaySelection.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_PaySelection.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_PaySelection - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_PaySelection extends PO implements I_C_PaySelection, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_PaySelection (Properties ctx, int C_PaySelection_ID, String trxName) @@ -82,9 +82,9 @@ public class X_C_PaySelection extends PO implements I_C_PaySelection, I_Persiste return sb.toString(); } - public I_C_BankAccount getC_BankAccount() throws RuntimeException + public org.compiere.model.I_C_BankAccount getC_BankAccount() throws RuntimeException { - return (I_C_BankAccount)MTable.get(getCtx(), I_C_BankAccount.Table_Name) + return (org.compiere.model.I_C_BankAccount)MTable.get(getCtx(), org.compiere.model.I_C_BankAccount.Table_Name) .getPO(getC_BankAccount_ID(), get_TrxName()); } /** Set Bank Account. @@ -133,6 +133,20 @@ public class X_C_PaySelection extends PO implements I_C_PaySelection, I_Persiste return ii.intValue(); } + /** Set C_PaySelection_UU. + @param C_PaySelection_UU C_PaySelection_UU */ + public void setC_PaySelection_UU (String C_PaySelection_UU) + { + set_Value (COLUMNNAME_C_PaySelection_UU, C_PaySelection_UU); + } + + /** Get C_PaySelection_UU. + @return C_PaySelection_UU */ + public String getC_PaySelection_UU () + { + return (String)get_Value(COLUMNNAME_C_PaySelection_UU); + } + /** Set Create lines from. @param CreateFrom Process which will generate a new document lines based on an existing document diff --git a/org.adempiere.base/src/org/compiere/model/X_C_PaySelectionCheck.java b/org.adempiere.base/src/org/compiere/model/X_C_PaySelectionCheck.java index b97f9a9ebb..77dc31fdc7 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_PaySelectionCheck.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_PaySelectionCheck.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for C_PaySelectionCheck - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_PaySelectionCheck extends PO implements I_C_PaySelectionCheck, I_Persistent { /** * */ - private static final long serialVersionUID = 20120906L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_PaySelectionCheck (Properties ctx, int C_PaySelectionCheck_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_PaySelectionLine.java b/org.adempiere.base/src/org/compiere/model/X_C_PaySelectionLine.java index 202791a54b..2f59f766a8 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_PaySelectionLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_PaySelectionLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_PaySelectionLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_PaySelectionLine extends PO implements I_C_PaySelectionLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20120906L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_PaySelectionLine (Properties ctx, int C_PaySelectionLine_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Payment.java b/org.adempiere.base/src/org/compiere/model/X_C_Payment.java index f03325bf24..6d1e4dd661 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Payment.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Payment.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_Payment - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Payment extends PO implements I_C_Payment, I_Persistent { /** * */ - private static final long serialVersionUID = 20121012L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Payment (Properties ctx, int C_Payment_ID, String trxName) @@ -107,6 +107,23 @@ public class X_C_Payment extends PO implements I_C_Payment, I_Persistent return sb.toString(); } + /** Set Account No. + @param AccountNo + Account Number + */ + public void setAccountNo (String AccountNo) + { + set_Value (COLUMNNAME_AccountNo, AccountNo); + } + + /** Get Account No. + @return Account Number + */ + public String getAccountNo () + { + return (String)get_Value(COLUMNNAME_AccountNo); + } + /** Set Account City. @param A_City City or the Credit Card or Account Holder @@ -141,6 +158,29 @@ public class X_C_Payment extends PO implements I_C_Payment, I_Persistent return (String)get_Value(COLUMNNAME_A_Country); } + /** Set Trx Organization. + @param AD_OrgTrx_ID + Performing or initiating organization + */ + public void setAD_OrgTrx_ID (int AD_OrgTrx_ID) + { + if (AD_OrgTrx_ID < 1) + set_Value (COLUMNNAME_AD_OrgTrx_ID, null); + else + set_Value (COLUMNNAME_AD_OrgTrx_ID, Integer.valueOf(AD_OrgTrx_ID)); + } + + /** Get Trx Organization. + @return Performing or initiating organization + */ + public int getAD_OrgTrx_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_AD_OrgTrx_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + /** Set Account EMail. @param A_EMail Email Address @@ -260,46 +300,6 @@ public class X_C_Payment extends PO implements I_C_Payment, I_Persistent return (String)get_Value(COLUMNNAME_A_Zip); } - /** Set Account No. - @param AccountNo - Account Number - */ - public void setAccountNo (String AccountNo) - { - set_Value (COLUMNNAME_AccountNo, AccountNo); - } - - /** Get Account No. - @return Account Number - */ - public String getAccountNo () - { - return (String)get_Value(COLUMNNAME_AccountNo); - } - - /** Set Trx Organization. - @param AD_OrgTrx_ID - Performing or initiating organization - */ - public void setAD_OrgTrx_ID (int AD_OrgTrx_ID) - { - if (AD_OrgTrx_ID < 1) - set_Value (COLUMNNAME_AD_OrgTrx_ID, null); - else - set_Value (COLUMNNAME_AD_OrgTrx_ID, Integer.valueOf(AD_OrgTrx_ID)); - } - - /** Get Trx Organization. - @return Performing or initiating organization - */ - public int getAD_OrgTrx_ID () - { - Integer ii = (Integer)get_Value(COLUMNNAME_AD_OrgTrx_ID); - if (ii == null) - return 0; - return ii.intValue(); - } - public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) @@ -356,34 +356,6 @@ public class X_C_Payment extends PO implements I_C_Payment, I_Persistent return ii.intValue(); } - public org.compiere.model.I_C_BP_BankAccount getC_BP_BankAccount() throws RuntimeException - { - return (org.compiere.model.I_C_BP_BankAccount)MTable.get(getCtx(), org.compiere.model.I_C_BP_BankAccount.Table_Name) - .getPO(getC_BP_BankAccount_ID(), get_TrxName()); } - - /** Set Partner Bank Account. - @param C_BP_BankAccount_ID - Bank Account of the Business Partner - */ - public void setC_BP_BankAccount_ID (int C_BP_BankAccount_ID) - { - if (C_BP_BankAccount_ID < 1) - set_Value (COLUMNNAME_C_BP_BankAccount_ID, null); - else - set_Value (COLUMNNAME_C_BP_BankAccount_ID, Integer.valueOf(C_BP_BankAccount_ID)); - } - - /** Get Partner Bank Account. - @return Bank Account of the Business Partner - */ - public int getC_BP_BankAccount_ID () - { - Integer ii = (Integer)get_Value(COLUMNNAME_C_BP_BankAccount_ID); - if (ii == null) - return 0; - return ii.intValue(); - } - public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) @@ -412,6 +384,34 @@ public class X_C_Payment extends PO implements I_C_Payment, I_Persistent return ii.intValue(); } + public org.compiere.model.I_C_BP_BankAccount getC_BP_BankAccount() throws RuntimeException + { + return (org.compiere.model.I_C_BP_BankAccount)MTable.get(getCtx(), org.compiere.model.I_C_BP_BankAccount.Table_Name) + .getPO(getC_BP_BankAccount_ID(), get_TrxName()); } + + /** Set Partner Bank Account. + @param C_BP_BankAccount_ID + Bank Account of the Business Partner + */ + public void setC_BP_BankAccount_ID (int C_BP_BankAccount_ID) + { + if (C_BP_BankAccount_ID < 1) + set_Value (COLUMNNAME_C_BP_BankAccount_ID, null); + else + set_Value (COLUMNNAME_C_BP_BankAccount_ID, Integer.valueOf(C_BP_BankAccount_ID)); + } + + /** Get Partner Bank Account. + @return Bank Account of the Business Partner + */ + public int getC_BP_BankAccount_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_C_BP_BankAccount_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) @@ -580,6 +580,43 @@ public class X_C_Payment extends PO implements I_C_Payment, I_Persistent return ii.intValue(); } + /** Set Charge amount. + @param ChargeAmt + Charge Amount + */ + public void setChargeAmt (BigDecimal ChargeAmt) + { + set_Value (COLUMNNAME_ChargeAmt, ChargeAmt); + } + + /** Get Charge amount. + @return Charge Amount + */ + public BigDecimal getChargeAmt () + { + BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_ChargeAmt); + if (bd == null) + return Env.ZERO; + return bd; + } + + /** Set Check No. + @param CheckNo + Check Number + */ + public void setCheckNo (String CheckNo) + { + set_Value (COLUMNNAME_CheckNo, CheckNo); + } + + /** Get Check No. + @return Check Number + */ + public String getCheckNo () + { + return (String)get_Value(COLUMNNAME_CheckNo); + } + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException { return (org.compiere.model.I_C_Invoice)MTable.get(getCtx(), org.compiere.model.I_C_Invoice.Table_Name) @@ -636,43 +673,6 @@ public class X_C_Payment extends PO implements I_C_Payment, I_Persistent return ii.intValue(); } - /** Set Payment. - @param C_Payment_ID - Payment identifier - */ - public void setC_Payment_ID (int C_Payment_ID) - { - if (C_Payment_ID < 1) - set_ValueNoCheck (COLUMNNAME_C_Payment_ID, null); - else - set_ValueNoCheck (COLUMNNAME_C_Payment_ID, Integer.valueOf(C_Payment_ID)); - } - - /** Get Payment. - @return Payment identifier - */ - public int getC_Payment_ID () - { - Integer ii = (Integer)get_Value(COLUMNNAME_C_Payment_ID); - if (ii == null) - return 0; - return ii.intValue(); - } - - /** Set C_Payment_UU. - @param C_Payment_UU C_Payment_UU */ - public void setC_Payment_UU (String C_Payment_UU) - { - set_Value (COLUMNNAME_C_Payment_UU, C_Payment_UU); - } - - /** Get C_Payment_UU. - @return C_Payment_UU */ - public String getC_Payment_UU () - { - return (String)get_Value(COLUMNNAME_C_Payment_UU); - } - public org.compiere.model.I_C_PaymentBatch getC_PaymentBatch() throws RuntimeException { return (org.compiere.model.I_C_PaymentBatch)MTable.get(getCtx(), org.compiere.model.I_C_PaymentBatch.Table_Name) @@ -701,6 +701,29 @@ public class X_C_Payment extends PO implements I_C_Payment, I_Persistent return ii.intValue(); } + /** Set Payment. + @param C_Payment_ID + Payment identifier + */ + public void setC_Payment_ID (int C_Payment_ID) + { + if (C_Payment_ID < 1) + set_ValueNoCheck (COLUMNNAME_C_Payment_ID, null); + else + set_ValueNoCheck (COLUMNNAME_C_Payment_ID, Integer.valueOf(C_Payment_ID)); + } + + /** Get Payment. + @return Payment identifier + */ + public int getC_Payment_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_C_Payment_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + public org.compiere.model.I_C_PaymentProcessor getC_PaymentProcessor() throws RuntimeException { return (org.compiere.model.I_C_PaymentProcessor)MTable.get(getCtx(), org.compiere.model.I_C_PaymentProcessor.Table_Name) @@ -729,6 +752,20 @@ public class X_C_Payment extends PO implements I_C_Payment, I_Persistent return ii.intValue(); } + /** Set C_Payment_UU. + @param C_Payment_UU C_Payment_UU */ + public void setC_Payment_UU (String C_Payment_UU) + { + set_Value (COLUMNNAME_C_Payment_UU, C_Payment_UU); + } + + /** Get C_Payment_UU. + @return C_Payment_UU */ + public String getC_Payment_UU () + { + return (String)get_Value(COLUMNNAME_C_Payment_UU); + } + public org.compiere.model.I_C_POSTenderType getC_POSTenderType() throws RuntimeException { return (org.compiere.model.I_C_POSTenderType)MTable.get(getCtx(), org.compiere.model.I_C_POSTenderType.Table_Name) @@ -782,43 +819,6 @@ public class X_C_Payment extends PO implements I_C_Payment, I_Persistent return ii.intValue(); } - /** Set Charge amount. - @param ChargeAmt - Charge Amount - */ - public void setChargeAmt (BigDecimal ChargeAmt) - { - set_Value (COLUMNNAME_ChargeAmt, ChargeAmt); - } - - /** Get Charge amount. - @return Charge Amount - */ - public BigDecimal getChargeAmt () - { - BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_ChargeAmt); - if (bd == null) - return Env.ZERO; - return bd; - } - - /** Set Check No. - @param CheckNo - Check Number - */ - public void setCheckNo (String CheckNo) - { - set_Value (COLUMNNAME_CheckNo, CheckNo); - } - - /** Get Check No. - @return Check Number - */ - public String getCheckNo () - { - return (String)get_Value(COLUMNNAME_CheckNo); - } - /** Set Exp. Month. @param CreditCardExpMM Expiry Month @@ -1701,6 +1701,59 @@ public class X_C_Payment extends PO implements I_C_Payment, I_Persistent return false; } + public org.compiere.model.I_C_Payment getRef_Payment() throws RuntimeException + { + return (org.compiere.model.I_C_Payment)MTable.get(getCtx(), org.compiere.model.I_C_Payment.Table_Name) + .getPO(getRef_Payment_ID(), get_TrxName()); } + + /** Set Referenced Payment. + @param Ref_Payment_ID Referenced Payment */ + public void setRef_Payment_ID (int Ref_Payment_ID) + { + if (Ref_Payment_ID < 1) + set_ValueNoCheck (COLUMNNAME_Ref_Payment_ID, null); + else + set_ValueNoCheck (COLUMNNAME_Ref_Payment_ID, Integer.valueOf(Ref_Payment_ID)); + } + + /** Get Referenced Payment. + @return Referenced Payment */ + public int getRef_Payment_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_Ref_Payment_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + + public org.compiere.model.I_C_Payment getReversal() throws RuntimeException + { + return (org.compiere.model.I_C_Payment)MTable.get(getCtx(), org.compiere.model.I_C_Payment.Table_Name) + .getPO(getReversal_ID(), get_TrxName()); } + + /** Set Reversal ID. + @param Reversal_ID + ID of document reversal + */ + public void setReversal_ID (int Reversal_ID) + { + if (Reversal_ID < 1) + set_Value (COLUMNNAME_Reversal_ID, null); + else + set_Value (COLUMNNAME_Reversal_ID, Integer.valueOf(Reversal_ID)); + } + + /** Get Reversal ID. + @return ID of document reversal + */ + public int getReversal_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_Reversal_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + /** Set Info. @param R_Info Response info @@ -1718,6 +1771,23 @@ public class X_C_Payment extends PO implements I_C_Payment, I_Persistent return (String)get_Value(COLUMNNAME_R_Info); } + /** Set Routing No. + @param RoutingNo + Bank Routing Number + */ + public void setRoutingNo (String RoutingNo) + { + set_Value (COLUMNNAME_RoutingNo, RoutingNo); + } + + /** Get Routing No. + @return Bank Routing Number + */ + public String getRoutingNo () + { + return (String)get_Value(COLUMNNAME_RoutingNo); + } + /** Set Reference. @param R_PnRef Payment reference @@ -1800,76 +1870,6 @@ public class X_C_Payment extends PO implements I_C_Payment, I_Persistent return (String)get_Value(COLUMNNAME_R_VoidMsg); } - public org.compiere.model.I_C_Payment getRef_Payment() throws RuntimeException - { - return (org.compiere.model.I_C_Payment)MTable.get(getCtx(), org.compiere.model.I_C_Payment.Table_Name) - .getPO(getRef_Payment_ID(), get_TrxName()); } - - /** Set Referenced Payment. - @param Ref_Payment_ID Referenced Payment */ - public void setRef_Payment_ID (int Ref_Payment_ID) - { - if (Ref_Payment_ID < 1) - set_ValueNoCheck (COLUMNNAME_Ref_Payment_ID, null); - else - set_ValueNoCheck (COLUMNNAME_Ref_Payment_ID, Integer.valueOf(Ref_Payment_ID)); - } - - /** Get Referenced Payment. - @return Referenced Payment */ - public int getRef_Payment_ID () - { - Integer ii = (Integer)get_Value(COLUMNNAME_Ref_Payment_ID); - if (ii == null) - return 0; - return ii.intValue(); - } - - public org.compiere.model.I_C_Payment getReversal() throws RuntimeException - { - return (org.compiere.model.I_C_Payment)MTable.get(getCtx(), org.compiere.model.I_C_Payment.Table_Name) - .getPO(getReversal_ID(), get_TrxName()); } - - /** Set Reversal ID. - @param Reversal_ID - ID of document reversal - */ - public void setReversal_ID (int Reversal_ID) - { - if (Reversal_ID < 1) - set_Value (COLUMNNAME_Reversal_ID, null); - else - set_Value (COLUMNNAME_Reversal_ID, Integer.valueOf(Reversal_ID)); - } - - /** Get Reversal ID. - @return ID of document reversal - */ - public int getReversal_ID () - { - Integer ii = (Integer)get_Value(COLUMNNAME_Reversal_ID); - if (ii == null) - return 0; - return ii.intValue(); - } - - /** Set Routing No. - @param RoutingNo - Bank Routing Number - */ - public void setRoutingNo (String RoutingNo) - { - set_Value (COLUMNNAME_RoutingNo, RoutingNo); - } - - /** Get Routing No. - @return Bank Routing Number - */ - public String getRoutingNo () - { - return (String)get_Value(COLUMNNAME_RoutingNo); - } - /** Set Swipe. @param Swipe Track 1 and 2 of the Credit Card diff --git a/org.adempiere.base/src/org/compiere/model/X_C_PaymentAllocate.java b/org.adempiere.base/src/org/compiere/model/X_C_PaymentAllocate.java index 15332c6f5a..332fb81072 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_PaymentAllocate.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_PaymentAllocate.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_PaymentAllocate - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_PaymentAllocate extends PO implements I_C_PaymentAllocate, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_PaymentAllocate (Properties ctx, int C_PaymentAllocate_ID, String trxName) @@ -98,9 +98,9 @@ public class X_C_PaymentAllocate extends PO implements I_C_PaymentAllocate, I_Pe return bd; } - public I_C_AllocationLine getC_AllocationLine() throws RuntimeException + public org.compiere.model.I_C_AllocationLine getC_AllocationLine() throws RuntimeException { - return (I_C_AllocationLine)MTable.get(getCtx(), I_C_AllocationLine.Table_Name) + return (org.compiere.model.I_C_AllocationLine)MTable.get(getCtx(), org.compiere.model.I_C_AllocationLine.Table_Name) .getPO(getC_AllocationLine_ID(), get_TrxName()); } /** Set Allocation Line. @@ -126,9 +126,9 @@ public class X_C_PaymentAllocate extends PO implements I_C_PaymentAllocate, I_Pe return ii.intValue(); } - public I_C_Invoice getC_Invoice() throws RuntimeException + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException { - return (I_C_Invoice)MTable.get(getCtx(), I_C_Invoice.Table_Name) + return (org.compiere.model.I_C_Invoice)MTable.get(getCtx(), org.compiere.model.I_C_Invoice.Table_Name) .getPO(getC_Invoice_ID(), get_TrxName()); } /** Set Invoice. @@ -185,9 +185,23 @@ public class X_C_PaymentAllocate extends PO implements I_C_PaymentAllocate, I_Pe return ii.intValue(); } - public I_C_Payment getC_Payment() throws RuntimeException + /** Set C_PaymentAllocate_UU. + @param C_PaymentAllocate_UU C_PaymentAllocate_UU */ + public void setC_PaymentAllocate_UU (String C_PaymentAllocate_UU) + { + set_Value (COLUMNNAME_C_PaymentAllocate_UU, C_PaymentAllocate_UU); + } + + /** Get C_PaymentAllocate_UU. + @return C_PaymentAllocate_UU */ + public String getC_PaymentAllocate_UU () + { + return (String)get_Value(COLUMNNAME_C_PaymentAllocate_UU); + } + + public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException { - return (I_C_Payment)MTable.get(getCtx(), I_C_Payment.Table_Name) + return (org.compiere.model.I_C_Payment)MTable.get(getCtx(), org.compiere.model.I_C_Payment.Table_Name) .getPO(getC_Payment_ID(), get_TrxName()); } /** Set Payment. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_PaymentBatch.java b/org.adempiere.base/src/org/compiere/model/X_C_PaymentBatch.java index 5c0a510ba9..476e958262 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_PaymentBatch.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_PaymentBatch.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_PaymentBatch - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_PaymentBatch extends PO implements I_C_PaymentBatch, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_PaymentBatch (Properties ctx, int C_PaymentBatch_ID, String trxName) @@ -98,9 +98,23 @@ public class X_C_PaymentBatch extends PO implements I_C_PaymentBatch, I_Persiste return ii.intValue(); } - public I_C_PaymentProcessor getC_PaymentProcessor() throws RuntimeException + /** Set C_PaymentBatch_UU. + @param C_PaymentBatch_UU C_PaymentBatch_UU */ + public void setC_PaymentBatch_UU (String C_PaymentBatch_UU) + { + set_Value (COLUMNNAME_C_PaymentBatch_UU, C_PaymentBatch_UU); + } + + /** Get C_PaymentBatch_UU. + @return C_PaymentBatch_UU */ + public String getC_PaymentBatch_UU () + { + return (String)get_Value(COLUMNNAME_C_PaymentBatch_UU); + } + + public org.compiere.model.I_C_PaymentProcessor getC_PaymentProcessor() throws RuntimeException { - return (I_C_PaymentProcessor)MTable.get(getCtx(), I_C_PaymentProcessor.Table_Name) + return (org.compiere.model.I_C_PaymentProcessor)MTable.get(getCtx(), org.compiere.model.I_C_PaymentProcessor.Table_Name) .getPO(getC_PaymentProcessor_ID(), get_TrxName()); } /** Set Payment Processor. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_PaymentProcessor.java b/org.adempiere.base/src/org/compiere/model/X_C_PaymentProcessor.java index 6c6955d961..4817ecf84e 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_PaymentProcessor.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_PaymentProcessor.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_PaymentProcessor - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_PaymentProcessor extends PO implements I_C_PaymentProcessor, I_Persistent { /** * */ - private static final long serialVersionUID = 20121003L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_PaymentProcessor (Properties ctx, int C_PaymentProcessor_ID, String trxName) @@ -50,9 +50,9 @@ public class X_C_PaymentProcessor extends PO implements I_C_PaymentProcessor, I_ setAcceptDiscover (false); setAcceptMC (false); setAcceptVisa (false); - setC_PaymentProcessor_ID (0); setCommission (Env.ZERO); setCostPerTrx (Env.ZERO); + setC_PaymentProcessor_ID (0); setHostAddress (null); setHostPort (0); setName (null); @@ -414,43 +414,6 @@ public class X_C_PaymentProcessor extends PO implements I_C_PaymentProcessor, I_ return ii.intValue(); } - /** Set Payment Processor. - @param C_PaymentProcessor_ID - Payment processor for electronic payments - */ - public void setC_PaymentProcessor_ID (int C_PaymentProcessor_ID) - { - if (C_PaymentProcessor_ID < 1) - set_ValueNoCheck (COLUMNNAME_C_PaymentProcessor_ID, null); - else - set_ValueNoCheck (COLUMNNAME_C_PaymentProcessor_ID, Integer.valueOf(C_PaymentProcessor_ID)); - } - - /** Get Payment Processor. - @return Payment processor for electronic payments - */ - public int getC_PaymentProcessor_ID () - { - Integer ii = (Integer)get_Value(COLUMNNAME_C_PaymentProcessor_ID); - if (ii == null) - return 0; - return ii.intValue(); - } - - /** Set C_PaymentProcessor_UU. - @param C_PaymentProcessor_UU C_PaymentProcessor_UU */ - public void setC_PaymentProcessor_UU (String C_PaymentProcessor_UU) - { - set_Value (COLUMNNAME_C_PaymentProcessor_UU, C_PaymentProcessor_UU); - } - - /** Get C_PaymentProcessor_UU. - @return C_PaymentProcessor_UU */ - public String getC_PaymentProcessor_UU () - { - return (String)get_Value(COLUMNNAME_C_PaymentProcessor_UU); - } - /** Set Commission %. @param Commission Commission stated as a percentage @@ -491,6 +454,43 @@ public class X_C_PaymentProcessor extends PO implements I_C_PaymentProcessor, I_ return bd; } + /** Set Payment Processor. + @param C_PaymentProcessor_ID + Payment processor for electronic payments + */ + public void setC_PaymentProcessor_ID (int C_PaymentProcessor_ID) + { + if (C_PaymentProcessor_ID < 1) + set_ValueNoCheck (COLUMNNAME_C_PaymentProcessor_ID, null); + else + set_ValueNoCheck (COLUMNNAME_C_PaymentProcessor_ID, Integer.valueOf(C_PaymentProcessor_ID)); + } + + /** Get Payment Processor. + @return Payment processor for electronic payments + */ + public int getC_PaymentProcessor_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_C_PaymentProcessor_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + + /** Set C_PaymentProcessor_UU. + @param C_PaymentProcessor_UU C_PaymentProcessor_UU */ + public void setC_PaymentProcessor_UU (String C_PaymentProcessor_UU) + { + set_Value (COLUMNNAME_C_PaymentProcessor_UU, C_PaymentProcessor_UU); + } + + /** Get C_PaymentProcessor_UU. + @return C_PaymentProcessor_UU */ + public String getC_PaymentProcessor_UU () + { + return (String)get_Value(COLUMNNAME_C_PaymentProcessor_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_PaymentTerm.java b/org.adempiere.base/src/org/compiere/model/X_C_PaymentTerm.java index 87c4a6b47e..33723d9e20 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_PaymentTerm.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_PaymentTerm.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_PaymentTerm - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_PaymentTerm extends PO implements I_C_PaymentTerm, I_Persistent { /** * */ - private static final long serialVersionUID = 20110325L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_PaymentTerm (Properties ctx, int C_PaymentTerm_ID, String trxName) @@ -132,6 +132,20 @@ public class X_C_PaymentTerm extends PO implements I_C_PaymentTerm, I_Persistent return ii.intValue(); } + /** Set C_PaymentTerm_UU. + @param C_PaymentTerm_UU C_PaymentTerm_UU */ + public void setC_PaymentTerm_UU (String C_PaymentTerm_UU) + { + set_Value (COLUMNNAME_C_PaymentTerm_UU, C_PaymentTerm_UU); + } + + /** Get C_PaymentTerm_UU. + @return C_PaymentTerm_UU */ + public String getC_PaymentTerm_UU () + { + return (String)get_Value(COLUMNNAME_C_PaymentTerm_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Period.java b/org.adempiere.base/src/org/compiere/model/X_C_Period.java index e5bedecaf9..623859c83e 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Period.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Period.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_Period - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Period extends PO implements I_C_Period, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Period (Properties ctx, int C_Period_ID, String trxName) @@ -100,9 +100,23 @@ public class X_C_Period extends PO implements I_C_Period, I_Persistent return ii.intValue(); } - public I_C_Year getC_Year() throws RuntimeException + /** Set C_Period_UU. + @param C_Period_UU C_Period_UU */ + public void setC_Period_UU (String C_Period_UU) + { + set_Value (COLUMNNAME_C_Period_UU, C_Period_UU); + } + + /** Get C_Period_UU. + @return C_Period_UU */ + public String getC_Period_UU () + { + return (String)get_Value(COLUMNNAME_C_Period_UU); + } + + public org.compiere.model.I_C_Year getC_Year() throws RuntimeException { - return (I_C_Year)MTable.get(getCtx(), I_C_Year.Table_Name) + return (org.compiere.model.I_C_Year)MTable.get(getCtx(), org.compiere.model.I_C_Year.Table_Name) .getPO(getC_Year_ID(), get_TrxName()); } /** Set Year. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_PeriodControl.java b/org.adempiere.base/src/org/compiere/model/X_C_PeriodControl.java index 69f3894d01..4ed1953874 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_PeriodControl.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_PeriodControl.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_PeriodControl - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_PeriodControl extends PO implements I_C_PeriodControl, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_PeriodControl (Properties ctx, int C_PeriodControl_ID, String trxName) @@ -102,9 +102,23 @@ public class X_C_PeriodControl extends PO implements I_C_PeriodControl, I_Persis return new KeyNamePair(get_ID(), String.valueOf(getC_PeriodControl_ID())); } - public I_C_Period getC_Period() throws RuntimeException + /** Set C_PeriodControl_UU. + @param C_PeriodControl_UU C_PeriodControl_UU */ + public void setC_PeriodControl_UU (String C_PeriodControl_UU) + { + set_Value (COLUMNNAME_C_PeriodControl_UU, C_PeriodControl_UU); + } + + /** Get C_PeriodControl_UU. + @return C_PeriodControl_UU */ + public String getC_PeriodControl_UU () + { + return (String)get_Value(COLUMNNAME_C_PeriodControl_UU); + } + + public org.compiere.model.I_C_Period getC_Period() throws RuntimeException { - return (I_C_Period)MTable.get(getCtx(), I_C_Period.Table_Name) + return (org.compiere.model.I_C_Period)MTable.get(getCtx(), org.compiere.model.I_C_Period.Table_Name) .getPO(getC_Period_ID(), get_TrxName()); } /** Set Period. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Phase.java b/org.adempiere.base/src/org/compiere/model/X_C_Phase.java index e610c2c858..7c14de0118 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Phase.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Phase.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_Phase - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Phase extends PO implements I_C_Phase, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Phase (Properties ctx, int C_Phase_ID, String trxName) @@ -101,9 +101,23 @@ public class X_C_Phase extends PO implements I_C_Phase, I_Persistent return ii.intValue(); } - public I_C_ProjectType getC_ProjectType() throws RuntimeException + /** Set C_Phase_UU. + @param C_Phase_UU C_Phase_UU */ + public void setC_Phase_UU (String C_Phase_UU) + { + set_Value (COLUMNNAME_C_Phase_UU, C_Phase_UU); + } + + /** Get C_Phase_UU. + @return C_Phase_UU */ + public String getC_Phase_UU () + { + return (String)get_Value(COLUMNNAME_C_Phase_UU); + } + + public org.compiere.model.I_C_ProjectType getC_ProjectType() throws RuntimeException { - return (I_C_ProjectType)MTable.get(getCtx(), I_C_ProjectType.Table_Name) + return (org.compiere.model.I_C_ProjectType)MTable.get(getCtx(), org.compiere.model.I_C_ProjectType.Table_Name) .getPO(getC_ProjectType_ID(), get_TrxName()); } /** Set Project Type. @@ -163,9 +177,9 @@ public class X_C_Phase extends PO implements I_C_Phase, I_Persistent return (String)get_Value(COLUMNNAME_Help); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Project.java b/org.adempiere.base/src/org/compiere/model/X_C_Project.java index 95def07885..90fe37a6b4 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Project.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Project.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_Project - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Project extends PO implements I_C_Project, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Project (Properties ctx, int C_Project_ID, String trxName) @@ -92,9 +92,9 @@ public class X_C_Project extends PO implements I_C_Project, I_Persistent return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -120,9 +120,9 @@ public class X_C_Project extends PO implements I_C_Project, I_Persistent return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -148,9 +148,9 @@ public class X_C_Project extends PO implements I_C_Project, I_Persistent return ii.intValue(); } - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException { - return (I_C_BPartner_Location)MTable.get(getCtx(), I_C_BPartner_Location.Table_Name) + return (org.compiere.model.I_C_BPartner_Location)MTable.get(getCtx(), org.compiere.model.I_C_BPartner_Location.Table_Name) .getPO(getC_BPartner_Location_ID(), get_TrxName()); } /** Set Partner Location. @@ -176,9 +176,9 @@ public class X_C_Project extends PO implements I_C_Project, I_Persistent return ii.intValue(); } - public I_C_BPartner getC_BPartnerSR() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartnerSR() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartnerSR_ID(), get_TrxName()); } /** Set BPartner (Agent). @@ -204,9 +204,9 @@ public class X_C_Project extends PO implements I_C_Project, I_Persistent return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -232,9 +232,9 @@ public class X_C_Project extends PO implements I_C_Project, I_Persistent return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -317,9 +317,9 @@ public class X_C_Project extends PO implements I_C_Project, I_Persistent return (String)get_Value(COLUMNNAME_CopyFrom); } - public I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException + public org.compiere.model.I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException { - return (I_C_PaymentTerm)MTable.get(getCtx(), I_C_PaymentTerm.Table_Name) + return (org.compiere.model.I_C_PaymentTerm)MTable.get(getCtx(), org.compiere.model.I_C_PaymentTerm.Table_Name) .getPO(getC_PaymentTerm_ID(), get_TrxName()); } /** Set Payment Term. @@ -345,9 +345,9 @@ public class X_C_Project extends PO implements I_C_Project, I_Persistent return ii.intValue(); } - public I_C_Phase getC_Phase() throws RuntimeException + public org.compiere.model.I_C_Phase getC_Phase() throws RuntimeException { - return (I_C_Phase)MTable.get(getCtx(), I_C_Phase.Table_Name) + return (org.compiere.model.I_C_Phase)MTable.get(getCtx(), org.compiere.model.I_C_Phase.Table_Name) .getPO(getC_Phase_ID(), get_TrxName()); } /** Set Standard Phase. @@ -413,6 +413,20 @@ public class X_C_Project extends PO implements I_C_Project, I_Persistent return (String)get_Value(COLUMNNAME_C_ProjectType_ID); } + /** Set C_Project_UU. + @param C_Project_UU C_Project_UU */ + public void setC_Project_UU (String C_Project_UU) + { + set_Value (COLUMNNAME_C_Project_UU, C_Project_UU); + } + + /** Get C_Project_UU. + @return C_Project_UU */ + public String getC_Project_UU () + { + return (String)get_Value(COLUMNNAME_C_Project_UU); + } + /** Set Contract Date. @param DateContract The (planned) effective date of this document. @@ -593,9 +607,9 @@ public class X_C_Project extends PO implements I_C_Project, I_Persistent return false; } - public I_M_PriceList_Version getM_PriceList_Version() throws RuntimeException + public org.compiere.model.I_M_PriceList_Version getM_PriceList_Version() throws RuntimeException { - return (I_M_PriceList_Version)MTable.get(getCtx(), I_M_PriceList_Version.Table_Name) + return (org.compiere.model.I_M_PriceList_Version)MTable.get(getCtx(), org.compiere.model.I_M_PriceList_Version.Table_Name) .getPO(getM_PriceList_Version_ID(), get_TrxName()); } /** Set Price List Version. @@ -621,9 +635,9 @@ public class X_C_Project extends PO implements I_C_Project, I_Persistent return ii.intValue(); } - public I_M_Warehouse getM_Warehouse() throws RuntimeException + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_Warehouse_ID(), get_TrxName()); } /** Set Warehouse. @@ -909,9 +923,9 @@ public class X_C_Project extends PO implements I_C_Project, I_Persistent return (String)get_Value(COLUMNNAME_ProjInvoiceRule); } - public I_AD_User getSalesRep() throws RuntimeException + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getSalesRep_ID(), get_TrxName()); } /** Set Sales Representative. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_ProjectIssue.java b/org.adempiere.base/src/org/compiere/model/X_C_ProjectIssue.java index 82ce4c512f..e3483aef75 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_ProjectIssue.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_ProjectIssue.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_ProjectIssue - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_ProjectIssue extends PO implements I_C_ProjectIssue, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_ProjectIssue (Properties ctx, int C_ProjectIssue_ID, String trxName) @@ -84,9 +84,9 @@ public class X_C_ProjectIssue extends PO implements I_C_ProjectIssue, I_Persiste return sb.toString(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -143,6 +143,20 @@ public class X_C_ProjectIssue extends PO implements I_C_ProjectIssue, I_Persiste return ii.intValue(); } + /** Set C_ProjectIssue_UU. + @param C_ProjectIssue_UU C_ProjectIssue_UU */ + public void setC_ProjectIssue_UU (String C_ProjectIssue_UU) + { + set_Value (COLUMNNAME_C_ProjectIssue_UU, C_ProjectIssue_UU); + } + + /** Get C_ProjectIssue_UU. + @return C_ProjectIssue_UU */ + public String getC_ProjectIssue_UU () + { + return (String)get_Value(COLUMNNAME_C_ProjectIssue_UU); + } + /** Set Description. @param Description Optional short description of the record @@ -208,9 +222,9 @@ public class X_C_ProjectIssue extends PO implements I_C_ProjectIssue, I_Persiste return ii.intValue(); } - public I_M_InOutLine getM_InOutLine() throws RuntimeException + public org.compiere.model.I_M_InOutLine getM_InOutLine() throws RuntimeException { - return (I_M_InOutLine)MTable.get(getCtx(), I_M_InOutLine.Table_Name) + return (org.compiere.model.I_M_InOutLine)MTable.get(getCtx(), org.compiere.model.I_M_InOutLine.Table_Name) .getPO(getM_InOutLine_ID(), get_TrxName()); } /** Set Shipment/Receipt Line. @@ -301,9 +315,9 @@ public class X_C_ProjectIssue extends PO implements I_C_ProjectIssue, I_Persiste return bd; } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -418,9 +432,9 @@ public class X_C_ProjectIssue extends PO implements I_C_ProjectIssue, I_Persiste return false; } - public I_S_TimeExpenseLine getS_TimeExpenseLine() throws RuntimeException + public org.compiere.model.I_S_TimeExpenseLine getS_TimeExpenseLine() throws RuntimeException { - return (I_S_TimeExpenseLine)MTable.get(getCtx(), I_S_TimeExpenseLine.Table_Name) + return (org.compiere.model.I_S_TimeExpenseLine)MTable.get(getCtx(), org.compiere.model.I_S_TimeExpenseLine.Table_Name) .getPO(getS_TimeExpenseLine_ID(), get_TrxName()); } /** Set Expense Line. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_ProjectIssueMA.java b/org.adempiere.base/src/org/compiere/model/X_C_ProjectIssueMA.java index a6fc20cb3c..ff86365282 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_ProjectIssueMA.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_ProjectIssueMA.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_ProjectIssueMA - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_ProjectIssueMA extends PO implements I_C_ProjectIssueMA, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_ProjectIssueMA (Properties ctx, int C_ProjectIssueMA_ID, String trxName) @@ -74,9 +74,9 @@ public class X_C_ProjectIssueMA extends PO implements I_C_ProjectIssueMA, I_Pers return sb.toString(); } - public I_C_ProjectIssue getC_ProjectIssue() throws RuntimeException + public org.compiere.model.I_C_ProjectIssue getC_ProjectIssue() throws RuntimeException { - return (I_C_ProjectIssue)MTable.get(getCtx(), I_C_ProjectIssue.Table_Name) + return (org.compiere.model.I_C_ProjectIssue)MTable.get(getCtx(), org.compiere.model.I_C_ProjectIssue.Table_Name) .getPO(getC_ProjectIssue_ID(), get_TrxName()); } /** Set Project Issue. @@ -110,6 +110,20 @@ public class X_C_ProjectIssueMA extends PO implements I_C_ProjectIssueMA, I_Pers return new KeyNamePair(get_ID(), String.valueOf(getC_ProjectIssue_ID())); } + /** Set C_ProjectIssueMA_UU. + @param C_ProjectIssueMA_UU C_ProjectIssueMA_UU */ + public void setC_ProjectIssueMA_UU (String C_ProjectIssueMA_UU) + { + set_Value (COLUMNNAME_C_ProjectIssueMA_UU, C_ProjectIssueMA_UU); + } + + /** Get C_ProjectIssueMA_UU. + @return C_ProjectIssueMA_UU */ + public String getC_ProjectIssueMA_UU () + { + return (String)get_Value(COLUMNNAME_C_ProjectIssueMA_UU); + } + public I_M_AttributeSetInstance getM_AttributeSetInstance() throws RuntimeException { return (I_M_AttributeSetInstance)MTable.get(getCtx(), I_M_AttributeSetInstance.Table_Name) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_ProjectLine.java b/org.adempiere.base/src/org/compiere/model/X_C_ProjectLine.java index 13cd5f0d3d..96e1f17d2e 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_ProjectLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_ProjectLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_ProjectLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_ProjectLine extends PO implements I_C_ProjectLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_ProjectLine (Properties ctx, int C_ProjectLine_ID, String trxName) @@ -127,9 +127,9 @@ public class X_C_ProjectLine extends PO implements I_C_ProjectLine, I_Persistent return bd; } - public I_C_Order getC_Order() throws RuntimeException + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException { - return (I_C_Order)MTable.get(getCtx(), I_C_Order.Table_Name) + return (org.compiere.model.I_C_Order)MTable.get(getCtx(), org.compiere.model.I_C_Order.Table_Name) .getPO(getC_Order_ID(), get_TrxName()); } /** Set Order. @@ -155,9 +155,9 @@ public class X_C_ProjectLine extends PO implements I_C_ProjectLine, I_Persistent return ii.intValue(); } - public I_C_Order getC_OrderPO() throws RuntimeException + public org.compiere.model.I_C_Order getC_OrderPO() throws RuntimeException { - return (I_C_Order)MTable.get(getCtx(), I_C_Order.Table_Name) + return (org.compiere.model.I_C_Order)MTable.get(getCtx(), org.compiere.model.I_C_Order.Table_Name) .getPO(getC_OrderPO_ID(), get_TrxName()); } /** Set Purchase Order. @@ -183,9 +183,9 @@ public class X_C_ProjectLine extends PO implements I_C_ProjectLine, I_Persistent return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -211,9 +211,9 @@ public class X_C_ProjectLine extends PO implements I_C_ProjectLine, I_Persistent return ii.intValue(); } - public I_C_ProjectIssue getC_ProjectIssue() throws RuntimeException + public org.compiere.model.I_C_ProjectIssue getC_ProjectIssue() throws RuntimeException { - return (I_C_ProjectIssue)MTable.get(getCtx(), I_C_ProjectIssue.Table_Name) + return (org.compiere.model.I_C_ProjectIssue)MTable.get(getCtx(), org.compiere.model.I_C_ProjectIssue.Table_Name) .getPO(getC_ProjectIssue_ID(), get_TrxName()); } /** Set Project Issue. @@ -262,9 +262,23 @@ public class X_C_ProjectLine extends PO implements I_C_ProjectLine, I_Persistent return ii.intValue(); } - public I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException + /** Set C_ProjectLine_UU. + @param C_ProjectLine_UU C_ProjectLine_UU */ + public void setC_ProjectLine_UU (String C_ProjectLine_UU) + { + set_Value (COLUMNNAME_C_ProjectLine_UU, C_ProjectLine_UU); + } + + /** Get C_ProjectLine_UU. + @return C_ProjectLine_UU */ + public String getC_ProjectLine_UU () + { + return (String)get_Value(COLUMNNAME_C_ProjectLine_UU); + } + + public org.compiere.model.I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException { - return (I_C_ProjectPhase)MTable.get(getCtx(), I_C_ProjectPhase.Table_Name) + return (org.compiere.model.I_C_ProjectPhase)MTable.get(getCtx(), org.compiere.model.I_C_ProjectPhase.Table_Name) .getPO(getC_ProjectPhase_ID(), get_TrxName()); } /** Set Project Phase. @@ -290,9 +304,9 @@ public class X_C_ProjectLine extends PO implements I_C_ProjectLine, I_Persistent return ii.intValue(); } - public I_C_ProjectTask getC_ProjectTask() throws RuntimeException + public org.compiere.model.I_C_ProjectTask getC_ProjectTask() throws RuntimeException { - return (I_C_ProjectTask)MTable.get(getCtx(), I_C_ProjectTask.Table_Name) + return (org.compiere.model.I_C_ProjectTask)MTable.get(getCtx(), org.compiere.model.I_C_ProjectTask.Table_Name) .getPO(getC_ProjectTask_ID(), get_TrxName()); } /** Set Project Task. @@ -441,9 +455,9 @@ public class X_C_ProjectLine extends PO implements I_C_ProjectLine, I_Persistent return new KeyNamePair(get_ID(), String.valueOf(getLine())); } - public I_M_Product_Category getM_Product_Category() throws RuntimeException + public org.compiere.model.I_M_Product_Category getM_Product_Category() throws RuntimeException { - return (I_M_Product_Category)MTable.get(getCtx(), I_M_Product_Category.Table_Name) + return (org.compiere.model.I_M_Product_Category)MTable.get(getCtx(), org.compiere.model.I_M_Product_Category.Table_Name) .getPO(getM_Product_Category_ID(), get_TrxName()); } /** Set Product Category. @@ -469,9 +483,9 @@ public class X_C_ProjectLine extends PO implements I_C_ProjectLine, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_ProjectPhase.java b/org.adempiere.base/src/org/compiere/model/X_C_ProjectPhase.java index 6dc15a8ef6..06ff53bf53 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_ProjectPhase.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_ProjectPhase.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_ProjectPhase - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_ProjectPhase extends PO implements I_C_ProjectPhase, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_ProjectPhase (Properties ctx, int C_ProjectPhase_ID, String trxName) @@ -103,9 +103,9 @@ public class X_C_ProjectPhase extends PO implements I_C_ProjectPhase, I_Persiste return bd; } - public I_C_Order getC_Order() throws RuntimeException + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException { - return (I_C_Order)MTable.get(getCtx(), I_C_Order.Table_Name) + return (org.compiere.model.I_C_Order)MTable.get(getCtx(), org.compiere.model.I_C_Order.Table_Name) .getPO(getC_Order_ID(), get_TrxName()); } /** Set Order. @@ -131,9 +131,9 @@ public class X_C_ProjectPhase extends PO implements I_C_ProjectPhase, I_Persiste return ii.intValue(); } - public I_C_Phase getC_Phase() throws RuntimeException + public org.compiere.model.I_C_Phase getC_Phase() throws RuntimeException { - return (I_C_Phase)MTable.get(getCtx(), I_C_Phase.Table_Name) + return (org.compiere.model.I_C_Phase)MTable.get(getCtx(), org.compiere.model.I_C_Phase.Table_Name) .getPO(getC_Phase_ID(), get_TrxName()); } /** Set Standard Phase. @@ -159,9 +159,9 @@ public class X_C_ProjectPhase extends PO implements I_C_ProjectPhase, I_Persiste return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -210,6 +210,20 @@ public class X_C_ProjectPhase extends PO implements I_C_ProjectPhase, I_Persiste return ii.intValue(); } + /** Set C_ProjectPhase_UU. + @param C_ProjectPhase_UU C_ProjectPhase_UU */ + public void setC_ProjectPhase_UU (String C_ProjectPhase_UU) + { + set_Value (COLUMNNAME_C_ProjectPhase_UU, C_ProjectPhase_UU); + } + + /** Get C_ProjectPhase_UU. + @return C_ProjectPhase_UU */ + public String getC_ProjectPhase_UU () + { + return (String)get_Value(COLUMNNAME_C_ProjectPhase_UU); + } + /** Set Description. @param Description Optional short description of the record @@ -326,9 +340,9 @@ public class X_C_ProjectPhase extends PO implements I_C_ProjectPhase, I_Persiste return false; } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_ProjectTask.java b/org.adempiere.base/src/org/compiere/model/X_C_ProjectTask.java index dc3279c788..31883e588b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_ProjectTask.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_ProjectTask.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_ProjectTask - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_ProjectTask extends PO implements I_C_ProjectTask, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_ProjectTask (Properties ctx, int C_ProjectTask_ID, String trxName) @@ -100,9 +100,9 @@ public class X_C_ProjectTask extends PO implements I_C_ProjectTask, I_Persistent return bd; } - public I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException + public org.compiere.model.I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException { - return (I_C_ProjectPhase)MTable.get(getCtx(), I_C_ProjectPhase.Table_Name) + return (org.compiere.model.I_C_ProjectPhase)MTable.get(getCtx(), org.compiere.model.I_C_ProjectPhase.Table_Name) .getPO(getC_ProjectPhase_ID(), get_TrxName()); } /** Set Project Phase. @@ -151,9 +151,23 @@ public class X_C_ProjectTask extends PO implements I_C_ProjectTask, I_Persistent return ii.intValue(); } - public I_C_Task getC_Task() throws RuntimeException + /** Set C_ProjectTask_UU. + @param C_ProjectTask_UU C_ProjectTask_UU */ + public void setC_ProjectTask_UU (String C_ProjectTask_UU) + { + set_Value (COLUMNNAME_C_ProjectTask_UU, C_ProjectTask_UU); + } + + /** Get C_ProjectTask_UU. + @return C_ProjectTask_UU */ + public String getC_ProjectTask_UU () + { + return (String)get_Value(COLUMNNAME_C_ProjectTask_UU); + } + + public org.compiere.model.I_C_Task getC_Task() throws RuntimeException { - return (I_C_Task)MTable.get(getCtx(), I_C_Task.Table_Name) + return (org.compiere.model.I_C_Task)MTable.get(getCtx(), org.compiere.model.I_C_Task.Table_Name) .getPO(getC_Task_ID(), get_TrxName()); } /** Set Standard Task. @@ -213,9 +227,9 @@ public class X_C_ProjectTask extends PO implements I_C_ProjectTask, I_Persistent return (String)get_Value(COLUMNNAME_Help); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_ProjectType.java b/org.adempiere.base/src/org/compiere/model/X_C_ProjectType.java index c4d9beec26..6f3c1d36a9 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_ProjectType.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_ProjectType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_ProjectType - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_ProjectType extends PO implements I_C_ProjectType, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_ProjectType (Properties ctx, int C_ProjectType_ID, String trxName) @@ -96,6 +96,20 @@ public class X_C_ProjectType extends PO implements I_C_ProjectType, I_Persistent return ii.intValue(); } + /** Set C_ProjectType_UU. + @param C_ProjectType_UU C_ProjectType_UU */ + public void setC_ProjectType_UU (String C_ProjectType_UU) + { + set_Value (COLUMNNAME_C_ProjectType_UU, C_ProjectType_UU); + } + + /** Get C_ProjectType_UU. + @return C_ProjectType_UU */ + public String getC_ProjectType_UU () + { + return (String)get_Value(COLUMNNAME_C_ProjectType_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Project_Acct.java b/org.adempiere.base/src/org/compiere/model/X_C_Project_Acct.java index 6d2d53b0f2..6d7b1c4bff 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Project_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Project_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for C_Project_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Project_Acct extends PO implements I_C_Project_Acct, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Project_Acct (Properties ctx, int C_Project_Acct_ID, String trxName) @@ -72,9 +72,9 @@ public class X_C_Project_Acct extends PO implements I_C_Project_Acct, I_Persiste return sb.toString(); } - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException { - return (I_C_AcctSchema)MTable.get(getCtx(), I_C_AcctSchema.Table_Name) + return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_Name) .getPO(getC_AcctSchema_ID(), get_TrxName()); } /** Set Accounting Schema. @@ -100,9 +100,23 @@ public class X_C_Project_Acct extends PO implements I_C_Project_Acct, I_Persiste return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + /** Set C_Project_Acct_UU. + @param C_Project_Acct_UU C_Project_Acct_UU */ + public void setC_Project_Acct_UU (String C_Project_Acct_UU) + { + set_Value (COLUMNNAME_C_Project_Acct_UU, C_Project_Acct_UU); + } + + /** Get C_Project_Acct_UU. + @return C_Project_Acct_UU */ + public String getC_Project_Acct_UU () + { + return (String)get_Value(COLUMNNAME_C_Project_Acct_UU); + } + + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Recurring.java b/org.adempiere.base/src/org/compiere/model/X_C_Recurring.java index bb83dc80ca..5c7fda27e7 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Recurring.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Recurring.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_Recurring - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Recurring extends PO implements I_C_Recurring, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Recurring (Properties ctx, int C_Recurring_ID, String trxName) @@ -78,9 +78,9 @@ public class X_C_Recurring extends PO implements I_C_Recurring, I_Persistent return sb.toString(); } - public I_C_Invoice getC_Invoice() throws RuntimeException + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException { - return (I_C_Invoice)MTable.get(getCtx(), I_C_Invoice.Table_Name) + return (org.compiere.model.I_C_Invoice)MTable.get(getCtx(), org.compiere.model.I_C_Invoice.Table_Name) .getPO(getC_Invoice_ID(), get_TrxName()); } /** Set Invoice. @@ -106,9 +106,9 @@ public class X_C_Recurring extends PO implements I_C_Recurring, I_Persistent return ii.intValue(); } - public I_C_Order getC_Order() throws RuntimeException + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException { - return (I_C_Order)MTable.get(getCtx(), I_C_Order.Table_Name) + return (org.compiere.model.I_C_Order)MTable.get(getCtx(), org.compiere.model.I_C_Order.Table_Name) .getPO(getC_Order_ID(), get_TrxName()); } /** Set Order. @@ -134,9 +134,9 @@ public class X_C_Recurring extends PO implements I_C_Recurring, I_Persistent return ii.intValue(); } - public I_C_Payment getC_Payment() throws RuntimeException + public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException { - return (I_C_Payment)MTable.get(getCtx(), I_C_Payment.Table_Name) + return (org.compiere.model.I_C_Payment)MTable.get(getCtx(), org.compiere.model.I_C_Payment.Table_Name) .getPO(getC_Payment_ID(), get_TrxName()); } /** Set Payment. @@ -162,9 +162,9 @@ public class X_C_Recurring extends PO implements I_C_Recurring, I_Persistent return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -213,6 +213,20 @@ public class X_C_Recurring extends PO implements I_C_Recurring, I_Persistent return ii.intValue(); } + /** Set C_Recurring_UU. + @param C_Recurring_UU C_Recurring_UU */ + public void setC_Recurring_UU (String C_Recurring_UU) + { + set_Value (COLUMNNAME_C_Recurring_UU, C_Recurring_UU); + } + + /** Get C_Recurring_UU. + @return C_Recurring_UU */ + public String getC_Recurring_UU () + { + return (String)get_Value(COLUMNNAME_C_Recurring_UU); + } + /** Set Date last run. @param DateLastRun Date the process was last run. @@ -312,9 +326,9 @@ public class X_C_Recurring extends PO implements I_C_Recurring, I_Persistent return (String)get_Value(COLUMNNAME_FrequencyType); } - public I_GL_JournalBatch getGL_JournalBatch() throws RuntimeException + public org.compiere.model.I_GL_JournalBatch getGL_JournalBatch() throws RuntimeException { - return (I_GL_JournalBatch)MTable.get(getCtx(), I_GL_JournalBatch.Table_Name) + return (org.compiere.model.I_GL_JournalBatch)MTable.get(getCtx(), org.compiere.model.I_GL_JournalBatch.Table_Name) .getPO(getGL_JournalBatch_ID(), get_TrxName()); } /** Set Journal Batch. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Recurring_Run.java b/org.adempiere.base/src/org/compiere/model/X_C_Recurring_Run.java index 635d095455..ccb86efab5 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Recurring_Run.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Recurring_Run.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.sql.Timestamp; import java.util.Properties; /** Generated Model for C_Recurring_Run - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Recurring_Run extends PO implements I_C_Recurring_Run, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Recurring_Run (Properties ctx, int C_Recurring_Run_ID, String trxName) @@ -71,9 +71,9 @@ public class X_C_Recurring_Run extends PO implements I_C_Recurring_Run, I_Persis return sb.toString(); } - public I_C_Invoice getC_Invoice() throws RuntimeException + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException { - return (I_C_Invoice)MTable.get(getCtx(), I_C_Invoice.Table_Name) + return (org.compiere.model.I_C_Invoice)MTable.get(getCtx(), org.compiere.model.I_C_Invoice.Table_Name) .getPO(getC_Invoice_ID(), get_TrxName()); } /** Set Invoice. @@ -99,9 +99,9 @@ public class X_C_Recurring_Run extends PO implements I_C_Recurring_Run, I_Persis return ii.intValue(); } - public I_C_Order getC_Order() throws RuntimeException + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException { - return (I_C_Order)MTable.get(getCtx(), I_C_Order.Table_Name) + return (org.compiere.model.I_C_Order)MTable.get(getCtx(), org.compiere.model.I_C_Order.Table_Name) .getPO(getC_Order_ID(), get_TrxName()); } /** Set Order. @@ -127,9 +127,9 @@ public class X_C_Recurring_Run extends PO implements I_C_Recurring_Run, I_Persis return ii.intValue(); } - public I_C_Payment getC_Payment() throws RuntimeException + public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException { - return (I_C_Payment)MTable.get(getCtx(), I_C_Payment.Table_Name) + return (org.compiere.model.I_C_Payment)MTable.get(getCtx(), org.compiere.model.I_C_Payment.Table_Name) .getPO(getC_Payment_ID(), get_TrxName()); } /** Set Payment. @@ -155,9 +155,9 @@ public class X_C_Recurring_Run extends PO implements I_C_Recurring_Run, I_Persis return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -183,9 +183,9 @@ public class X_C_Recurring_Run extends PO implements I_C_Recurring_Run, I_Persis return ii.intValue(); } - public I_C_Recurring getC_Recurring() throws RuntimeException + public org.compiere.model.I_C_Recurring getC_Recurring() throws RuntimeException { - return (I_C_Recurring)MTable.get(getCtx(), I_C_Recurring.Table_Name) + return (org.compiere.model.I_C_Recurring)MTable.get(getCtx(), org.compiere.model.I_C_Recurring.Table_Name) .getPO(getC_Recurring_ID(), get_TrxName()); } /** Set Recurring. @@ -234,6 +234,20 @@ public class X_C_Recurring_Run extends PO implements I_C_Recurring_Run, I_Persis return ii.intValue(); } + /** Set C_Recurring_Run_UU. + @param C_Recurring_Run_UU C_Recurring_Run_UU */ + public void setC_Recurring_Run_UU (String C_Recurring_Run_UU) + { + set_Value (COLUMNNAME_C_Recurring_Run_UU, C_Recurring_Run_UU); + } + + /** Get C_Recurring_Run_UU. + @return C_Recurring_Run_UU */ + public String getC_Recurring_Run_UU () + { + return (String)get_Value(COLUMNNAME_C_Recurring_Run_UU); + } + /** Set Document Date. @param DateDoc Date of the Document @@ -251,9 +265,9 @@ public class X_C_Recurring_Run extends PO implements I_C_Recurring_Run, I_Persis return (Timestamp)get_Value(COLUMNNAME_DateDoc); } - public I_GL_JournalBatch getGL_JournalBatch() throws RuntimeException + public org.compiere.model.I_GL_JournalBatch getGL_JournalBatch() throws RuntimeException { - return (I_GL_JournalBatch)MTable.get(getCtx(), I_GL_JournalBatch.Table_Name) + return (org.compiere.model.I_GL_JournalBatch)MTable.get(getCtx(), org.compiere.model.I_GL_JournalBatch.Table_Name) .getPO(getGL_JournalBatch_ID(), get_TrxName()); } /** Set Journal Batch. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Region.java b/org.adempiere.base/src/org/compiere/model/X_C_Region.java index afeaa6e6e6..586c87267c 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Region.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Region.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_Region - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Region extends PO implements I_C_Region, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Region (Properties ctx, int C_Region_ID, String trxName) @@ -72,9 +72,9 @@ public class X_C_Region extends PO implements I_C_Region, I_Persistent return sb.toString(); } - public I_C_Country getC_Country() throws RuntimeException + public org.compiere.model.I_C_Country getC_Country() throws RuntimeException { - return (I_C_Country)MTable.get(getCtx(), I_C_Country.Table_Name) + return (org.compiere.model.I_C_Country)MTable.get(getCtx(), org.compiere.model.I_C_Country.Table_Name) .getPO(getC_Country_ID(), get_TrxName()); } /** Set Country. @@ -123,6 +123,20 @@ public class X_C_Region extends PO implements I_C_Region, I_Persistent return ii.intValue(); } + /** Set C_Region_UU. + @param C_Region_UU C_Region_UU */ + public void setC_Region_UU (String C_Region_UU) + { + set_Value (COLUMNNAME_C_Region_UU, C_Region_UU); + } + + /** Get C_Region_UU. + @return C_Region_UU */ + public String getC_Region_UU () + { + return (String)get_Value(COLUMNNAME_C_Region_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Remuneration.java b/org.adempiere.base/src/org/compiere/model/X_C_Remuneration.java index 7143b26c1c..df1f92830a 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Remuneration.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Remuneration.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_Remuneration - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Remuneration extends PO implements I_C_Remuneration, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Remuneration (Properties ctx, int C_Remuneration_ID, String trxName) @@ -102,6 +102,20 @@ public class X_C_Remuneration extends PO implements I_C_Remuneration, I_Persiste return ii.intValue(); } + /** Set C_Remuneration_UU. + @param C_Remuneration_UU C_Remuneration_UU */ + public void setC_Remuneration_UU (String C_Remuneration_UU) + { + set_Value (COLUMNNAME_C_Remuneration_UU, C_Remuneration_UU); + } + + /** Get C_Remuneration_UU. + @return C_Remuneration_UU */ + public String getC_Remuneration_UU () + { + return (String)get_Value(COLUMNNAME_C_Remuneration_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_RevenueRecognition.java b/org.adempiere.base/src/org/compiere/model/X_C_RevenueRecognition.java index f922cf4fc0..7d06546aa9 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_RevenueRecognition.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_RevenueRecognition.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_RevenueRecognition - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_RevenueRecognition extends PO implements I_C_RevenueRecognition, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_RevenueRecognition (Properties ctx, int C_RevenueRecognition_ID, String trxName) @@ -96,6 +96,20 @@ public class X_C_RevenueRecognition extends PO implements I_C_RevenueRecognition return ii.intValue(); } + /** Set C_RevenueRecognition_UU. + @param C_RevenueRecognition_UU C_RevenueRecognition_UU */ + public void setC_RevenueRecognition_UU (String C_RevenueRecognition_UU) + { + set_Value (COLUMNNAME_C_RevenueRecognition_UU, C_RevenueRecognition_UU); + } + + /** Get C_RevenueRecognition_UU. + @return C_RevenueRecognition_UU */ + public String getC_RevenueRecognition_UU () + { + return (String)get_Value(COLUMNNAME_C_RevenueRecognition_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_RevenueRecognition_Plan.java b/org.adempiere.base/src/org/compiere/model/X_C_RevenueRecognition_Plan.java index 2c4483099e..1827c9f357 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_RevenueRecognition_Plan.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_RevenueRecognition_Plan.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_RevenueRecognition_Plan - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_RevenueRecognition_Plan extends PO implements I_C_RevenueRecognition_Plan, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_RevenueRecognition_Plan (Properties ctx, int C_RevenueRecognition_Plan_ID, String trxName) @@ -80,9 +80,9 @@ public class X_C_RevenueRecognition_Plan extends PO implements I_C_RevenueRecogn return sb.toString(); } - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException { - return (I_C_AcctSchema)MTable.get(getCtx(), I_C_AcctSchema.Table_Name) + return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_Name) .getPO(getC_AcctSchema_ID(), get_TrxName()); } /** Set Accounting Schema. @@ -108,9 +108,9 @@ public class X_C_RevenueRecognition_Plan extends PO implements I_C_RevenueRecogn return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -136,9 +136,9 @@ public class X_C_RevenueRecognition_Plan extends PO implements I_C_RevenueRecogn return ii.intValue(); } - public I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException + public org.compiere.model.I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException { - return (I_C_InvoiceLine)MTable.get(getCtx(), I_C_InvoiceLine.Table_Name) + return (org.compiere.model.I_C_InvoiceLine)MTable.get(getCtx(), org.compiere.model.I_C_InvoiceLine.Table_Name) .getPO(getC_InvoiceLine_ID(), get_TrxName()); } /** Set Invoice Line. @@ -164,9 +164,9 @@ public class X_C_RevenueRecognition_Plan extends PO implements I_C_RevenueRecogn return ii.intValue(); } - public I_C_RevenueRecognition getC_RevenueRecognition() throws RuntimeException + public org.compiere.model.I_C_RevenueRecognition getC_RevenueRecognition() throws RuntimeException { - return (I_C_RevenueRecognition)MTable.get(getCtx(), I_C_RevenueRecognition.Table_Name) + return (org.compiere.model.I_C_RevenueRecognition)MTable.get(getCtx(), org.compiere.model.I_C_RevenueRecognition.Table_Name) .getPO(getC_RevenueRecognition_ID(), get_TrxName()); } /** Set Revenue Recognition. @@ -223,6 +223,20 @@ public class X_C_RevenueRecognition_Plan extends PO implements I_C_RevenueRecogn return ii.intValue(); } + /** Set C_RevenueRecognition_Plan_UU. + @param C_RevenueRecognition_Plan_UU C_RevenueRecognition_Plan_UU */ + public void setC_RevenueRecognition_Plan_UU (String C_RevenueRecognition_Plan_UU) + { + set_Value (COLUMNNAME_C_RevenueRecognition_Plan_UU, C_RevenueRecognition_Plan_UU); + } + + /** Get C_RevenueRecognition_Plan_UU. + @return C_RevenueRecognition_Plan_UU */ + public String getC_RevenueRecognition_Plan_UU () + { + return (String)get_Value(COLUMNNAME_C_RevenueRecognition_Plan_UU); + } + public I_C_ValidCombination getP_Revenue_A() throws RuntimeException { return (I_C_ValidCombination)MTable.get(getCtx(), I_C_ValidCombination.Table_Name) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_RevenueRecognition_Run.java b/org.adempiere.base/src/org/compiere/model/X_C_RevenueRecognition_Run.java index 6b826c3926..7bef727414 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_RevenueRecognition_Run.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_RevenueRecognition_Run.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_RevenueRecognition_Run - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_RevenueRecognition_Run extends PO implements I_C_RevenueRecognition_Run, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_RevenueRecognition_Run (Properties ctx, int C_RevenueRecognition_Run_ID, String trxName) @@ -75,9 +75,9 @@ public class X_C_RevenueRecognition_Run extends PO implements I_C_RevenueRecogni return sb.toString(); } - public I_C_RevenueRecognition_Plan getC_RevenueRecognition_Plan() throws RuntimeException + public org.compiere.model.I_C_RevenueRecognition_Plan getC_RevenueRecognition_Plan() throws RuntimeException { - return (I_C_RevenueRecognition_Plan)MTable.get(getCtx(), I_C_RevenueRecognition_Plan.Table_Name) + return (org.compiere.model.I_C_RevenueRecognition_Plan)MTable.get(getCtx(), org.compiere.model.I_C_RevenueRecognition_Plan.Table_Name) .getPO(getC_RevenueRecognition_Plan_ID(), get_TrxName()); } /** Set Revenue Recognition Plan. @@ -134,9 +134,23 @@ public class X_C_RevenueRecognition_Run extends PO implements I_C_RevenueRecogni return ii.intValue(); } - public I_GL_Journal getGL_Journal() throws RuntimeException + /** Set C_RevenueRecognition_Run_UU. + @param C_RevenueRecognition_Run_UU C_RevenueRecognition_Run_UU */ + public void setC_RevenueRecognition_Run_UU (String C_RevenueRecognition_Run_UU) + { + set_Value (COLUMNNAME_C_RevenueRecognition_Run_UU, C_RevenueRecognition_Run_UU); + } + + /** Get C_RevenueRecognition_Run_UU. + @return C_RevenueRecognition_Run_UU */ + public String getC_RevenueRecognition_Run_UU () + { + return (String)get_Value(COLUMNNAME_C_RevenueRecognition_Run_UU); + } + + public org.compiere.model.I_GL_Journal getGL_Journal() throws RuntimeException { - return (I_GL_Journal)MTable.get(getCtx(), I_GL_Journal.Table_Name) + return (org.compiere.model.I_GL_Journal)MTable.get(getCtx(), org.compiere.model.I_GL_Journal.Table_Name) .getPO(getGL_Journal_ID(), get_TrxName()); } /** Set Journal. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_RfQ.java b/org.adempiere.base/src/org/compiere/model/X_C_RfQ.java index 14921286f2..e02be5409b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_RfQ.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_RfQ.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_RfQ - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_RfQ extends PO implements I_C_RfQ, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_RfQ (Properties ctx, int C_RfQ_ID, String trxName) @@ -90,9 +90,9 @@ public class X_C_RfQ extends PO implements I_C_RfQ, I_Persistent return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -118,9 +118,9 @@ public class X_C_RfQ extends PO implements I_C_RfQ, I_Persistent return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -146,9 +146,9 @@ public class X_C_RfQ extends PO implements I_C_RfQ, I_Persistent return ii.intValue(); } - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException { - return (I_C_BPartner_Location)MTable.get(getCtx(), I_C_BPartner_Location.Table_Name) + return (org.compiere.model.I_C_BPartner_Location)MTable.get(getCtx(), org.compiere.model.I_C_BPartner_Location.Table_Name) .getPO(getC_BPartner_Location_ID(), get_TrxName()); } /** Set Partner Location. @@ -174,9 +174,9 @@ public class X_C_RfQ extends PO implements I_C_RfQ, I_Persistent return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -216,9 +216,9 @@ public class X_C_RfQ extends PO implements I_C_RfQ, I_Persistent return (String)get_Value(COLUMNNAME_CopyLines); } - public I_C_Order getC_Order() throws RuntimeException + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException { - return (I_C_Order)MTable.get(getCtx(), I_C_Order.Table_Name) + return (org.compiere.model.I_C_Order)MTable.get(getCtx(), org.compiere.model.I_C_Order.Table_Name) .getPO(getC_Order_ID(), get_TrxName()); } /** Set Order. @@ -298,9 +298,9 @@ public class X_C_RfQ extends PO implements I_C_RfQ, I_Persistent return ii.intValue(); } - public I_C_RfQ_Topic getC_RfQ_Topic() throws RuntimeException + public org.compiere.model.I_C_RfQ_Topic getC_RfQ_Topic() throws RuntimeException { - return (I_C_RfQ_Topic)MTable.get(getCtx(), I_C_RfQ_Topic.Table_Name) + return (org.compiere.model.I_C_RfQ_Topic)MTable.get(getCtx(), org.compiere.model.I_C_RfQ_Topic.Table_Name) .getPO(getC_RfQ_Topic_ID(), get_TrxName()); } /** Set RfQ Topic. @@ -326,6 +326,20 @@ public class X_C_RfQ extends PO implements I_C_RfQ, I_Persistent return ii.intValue(); } + /** Set C_RfQ_UU. + @param C_RfQ_UU C_RfQ_UU */ + public void setC_RfQ_UU (String C_RfQ_UU) + { + set_Value (COLUMNNAME_C_RfQ_UU, C_RfQ_UU); + } + + /** Get C_RfQ_UU. + @return C_RfQ_UU */ + public String getC_RfQ_UU () + { + return (String)get_Value(COLUMNNAME_C_RfQ_UU); + } + /** Set Response Date. @param DateResponse Date of the Response @@ -712,9 +726,9 @@ public class X_C_RfQ extends PO implements I_C_RfQ, I_Persistent return (String)get_Value(COLUMNNAME_RankRfQ); } - public I_AD_User getSalesRep() throws RuntimeException + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getSalesRep_ID(), get_TrxName()); } /** Set Sales Representative. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_RfQLine.java b/org.adempiere.base/src/org/compiere/model/X_C_RfQLine.java index 23f7a17124..a9cc9c3629 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_RfQLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_RfQLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_RfQLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_RfQLine extends PO implements I_C_RfQLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_RfQLine (Properties ctx, int C_RfQLine_ID, String trxName) @@ -75,9 +75,9 @@ public class X_C_RfQLine extends PO implements I_C_RfQLine, I_Persistent return sb.toString(); } - public I_C_RfQ getC_RfQ() throws RuntimeException + public org.compiere.model.I_C_RfQ getC_RfQ() throws RuntimeException { - return (I_C_RfQ)MTable.get(getCtx(), I_C_RfQ.Table_Name) + return (org.compiere.model.I_C_RfQ)MTable.get(getCtx(), org.compiere.model.I_C_RfQ.Table_Name) .getPO(getC_RfQ_ID(), get_TrxName()); } /** Set RfQ. @@ -134,6 +134,20 @@ public class X_C_RfQLine extends PO implements I_C_RfQLine, I_Persistent return ii.intValue(); } + /** Set C_RfQLine_UU. + @param C_RfQLine_UU C_RfQLine_UU */ + public void setC_RfQLine_UU (String C_RfQLine_UU) + { + set_Value (COLUMNNAME_C_RfQLine_UU, C_RfQLine_UU); + } + + /** Get C_RfQLine_UU. + @return C_RfQLine_UU */ + public String getC_RfQLine_UU () + { + return (String)get_Value(COLUMNNAME_C_RfQLine_UU); + } + /** Set Work Complete. @param DateWorkComplete Date when work is (planned to be) complete @@ -270,9 +284,9 @@ public class X_C_RfQLine extends PO implements I_C_RfQLine, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_RfQLineQty.java b/org.adempiere.base/src/org/compiere/model/X_C_RfQLineQty.java index a19611015f..9b0c5b1e0c 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_RfQLineQty.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_RfQLineQty.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_RfQLineQty - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_RfQLineQty extends PO implements I_C_RfQLineQty, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_RfQLineQty (Properties ctx, int C_RfQLineQty_ID, String trxName) @@ -121,9 +121,9 @@ public class X_C_RfQLineQty extends PO implements I_C_RfQLineQty, I_Persistent return bd; } - public I_C_RfQLine getC_RfQLine() throws RuntimeException + public org.compiere.model.I_C_RfQLine getC_RfQLine() throws RuntimeException { - return (I_C_RfQLine)MTable.get(getCtx(), I_C_RfQLine.Table_Name) + return (org.compiere.model.I_C_RfQLine)MTable.get(getCtx(), org.compiere.model.I_C_RfQLine.Table_Name) .getPO(getC_RfQLine_ID(), get_TrxName()); } /** Set RfQ Line. @@ -172,9 +172,23 @@ public class X_C_RfQLineQty extends PO implements I_C_RfQLineQty, I_Persistent return ii.intValue(); } - public I_C_UOM getC_UOM() throws RuntimeException + /** Set C_RfQLineQty_UU. + @param C_RfQLineQty_UU C_RfQLineQty_UU */ + public void setC_RfQLineQty_UU (String C_RfQLineQty_UU) + { + set_Value (COLUMNNAME_C_RfQLineQty_UU, C_RfQLineQty_UU); + } + + /** Get C_RfQLineQty_UU. + @return C_RfQLineQty_UU */ + public String getC_RfQLineQty_UU () + { + return (String)get_Value(COLUMNNAME_C_RfQLineQty_UU); + } + + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_ID(), get_TrxName()); } /** Set UOM. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_RfQResponse.java b/org.adempiere.base/src/org/compiere/model/X_C_RfQResponse.java index 1d66836e30..04cac0e2c1 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_RfQResponse.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_RfQResponse.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_RfQResponse - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_RfQResponse extends PO implements I_C_RfQResponse, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_RfQResponse (Properties ctx, int C_RfQResponse_ID, String trxName) @@ -84,9 +84,9 @@ public class X_C_RfQResponse extends PO implements I_C_RfQResponse, I_Persistent return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -112,9 +112,9 @@ public class X_C_RfQResponse extends PO implements I_C_RfQResponse, I_Persistent return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -140,9 +140,9 @@ public class X_C_RfQResponse extends PO implements I_C_RfQResponse, I_Persistent return ii.intValue(); } - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException { - return (I_C_BPartner_Location)MTable.get(getCtx(), I_C_BPartner_Location.Table_Name) + return (org.compiere.model.I_C_BPartner_Location)MTable.get(getCtx(), org.compiere.model.I_C_BPartner_Location.Table_Name) .getPO(getC_BPartner_Location_ID(), get_TrxName()); } /** Set Partner Location. @@ -168,9 +168,9 @@ public class X_C_RfQResponse extends PO implements I_C_RfQResponse, I_Persistent return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -210,9 +210,9 @@ public class X_C_RfQResponse extends PO implements I_C_RfQResponse, I_Persistent return (String)get_Value(COLUMNNAME_CheckComplete); } - public I_C_Order getC_Order() throws RuntimeException + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException { - return (I_C_Order)MTable.get(getCtx(), I_C_Order.Table_Name) + return (org.compiere.model.I_C_Order)MTable.get(getCtx(), org.compiere.model.I_C_Order.Table_Name) .getPO(getC_Order_ID(), get_TrxName()); } /** Set Order. @@ -238,9 +238,9 @@ public class X_C_RfQResponse extends PO implements I_C_RfQResponse, I_Persistent return ii.intValue(); } - public I_C_RfQ getC_RfQ() throws RuntimeException + public org.compiere.model.I_C_RfQ getC_RfQ() throws RuntimeException { - return (I_C_RfQ)MTable.get(getCtx(), I_C_RfQ.Table_Name) + return (org.compiere.model.I_C_RfQ)MTable.get(getCtx(), org.compiere.model.I_C_RfQ.Table_Name) .getPO(getC_RfQ_ID(), get_TrxName()); } /** Set RfQ. @@ -289,6 +289,20 @@ public class X_C_RfQResponse extends PO implements I_C_RfQResponse, I_Persistent return ii.intValue(); } + /** Set C_RfQResponse_UU. + @param C_RfQResponse_UU C_RfQResponse_UU */ + public void setC_RfQResponse_UU (String C_RfQResponse_UU) + { + set_Value (COLUMNNAME_C_RfQResponse_UU, C_RfQResponse_UU); + } + + /** Get C_RfQResponse_UU. + @return C_RfQResponse_UU */ + public String getC_RfQResponse_UU () + { + return (String)get_Value(COLUMNNAME_C_RfQResponse_UU); + } + /** Set Invited. @param DateInvited Date when (last) invitation was sent diff --git a/org.adempiere.base/src/org/compiere/model/X_C_RfQResponseLine.java b/org.adempiere.base/src/org/compiere/model/X_C_RfQResponseLine.java index fb1be45c90..b5011eacf9 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_RfQResponseLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_RfQResponseLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.sql.Timestamp; import java.util.Properties; /** Generated Model for C_RfQResponseLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_RfQResponseLine extends PO implements I_C_RfQResponseLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_RfQResponseLine (Properties ctx, int C_RfQResponseLine_ID, String trxName) @@ -74,9 +74,9 @@ public class X_C_RfQResponseLine extends PO implements I_C_RfQResponseLine, I_Pe return sb.toString(); } - public I_C_RfQLine getC_RfQLine() throws RuntimeException + public org.compiere.model.I_C_RfQLine getC_RfQLine() throws RuntimeException { - return (I_C_RfQLine)MTable.get(getCtx(), I_C_RfQLine.Table_Name) + return (org.compiere.model.I_C_RfQLine)MTable.get(getCtx(), org.compiere.model.I_C_RfQLine.Table_Name) .getPO(getC_RfQLine_ID(), get_TrxName()); } /** Set RfQ Line. @@ -102,9 +102,9 @@ public class X_C_RfQResponseLine extends PO implements I_C_RfQResponseLine, I_Pe return ii.intValue(); } - public I_C_RfQResponse getC_RfQResponse() throws RuntimeException + public org.compiere.model.I_C_RfQResponse getC_RfQResponse() throws RuntimeException { - return (I_C_RfQResponse)MTable.get(getCtx(), I_C_RfQResponse.Table_Name) + return (org.compiere.model.I_C_RfQResponse)MTable.get(getCtx(), org.compiere.model.I_C_RfQResponse.Table_Name) .getPO(getC_RfQResponse_ID(), get_TrxName()); } /** Set RfQ Response. @@ -153,6 +153,20 @@ public class X_C_RfQResponseLine extends PO implements I_C_RfQResponseLine, I_Pe return ii.intValue(); } + /** Set C_RfQResponseLine_UU. + @param C_RfQResponseLine_UU C_RfQResponseLine_UU */ + public void setC_RfQResponseLine_UU (String C_RfQResponseLine_UU) + { + set_Value (COLUMNNAME_C_RfQResponseLine_UU, C_RfQResponseLine_UU); + } + + /** Get C_RfQResponseLine_UU. + @return C_RfQResponseLine_UU */ + public String getC_RfQResponseLine_UU () + { + return (String)get_Value(COLUMNNAME_C_RfQResponseLine_UU); + } + /** Set Work Complete. @param DateWorkComplete Date when work is (planned to be) complete diff --git a/org.adempiere.base/src/org/compiere/model/X_C_RfQResponseLineQty.java b/org.adempiere.base/src/org/compiere/model/X_C_RfQResponseLineQty.java index 3afb9bb7f9..6c4ee1a434 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_RfQResponseLineQty.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_RfQResponseLineQty.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_RfQResponseLineQty - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_RfQResponseLineQty extends PO implements I_C_RfQResponseLineQty, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_RfQResponseLineQty (Properties ctx, int C_RfQResponseLineQty_ID, String trxName) @@ -75,9 +75,9 @@ public class X_C_RfQResponseLineQty extends PO implements I_C_RfQResponseLineQty return sb.toString(); } - public I_C_RfQLineQty getC_RfQLineQty() throws RuntimeException + public org.compiere.model.I_C_RfQLineQty getC_RfQLineQty() throws RuntimeException { - return (I_C_RfQLineQty)MTable.get(getCtx(), I_C_RfQLineQty.Table_Name) + return (org.compiere.model.I_C_RfQLineQty)MTable.get(getCtx(), org.compiere.model.I_C_RfQLineQty.Table_Name) .getPO(getC_RfQLineQty_ID(), get_TrxName()); } /** Set RfQ Line Quantity. @@ -103,9 +103,9 @@ public class X_C_RfQResponseLineQty extends PO implements I_C_RfQResponseLineQty return ii.intValue(); } - public I_C_RfQResponseLine getC_RfQResponseLine() throws RuntimeException + public org.compiere.model.I_C_RfQResponseLine getC_RfQResponseLine() throws RuntimeException { - return (I_C_RfQResponseLine)MTable.get(getCtx(), I_C_RfQResponseLine.Table_Name) + return (org.compiere.model.I_C_RfQResponseLine)MTable.get(getCtx(), org.compiere.model.I_C_RfQResponseLine.Table_Name) .getPO(getC_RfQResponseLine_ID(), get_TrxName()); } /** Set RfQ Response Line. @@ -162,6 +162,20 @@ public class X_C_RfQResponseLineQty extends PO implements I_C_RfQResponseLineQty return ii.intValue(); } + /** Set C_RfQResponseLineQty_UU. + @param C_RfQResponseLineQty_UU C_RfQResponseLineQty_UU */ + public void setC_RfQResponseLineQty_UU (String C_RfQResponseLineQty_UU) + { + set_Value (COLUMNNAME_C_RfQResponseLineQty_UU, C_RfQResponseLineQty_UU); + } + + /** Get C_RfQResponseLineQty_UU. + @return C_RfQResponseLineQty_UU */ + public String getC_RfQResponseLineQty_UU () + { + return (String)get_Value(COLUMNNAME_C_RfQResponseLineQty_UU); + } + /** Set Discount %. @param Discount Discount in percent diff --git a/org.adempiere.base/src/org/compiere/model/X_C_RfQ_Topic.java b/org.adempiere.base/src/org/compiere/model/X_C_RfQ_Topic.java index 9be493d715..f136f2dcba 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_RfQ_Topic.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_RfQ_Topic.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_RfQ_Topic - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_RfQ_Topic extends PO implements I_C_RfQ_Topic, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_RfQ_Topic (Properties ctx, int C_RfQ_Topic_ID, String trxName) @@ -72,9 +72,9 @@ public class X_C_RfQ_Topic extends PO implements I_C_RfQ_Topic, I_Persistent return sb.toString(); } - public I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException + public org.compiere.model.I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException { - return (I_AD_PrintFormat)MTable.get(getCtx(), I_AD_PrintFormat.Table_Name) + return (org.compiere.model.I_AD_PrintFormat)MTable.get(getCtx(), org.compiere.model.I_AD_PrintFormat.Table_Name) .getPO(getAD_PrintFormat_ID(), get_TrxName()); } /** Set Print Format. @@ -123,6 +123,20 @@ public class X_C_RfQ_Topic extends PO implements I_C_RfQ_Topic, I_Persistent return ii.intValue(); } + /** Set C_RfQ_Topic_UU. + @param C_RfQ_Topic_UU C_RfQ_Topic_UU */ + public void setC_RfQ_Topic_UU (String C_RfQ_Topic_UU) + { + set_Value (COLUMNNAME_C_RfQ_Topic_UU, C_RfQ_Topic_UU); + } + + /** Get C_RfQ_Topic_UU. + @return C_RfQ_Topic_UU */ + public String getC_RfQ_Topic_UU () + { + return (String)get_Value(COLUMNNAME_C_RfQ_Topic_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_RfQ_TopicSubscriber.java b/org.adempiere.base/src/org/compiere/model/X_C_RfQ_TopicSubscriber.java index e14ed9c223..6df2b3d826 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_RfQ_TopicSubscriber.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_RfQ_TopicSubscriber.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_RfQ_TopicSubscriber - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_RfQ_TopicSubscriber extends PO implements I_C_RfQ_TopicSubscriber, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_RfQ_TopicSubscriber (Properties ctx, int C_RfQ_TopicSubscriber_ID, String trxName) @@ -74,9 +74,9 @@ public class X_C_RfQ_TopicSubscriber extends PO implements I_C_RfQ_TopicSubscrib return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -102,9 +102,9 @@ public class X_C_RfQ_TopicSubscriber extends PO implements I_C_RfQ_TopicSubscrib return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -130,9 +130,9 @@ public class X_C_RfQ_TopicSubscriber extends PO implements I_C_RfQ_TopicSubscrib return ii.intValue(); } - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException { - return (I_C_BPartner_Location)MTable.get(getCtx(), I_C_BPartner_Location.Table_Name) + return (org.compiere.model.I_C_BPartner_Location)MTable.get(getCtx(), org.compiere.model.I_C_BPartner_Location.Table_Name) .getPO(getC_BPartner_Location_ID(), get_TrxName()); } /** Set Partner Location. @@ -158,9 +158,9 @@ public class X_C_RfQ_TopicSubscriber extends PO implements I_C_RfQ_TopicSubscrib return ii.intValue(); } - public I_C_RfQ_Topic getC_RfQ_Topic() throws RuntimeException + public org.compiere.model.I_C_RfQ_Topic getC_RfQ_Topic() throws RuntimeException { - return (I_C_RfQ_Topic)MTable.get(getCtx(), I_C_RfQ_Topic.Table_Name) + return (org.compiere.model.I_C_RfQ_Topic)MTable.get(getCtx(), org.compiere.model.I_C_RfQ_Topic.Table_Name) .getPO(getC_RfQ_Topic_ID(), get_TrxName()); } /** Set RfQ Topic. @@ -217,6 +217,20 @@ public class X_C_RfQ_TopicSubscriber extends PO implements I_C_RfQ_TopicSubscrib return ii.intValue(); } + /** Set C_RfQ_TopicSubscriber_UU. + @param C_RfQ_TopicSubscriber_UU C_RfQ_TopicSubscriber_UU */ + public void setC_RfQ_TopicSubscriber_UU (String C_RfQ_TopicSubscriber_UU) + { + set_Value (COLUMNNAME_C_RfQ_TopicSubscriber_UU, C_RfQ_TopicSubscriber_UU); + } + + /** Get C_RfQ_TopicSubscriber_UU. + @return C_RfQ_TopicSubscriber_UU */ + public String getC_RfQ_TopicSubscriber_UU () + { + return (String)get_Value(COLUMNNAME_C_RfQ_TopicSubscriber_UU); + } + /** Set Opt-out Date. @param OptOutDate Date the contact opted out diff --git a/org.adempiere.base/src/org/compiere/model/X_C_RfQ_TopicSubscriberOnly.java b/org.adempiere.base/src/org/compiere/model/X_C_RfQ_TopicSubscriberOnly.java index b502041ee9..ae37d55e5b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_RfQ_TopicSubscriberOnly.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_RfQ_TopicSubscriberOnly.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_RfQ_TopicSubscriberOnly - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_RfQ_TopicSubscriberOnly extends PO implements I_C_RfQ_TopicSubscriberOnly, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_RfQ_TopicSubscriberOnly (Properties ctx, int C_RfQ_TopicSubscriberOnly_ID, String trxName) @@ -71,9 +71,9 @@ public class X_C_RfQ_TopicSubscriberOnly extends PO implements I_C_RfQ_TopicSubs return sb.toString(); } - public I_C_RfQ_TopicSubscriber getC_RfQ_TopicSubscriber() throws RuntimeException + public org.compiere.model.I_C_RfQ_TopicSubscriber getC_RfQ_TopicSubscriber() throws RuntimeException { - return (I_C_RfQ_TopicSubscriber)MTable.get(getCtx(), I_C_RfQ_TopicSubscriber.Table_Name) + return (org.compiere.model.I_C_RfQ_TopicSubscriber)MTable.get(getCtx(), org.compiere.model.I_C_RfQ_TopicSubscriber.Table_Name) .getPO(getC_RfQ_TopicSubscriber_ID(), get_TrxName()); } /** Set RfQ Subscriber. @@ -122,6 +122,20 @@ public class X_C_RfQ_TopicSubscriberOnly extends PO implements I_C_RfQ_TopicSubs return ii.intValue(); } + /** Set C_RfQ_TopicSubscriberOnly_UU. + @param C_RfQ_TopicSubscriberOnly_UU C_RfQ_TopicSubscriberOnly_UU */ + public void setC_RfQ_TopicSubscriberOnly_UU (String C_RfQ_TopicSubscriberOnly_UU) + { + set_Value (COLUMNNAME_C_RfQ_TopicSubscriberOnly_UU, C_RfQ_TopicSubscriberOnly_UU); + } + + /** Get C_RfQ_TopicSubscriberOnly_UU. + @return C_RfQ_TopicSubscriberOnly_UU */ + public String getC_RfQ_TopicSubscriberOnly_UU () + { + return (String)get_Value(COLUMNNAME_C_RfQ_TopicSubscriberOnly_UU); + } + /** Set Description. @param Description Optional short description of the record @@ -139,9 +153,9 @@ public class X_C_RfQ_TopicSubscriberOnly extends PO implements I_C_RfQ_TopicSubs return (String)get_Value(COLUMNNAME_Description); } - public I_M_Product_Category getM_Product_Category() throws RuntimeException + public org.compiere.model.I_M_Product_Category getM_Product_Category() throws RuntimeException { - return (I_M_Product_Category)MTable.get(getCtx(), I_M_Product_Category.Table_Name) + return (org.compiere.model.I_M_Product_Category)MTable.get(getCtx(), org.compiere.model.I_M_Product_Category.Table_Name) .getPO(getM_Product_Category_ID(), get_TrxName()); } /** Set Product Category. @@ -175,9 +189,9 @@ public class X_C_RfQ_TopicSubscriberOnly extends PO implements I_C_RfQ_TopicSubs return new KeyNamePair(get_ID(), String.valueOf(getM_Product_Category_ID())); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_SalesRegion.java b/org.adempiere.base/src/org/compiere/model/X_C_SalesRegion.java index 43c2680283..611e6544b2 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_SalesRegion.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_SalesRegion.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_SalesRegion - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_SalesRegion extends PO implements I_C_SalesRegion, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_SalesRegion (Properties ctx, int C_SalesRegion_ID, String trxName) @@ -97,6 +97,20 @@ public class X_C_SalesRegion extends PO implements I_C_SalesRegion, I_Persistent return ii.intValue(); } + /** Set C_SalesRegion_UU. + @param C_SalesRegion_UU C_SalesRegion_UU */ + public void setC_SalesRegion_UU (String C_SalesRegion_UU) + { + set_Value (COLUMNNAME_C_SalesRegion_UU, C_SalesRegion_UU); + } + + /** Get C_SalesRegion_UU. + @return C_SalesRegion_UU */ + public String getC_SalesRegion_UU () + { + return (String)get_Value(COLUMNNAME_C_SalesRegion_UU); + } + /** Set Description. @param Description Optional short description of the record @@ -187,9 +201,9 @@ public class X_C_SalesRegion extends PO implements I_C_SalesRegion, I_Persistent return new KeyNamePair(get_ID(), getName()); } - public I_AD_User getSalesRep() throws RuntimeException + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getSalesRep_ID(), get_TrxName()); } /** Set Sales Representative. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_ServiceLevel.java b/org.adempiere.base/src/org/compiere/model/X_C_ServiceLevel.java index b7661ae67c..5d5a9e6105 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_ServiceLevel.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_ServiceLevel.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_ServiceLevel - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_ServiceLevel extends PO implements I_C_ServiceLevel, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_ServiceLevel (Properties ctx, int C_ServiceLevel_ID, String trxName) @@ -76,9 +76,9 @@ public class X_C_ServiceLevel extends PO implements I_C_ServiceLevel, I_Persiste return sb.toString(); } - public I_C_RevenueRecognition_Plan getC_RevenueRecognition_Plan() throws RuntimeException + public org.compiere.model.I_C_RevenueRecognition_Plan getC_RevenueRecognition_Plan() throws RuntimeException { - return (I_C_RevenueRecognition_Plan)MTable.get(getCtx(), I_C_RevenueRecognition_Plan.Table_Name) + return (org.compiere.model.I_C_RevenueRecognition_Plan)MTable.get(getCtx(), org.compiere.model.I_C_RevenueRecognition_Plan.Table_Name) .getPO(getC_RevenueRecognition_Plan_ID(), get_TrxName()); } /** Set Revenue Recognition Plan. @@ -127,6 +127,20 @@ public class X_C_ServiceLevel extends PO implements I_C_ServiceLevel, I_Persiste return ii.intValue(); } + /** Set C_ServiceLevel_UU. + @param C_ServiceLevel_UU C_ServiceLevel_UU */ + public void setC_ServiceLevel_UU (String C_ServiceLevel_UU) + { + set_Value (COLUMNNAME_C_ServiceLevel_UU, C_ServiceLevel_UU); + } + + /** Get C_ServiceLevel_UU. + @return C_ServiceLevel_UU */ + public String getC_ServiceLevel_UU () + { + return (String)get_Value(COLUMNNAME_C_ServiceLevel_UU); + } + /** Set Description. @param Description Optional short description of the record @@ -152,9 +166,9 @@ public class X_C_ServiceLevel extends PO implements I_C_ServiceLevel, I_Persiste return new KeyNamePair(get_ID(), getDescription()); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_ServiceLevelLine.java b/org.adempiere.base/src/org/compiere/model/X_C_ServiceLevelLine.java index 78dbbcacb6..81db425b0c 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_ServiceLevelLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_ServiceLevelLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_ServiceLevelLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_ServiceLevelLine extends PO implements I_C_ServiceLevelLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_ServiceLevelLine (Properties ctx, int C_ServiceLevelLine_ID, String trxName) @@ -76,9 +76,9 @@ public class X_C_ServiceLevelLine extends PO implements I_C_ServiceLevelLine, I_ return sb.toString(); } - public I_C_ServiceLevel getC_ServiceLevel() throws RuntimeException + public org.compiere.model.I_C_ServiceLevel getC_ServiceLevel() throws RuntimeException { - return (I_C_ServiceLevel)MTable.get(getCtx(), I_C_ServiceLevel.Table_Name) + return (org.compiere.model.I_C_ServiceLevel)MTable.get(getCtx(), org.compiere.model.I_C_ServiceLevel.Table_Name) .getPO(getC_ServiceLevel_ID(), get_TrxName()); } /** Set Service Level. @@ -127,6 +127,20 @@ public class X_C_ServiceLevelLine extends PO implements I_C_ServiceLevelLine, I_ return ii.intValue(); } + /** Set C_ServiceLevelLine_UU. + @param C_ServiceLevelLine_UU C_ServiceLevelLine_UU */ + public void setC_ServiceLevelLine_UU (String C_ServiceLevelLine_UU) + { + set_Value (COLUMNNAME_C_ServiceLevelLine_UU, C_ServiceLevelLine_UU); + } + + /** Get C_ServiceLevelLine_UU. + @return C_ServiceLevelLine_UU */ + public String getC_ServiceLevelLine_UU () + { + return (String)get_Value(COLUMNNAME_C_ServiceLevelLine_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_SubAcct.java b/org.adempiere.base/src/org/compiere/model/X_C_SubAcct.java index 15f4519618..f0ccd687f7 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_SubAcct.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_SubAcct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_SubAcct - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_SubAcct extends PO implements I_C_SubAcct, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_SubAcct (Properties ctx, int C_SubAcct_ID, String trxName) @@ -73,9 +73,9 @@ public class X_C_SubAcct extends PO implements I_C_SubAcct, I_Persistent return sb.toString(); } - public I_C_ElementValue getC_ElementValue() throws RuntimeException + public org.compiere.model.I_C_ElementValue getC_ElementValue() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getC_ElementValue_ID(), get_TrxName()); } /** Set Account Element. @@ -124,6 +124,20 @@ public class X_C_SubAcct extends PO implements I_C_SubAcct, I_Persistent return ii.intValue(); } + /** Set C_SubAcct_UU. + @param C_SubAcct_UU C_SubAcct_UU */ + public void setC_SubAcct_UU (String C_SubAcct_UU) + { + set_Value (COLUMNNAME_C_SubAcct_UU, C_SubAcct_UU); + } + + /** Get C_SubAcct_UU. + @return C_SubAcct_UU */ + public String getC_SubAcct_UU () + { + return (String)get_Value(COLUMNNAME_C_SubAcct_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Subscription.java b/org.adempiere.base/src/org/compiere/model/X_C_Subscription.java index 9d9e86ed15..f684ba7460 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Subscription.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Subscription.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_Subscription - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Subscription extends PO implements I_C_Subscription, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Subscription (Properties ctx, int C_Subscription_ID, String trxName) @@ -79,9 +79,9 @@ public class X_C_Subscription extends PO implements I_C_Subscription, I_Persiste return sb.toString(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -130,9 +130,9 @@ public class X_C_Subscription extends PO implements I_C_Subscription, I_Persiste return ii.intValue(); } - public I_C_SubscriptionType getC_SubscriptionType() throws RuntimeException + public org.compiere.model.I_C_SubscriptionType getC_SubscriptionType() throws RuntimeException { - return (I_C_SubscriptionType)MTable.get(getCtx(), I_C_SubscriptionType.Table_Name) + return (org.compiere.model.I_C_SubscriptionType)MTable.get(getCtx(), org.compiere.model.I_C_SubscriptionType.Table_Name) .getPO(getC_SubscriptionType_ID(), get_TrxName()); } /** Set Subscription Type. @@ -158,6 +158,20 @@ public class X_C_Subscription extends PO implements I_C_Subscription, I_Persiste return ii.intValue(); } + /** Set C_Subscription_UU. + @param C_Subscription_UU C_Subscription_UU */ + public void setC_Subscription_UU (String C_Subscription_UU) + { + set_Value (COLUMNNAME_C_Subscription_UU, C_Subscription_UU); + } + + /** Get C_Subscription_UU. + @return C_Subscription_UU */ + public String getC_Subscription_UU () + { + return (String)get_Value(COLUMNNAME_C_Subscription_UU); + } + /** Set Due. @param IsDue Subscription Renewal is Due @@ -182,9 +196,9 @@ public class X_C_Subscription extends PO implements I_C_Subscription, I_Persiste return false; } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_SubscriptionType.java b/org.adempiere.base/src/org/compiere/model/X_C_SubscriptionType.java index 750cc1bb75..29c2cf4007 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_SubscriptionType.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_SubscriptionType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_SubscriptionType - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_SubscriptionType extends PO implements I_C_SubscriptionType, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_SubscriptionType (Properties ctx, int C_SubscriptionType_ID, String trxName) @@ -96,6 +96,20 @@ public class X_C_SubscriptionType extends PO implements I_C_SubscriptionType, I_ return ii.intValue(); } + /** Set C_SubscriptionType_UU. + @param C_SubscriptionType_UU C_SubscriptionType_UU */ + public void setC_SubscriptionType_UU (String C_SubscriptionType_UU) + { + set_Value (COLUMNNAME_C_SubscriptionType_UU, C_SubscriptionType_UU); + } + + /** Get C_SubscriptionType_UU. + @return C_SubscriptionType_UU */ + public String getC_SubscriptionType_UU () + { + return (String)get_Value(COLUMNNAME_C_SubscriptionType_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Subscription_Delivery.java b/org.adempiere.base/src/org/compiere/model/X_C_Subscription_Delivery.java index 9af41f95a1..f7de1ef479 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Subscription_Delivery.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Subscription_Delivery.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_Subscription_Delivery - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Subscription_Delivery extends PO implements I_C_Subscription_Delivery, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Subscription_Delivery (Properties ctx, int C_Subscription_Delivery_ID, String trxName) @@ -102,9 +102,23 @@ public class X_C_Subscription_Delivery extends PO implements I_C_Subscription_De return new KeyNamePair(get_ID(), String.valueOf(getC_Subscription_Delivery_ID())); } - public I_C_Subscription getC_Subscription() throws RuntimeException + /** Set C_Subscription_Delivery_UU. + @param C_Subscription_Delivery_UU C_Subscription_Delivery_UU */ + public void setC_Subscription_Delivery_UU (String C_Subscription_Delivery_UU) + { + set_Value (COLUMNNAME_C_Subscription_Delivery_UU, C_Subscription_Delivery_UU); + } + + /** Get C_Subscription_Delivery_UU. + @return C_Subscription_Delivery_UU */ + public String getC_Subscription_Delivery_UU () + { + return (String)get_Value(COLUMNNAME_C_Subscription_Delivery_UU); + } + + public org.compiere.model.I_C_Subscription getC_Subscription() throws RuntimeException { - return (I_C_Subscription)MTable.get(getCtx(), I_C_Subscription.Table_Name) + return (org.compiere.model.I_C_Subscription)MTable.get(getCtx(), org.compiere.model.I_C_Subscription.Table_Name) .getPO(getC_Subscription_ID(), get_TrxName()); } /** Set Subscription. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Task.java b/org.adempiere.base/src/org/compiere/model/X_C_Task.java index cb41a505c7..ba9b4cc85a 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Task.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Task.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_Task - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Task extends PO implements I_C_Task, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Task (Properties ctx, int C_Task_ID, String trxName) @@ -78,9 +78,9 @@ public class X_C_Task extends PO implements I_C_Task, I_Persistent return sb.toString(); } - public I_C_Phase getC_Phase() throws RuntimeException + public org.compiere.model.I_C_Phase getC_Phase() throws RuntimeException { - return (I_C_Phase)MTable.get(getCtx(), I_C_Phase.Table_Name) + return (org.compiere.model.I_C_Phase)MTable.get(getCtx(), org.compiere.model.I_C_Phase.Table_Name) .getPO(getC_Phase_ID(), get_TrxName()); } /** Set Standard Phase. @@ -129,6 +129,20 @@ public class X_C_Task extends PO implements I_C_Task, I_Persistent return ii.intValue(); } + /** Set C_Task_UU. + @param C_Task_UU C_Task_UU */ + public void setC_Task_UU (String C_Task_UU) + { + set_Value (COLUMNNAME_C_Task_UU, C_Task_UU); + } + + /** Get C_Task_UU. + @return C_Task_UU */ + public String getC_Task_UU () + { + return (String)get_Value(COLUMNNAME_C_Task_UU); + } + /** Set Description. @param Description Optional short description of the record @@ -163,9 +177,9 @@ public class X_C_Task extends PO implements I_C_Task, I_Persistent return (String)get_Value(COLUMNNAME_Help); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Tax.java b/org.adempiere.base/src/org/compiere/model/X_C_Tax.java index 77434b2ba3..4bcda5dbfa 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Tax.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Tax.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_Tax - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Tax extends PO implements I_C_Tax, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Tax (Properties ctx, int C_Tax_ID, String trxName) @@ -86,9 +86,9 @@ public class X_C_Tax extends PO implements I_C_Tax, I_Persistent return sb.toString(); } - public I_AD_Rule getAD_Rule() throws RuntimeException + public org.compiere.model.I_AD_Rule getAD_Rule() throws RuntimeException { - return (I_AD_Rule)MTable.get(getCtx(), I_AD_Rule.Table_Name) + return (org.compiere.model.I_AD_Rule)MTable.get(getCtx(), org.compiere.model.I_AD_Rule.Table_Name) .getPO(getAD_Rule_ID(), get_TrxName()); } /** Set Rule. @@ -134,9 +134,9 @@ public class X_C_Tax extends PO implements I_C_Tax, I_Persistent return ii.intValue(); } - public I_C_Region getC_Region() throws RuntimeException + public org.compiere.model.I_C_Region getC_Region() throws RuntimeException { - return (I_C_Region)MTable.get(getCtx(), I_C_Region.Table_Name) + return (org.compiere.model.I_C_Region)MTable.get(getCtx(), org.compiere.model.I_C_Region.Table_Name) .getPO(getC_Region_ID(), get_TrxName()); } /** Set Region. @@ -162,9 +162,9 @@ public class X_C_Tax extends PO implements I_C_Tax, I_Persistent return ii.intValue(); } - public I_C_TaxCategory getC_TaxCategory() throws RuntimeException + public org.compiere.model.I_C_TaxCategory getC_TaxCategory() throws RuntimeException { - return (I_C_TaxCategory)MTable.get(getCtx(), I_C_TaxCategory.Table_Name) + return (org.compiere.model.I_C_TaxCategory)MTable.get(getCtx(), org.compiere.model.I_C_TaxCategory.Table_Name) .getPO(getC_TaxCategory_ID(), get_TrxName()); } /** Set Tax Category. @@ -213,6 +213,20 @@ public class X_C_Tax extends PO implements I_C_Tax, I_Persistent return ii.intValue(); } + /** Set C_Tax_UU. + @param C_Tax_UU C_Tax_UU */ + public void setC_Tax_UU (String C_Tax_UU) + { + set_Value (COLUMNNAME_C_Tax_UU, C_Tax_UU); + } + + /** Get C_Tax_UU. + @return C_Tax_UU */ + public String getC_Tax_UU () + { + return (String)get_Value(COLUMNNAME_C_Tax_UU); + } + /** Set Description. @param Description Optional short description of the record @@ -375,9 +389,9 @@ public class X_C_Tax extends PO implements I_C_Tax, I_Persistent return new KeyNamePair(get_ID(), getName()); } - public I_C_Tax getParent_Tax() throws RuntimeException + public org.compiere.model.I_C_Tax getParent_Tax() throws RuntimeException { - return (I_C_Tax)MTable.get(getCtx(), I_C_Tax.Table_Name) + return (org.compiere.model.I_C_Tax)MTable.get(getCtx(), org.compiere.model.I_C_Tax.Table_Name) .getPO(getParent_Tax_ID(), get_TrxName()); } /** Set Parent Tax. @@ -513,9 +527,9 @@ public class X_C_Tax extends PO implements I_C_Tax, I_Persistent return ii.intValue(); } - public I_C_Region getTo_Region() throws RuntimeException + public org.compiere.model.I_C_Region getTo_Region() throws RuntimeException { - return (I_C_Region)MTable.get(getCtx(), I_C_Region.Table_Name) + return (org.compiere.model.I_C_Region)MTable.get(getCtx(), org.compiere.model.I_C_Region.Table_Name) .getPO(getTo_Region_ID(), get_TrxName()); } /** Set To. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_TaxCategory.java b/org.adempiere.base/src/org/compiere/model/X_C_TaxCategory.java index a835b14835..0777f8f715 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_TaxCategory.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_TaxCategory.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_TaxCategory - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_TaxCategory extends PO implements I_C_TaxCategory, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_TaxCategory (Properties ctx, int C_TaxCategory_ID, String trxName) @@ -112,6 +112,20 @@ public class X_C_TaxCategory extends PO implements I_C_TaxCategory, I_Persistent return ii.intValue(); } + /** Set C_TaxCategory_UU. + @param C_TaxCategory_UU C_TaxCategory_UU */ + public void setC_TaxCategory_UU (String C_TaxCategory_UU) + { + set_Value (COLUMNNAME_C_TaxCategory_UU, C_TaxCategory_UU); + } + + /** Get C_TaxCategory_UU. + @return C_TaxCategory_UU */ + public String getC_TaxCategory_UU () + { + return (String)get_Value(COLUMNNAME_C_TaxCategory_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_TaxDeclaration.java b/org.adempiere.base/src/org/compiere/model/X_C_TaxDeclaration.java index 7500a2b207..7235981b57 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_TaxDeclaration.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_TaxDeclaration.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_TaxDeclaration - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_TaxDeclaration extends PO implements I_C_TaxDeclaration, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_TaxDeclaration (Properties ctx, int C_TaxDeclaration_ID, String trxName) @@ -99,6 +99,20 @@ public class X_C_TaxDeclaration extends PO implements I_C_TaxDeclaration, I_Pers return ii.intValue(); } + /** Set C_TaxDeclaration_UU. + @param C_TaxDeclaration_UU C_TaxDeclaration_UU */ + public void setC_TaxDeclaration_UU (String C_TaxDeclaration_UU) + { + set_Value (COLUMNNAME_C_TaxDeclaration_UU, C_TaxDeclaration_UU); + } + + /** Get C_TaxDeclaration_UU. + @return C_TaxDeclaration_UU */ + public String getC_TaxDeclaration_UU () + { + return (String)get_Value(COLUMNNAME_C_TaxDeclaration_UU); + } + /** Set Date From. @param DateFrom Starting date for a range diff --git a/org.adempiere.base/src/org/compiere/model/X_C_TaxDeclarationAcct.java b/org.adempiere.base/src/org/compiere/model/X_C_TaxDeclarationAcct.java index d3fcfa8d09..30652fdaa9 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_TaxDeclarationAcct.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_TaxDeclarationAcct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for C_TaxDeclarationAcct - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_TaxDeclarationAcct extends PO implements I_C_TaxDeclarationAcct, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_TaxDeclarationAcct (Properties ctx, int C_TaxDeclarationAcct_ID, String trxName) @@ -75,9 +75,9 @@ public class X_C_TaxDeclarationAcct extends PO implements I_C_TaxDeclarationAcct return sb.toString(); } - public I_C_ElementValue getAccount() throws RuntimeException + public org.compiere.model.I_C_ElementValue getAccount() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getAccount_ID(), get_TrxName()); } /** Set Account. @@ -175,9 +175,9 @@ public class X_C_TaxDeclarationAcct extends PO implements I_C_TaxDeclarationAcct return bd; } - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException { - return (I_C_AcctSchema)MTable.get(getCtx(), I_C_AcctSchema.Table_Name) + return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_Name) .getPO(getC_AcctSchema_ID(), get_TrxName()); } /** Set Accounting Schema. @@ -203,9 +203,9 @@ public class X_C_TaxDeclarationAcct extends PO implements I_C_TaxDeclarationAcct return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -227,9 +227,9 @@ public class X_C_TaxDeclarationAcct extends PO implements I_C_TaxDeclarationAcct return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -274,9 +274,23 @@ public class X_C_TaxDeclarationAcct extends PO implements I_C_TaxDeclarationAcct return ii.intValue(); } - public I_C_TaxDeclaration getC_TaxDeclaration() throws RuntimeException + /** Set C_TaxDeclarationAcct_UU. + @param C_TaxDeclarationAcct_UU C_TaxDeclarationAcct_UU */ + public void setC_TaxDeclarationAcct_UU (String C_TaxDeclarationAcct_UU) + { + set_Value (COLUMNNAME_C_TaxDeclarationAcct_UU, C_TaxDeclarationAcct_UU); + } + + /** Get C_TaxDeclarationAcct_UU. + @return C_TaxDeclarationAcct_UU */ + public String getC_TaxDeclarationAcct_UU () + { + return (String)get_Value(COLUMNNAME_C_TaxDeclarationAcct_UU); + } + + public org.compiere.model.I_C_TaxDeclaration getC_TaxDeclaration() throws RuntimeException { - return (I_C_TaxDeclaration)MTable.get(getCtx(), I_C_TaxDeclaration.Table_Name) + return (org.compiere.model.I_C_TaxDeclaration)MTable.get(getCtx(), org.compiere.model.I_C_TaxDeclaration.Table_Name) .getPO(getC_TaxDeclaration_ID(), get_TrxName()); } /** Set Tax Declaration. @@ -302,9 +316,9 @@ public class X_C_TaxDeclarationAcct extends PO implements I_C_TaxDeclarationAcct return ii.intValue(); } - public I_C_Tax getC_Tax() throws RuntimeException + public org.compiere.model.I_C_Tax getC_Tax() throws RuntimeException { - return (I_C_Tax)MTable.get(getCtx(), I_C_Tax.Table_Name) + return (org.compiere.model.I_C_Tax)MTable.get(getCtx(), org.compiere.model.I_C_Tax.Table_Name) .getPO(getC_Tax_ID(), get_TrxName()); } /** Set Tax. @@ -359,9 +373,9 @@ public class X_C_TaxDeclarationAcct extends PO implements I_C_TaxDeclarationAcct return (String)get_Value(COLUMNNAME_Description); } - public I_Fact_Acct getFact_Acct() throws RuntimeException + public org.compiere.model.I_Fact_Acct getFact_Acct() throws RuntimeException { - return (I_Fact_Acct)MTable.get(getCtx(), I_Fact_Acct.Table_Name) + return (org.compiere.model.I_Fact_Acct)MTable.get(getCtx(), org.compiere.model.I_Fact_Acct.Table_Name) .getPO(getFact_Acct_ID(), get_TrxName()); } /** Set Accounting Fact. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_TaxDeclarationLine.java b/org.adempiere.base/src/org/compiere/model/X_C_TaxDeclarationLine.java index c1b194f99b..87af529ef1 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_TaxDeclarationLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_TaxDeclarationLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for C_TaxDeclarationLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_TaxDeclarationLine extends PO implements I_C_TaxDeclarationLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_TaxDeclarationLine (Properties ctx, int C_TaxDeclarationLine_ID, String trxName) @@ -82,9 +82,9 @@ public class X_C_TaxDeclarationLine extends PO implements I_C_TaxDeclarationLine return sb.toString(); } - public I_C_AllocationLine getC_AllocationLine() throws RuntimeException + public org.compiere.model.I_C_AllocationLine getC_AllocationLine() throws RuntimeException { - return (I_C_AllocationLine)MTable.get(getCtx(), I_C_AllocationLine.Table_Name) + return (org.compiere.model.I_C_AllocationLine)MTable.get(getCtx(), org.compiere.model.I_C_AllocationLine.Table_Name) .getPO(getC_AllocationLine_ID(), get_TrxName()); } /** Set Allocation Line. @@ -110,9 +110,9 @@ public class X_C_TaxDeclarationLine extends PO implements I_C_TaxDeclarationLine return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -138,9 +138,9 @@ public class X_C_TaxDeclarationLine extends PO implements I_C_TaxDeclarationLine return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -166,9 +166,9 @@ public class X_C_TaxDeclarationLine extends PO implements I_C_TaxDeclarationLine return ii.intValue(); } - public I_C_Invoice getC_Invoice() throws RuntimeException + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException { - return (I_C_Invoice)MTable.get(getCtx(), I_C_Invoice.Table_Name) + return (org.compiere.model.I_C_Invoice)MTable.get(getCtx(), org.compiere.model.I_C_Invoice.Table_Name) .getPO(getC_Invoice_ID(), get_TrxName()); } /** Set Invoice. @@ -194,9 +194,9 @@ public class X_C_TaxDeclarationLine extends PO implements I_C_TaxDeclarationLine return ii.intValue(); } - public I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException + public org.compiere.model.I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException { - return (I_C_InvoiceLine)MTable.get(getCtx(), I_C_InvoiceLine.Table_Name) + return (org.compiere.model.I_C_InvoiceLine)MTable.get(getCtx(), org.compiere.model.I_C_InvoiceLine.Table_Name) .getPO(getC_InvoiceLine_ID(), get_TrxName()); } /** Set Invoice Line. @@ -222,9 +222,9 @@ public class X_C_TaxDeclarationLine extends PO implements I_C_TaxDeclarationLine return ii.intValue(); } - public I_C_TaxDeclaration getC_TaxDeclaration() throws RuntimeException + public org.compiere.model.I_C_TaxDeclaration getC_TaxDeclaration() throws RuntimeException { - return (I_C_TaxDeclaration)MTable.get(getCtx(), I_C_TaxDeclaration.Table_Name) + return (org.compiere.model.I_C_TaxDeclaration)MTable.get(getCtx(), org.compiere.model.I_C_TaxDeclaration.Table_Name) .getPO(getC_TaxDeclaration_ID(), get_TrxName()); } /** Set Tax Declaration. @@ -273,9 +273,23 @@ public class X_C_TaxDeclarationLine extends PO implements I_C_TaxDeclarationLine return ii.intValue(); } - public I_C_Tax getC_Tax() throws RuntimeException + /** Set C_TaxDeclarationLine_UU. + @param C_TaxDeclarationLine_UU C_TaxDeclarationLine_UU */ + public void setC_TaxDeclarationLine_UU (String C_TaxDeclarationLine_UU) + { + set_Value (COLUMNNAME_C_TaxDeclarationLine_UU, C_TaxDeclarationLine_UU); + } + + /** Get C_TaxDeclarationLine_UU. + @return C_TaxDeclarationLine_UU */ + public String getC_TaxDeclarationLine_UU () + { + return (String)get_Value(COLUMNNAME_C_TaxDeclarationLine_UU); + } + + public org.compiere.model.I_C_Tax getC_Tax() throws RuntimeException { - return (I_C_Tax)MTable.get(getCtx(), I_C_Tax.Table_Name) + return (org.compiere.model.I_C_Tax)MTable.get(getCtx(), org.compiere.model.I_C_Tax.Table_Name) .getPO(getC_Tax_ID(), get_TrxName()); } /** Set Tax. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_TaxPostal.java b/org.adempiere.base/src/org/compiere/model/X_C_TaxPostal.java index 94ee518e1f..9a5ea993c9 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_TaxPostal.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_TaxPostal.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_TaxPostal - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_TaxPostal extends PO implements I_C_TaxPostal, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_TaxPostal (Properties ctx, int C_TaxPostal_ID, String trxName) @@ -72,9 +72,9 @@ public class X_C_TaxPostal extends PO implements I_C_TaxPostal, I_Persistent return sb.toString(); } - public I_C_Tax getC_Tax() throws RuntimeException + public org.compiere.model.I_C_Tax getC_Tax() throws RuntimeException { - return (I_C_Tax)MTable.get(getCtx(), I_C_Tax.Table_Name) + return (org.compiere.model.I_C_Tax)MTable.get(getCtx(), org.compiere.model.I_C_Tax.Table_Name) .getPO(getC_Tax_ID(), get_TrxName()); } /** Set Tax. @@ -123,6 +123,20 @@ public class X_C_TaxPostal extends PO implements I_C_TaxPostal, I_Persistent return ii.intValue(); } + /** Set C_TaxPostal_UU. + @param C_TaxPostal_UU C_TaxPostal_UU */ + public void setC_TaxPostal_UU (String C_TaxPostal_UU) + { + set_Value (COLUMNNAME_C_TaxPostal_UU, C_TaxPostal_UU); + } + + /** Get C_TaxPostal_UU. + @return C_TaxPostal_UU */ + public String getC_TaxPostal_UU () + { + return (String)get_Value(COLUMNNAME_C_TaxPostal_UU); + } + /** Set ZIP. @param Postal Postal code diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Tax_Acct.java b/org.adempiere.base/src/org/compiere/model/X_C_Tax_Acct.java index d7447d0c7c..9fd354eb43 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Tax_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Tax_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for C_Tax_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Tax_Acct extends PO implements I_C_Tax_Acct, I_Persistent { /** * */ - private static final long serialVersionUID = 20120928L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Tax_Acct (Properties ctx, int C_Tax_Acct_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_UOM.java b/org.adempiere.base/src/org/compiere/model/X_C_UOM.java index 59352f1400..0adce64eaf 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_UOM.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_UOM.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_UOM - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_UOM extends PO implements I_C_UOM, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_UOM (Properties ctx, int C_UOM_ID, String trxName) @@ -118,6 +118,20 @@ public class X_C_UOM extends PO implements I_C_UOM, I_Persistent return ii.intValue(); } + /** Set C_UOM_UU. + @param C_UOM_UU C_UOM_UU */ + public void setC_UOM_UU (String C_UOM_UU) + { + set_Value (COLUMNNAME_C_UOM_UU, C_UOM_UU); + } + + /** Get C_UOM_UU. + @return C_UOM_UU */ + public String getC_UOM_UU () + { + return (String)get_Value(COLUMNNAME_C_UOM_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_UOM_Conversion.java b/org.adempiere.base/src/org/compiere/model/X_C_UOM_Conversion.java index 0613807677..49ccf0e685 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_UOM_Conversion.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_UOM_Conversion.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_UOM_Conversion - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_UOM_Conversion extends PO implements I_C_UOM_Conversion, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_UOM_Conversion (Properties ctx, int C_UOM_Conversion_ID, String trxName) @@ -107,9 +107,23 @@ public class X_C_UOM_Conversion extends PO implements I_C_UOM_Conversion, I_Pers return new KeyNamePair(get_ID(), String.valueOf(getC_UOM_Conversion_ID())); } - public I_C_UOM getC_UOM() throws RuntimeException + /** Set C_UOM_Conversion_UU. + @param C_UOM_Conversion_UU C_UOM_Conversion_UU */ + public void setC_UOM_Conversion_UU (String C_UOM_Conversion_UU) + { + set_Value (COLUMNNAME_C_UOM_Conversion_UU, C_UOM_Conversion_UU); + } + + /** Get C_UOM_Conversion_UU. + @return C_UOM_Conversion_UU */ + public String getC_UOM_Conversion_UU () + { + return (String)get_Value(COLUMNNAME_C_UOM_Conversion_UU); + } + + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_ID(), get_TrxName()); } /** Set UOM. @@ -135,9 +149,9 @@ public class X_C_UOM_Conversion extends PO implements I_C_UOM_Conversion, I_Pers return ii.intValue(); } - public I_C_UOM getC_UOM_To() throws RuntimeException + public org.compiere.model.I_C_UOM getC_UOM_To() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_To_ID(), get_TrxName()); } /** Set UoM To. @@ -183,9 +197,9 @@ public class X_C_UOM_Conversion extends PO implements I_C_UOM_Conversion, I_Pers return bd; } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_UserRemuneration.java b/org.adempiere.base/src/org/compiere/model/X_C_UserRemuneration.java index d8a89d684d..0aad4d3614 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_UserRemuneration.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_UserRemuneration.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_UserRemuneration - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_UserRemuneration extends PO implements I_C_UserRemuneration, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_UserRemuneration (Properties ctx, int C_UserRemuneration_ID, String trxName) @@ -80,9 +80,9 @@ public class X_C_UserRemuneration extends PO implements I_C_UserRemuneration, I_ return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -116,9 +116,9 @@ public class X_C_UserRemuneration extends PO implements I_C_UserRemuneration, I_ return new KeyNamePair(get_ID(), String.valueOf(getAD_User_ID())); } - public I_C_Remuneration getC_Remuneration() throws RuntimeException + public org.compiere.model.I_C_Remuneration getC_Remuneration() throws RuntimeException { - return (I_C_Remuneration)MTable.get(getCtx(), I_C_Remuneration.Table_Name) + return (org.compiere.model.I_C_Remuneration)MTable.get(getCtx(), org.compiere.model.I_C_Remuneration.Table_Name) .getPO(getC_Remuneration_ID(), get_TrxName()); } /** Set Remuneration. @@ -167,6 +167,20 @@ public class X_C_UserRemuneration extends PO implements I_C_UserRemuneration, I_ return ii.intValue(); } + /** Set C_UserRemuneration_UU. + @param C_UserRemuneration_UU C_UserRemuneration_UU */ + public void setC_UserRemuneration_UU (String C_UserRemuneration_UU) + { + set_Value (COLUMNNAME_C_UserRemuneration_UU, C_UserRemuneration_UU); + } + + /** Get C_UserRemuneration_UU. + @return C_UserRemuneration_UU */ + public String getC_UserRemuneration_UU () + { + return (String)get_Value(COLUMNNAME_C_UserRemuneration_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_ValidCombination.java b/org.adempiere.base/src/org/compiere/model/X_C_ValidCombination.java index b7aa7d3ac9..1169c08085 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_ValidCombination.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_ValidCombination.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_ValidCombination - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_ValidCombination extends PO implements I_C_ValidCombination, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_ValidCombination (Properties ctx, int C_ValidCombination_ID, String trxName) @@ -73,9 +73,9 @@ public class X_C_ValidCombination extends PO implements I_C_ValidCombination, I_ return sb.toString(); } - public I_C_ElementValue getAccount() throws RuntimeException + public org.compiere.model.I_C_ElementValue getAccount() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getAccount_ID(), get_TrxName()); } /** Set Account. @@ -141,9 +141,9 @@ public class X_C_ValidCombination extends PO implements I_C_ValidCombination, I_ return (String)get_Value(COLUMNNAME_Alias); } - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException { - return (I_C_AcctSchema)MTable.get(getCtx(), I_C_AcctSchema.Table_Name) + return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_Name) .getPO(getC_AcctSchema_ID(), get_TrxName()); } /** Set Accounting Schema. @@ -169,9 +169,9 @@ public class X_C_ValidCombination extends PO implements I_C_ValidCombination, I_ return ii.intValue(); } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -197,9 +197,9 @@ public class X_C_ValidCombination extends PO implements I_C_ValidCombination, I_ return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -225,9 +225,9 @@ public class X_C_ValidCombination extends PO implements I_C_ValidCombination, I_ return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -253,9 +253,9 @@ public class X_C_ValidCombination extends PO implements I_C_ValidCombination, I_ return ii.intValue(); } - public I_C_Location getC_LocFrom() throws RuntimeException + public org.compiere.model.I_C_Location getC_LocFrom() throws RuntimeException { - return (I_C_Location)MTable.get(getCtx(), I_C_Location.Table_Name) + return (org.compiere.model.I_C_Location)MTable.get(getCtx(), org.compiere.model.I_C_Location.Table_Name) .getPO(getC_LocFrom_ID(), get_TrxName()); } /** Set Location From. @@ -281,9 +281,9 @@ public class X_C_ValidCombination extends PO implements I_C_ValidCombination, I_ return ii.intValue(); } - public I_C_Location getC_LocTo() throws RuntimeException + public org.compiere.model.I_C_Location getC_LocTo() throws RuntimeException { - return (I_C_Location)MTable.get(getCtx(), I_C_Location.Table_Name) + return (org.compiere.model.I_C_Location)MTable.get(getCtx(), org.compiere.model.I_C_Location.Table_Name) .getPO(getC_LocTo_ID(), get_TrxName()); } /** Set Location To. @@ -334,9 +334,9 @@ public class X_C_ValidCombination extends PO implements I_C_ValidCombination, I_ return new KeyNamePair(get_ID(), getCombination()); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -362,9 +362,9 @@ public class X_C_ValidCombination extends PO implements I_C_ValidCombination, I_ return ii.intValue(); } - public I_C_SalesRegion getC_SalesRegion() throws RuntimeException + public org.compiere.model.I_C_SalesRegion getC_SalesRegion() throws RuntimeException { - return (I_C_SalesRegion)MTable.get(getCtx(), I_C_SalesRegion.Table_Name) + return (org.compiere.model.I_C_SalesRegion)MTable.get(getCtx(), org.compiere.model.I_C_SalesRegion.Table_Name) .getPO(getC_SalesRegion_ID(), get_TrxName()); } /** Set Sales Region. @@ -390,9 +390,9 @@ public class X_C_ValidCombination extends PO implements I_C_ValidCombination, I_ return ii.intValue(); } - public I_C_SubAcct getC_SubAcct() throws RuntimeException + public org.compiere.model.I_C_SubAcct getC_SubAcct() throws RuntimeException { - return (I_C_SubAcct)MTable.get(getCtx(), I_C_SubAcct.Table_Name) + return (org.compiere.model.I_C_SubAcct)MTable.get(getCtx(), org.compiere.model.I_C_SubAcct.Table_Name) .getPO(getC_SubAcct_ID(), get_TrxName()); } /** Set Sub Account. @@ -441,6 +441,20 @@ public class X_C_ValidCombination extends PO implements I_C_ValidCombination, I_ return ii.intValue(); } + /** Set C_ValidCombination_UU. + @param C_ValidCombination_UU C_ValidCombination_UU */ + public void setC_ValidCombination_UU (String C_ValidCombination_UU) + { + set_Value (COLUMNNAME_C_ValidCombination_UU, C_ValidCombination_UU); + } + + /** Get C_ValidCombination_UU. + @return C_ValidCombination_UU */ + public String getC_ValidCombination_UU () + { + return (String)get_Value(COLUMNNAME_C_ValidCombination_UU); + } + /** Set Description. @param Description Optional short description of the record @@ -482,9 +496,9 @@ public class X_C_ValidCombination extends PO implements I_C_ValidCombination, I_ return false; } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -510,9 +524,9 @@ public class X_C_ValidCombination extends PO implements I_C_ValidCombination, I_ return ii.intValue(); } - public I_C_ElementValue getUser1() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser1_ID(), get_TrxName()); } /** Set User List 1. @@ -538,9 +552,9 @@ public class X_C_ValidCombination extends PO implements I_C_ValidCombination, I_ return ii.intValue(); } - public I_C_ElementValue getUser2() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser2_ID(), get_TrxName()); } /** Set User List 2. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Withholding.java b/org.adempiere.base/src/org/compiere/model/X_C_Withholding.java index 11cb0042fd..2d45874fa9 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Withholding.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Withholding.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_Withholding - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Withholding extends PO implements I_C_Withholding, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Withholding (Properties ctx, int C_Withholding_ID, String trxName) @@ -79,9 +79,9 @@ public class X_C_Withholding extends PO implements I_C_Withholding, I_Persistent return sb.toString(); } - public I_C_BPartner getBenefici() throws RuntimeException + public org.compiere.model.I_C_BPartner getBenefici() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getBeneficiary(), get_TrxName()); } /** Set Beneficiary. @@ -104,9 +104,9 @@ public class X_C_Withholding extends PO implements I_C_Withholding, I_Persistent return ii.intValue(); } - public I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException + public org.compiere.model.I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException { - return (I_C_PaymentTerm)MTable.get(getCtx(), I_C_PaymentTerm.Table_Name) + return (org.compiere.model.I_C_PaymentTerm)MTable.get(getCtx(), org.compiere.model.I_C_PaymentTerm.Table_Name) .getPO(getC_PaymentTerm_ID(), get_TrxName()); } /** Set Payment Term. @@ -155,6 +155,20 @@ public class X_C_Withholding extends PO implements I_C_Withholding, I_Persistent return ii.intValue(); } + /** Set C_Withholding_UU. + @param C_Withholding_UU C_Withholding_UU */ + public void setC_Withholding_UU (String C_Withholding_UU) + { + set_Value (COLUMNNAME_C_Withholding_UU, C_Withholding_UU); + } + + /** Get C_Withholding_UU. + @return C_Withholding_UU */ + public String getC_Withholding_UU () + { + return (String)get_Value(COLUMNNAME_C_Withholding_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Withholding_Acct.java b/org.adempiere.base/src/org/compiere/model/X_C_Withholding_Acct.java index f6e80dd7eb..30e45f648c 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Withholding_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Withholding_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for C_Withholding_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Withholding_Acct extends PO implements I_C_Withholding_Acct, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Withholding_Acct (Properties ctx, int C_Withholding_Acct_ID, String trxName) @@ -71,9 +71,9 @@ public class X_C_Withholding_Acct extends PO implements I_C_Withholding_Acct, I_ return sb.toString(); } - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException { - return (I_C_AcctSchema)MTable.get(getCtx(), I_C_AcctSchema.Table_Name) + return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_Name) .getPO(getC_AcctSchema_ID(), get_TrxName()); } /** Set Accounting Schema. @@ -99,9 +99,23 @@ public class X_C_Withholding_Acct extends PO implements I_C_Withholding_Acct, I_ return ii.intValue(); } - public I_C_Withholding getC_Withholding() throws RuntimeException + /** Set C_Withholding_Acct_UU. + @param C_Withholding_Acct_UU C_Withholding_Acct_UU */ + public void setC_Withholding_Acct_UU (String C_Withholding_Acct_UU) + { + set_Value (COLUMNNAME_C_Withholding_Acct_UU, C_Withholding_Acct_UU); + } + + /** Get C_Withholding_Acct_UU. + @return C_Withholding_Acct_UU */ + public String getC_Withholding_Acct_UU () + { + return (String)get_Value(COLUMNNAME_C_Withholding_Acct_UU); + } + + public org.compiere.model.I_C_Withholding getC_Withholding() throws RuntimeException { - return (I_C_Withholding)MTable.get(getCtx(), I_C_Withholding.Table_Name) + return (org.compiere.model.I_C_Withholding)MTable.get(getCtx(), org.compiere.model.I_C_Withholding.Table_Name) .getPO(getC_Withholding_ID(), get_TrxName()); } /** Set Withholding. diff --git a/org.adempiere.base/src/org/compiere/model/X_C_Year.java b/org.adempiere.base/src/org/compiere/model/X_C_Year.java index f9051b5996..774aeaa723 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_Year.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_Year.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_Year - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_Year extends PO implements I_C_Year, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_Year (Properties ctx, int C_Year_ID, String trxName) @@ -72,9 +72,9 @@ public class X_C_Year extends PO implements I_C_Year, I_Persistent return sb.toString(); } - public I_C_Calendar getC_Calendar() throws RuntimeException + public org.compiere.model.I_C_Calendar getC_Calendar() throws RuntimeException { - return (I_C_Calendar)MTable.get(getCtx(), I_C_Calendar.Table_Name) + return (org.compiere.model.I_C_Calendar)MTable.get(getCtx(), org.compiere.model.I_C_Calendar.Table_Name) .getPO(getC_Calendar_ID(), get_TrxName()); } /** Set Calendar. @@ -123,6 +123,20 @@ public class X_C_Year extends PO implements I_C_Year, I_Persistent return ii.intValue(); } + /** Set C_Year_UU. + @param C_Year_UU C_Year_UU */ + public void setC_Year_UU (String C_Year_UU) + { + set_Value (COLUMNNAME_C_Year_UU, C_Year_UU); + } + + /** Get C_Year_UU. + @return C_Year_UU */ + public String getC_Year_UU () + { + return (String)get_Value(COLUMNNAME_C_Year_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/compiere/model/X_EXP_Format.java b/org.adempiere.base/src/org/compiere/model/X_EXP_Format.java index 83c91c6663..fb9b360836 100644 --- a/org.adempiere.base/src/org/compiere/model/X_EXP_Format.java +++ b/org.adempiere.base/src/org/compiere/model/X_EXP_Format.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for EXP_Format - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_EXP_Format extends PO implements I_EXP_Format, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_EXP_Format (Properties ctx, int EXP_Format_ID, String trxName) @@ -73,9 +73,9 @@ public class X_EXP_Format extends PO implements I_EXP_Format, I_Persistent return sb.toString(); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @@ -138,6 +138,20 @@ public class X_EXP_Format extends PO implements I_EXP_Format, I_Persistent return ii.intValue(); } + /** Set EXP_Format_UU. + @param EXP_Format_UU EXP_Format_UU */ + public void setEXP_Format_UU (String EXP_Format_UU) + { + set_Value (COLUMNNAME_EXP_Format_UU, EXP_Format_UU); + } + + /** Get EXP_Format_UU. + @return EXP_Format_UU */ + public String getEXP_Format_UU () + { + return (String)get_Value(COLUMNNAME_EXP_Format_UU); + } + /** Set Comment/Help. @param Help Comment or Hint diff --git a/org.adempiere.base/src/org/compiere/model/X_EXP_FormatLine.java b/org.adempiere.base/src/org/compiere/model/X_EXP_FormatLine.java index 05fd6bdbf1..58d5e18797 100644 --- a/org.adempiere.base/src/org/compiere/model/X_EXP_FormatLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_EXP_FormatLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for EXP_FormatLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_EXP_FormatLine extends PO implements I_EXP_FormatLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_EXP_FormatLine (Properties ctx, int EXP_FormatLine_ID, String trxName) @@ -74,9 +74,9 @@ public class X_EXP_FormatLine extends PO implements I_EXP_FormatLine, I_Persiste return sb.toString(); } - public I_AD_Column getAD_Column() throws RuntimeException + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException { - return (I_AD_Column)MTable.get(getCtx(), I_AD_Column.Table_Name) + return (org.compiere.model.I_AD_Column)MTable.get(getCtx(), org.compiere.model.I_AD_Column.Table_Name) .getPO(getAD_Column_ID(), get_TrxName()); } /** Set Column. @@ -102,9 +102,9 @@ public class X_EXP_FormatLine extends PO implements I_EXP_FormatLine, I_Persiste return ii.intValue(); } - public I_AD_Reference getAD_Reference() throws RuntimeException + public org.compiere.model.I_AD_Reference getAD_Reference() throws RuntimeException { - return (I_AD_Reference)MTable.get(getCtx(), I_AD_Reference.Table_Name) + return (org.compiere.model.I_AD_Reference)MTable.get(getCtx(), org.compiere.model.I_AD_Reference.Table_Name) .getPO(getAD_Reference_ID(), get_TrxName()); } /** Set Reference. @@ -230,6 +230,20 @@ public class X_EXP_FormatLine extends PO implements I_EXP_FormatLine, I_Persiste return ii.intValue(); } + /** Set EXP_FormatLine_UU. + @param EXP_FormatLine_UU EXP_FormatLine_UU */ + public void setEXP_FormatLine_UU (String EXP_FormatLine_UU) + { + set_Value (COLUMNNAME_EXP_FormatLine_UU, EXP_FormatLine_UU); + } + + /** Get EXP_FormatLine_UU. + @return EXP_FormatLine_UU */ + public String getEXP_FormatLine_UU () + { + return (String)get_Value(COLUMNNAME_EXP_FormatLine_UU); + } + /** Set Comment/Help. @param Help Comment or Hint diff --git a/org.adempiere.base/src/org/compiere/model/X_EXP_Processor.java b/org.adempiere.base/src/org/compiere/model/X_EXP_Processor.java index 615b322c01..e9be1721c9 100644 --- a/org.adempiere.base/src/org/compiere/model/X_EXP_Processor.java +++ b/org.adempiere.base/src/org/compiere/model/X_EXP_Processor.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for EXP_Processor - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_EXP_Processor extends PO implements I_EXP_Processor, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_EXP_Processor (Properties ctx, int EXP_Processor_ID, String trxName) @@ -148,6 +148,20 @@ public class X_EXP_Processor extends PO implements I_EXP_Processor, I_Persistent return ii.intValue(); } + /** Set EXP_Processor_UU. + @param EXP_Processor_UU EXP_Processor_UU */ + public void setEXP_Processor_UU (String EXP_Processor_UU) + { + set_Value (COLUMNNAME_EXP_Processor_UU, EXP_Processor_UU); + } + + /** Get EXP_Processor_UU. + @return EXP_Processor_UU */ + public String getEXP_Processor_UU () + { + return (String)get_Value(COLUMNNAME_EXP_Processor_UU); + } + /** Set Comment/Help. @param Help Comment or Hint diff --git a/org.adempiere.base/src/org/compiere/model/X_EXP_ProcessorParameter.java b/org.adempiere.base/src/org/compiere/model/X_EXP_ProcessorParameter.java index 6f7406a87e..b9f3016257 100644 --- a/org.adempiere.base/src/org/compiere/model/X_EXP_ProcessorParameter.java +++ b/org.adempiere.base/src/org/compiere/model/X_EXP_ProcessorParameter.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for EXP_ProcessorParameter - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_EXP_ProcessorParameter extends PO implements I_EXP_ProcessorParameter, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_EXP_ProcessorParameter (Properties ctx, int EXP_ProcessorParameter_ID, String trxName) @@ -134,6 +134,20 @@ public class X_EXP_ProcessorParameter extends PO implements I_EXP_ProcessorParam return ii.intValue(); } + /** Set EXP_ProcessorParameter_UU. + @param EXP_ProcessorParameter_UU EXP_ProcessorParameter_UU */ + public void setEXP_ProcessorParameter_UU (String EXP_ProcessorParameter_UU) + { + set_Value (COLUMNNAME_EXP_ProcessorParameter_UU, EXP_ProcessorParameter_UU); + } + + /** Get EXP_ProcessorParameter_UU. + @return EXP_ProcessorParameter_UU */ + public String getEXP_ProcessorParameter_UU () + { + return (String)get_Value(COLUMNNAME_EXP_ProcessorParameter_UU); + } + /** Set Comment/Help. @param Help Comment or Hint diff --git a/org.adempiere.base/src/org/compiere/model/X_EXP_Processor_Type.java b/org.adempiere.base/src/org/compiere/model/X_EXP_Processor_Type.java index 24d93d0904..c14ef31198 100644 --- a/org.adempiere.base/src/org/compiere/model/X_EXP_Processor_Type.java +++ b/org.adempiere.base/src/org/compiere/model/X_EXP_Processor_Type.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for EXP_Processor_Type - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_EXP_Processor_Type extends PO implements I_EXP_Processor_Type, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_EXP_Processor_Type (Properties ctx, int EXP_Processor_Type_ID, String trxName) @@ -109,6 +109,20 @@ public class X_EXP_Processor_Type extends PO implements I_EXP_Processor_Type, I_ return ii.intValue(); } + /** Set EXP_Processor_Type_UU. + @param EXP_Processor_Type_UU EXP_Processor_Type_UU */ + public void setEXP_Processor_Type_UU (String EXP_Processor_Type_UU) + { + set_Value (COLUMNNAME_EXP_Processor_Type_UU, EXP_Processor_Type_UU); + } + + /** Get EXP_Processor_Type_UU. + @return EXP_Processor_Type_UU */ + public String getEXP_Processor_Type_UU () + { + return (String)get_Value(COLUMNNAME_EXP_Processor_Type_UU); + } + /** Set Comment/Help. @param Help Comment or Hint diff --git a/org.adempiere.base/src/org/compiere/model/X_Fact_Acct.java b/org.adempiere.base/src/org/compiere/model/X_Fact_Acct.java index c341760a0d..74d44e0fa5 100644 --- a/org.adempiere.base/src/org/compiere/model/X_Fact_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/X_Fact_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for Fact_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_Fact_Acct extends PO implements I_Fact_Acct, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_Fact_Acct (Properties ctx, int Fact_Acct_ID, String trxName) @@ -156,9 +156,9 @@ public class X_Fact_Acct extends PO implements I_Fact_Acct, I_Persistent return ii.intValue(); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @@ -264,9 +264,9 @@ public class X_Fact_Acct extends PO implements I_Fact_Acct, I_Persistent return bd; } - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException { - return (I_C_AcctSchema)MTable.get(getCtx(), I_C_AcctSchema.Table_Name) + return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_Name) .getPO(getC_AcctSchema_ID(), get_TrxName()); } /** Set Accounting Schema. @@ -292,9 +292,9 @@ public class X_Fact_Acct extends PO implements I_Fact_Acct, I_Persistent return ii.intValue(); } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -320,9 +320,9 @@ public class X_Fact_Acct extends PO implements I_Fact_Acct, I_Persistent return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -348,9 +348,9 @@ public class X_Fact_Acct extends PO implements I_Fact_Acct, I_Persistent return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -376,9 +376,9 @@ public class X_Fact_Acct extends PO implements I_Fact_Acct, I_Persistent return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -404,9 +404,9 @@ public class X_Fact_Acct extends PO implements I_Fact_Acct, I_Persistent return ii.intValue(); } - public I_C_Location getC_LocFrom() throws RuntimeException + public org.compiere.model.I_C_Location getC_LocFrom() throws RuntimeException { - return (I_C_Location)MTable.get(getCtx(), I_C_Location.Table_Name) + return (org.compiere.model.I_C_Location)MTable.get(getCtx(), org.compiere.model.I_C_Location.Table_Name) .getPO(getC_LocFrom_ID(), get_TrxName()); } /** Set Location From. @@ -432,9 +432,9 @@ public class X_Fact_Acct extends PO implements I_Fact_Acct, I_Persistent return ii.intValue(); } - public I_C_Location getC_LocTo() throws RuntimeException + public org.compiere.model.I_C_Location getC_LocTo() throws RuntimeException { - return (I_C_Location)MTable.get(getCtx(), I_C_Location.Table_Name) + return (org.compiere.model.I_C_Location)MTable.get(getCtx(), org.compiere.model.I_C_Location.Table_Name) .getPO(getC_LocTo_ID(), get_TrxName()); } /** Set Location To. @@ -460,9 +460,9 @@ public class X_Fact_Acct extends PO implements I_Fact_Acct, I_Persistent return ii.intValue(); } - public I_C_Period getC_Period() throws RuntimeException + public org.compiere.model.I_C_Period getC_Period() throws RuntimeException { - return (I_C_Period)MTable.get(getCtx(), I_C_Period.Table_Name) + return (org.compiere.model.I_C_Period)MTable.get(getCtx(), org.compiere.model.I_C_Period.Table_Name) .getPO(getC_Period_ID(), get_TrxName()); } /** Set Period. @@ -488,9 +488,9 @@ public class X_Fact_Acct extends PO implements I_Fact_Acct, I_Persistent return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -516,9 +516,9 @@ public class X_Fact_Acct extends PO implements I_Fact_Acct, I_Persistent return ii.intValue(); } - public I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException + public org.compiere.model.I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException { - return (I_C_ProjectPhase)MTable.get(getCtx(), I_C_ProjectPhase.Table_Name) + return (org.compiere.model.I_C_ProjectPhase)MTable.get(getCtx(), org.compiere.model.I_C_ProjectPhase.Table_Name) .getPO(getC_ProjectPhase_ID(), get_TrxName()); } /** Set Project Phase. @@ -544,9 +544,9 @@ public class X_Fact_Acct extends PO implements I_Fact_Acct, I_Persistent return ii.intValue(); } - public I_C_ProjectTask getC_ProjectTask() throws RuntimeException + public org.compiere.model.I_C_ProjectTask getC_ProjectTask() throws RuntimeException { - return (I_C_ProjectTask)MTable.get(getCtx(), I_C_ProjectTask.Table_Name) + return (org.compiere.model.I_C_ProjectTask)MTable.get(getCtx(), org.compiere.model.I_C_ProjectTask.Table_Name) .getPO(getC_ProjectTask_ID(), get_TrxName()); } /** Set Project Task. @@ -572,9 +572,9 @@ public class X_Fact_Acct extends PO implements I_Fact_Acct, I_Persistent return ii.intValue(); } - public I_C_SalesRegion getC_SalesRegion() throws RuntimeException + public org.compiere.model.I_C_SalesRegion getC_SalesRegion() throws RuntimeException { - return (I_C_SalesRegion)MTable.get(getCtx(), I_C_SalesRegion.Table_Name) + return (org.compiere.model.I_C_SalesRegion)MTable.get(getCtx(), org.compiere.model.I_C_SalesRegion.Table_Name) .getPO(getC_SalesRegion_ID(), get_TrxName()); } /** Set Sales Region. @@ -600,9 +600,9 @@ public class X_Fact_Acct extends PO implements I_Fact_Acct, I_Persistent return ii.intValue(); } - public I_C_SubAcct getC_SubAcct() throws RuntimeException + public org.compiere.model.I_C_SubAcct getC_SubAcct() throws RuntimeException { - return (I_C_SubAcct)MTable.get(getCtx(), I_C_SubAcct.Table_Name) + return (org.compiere.model.I_C_SubAcct)MTable.get(getCtx(), org.compiere.model.I_C_SubAcct.Table_Name) .getPO(getC_SubAcct_ID(), get_TrxName()); } /** Set Sub Account. @@ -628,9 +628,9 @@ public class X_Fact_Acct extends PO implements I_Fact_Acct, I_Persistent return ii.intValue(); } - public I_C_Tax getC_Tax() throws RuntimeException + public org.compiere.model.I_C_Tax getC_Tax() throws RuntimeException { - return (I_C_Tax)MTable.get(getCtx(), I_C_Tax.Table_Name) + return (org.compiere.model.I_C_Tax)MTable.get(getCtx(), org.compiere.model.I_C_Tax.Table_Name) .getPO(getC_Tax_ID(), get_TrxName()); } /** Set Tax. @@ -656,9 +656,9 @@ public class X_Fact_Acct extends PO implements I_Fact_Acct, I_Persistent return ii.intValue(); } - public I_C_UOM getC_UOM() throws RuntimeException + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_ID(), get_TrxName()); } /** Set UOM. @@ -763,9 +763,23 @@ public class X_Fact_Acct extends PO implements I_Fact_Acct, I_Persistent return new KeyNamePair(get_ID(), String.valueOf(getFact_Acct_ID())); } - public I_GL_Budget getGL_Budget() throws RuntimeException + /** Set Fact_Acct_UU. + @param Fact_Acct_UU Fact_Acct_UU */ + public void setFact_Acct_UU (String Fact_Acct_UU) + { + set_Value (COLUMNNAME_Fact_Acct_UU, Fact_Acct_UU); + } + + /** Get Fact_Acct_UU. + @return Fact_Acct_UU */ + public String getFact_Acct_UU () + { + return (String)get_Value(COLUMNNAME_Fact_Acct_UU); + } + + public org.compiere.model.I_GL_Budget getGL_Budget() throws RuntimeException { - return (I_GL_Budget)MTable.get(getCtx(), I_GL_Budget.Table_Name) + return (org.compiere.model.I_GL_Budget)MTable.get(getCtx(), org.compiere.model.I_GL_Budget.Table_Name) .getPO(getGL_Budget_ID(), get_TrxName()); } /** Set Budget. @@ -791,9 +805,9 @@ public class X_Fact_Acct extends PO implements I_Fact_Acct, I_Persistent return ii.intValue(); } - public I_GL_Category getGL_Category() throws RuntimeException + public org.compiere.model.I_GL_Category getGL_Category() throws RuntimeException { - return (I_GL_Category)MTable.get(getCtx(), I_GL_Category.Table_Name) + return (org.compiere.model.I_GL_Category)MTable.get(getCtx(), org.compiere.model.I_GL_Category.Table_Name) .getPO(getGL_Category_ID(), get_TrxName()); } /** Set GL Category. @@ -842,9 +856,9 @@ public class X_Fact_Acct extends PO implements I_Fact_Acct, I_Persistent return ii.intValue(); } - public I_M_Locator getM_Locator() throws RuntimeException + public org.compiere.model.I_M_Locator getM_Locator() throws RuntimeException { - return (I_M_Locator)MTable.get(getCtx(), I_M_Locator.Table_Name) + return (org.compiere.model.I_M_Locator)MTable.get(getCtx(), org.compiere.model.I_M_Locator.Table_Name) .getPO(getM_Locator_ID(), get_TrxName()); } /** Set Locator. @@ -870,9 +884,9 @@ public class X_Fact_Acct extends PO implements I_Fact_Acct, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -971,9 +985,9 @@ public class X_Fact_Acct extends PO implements I_Fact_Acct, I_Persistent return ii.intValue(); } - public I_C_ElementValue getUser1() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser1_ID(), get_TrxName()); } /** Set User List 1. @@ -999,9 +1013,9 @@ public class X_Fact_Acct extends PO implements I_Fact_Acct, I_Persistent return ii.intValue(); } - public I_C_ElementValue getUser2() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser2_ID(), get_TrxName()); } /** Set User List 2. diff --git a/org.adempiere.base/src/org/compiere/model/X_Fact_Acct_Summary.java b/org.adempiere.base/src/org/compiere/model/X_Fact_Acct_Summary.java index 536e5fed24..c3d563eb75 100644 --- a/org.adempiere.base/src/org/compiere/model/X_Fact_Acct_Summary.java +++ b/org.adempiere.base/src/org/compiere/model/X_Fact_Acct_Summary.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for Fact_Acct_Summary - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_Fact_Acct_Summary extends PO implements I_Fact_Acct_Summary, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_Fact_Acct_Summary (Properties ctx, int Fact_Acct_Summary_ID, String trxName) @@ -79,9 +79,9 @@ public class X_Fact_Acct_Summary extends PO implements I_Fact_Acct_Summary, I_Pe return sb.toString(); } - public I_C_ElementValue getAccount() throws RuntimeException + public org.compiere.model.I_C_ElementValue getAccount() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getAccount_ID(), get_TrxName()); } /** Set Account. @@ -107,9 +107,9 @@ public class X_Fact_Acct_Summary extends PO implements I_Fact_Acct_Summary, I_Pe return ii.intValue(); } - public I_AD_Org getAD_OrgTrx() throws RuntimeException + public org.compiere.model.I_AD_Org getAD_OrgTrx() throws RuntimeException { - return (I_AD_Org)MTable.get(getCtx(), I_AD_Org.Table_Name) + return (org.compiere.model.I_AD_Org)MTable.get(getCtx(), org.compiere.model.I_AD_Org.Table_Name) .getPO(getAD_OrgTrx_ID(), get_TrxName()); } /** Set Trx Organization. @@ -175,9 +175,9 @@ public class X_Fact_Acct_Summary extends PO implements I_Fact_Acct_Summary, I_Pe return bd; } - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException { - return (I_C_AcctSchema)MTable.get(getCtx(), I_C_AcctSchema.Table_Name) + return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_Name) .getPO(getC_AcctSchema_ID(), get_TrxName()); } /** Set Accounting Schema. @@ -203,9 +203,9 @@ public class X_Fact_Acct_Summary extends PO implements I_Fact_Acct_Summary, I_Pe return ii.intValue(); } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -231,9 +231,9 @@ public class X_Fact_Acct_Summary extends PO implements I_Fact_Acct_Summary, I_Pe return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -259,9 +259,9 @@ public class X_Fact_Acct_Summary extends PO implements I_Fact_Acct_Summary, I_Pe return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -287,9 +287,9 @@ public class X_Fact_Acct_Summary extends PO implements I_Fact_Acct_Summary, I_Pe return ii.intValue(); } - public I_C_Location getC_LocFrom() throws RuntimeException + public org.compiere.model.I_C_Location getC_LocFrom() throws RuntimeException { - return (I_C_Location)MTable.get(getCtx(), I_C_Location.Table_Name) + return (org.compiere.model.I_C_Location)MTable.get(getCtx(), org.compiere.model.I_C_Location.Table_Name) .getPO(getC_LocFrom_ID(), get_TrxName()); } /** Set Location From. @@ -315,9 +315,9 @@ public class X_Fact_Acct_Summary extends PO implements I_Fact_Acct_Summary, I_Pe return ii.intValue(); } - public I_C_Location getC_LocTo() throws RuntimeException + public org.compiere.model.I_C_Location getC_LocTo() throws RuntimeException { - return (I_C_Location)MTable.get(getCtx(), I_C_Location.Table_Name) + return (org.compiere.model.I_C_Location)MTable.get(getCtx(), org.compiere.model.I_C_Location.Table_Name) .getPO(getC_LocTo_ID(), get_TrxName()); } /** Set Location To. @@ -343,9 +343,9 @@ public class X_Fact_Acct_Summary extends PO implements I_Fact_Acct_Summary, I_Pe return ii.intValue(); } - public I_C_Period getC_Period() throws RuntimeException + public org.compiere.model.I_C_Period getC_Period() throws RuntimeException { - return (I_C_Period)MTable.get(getCtx(), I_C_Period.Table_Name) + return (org.compiere.model.I_C_Period)MTable.get(getCtx(), org.compiere.model.I_C_Period.Table_Name) .getPO(getC_Period_ID(), get_TrxName()); } /** Set Period. @@ -371,9 +371,9 @@ public class X_Fact_Acct_Summary extends PO implements I_Fact_Acct_Summary, I_Pe return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -399,9 +399,9 @@ public class X_Fact_Acct_Summary extends PO implements I_Fact_Acct_Summary, I_Pe return ii.intValue(); } - public I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException + public org.compiere.model.I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException { - return (I_C_ProjectPhase)MTable.get(getCtx(), I_C_ProjectPhase.Table_Name) + return (org.compiere.model.I_C_ProjectPhase)MTable.get(getCtx(), org.compiere.model.I_C_ProjectPhase.Table_Name) .getPO(getC_ProjectPhase_ID(), get_TrxName()); } /** Set Project Phase. @@ -427,9 +427,9 @@ public class X_Fact_Acct_Summary extends PO implements I_Fact_Acct_Summary, I_Pe return ii.intValue(); } - public I_C_ProjectTask getC_ProjectTask() throws RuntimeException + public org.compiere.model.I_C_ProjectTask getC_ProjectTask() throws RuntimeException { - return (I_C_ProjectTask)MTable.get(getCtx(), I_C_ProjectTask.Table_Name) + return (org.compiere.model.I_C_ProjectTask)MTable.get(getCtx(), org.compiere.model.I_C_ProjectTask.Table_Name) .getPO(getC_ProjectTask_ID(), get_TrxName()); } /** Set Project Task. @@ -455,9 +455,9 @@ public class X_Fact_Acct_Summary extends PO implements I_Fact_Acct_Summary, I_Pe return ii.intValue(); } - public I_C_SalesRegion getC_SalesRegion() throws RuntimeException + public org.compiere.model.I_C_SalesRegion getC_SalesRegion() throws RuntimeException { - return (I_C_SalesRegion)MTable.get(getCtx(), I_C_SalesRegion.Table_Name) + return (org.compiere.model.I_C_SalesRegion)MTable.get(getCtx(), org.compiere.model.I_C_SalesRegion.Table_Name) .getPO(getC_SalesRegion_ID(), get_TrxName()); } /** Set Sales Region. @@ -483,9 +483,9 @@ public class X_Fact_Acct_Summary extends PO implements I_Fact_Acct_Summary, I_Pe return ii.intValue(); } - public I_C_SubAcct getC_SubAcct() throws RuntimeException + public org.compiere.model.I_C_SubAcct getC_SubAcct() throws RuntimeException { - return (I_C_SubAcct)MTable.get(getCtx(), I_C_SubAcct.Table_Name) + return (org.compiere.model.I_C_SubAcct)MTable.get(getCtx(), org.compiere.model.I_C_SubAcct.Table_Name) .getPO(getC_SubAcct_ID(), get_TrxName()); } /** Set Sub Account. @@ -528,9 +528,23 @@ public class X_Fact_Acct_Summary extends PO implements I_Fact_Acct_Summary, I_Pe return (Timestamp)get_Value(COLUMNNAME_DateAcct); } - public I_GL_Budget getGL_Budget() throws RuntimeException + /** Set Fact_Acct_Summary_UU. + @param Fact_Acct_Summary_UU Fact_Acct_Summary_UU */ + public void setFact_Acct_Summary_UU (String Fact_Acct_Summary_UU) + { + set_Value (COLUMNNAME_Fact_Acct_Summary_UU, Fact_Acct_Summary_UU); + } + + /** Get Fact_Acct_Summary_UU. + @return Fact_Acct_Summary_UU */ + public String getFact_Acct_Summary_UU () + { + return (String)get_Value(COLUMNNAME_Fact_Acct_Summary_UU); + } + + public org.compiere.model.I_GL_Budget getGL_Budget() throws RuntimeException { - return (I_GL_Budget)MTable.get(getCtx(), I_GL_Budget.Table_Name) + return (org.compiere.model.I_GL_Budget)MTable.get(getCtx(), org.compiere.model.I_GL_Budget.Table_Name) .getPO(getGL_Budget_ID(), get_TrxName()); } /** Set Budget. @@ -556,9 +570,9 @@ public class X_Fact_Acct_Summary extends PO implements I_Fact_Acct_Summary, I_Pe return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -584,9 +598,9 @@ public class X_Fact_Acct_Summary extends PO implements I_Fact_Acct_Summary, I_Pe return ii.intValue(); } - public I_PA_ReportCube getPA_ReportCube() throws RuntimeException + public org.compiere.model.I_PA_ReportCube getPA_ReportCube() throws RuntimeException { - return (I_PA_ReportCube)MTable.get(getCtx(), I_PA_ReportCube.Table_Name) + return (org.compiere.model.I_PA_ReportCube)MTable.get(getCtx(), org.compiere.model.I_PA_ReportCube.Table_Name) .getPO(getPA_ReportCube_ID(), get_TrxName()); } /** Set Report Cube. @@ -656,9 +670,9 @@ public class X_Fact_Acct_Summary extends PO implements I_Fact_Acct_Summary, I_Pe return bd; } - public I_C_ElementValue getUser1() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser1_ID(), get_TrxName()); } /** Set User List 1. @@ -684,9 +698,9 @@ public class X_Fact_Acct_Summary extends PO implements I_Fact_Acct_Summary, I_Pe return ii.intValue(); } - public I_C_ElementValue getUser2() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser2_ID(), get_TrxName()); } /** Set User List 2. diff --git a/org.adempiere.base/src/org/compiere/model/X_Fact_Reconciliation.java b/org.adempiere.base/src/org/compiere/model/X_Fact_Reconciliation.java index e8fdd8ff38..ec353556b9 100644 --- a/org.adempiere.base/src/org/compiere/model/X_Fact_Reconciliation.java +++ b/org.adempiere.base/src/org/compiere/model/X_Fact_Reconciliation.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for Fact_Reconciliation - * @author Adempiere (generated) - * @version 360LTS.015 - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_Fact_Reconciliation extends PO implements I_Fact_Reconciliation, I_Persistent { /** * */ - private static final long serialVersionUID = 20120229L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_Fact_Reconciliation (Properties ctx, int Fact_Reconciliation_ID, String trxName) @@ -74,9 +74,9 @@ public class X_Fact_Reconciliation extends PO implements I_Fact_Reconciliation, return sb.toString(); } - public I_C_ElementValue getAccount() throws RuntimeException + public org.compiere.model.I_C_ElementValue getAccount() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getAccount_ID(), get_TrxName()); } /** Set Account. @@ -117,9 +117,9 @@ public class X_Fact_Reconciliation extends PO implements I_Fact_Reconciliation, return bd; } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -157,9 +157,9 @@ public class X_Fact_Reconciliation extends PO implements I_Fact_Reconciliation, return (Timestamp)get_Value(COLUMNNAME_DateAcct); } - public I_Fact_Acct getFact_Acct() throws RuntimeException + public org.compiere.model.I_Fact_Acct getFact_Acct() throws RuntimeException { - return (I_Fact_Acct)MTable.get(getCtx(), I_Fact_Acct.Table_Name) + return (org.compiere.model.I_Fact_Acct)MTable.get(getCtx(), org.compiere.model.I_Fact_Acct.Table_Name) .getPO(getFact_Acct_ID(), get_TrxName()); } /** Set Accounting Fact. @@ -210,6 +210,20 @@ public class X_Fact_Reconciliation extends PO implements I_Fact_Reconciliation, return ii.intValue(); } + /** Set Fact_Reconciliation_UU. + @param Fact_Reconciliation_UU Fact_Reconciliation_UU */ + public void setFact_Reconciliation_UU (String Fact_Reconciliation_UU) + { + set_Value (COLUMNNAME_Fact_Reconciliation_UU, Fact_Reconciliation_UU); + } + + /** Get Fact_Reconciliation_UU. + @return Fact_Reconciliation_UU */ + public String getFact_Reconciliation_UU () + { + return (String)get_Value(COLUMNNAME_Fact_Reconciliation_UU); + } + /** Set Match Code. @param MatchCode String identifying related accounting facts diff --git a/org.adempiere.base/src/org/compiere/model/X_GL_Budget.java b/org.adempiere.base/src/org/compiere/model/X_GL_Budget.java index 44eb62b307..c2c4d1fbcd 100644 --- a/org.adempiere.base/src/org/compiere/model/X_GL_Budget.java +++ b/org.adempiere.base/src/org/compiere/model/X_GL_Budget.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for GL_Budget - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_GL_Budget extends PO implements I_GL_Budget, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_GL_Budget (Properties ctx, int GL_Budget_ID, String trxName) @@ -136,6 +136,20 @@ public class X_GL_Budget extends PO implements I_GL_Budget, I_Persistent return ii.intValue(); } + /** Set GL_Budget_UU. + @param GL_Budget_UU GL_Budget_UU */ + public void setGL_Budget_UU (String GL_Budget_UU) + { + set_Value (COLUMNNAME_GL_Budget_UU, GL_Budget_UU); + } + + /** Get GL_Budget_UU. + @return GL_Budget_UU */ + public String getGL_Budget_UU () + { + return (String)get_Value(COLUMNNAME_GL_Budget_UU); + } + /** Set Primary. @param IsPrimary Indicates if this is the primary budget diff --git a/org.adempiere.base/src/org/compiere/model/X_GL_BudgetControl.java b/org.adempiere.base/src/org/compiere/model/X_GL_BudgetControl.java index b8765ebfa7..03aec8753b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_GL_BudgetControl.java +++ b/org.adempiere.base/src/org/compiere/model/X_GL_BudgetControl.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for GL_BudgetControl - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_GL_BudgetControl extends PO implements I_GL_BudgetControl, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_GL_BudgetControl (Properties ctx, int GL_BudgetControl_ID, String trxName) @@ -103,9 +103,9 @@ public class X_GL_BudgetControl extends PO implements I_GL_BudgetControl, I_Pers return (String)get_Value(COLUMNNAME_BudgetControlScope); } - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException { - return (I_C_AcctSchema)MTable.get(getCtx(), I_C_AcctSchema.Table_Name) + return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_Name) .getPO(getC_AcctSchema_ID(), get_TrxName()); } /** Set Accounting Schema. @@ -203,9 +203,23 @@ public class X_GL_BudgetControl extends PO implements I_GL_BudgetControl, I_Pers return ii.intValue(); } - public I_GL_Budget getGL_Budget() throws RuntimeException + /** Set GL_BudgetControl_UU. + @param GL_BudgetControl_UU GL_BudgetControl_UU */ + public void setGL_BudgetControl_UU (String GL_BudgetControl_UU) + { + set_Value (COLUMNNAME_GL_BudgetControl_UU, GL_BudgetControl_UU); + } + + /** Get GL_BudgetControl_UU. + @return GL_BudgetControl_UU */ + public String getGL_BudgetControl_UU () + { + return (String)get_Value(COLUMNNAME_GL_BudgetControl_UU); + } + + public org.compiere.model.I_GL_Budget getGL_Budget() throws RuntimeException { - return (I_GL_Budget)MTable.get(getCtx(), I_GL_Budget.Table_Name) + return (org.compiere.model.I_GL_Budget)MTable.get(getCtx(), org.compiere.model.I_GL_Budget.Table_Name) .getPO(getGL_Budget_ID(), get_TrxName()); } /** Set Budget. diff --git a/org.adempiere.base/src/org/compiere/model/X_GL_Category.java b/org.adempiere.base/src/org/compiere/model/X_GL_Category.java index f961016054..6759691649 100644 --- a/org.adempiere.base/src/org/compiere/model/X_GL_Category.java +++ b/org.adempiere.base/src/org/compiere/model/X_GL_Category.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for GL_Category - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_GL_Category extends PO implements I_GL_Category, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_GL_Category (Properties ctx, int GL_Category_ID, String trxName) @@ -142,6 +142,20 @@ public class X_GL_Category extends PO implements I_GL_Category, I_Persistent return ii.intValue(); } + /** Set GL_Category_UU. + @param GL_Category_UU GL_Category_UU */ + public void setGL_Category_UU (String GL_Category_UU) + { + set_Value (COLUMNNAME_GL_Category_UU, GL_Category_UU); + } + + /** Get GL_Category_UU. + @return GL_Category_UU */ + public String getGL_Category_UU () + { + return (String)get_Value(COLUMNNAME_GL_Category_UU); + } + /** Set Default. @param IsDefault Default value diff --git a/org.adempiere.base/src/org/compiere/model/X_GL_Distribution.java b/org.adempiere.base/src/org/compiere/model/X_GL_Distribution.java index 679f1e404b..91917e74d6 100644 --- a/org.adempiere.base/src/org/compiere/model/X_GL_Distribution.java +++ b/org.adempiere.base/src/org/compiere/model/X_GL_Distribution.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for GL_Distribution - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_GL_Distribution extends PO implements I_GL_Distribution, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_GL_Distribution (Properties ctx, int GL_Distribution_ID, String trxName) @@ -105,9 +105,9 @@ public class X_GL_Distribution extends PO implements I_GL_Distribution, I_Persis return sb.toString(); } - public I_C_ElementValue getAccount() throws RuntimeException + public org.compiere.model.I_C_ElementValue getAccount() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getAccount_ID(), get_TrxName()); } /** Set Account. @@ -468,9 +468,9 @@ public class X_GL_Distribution extends PO implements I_GL_Distribution, I_Persis return false; } - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException { - return (I_C_AcctSchema)MTable.get(getCtx(), I_C_AcctSchema.Table_Name) + return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_Name) .getPO(getC_AcctSchema_ID(), get_TrxName()); } /** Set Accounting Schema. @@ -496,9 +496,9 @@ public class X_GL_Distribution extends PO implements I_GL_Distribution, I_Persis return ii.intValue(); } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -524,9 +524,9 @@ public class X_GL_Distribution extends PO implements I_GL_Distribution, I_Persis return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -552,9 +552,9 @@ public class X_GL_Distribution extends PO implements I_GL_Distribution, I_Persis return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -580,9 +580,9 @@ public class X_GL_Distribution extends PO implements I_GL_Distribution, I_Persis return ii.intValue(); } - public I_C_DocType getC_DocType() throws RuntimeException + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocType_ID(), get_TrxName()); } /** Set Document Type. @@ -608,9 +608,9 @@ public class X_GL_Distribution extends PO implements I_GL_Distribution, I_Persis return ii.intValue(); } - public I_C_Location getC_LocFrom() throws RuntimeException + public org.compiere.model.I_C_Location getC_LocFrom() throws RuntimeException { - return (I_C_Location)MTable.get(getCtx(), I_C_Location.Table_Name) + return (org.compiere.model.I_C_Location)MTable.get(getCtx(), org.compiere.model.I_C_Location.Table_Name) .getPO(getC_LocFrom_ID(), get_TrxName()); } /** Set Location From. @@ -636,9 +636,9 @@ public class X_GL_Distribution extends PO implements I_GL_Distribution, I_Persis return ii.intValue(); } - public I_C_Location getC_LocTo() throws RuntimeException + public org.compiere.model.I_C_Location getC_LocTo() throws RuntimeException { - return (I_C_Location)MTable.get(getCtx(), I_C_Location.Table_Name) + return (org.compiere.model.I_C_Location)MTable.get(getCtx(), org.compiere.model.I_C_Location.Table_Name) .getPO(getC_LocTo_ID(), get_TrxName()); } /** Set Location To. @@ -664,9 +664,9 @@ public class X_GL_Distribution extends PO implements I_GL_Distribution, I_Persis return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -692,9 +692,9 @@ public class X_GL_Distribution extends PO implements I_GL_Distribution, I_Persis return ii.intValue(); } - public I_C_SalesRegion getC_SalesRegion() throws RuntimeException + public org.compiere.model.I_C_SalesRegion getC_SalesRegion() throws RuntimeException { - return (I_C_SalesRegion)MTable.get(getCtx(), I_C_SalesRegion.Table_Name) + return (org.compiere.model.I_C_SalesRegion)MTable.get(getCtx(), org.compiere.model.I_C_SalesRegion.Table_Name) .getPO(getC_SalesRegion_ID(), get_TrxName()); } /** Set Sales Region. @@ -760,6 +760,20 @@ public class X_GL_Distribution extends PO implements I_GL_Distribution, I_Persis return ii.intValue(); } + /** Set GL_Distribution_UU. + @param GL_Distribution_UU GL_Distribution_UU */ + public void setGL_Distribution_UU (String GL_Distribution_UU) + { + set_Value (COLUMNNAME_GL_Distribution_UU, GL_Distribution_UU); + } + + /** Get GL_Distribution_UU. + @return GL_Distribution_UU */ + public String getGL_Distribution_UU () + { + return (String)get_Value(COLUMNNAME_GL_Distribution_UU); + } + /** Set Comment/Help. @param Help Comment or Hint @@ -825,9 +839,9 @@ public class X_GL_Distribution extends PO implements I_GL_Distribution, I_Persis return false; } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -972,9 +986,9 @@ public class X_GL_Distribution extends PO implements I_GL_Distribution, I_Persis return false; } - public I_C_ElementValue getUser1() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser1_ID(), get_TrxName()); } /** Set User List 1. @@ -1000,9 +1014,9 @@ public class X_GL_Distribution extends PO implements I_GL_Distribution, I_Persis return ii.intValue(); } - public I_C_ElementValue getUser2() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser2_ID(), get_TrxName()); } /** Set User List 2. diff --git a/org.adempiere.base/src/org/compiere/model/X_GL_DistributionLine.java b/org.adempiere.base/src/org/compiere/model/X_GL_DistributionLine.java index 5a39ab1bc0..5308694e15 100644 --- a/org.adempiere.base/src/org/compiere/model/X_GL_DistributionLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_GL_DistributionLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for GL_DistributionLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_GL_DistributionLine extends PO implements I_GL_DistributionLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_GL_DistributionLine (Properties ctx, int GL_DistributionLine_ID, String trxName) @@ -135,9 +135,9 @@ public class X_GL_DistributionLine extends PO implements I_GL_DistributionLine, return ii.intValue(); } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -163,9 +163,9 @@ public class X_GL_DistributionLine extends PO implements I_GL_DistributionLine, return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -191,9 +191,9 @@ public class X_GL_DistributionLine extends PO implements I_GL_DistributionLine, return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -219,9 +219,9 @@ public class X_GL_DistributionLine extends PO implements I_GL_DistributionLine, return ii.intValue(); } - public I_C_Location getC_LocFrom() throws RuntimeException + public org.compiere.model.I_C_Location getC_LocFrom() throws RuntimeException { - return (I_C_Location)MTable.get(getCtx(), I_C_Location.Table_Name) + return (org.compiere.model.I_C_Location)MTable.get(getCtx(), org.compiere.model.I_C_Location.Table_Name) .getPO(getC_LocFrom_ID(), get_TrxName()); } /** Set Location From. @@ -247,9 +247,9 @@ public class X_GL_DistributionLine extends PO implements I_GL_DistributionLine, return ii.intValue(); } - public I_C_Location getC_LocTo() throws RuntimeException + public org.compiere.model.I_C_Location getC_LocTo() throws RuntimeException { - return (I_C_Location)MTable.get(getCtx(), I_C_Location.Table_Name) + return (org.compiere.model.I_C_Location)MTable.get(getCtx(), org.compiere.model.I_C_Location.Table_Name) .getPO(getC_LocTo_ID(), get_TrxName()); } /** Set Location To. @@ -275,9 +275,9 @@ public class X_GL_DistributionLine extends PO implements I_GL_DistributionLine, return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -303,9 +303,9 @@ public class X_GL_DistributionLine extends PO implements I_GL_DistributionLine, return ii.intValue(); } - public I_C_SalesRegion getC_SalesRegion() throws RuntimeException + public org.compiere.model.I_C_SalesRegion getC_SalesRegion() throws RuntimeException { - return (I_C_SalesRegion)MTable.get(getCtx(), I_C_SalesRegion.Table_Name) + return (org.compiere.model.I_C_SalesRegion)MTable.get(getCtx(), org.compiere.model.I_C_SalesRegion.Table_Name) .getPO(getC_SalesRegion_ID(), get_TrxName()); } /** Set Sales Region. @@ -348,9 +348,9 @@ public class X_GL_DistributionLine extends PO implements I_GL_DistributionLine, return (String)get_Value(COLUMNNAME_Description); } - public I_GL_Distribution getGL_Distribution() throws RuntimeException + public org.compiere.model.I_GL_Distribution getGL_Distribution() throws RuntimeException { - return (I_GL_Distribution)MTable.get(getCtx(), I_GL_Distribution.Table_Name) + return (org.compiere.model.I_GL_Distribution)MTable.get(getCtx(), org.compiere.model.I_GL_Distribution.Table_Name) .getPO(getGL_Distribution_ID(), get_TrxName()); } /** Set GL Distribution. @@ -399,6 +399,20 @@ public class X_GL_DistributionLine extends PO implements I_GL_DistributionLine, return ii.intValue(); } + /** Set GL_DistributionLine_UU. + @param GL_DistributionLine_UU GL_DistributionLine_UU */ + public void setGL_DistributionLine_UU (String GL_DistributionLine_UU) + { + set_Value (COLUMNNAME_GL_DistributionLine_UU, GL_DistributionLine_UU); + } + + /** Get GL_DistributionLine_UU. + @return GL_DistributionLine_UU */ + public String getGL_DistributionLine_UU () + { + return (String)get_Value(COLUMNNAME_GL_DistributionLine_UU); + } + /** Set Line No. @param Line Unique line for this document @@ -427,9 +441,9 @@ public class X_GL_DistributionLine extends PO implements I_GL_DistributionLine, return new KeyNamePair(get_ID(), String.valueOf(getLine())); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -810,9 +824,9 @@ public class X_GL_DistributionLine extends PO implements I_GL_DistributionLine, return bd; } - public I_C_ElementValue getUser1() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser1_ID(), get_TrxName()); } /** Set User List 1. @@ -838,9 +852,9 @@ public class X_GL_DistributionLine extends PO implements I_GL_DistributionLine, return ii.intValue(); } - public I_C_ElementValue getUser2() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser2_ID(), get_TrxName()); } /** Set User List 2. diff --git a/org.adempiere.base/src/org/compiere/model/X_GL_Fund.java b/org.adempiere.base/src/org/compiere/model/X_GL_Fund.java index 4078f042a1..af71f6ef88 100644 --- a/org.adempiere.base/src/org/compiere/model/X_GL_Fund.java +++ b/org.adempiere.base/src/org/compiere/model/X_GL_Fund.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for GL_Fund - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_GL_Fund extends PO implements I_GL_Fund, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_GL_Fund (Properties ctx, int GL_Fund_ID, String trxName) @@ -96,9 +96,9 @@ public class X_GL_Fund extends PO implements I_GL_Fund, I_Persistent return bd; } - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException { - return (I_C_AcctSchema)MTable.get(getCtx(), I_C_AcctSchema.Table_Name) + return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_Name) .getPO(getC_AcctSchema_ID(), get_TrxName()); } /** Set Accounting Schema. @@ -198,6 +198,20 @@ public class X_GL_Fund extends PO implements I_GL_Fund, I_Persistent return ii.intValue(); } + /** Set GL_Fund_UU. + @param GL_Fund_UU GL_Fund_UU */ + public void setGL_Fund_UU (String GL_Fund_UU) + { + set_Value (COLUMNNAME_GL_Fund_UU, GL_Fund_UU); + } + + /** Get GL_Fund_UU. + @return GL_Fund_UU */ + public String getGL_Fund_UU () + { + return (String)get_Value(COLUMNNAME_GL_Fund_UU); + } + /** Set Comment/Help. @param Help Comment or Hint diff --git a/org.adempiere.base/src/org/compiere/model/X_GL_FundRestriction.java b/org.adempiere.base/src/org/compiere/model/X_GL_FundRestriction.java index 462840c40e..04c3b265c4 100644 --- a/org.adempiere.base/src/org/compiere/model/X_GL_FundRestriction.java +++ b/org.adempiere.base/src/org/compiere/model/X_GL_FundRestriction.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for GL_FundRestriction - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_GL_FundRestriction extends PO implements I_GL_FundRestriction, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_GL_FundRestriction (Properties ctx, int GL_FundRestriction_ID, String trxName) @@ -73,9 +73,9 @@ public class X_GL_FundRestriction extends PO implements I_GL_FundRestriction, I_ return sb.toString(); } - public I_C_ElementValue getC_ElementValue() throws RuntimeException + public org.compiere.model.I_C_ElementValue getC_ElementValue() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getC_ElementValue_ID(), get_TrxName()); } /** Set Account Element. @@ -118,9 +118,9 @@ public class X_GL_FundRestriction extends PO implements I_GL_FundRestriction, I_ return (String)get_Value(COLUMNNAME_Description); } - public I_GL_Fund getGL_Fund() throws RuntimeException + public org.compiere.model.I_GL_Fund getGL_Fund() throws RuntimeException { - return (I_GL_Fund)MTable.get(getCtx(), I_GL_Fund.Table_Name) + return (org.compiere.model.I_GL_Fund)MTable.get(getCtx(), org.compiere.model.I_GL_Fund.Table_Name) .getPO(getGL_Fund_ID(), get_TrxName()); } /** Set GL Fund. @@ -169,6 +169,20 @@ public class X_GL_FundRestriction extends PO implements I_GL_FundRestriction, I_ return ii.intValue(); } + /** Set GL_FundRestriction_UU. + @param GL_FundRestriction_UU GL_FundRestriction_UU */ + public void setGL_FundRestriction_UU (String GL_FundRestriction_UU) + { + set_Value (COLUMNNAME_GL_FundRestriction_UU, GL_FundRestriction_UU); + } + + /** Get GL_FundRestriction_UU. + @return GL_FundRestriction_UU */ + public String getGL_FundRestriction_UU () + { + return (String)get_Value(COLUMNNAME_GL_FundRestriction_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_GL_Journal.java b/org.adempiere.base/src/org/compiere/model/X_GL_Journal.java index 0ba54b6df9..fee54450ec 100644 --- a/org.adempiere.base/src/org/compiere/model/X_GL_Journal.java +++ b/org.adempiere.base/src/org/compiere/model/X_GL_Journal.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for GL_Journal - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_GL_Journal extends PO implements I_GL_Journal, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_GL_Journal (Properties ctx, int GL_Journal_ID, String trxName) @@ -108,9 +108,9 @@ public class X_GL_Journal extends PO implements I_GL_Journal, I_Persistent return sb.toString(); } - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException { - return (I_C_AcctSchema)MTable.get(getCtx(), I_C_AcctSchema.Table_Name) + return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_Name) .getPO(getC_AcctSchema_ID(), get_TrxName()); } /** Set Accounting Schema. @@ -136,9 +136,9 @@ public class X_GL_Journal extends PO implements I_GL_Journal, I_Persistent return ii.intValue(); } - public I_C_ConversionType getC_ConversionType() throws RuntimeException + public org.compiere.model.I_C_ConversionType getC_ConversionType() throws RuntimeException { - return (I_C_ConversionType)MTable.get(getCtx(), I_C_ConversionType.Table_Name) + return (org.compiere.model.I_C_ConversionType)MTable.get(getCtx(), org.compiere.model.I_C_ConversionType.Table_Name) .getPO(getC_ConversionType_ID(), get_TrxName()); } /** Set Currency Type. @@ -164,9 +164,9 @@ public class X_GL_Journal extends PO implements I_GL_Journal, I_Persistent return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -192,9 +192,9 @@ public class X_GL_Journal extends PO implements I_GL_Journal, I_Persistent return ii.intValue(); } - public I_C_DocType getC_DocType() throws RuntimeException + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocType_ID(), get_TrxName()); } /** Set Document Type. @@ -240,9 +240,26 @@ public class X_GL_Journal extends PO implements I_GL_Journal, I_Persistent return bd; } - public I_C_Period getC_Period() throws RuntimeException + /** Set Copy From. + @param CopyFrom + Copy From Record + */ + public void setCopyFrom (String CopyFrom) + { + set_Value (COLUMNNAME_CopyFrom, CopyFrom); + } + + /** Get Copy From. + @return Copy From Record + */ + public String getCopyFrom () + { + return (String)get_Value(COLUMNNAME_CopyFrom); + } + + public org.compiere.model.I_C_Period getC_Period() throws RuntimeException { - return (I_C_Period)MTable.get(getCtx(), I_C_Period.Table_Name) + return (org.compiere.model.I_C_Period)MTable.get(getCtx(), org.compiere.model.I_C_Period.Table_Name) .getPO(getC_Period_ID(), get_TrxName()); } /** Set Period. @@ -456,9 +473,9 @@ public class X_GL_Journal extends PO implements I_GL_Journal, I_Persistent return new KeyNamePair(get_ID(), getDocumentNo()); } - public I_GL_Budget getGL_Budget() throws RuntimeException + public org.compiere.model.I_GL_Budget getGL_Budget() throws RuntimeException { - return (I_GL_Budget)MTable.get(getCtx(), I_GL_Budget.Table_Name) + return (org.compiere.model.I_GL_Budget)MTable.get(getCtx(), org.compiere.model.I_GL_Budget.Table_Name) .getPO(getGL_Budget_ID(), get_TrxName()); } /** Set Budget. @@ -484,9 +501,9 @@ public class X_GL_Journal extends PO implements I_GL_Journal, I_Persistent return ii.intValue(); } - public I_GL_Category getGL_Category() throws RuntimeException + public org.compiere.model.I_GL_Category getGL_Category() throws RuntimeException { - return (I_GL_Category)MTable.get(getCtx(), I_GL_Category.Table_Name) + return (org.compiere.model.I_GL_Category)MTable.get(getCtx(), org.compiere.model.I_GL_Category.Table_Name) .getPO(getGL_Category_ID(), get_TrxName()); } /** Set GL Category. @@ -512,9 +529,9 @@ public class X_GL_Journal extends PO implements I_GL_Journal, I_Persistent return ii.intValue(); } - public I_GL_JournalBatch getGL_JournalBatch() throws RuntimeException + public org.compiere.model.I_GL_JournalBatch getGL_JournalBatch() throws RuntimeException { - return (I_GL_JournalBatch)MTable.get(getCtx(), I_GL_JournalBatch.Table_Name) + return (org.compiere.model.I_GL_JournalBatch)MTable.get(getCtx(), org.compiere.model.I_GL_JournalBatch.Table_Name) .getPO(getGL_JournalBatch_ID(), get_TrxName()); } /** Set Journal Batch. @@ -563,6 +580,20 @@ public class X_GL_Journal extends PO implements I_GL_Journal, I_Persistent return ii.intValue(); } + /** Set GL_Journal_UU. + @param GL_Journal_UU GL_Journal_UU */ + public void setGL_Journal_UU (String GL_Journal_UU) + { + set_Value (COLUMNNAME_GL_Journal_UU, GL_Journal_UU); + } + + /** Get GL_Journal_UU. + @return GL_Journal_UU */ + public String getGL_Journal_UU () + { + return (String)get_Value(COLUMNNAME_GL_Journal_UU); + } + /** Set Approved. @param IsApproved Indicates if this document requires approval @@ -730,9 +761,9 @@ public class X_GL_Journal extends PO implements I_GL_Journal, I_Persistent return false; } - public I_GL_Journal getReversal() throws RuntimeException + public org.compiere.model.I_GL_Journal getReversal() throws RuntimeException { - return (I_GL_Journal)MTable.get(getCtx(), I_GL_Journal.Table_Name) + return (org.compiere.model.I_GL_Journal)MTable.get(getCtx(), org.compiere.model.I_GL_Journal.Table_Name) .getPO(getReversal_ID(), get_TrxName()); } /** Set Reversal ID. diff --git a/org.adempiere.base/src/org/compiere/model/X_GL_JournalBatch.java b/org.adempiere.base/src/org/compiere/model/X_GL_JournalBatch.java index 3a504a55dc..72b5b45d91 100644 --- a/org.adempiere.base/src/org/compiere/model/X_GL_JournalBatch.java +++ b/org.adempiere.base/src/org/compiere/model/X_GL_JournalBatch.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for GL_JournalBatch - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_GL_JournalBatch extends PO implements I_GL_JournalBatch, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_GL_JournalBatch (Properties ctx, int GL_JournalBatch_ID, String trxName) @@ -86,9 +86,9 @@ public class X_GL_JournalBatch extends PO implements I_GL_JournalBatch, I_Persis return sb.toString(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -114,9 +114,9 @@ public class X_GL_JournalBatch extends PO implements I_GL_JournalBatch, I_Persis return ii.intValue(); } - public I_C_DocType getC_DocType() throws RuntimeException + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocType_ID(), get_TrxName()); } /** Set Document Type. @@ -179,9 +179,9 @@ public class X_GL_JournalBatch extends PO implements I_GL_JournalBatch, I_Persis return (String)get_Value(COLUMNNAME_CopyFrom); } - public I_C_Period getC_Period() throws RuntimeException + public org.compiere.model.I_C_Period getC_Period() throws RuntimeException { - return (I_C_Period)MTable.get(getCtx(), I_C_Period.Table_Name) + return (org.compiere.model.I_C_Period)MTable.get(getCtx(), org.compiere.model.I_C_Period.Table_Name) .getPO(getC_Period_ID(), get_TrxName()); } /** Set Period. @@ -375,9 +375,9 @@ public class X_GL_JournalBatch extends PO implements I_GL_JournalBatch, I_Persis return new KeyNamePair(get_ID(), getDocumentNo()); } - public I_GL_Category getGL_Category() throws RuntimeException + public org.compiere.model.I_GL_Category getGL_Category() throws RuntimeException { - return (I_GL_Category)MTable.get(getCtx(), I_GL_Category.Table_Name) + return (org.compiere.model.I_GL_Category)MTable.get(getCtx(), org.compiere.model.I_GL_Category.Table_Name) .getPO(getGL_Category_ID(), get_TrxName()); } /** Set GL Category. @@ -426,6 +426,20 @@ public class X_GL_JournalBatch extends PO implements I_GL_JournalBatch, I_Persis return ii.intValue(); } + /** Set GL_JournalBatch_UU. + @param GL_JournalBatch_UU GL_JournalBatch_UU */ + public void setGL_JournalBatch_UU (String GL_JournalBatch_UU) + { + set_Value (COLUMNNAME_GL_JournalBatch_UU, GL_JournalBatch_UU); + } + + /** Get GL_JournalBatch_UU. + @return GL_JournalBatch_UU */ + public String getGL_JournalBatch_UU () + { + return (String)get_Value(COLUMNNAME_GL_JournalBatch_UU); + } + /** Set Approved. @param IsApproved Indicates if this document requires approval @@ -525,9 +539,9 @@ public class X_GL_JournalBatch extends PO implements I_GL_JournalBatch, I_Persis return false; } - public I_GL_JournalBatch getReversal() throws RuntimeException + public org.compiere.model.I_GL_JournalBatch getReversal() throws RuntimeException { - return (I_GL_JournalBatch)MTable.get(getCtx(), I_GL_JournalBatch.Table_Name) + return (org.compiere.model.I_GL_JournalBatch)MTable.get(getCtx(), org.compiere.model.I_GL_JournalBatch.Table_Name) .getPO(getReversal_ID(), get_TrxName()); } /** Set Reversal ID. diff --git a/org.adempiere.base/src/org/compiere/model/X_GL_JournalGenerator.java b/org.adempiere.base/src/org/compiere/model/X_GL_JournalGenerator.java index 1080918bf7..4cb4beee12 100644 --- a/org.adempiere.base/src/org/compiere/model/X_GL_JournalGenerator.java +++ b/org.adempiere.base/src/org/compiere/model/X_GL_JournalGenerator.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for GL_JournalGenerator - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_GL_JournalGenerator extends PO implements I_GL_JournalGenerator, I_Persistent { /** * */ - private static final long serialVersionUID = 20120924L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_GL_JournalGenerator (Properties ctx, int GL_JournalGenerator_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_GL_JournalGeneratorLine.java b/org.adempiere.base/src/org/compiere/model/X_GL_JournalGeneratorLine.java index e9aca8cad5..06e4ad9f5c 100644 --- a/org.adempiere.base/src/org/compiere/model/X_GL_JournalGeneratorLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_GL_JournalGeneratorLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for GL_JournalGeneratorLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_GL_JournalGeneratorLine extends PO implements I_GL_JournalGeneratorLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20120924L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_GL_JournalGeneratorLine (Properties ctx, int GL_JournalGeneratorLine_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_GL_JournalGeneratorSource.java b/org.adempiere.base/src/org/compiere/model/X_GL_JournalGeneratorSource.java index 7ede65679b..62029c3a51 100644 --- a/org.adempiere.base/src/org/compiere/model/X_GL_JournalGeneratorSource.java +++ b/org.adempiere.base/src/org/compiere/model/X_GL_JournalGeneratorSource.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for GL_JournalGeneratorSource - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_GL_JournalGeneratorSource extends PO implements I_GL_JournalGeneratorSource, I_Persistent { /** * */ - private static final long serialVersionUID = 20120924L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_GL_JournalGeneratorSource (Properties ctx, int GL_JournalGeneratorSource_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_GL_JournalLine.java b/org.adempiere.base/src/org/compiere/model/X_GL_JournalLine.java index df06703aed..bcd4c00d3b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_GL_JournalLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_GL_JournalLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for GL_JournalLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_GL_JournalLine extends PO implements I_GL_JournalLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20120725L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_GL_JournalLine (Properties ctx, int GL_JournalLine_ID, String trxName) @@ -173,15 +173,15 @@ public class X_GL_JournalLine extends PO implements I_GL_JournalLine, I_Persiste return ii.intValue(); } - /** Set Asset Related?. - @param A_CreateAsset Asset Related? */ + /** Set Create Asset. + @param A_CreateAsset Create Asset */ public void setA_CreateAsset (boolean A_CreateAsset) { set_Value (COLUMNNAME_A_CreateAsset, Boolean.valueOf(A_CreateAsset)); } - /** Get Asset Related?. - @return Asset Related? */ + /** Get Create Asset. + @return Create Asset */ public boolean isA_CreateAsset () { Object oo = get_Value(COLUMNNAME_A_CreateAsset); diff --git a/org.adempiere.base/src/org/compiere/model/X_IMP_Processor.java b/org.adempiere.base/src/org/compiere/model/X_IMP_Processor.java index 50c8b7eaa8..2af5fc4e46 100644 --- a/org.adempiere.base/src/org/compiere/model/X_IMP_Processor.java +++ b/org.adempiere.base/src/org/compiere/model/X_IMP_Processor.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.sql.Timestamp; import java.util.Properties; /** Generated Model for IMP_Processor - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_IMP_Processor extends PO implements I_IMP_Processor, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_IMP_Processor (Properties ctx, int IMP_Processor_ID, String trxName) @@ -264,6 +264,20 @@ public class X_IMP_Processor extends PO implements I_IMP_Processor, I_Persistent return ii.intValue(); } + /** Set IMP_Processor_UU. + @param IMP_Processor_UU IMP_Processor_UU */ + public void setIMP_Processor_UU (String IMP_Processor_UU) + { + set_Value (COLUMNNAME_IMP_Processor_UU, IMP_Processor_UU); + } + + /** Get IMP_Processor_UU. + @return IMP_Processor_UU */ + public String getIMP_Processor_UU () + { + return (String)get_Value(COLUMNNAME_IMP_Processor_UU); + } + /** Set Days to keep Log. @param KeepLogDays Number of days to keep the log entries diff --git a/org.adempiere.base/src/org/compiere/model/X_IMP_ProcessorLog.java b/org.adempiere.base/src/org/compiere/model/X_IMP_ProcessorLog.java index 0074f23824..688e25919a 100644 --- a/org.adempiere.base/src/org/compiere/model/X_IMP_ProcessorLog.java +++ b/org.adempiere.base/src/org/compiere/model/X_IMP_ProcessorLog.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for IMP_ProcessorLog - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_IMP_ProcessorLog extends PO implements I_IMP_ProcessorLog, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_IMP_ProcessorLog (Properties ctx, int IMP_ProcessorLog_ID, String trxName) @@ -168,6 +168,20 @@ public class X_IMP_ProcessorLog extends PO implements I_IMP_ProcessorLog, I_Pers return ii.intValue(); } + /** Set IMP_ProcessorLog_UU. + @param IMP_ProcessorLog_UU IMP_ProcessorLog_UU */ + public void setIMP_ProcessorLog_UU (String IMP_ProcessorLog_UU) + { + set_Value (COLUMNNAME_IMP_ProcessorLog_UU, IMP_ProcessorLog_UU); + } + + /** Get IMP_ProcessorLog_UU. + @return IMP_ProcessorLog_UU */ + public String getIMP_ProcessorLog_UU () + { + return (String)get_Value(COLUMNNAME_IMP_ProcessorLog_UU); + } + /** Set Error. @param IsError An Error occurred in the execution diff --git a/org.adempiere.base/src/org/compiere/model/X_IMP_ProcessorParameter.java b/org.adempiere.base/src/org/compiere/model/X_IMP_ProcessorParameter.java index 43b027ee19..fb4fe01015 100644 --- a/org.adempiere.base/src/org/compiere/model/X_IMP_ProcessorParameter.java +++ b/org.adempiere.base/src/org/compiere/model/X_IMP_ProcessorParameter.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for IMP_ProcessorParameter - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_IMP_ProcessorParameter extends PO implements I_IMP_ProcessorParameter, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_IMP_ProcessorParameter (Properties ctx, int IMP_ProcessorParameter_ID, String trxName) @@ -151,6 +151,20 @@ public class X_IMP_ProcessorParameter extends PO implements I_IMP_ProcessorParam return ii.intValue(); } + /** Set IMP_ProcessorParameter_UU. + @param IMP_ProcessorParameter_UU IMP_ProcessorParameter_UU */ + public void setIMP_ProcessorParameter_UU (String IMP_ProcessorParameter_UU) + { + set_Value (COLUMNNAME_IMP_ProcessorParameter_UU, IMP_ProcessorParameter_UU); + } + + /** Get IMP_ProcessorParameter_UU. + @return IMP_ProcessorParameter_UU */ + public String getIMP_ProcessorParameter_UU () + { + return (String)get_Value(COLUMNNAME_IMP_ProcessorParameter_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_IMP_Processor_Type.java b/org.adempiere.base/src/org/compiere/model/X_IMP_Processor_Type.java index c8dc2a36f6..ec5307532d 100644 --- a/org.adempiere.base/src/org/compiere/model/X_IMP_Processor_Type.java +++ b/org.adempiere.base/src/org/compiere/model/X_IMP_Processor_Type.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for IMP_Processor_Type - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_IMP_Processor_Type extends PO implements I_IMP_Processor_Type, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_IMP_Processor_Type (Properties ctx, int IMP_Processor_Type_ID, String trxName) @@ -126,6 +126,20 @@ public class X_IMP_Processor_Type extends PO implements I_IMP_Processor_Type, I_ return ii.intValue(); } + /** Set IMP_Processor_Type_UU. + @param IMP_Processor_Type_UU IMP_Processor_Type_UU */ + public void setIMP_Processor_Type_UU (String IMP_Processor_Type_UU) + { + set_Value (COLUMNNAME_IMP_Processor_Type_UU, IMP_Processor_Type_UU); + } + + /** Get IMP_Processor_Type_UU. + @return IMP_Processor_Type_UU */ + public String getIMP_Processor_Type_UU () + { + return (String)get_Value(COLUMNNAME_IMP_Processor_Type_UU); + } + /** Set Java Class. @param JavaClass Java Class */ public void setJavaClass (String JavaClass) diff --git a/org.adempiere.base/src/org/compiere/model/X_I_Asset.java b/org.adempiere.base/src/org/compiere/model/X_I_Asset.java index 30ddff1107..797470fd59 100644 --- a/org.adempiere.base/src/org/compiere/model/X_I_Asset.java +++ b/org.adempiere.base/src/org/compiere/model/X_I_Asset.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for I_Asset - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_I_Asset extends PO implements I_I_Asset, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_I_Asset (Properties ctx, int I_Asset_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_I_BPartner.java b/org.adempiere.base/src/org/compiere/model/X_I_BPartner.java index f38f95b234..51bcfdf255 100644 --- a/org.adempiere.base/src/org/compiere/model/X_I_BPartner.java +++ b/org.adempiere.base/src/org/compiere/model/X_I_BPartner.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for I_BPartner - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_I_BPartner extends PO implements I_I_BPartner, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_I_BPartner (Properties ctx, int I_BPartner_ID, String trxName) @@ -107,9 +107,9 @@ public class X_I_BPartner extends PO implements I_I_BPartner, I_Persistent return (String)get_Value(COLUMNNAME_Address2); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -169,9 +169,9 @@ public class X_I_BPartner extends PO implements I_I_BPartner, I_Persistent return (String)get_Value(COLUMNNAME_BPContactGreeting); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -197,9 +197,9 @@ public class X_I_BPartner extends PO implements I_I_BPartner, I_Persistent return ii.intValue(); } - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException { - return (I_C_BPartner_Location)MTable.get(getCtx(), I_C_BPartner_Location.Table_Name) + return (org.compiere.model.I_C_BPartner_Location)MTable.get(getCtx(), org.compiere.model.I_C_BPartner_Location.Table_Name) .getPO(getC_BPartner_Location_ID(), get_TrxName()); } /** Set Partner Location. @@ -225,9 +225,9 @@ public class X_I_BPartner extends PO implements I_I_BPartner, I_Persistent return ii.intValue(); } - public I_C_BP_Group getC_BP_Group() throws RuntimeException + public org.compiere.model.I_C_BP_Group getC_BP_Group() throws RuntimeException { - return (I_C_BP_Group)MTable.get(getCtx(), I_C_BP_Group.Table_Name) + return (org.compiere.model.I_C_BP_Group)MTable.get(getCtx(), org.compiere.model.I_C_BP_Group.Table_Name) .getPO(getC_BP_Group_ID(), get_TrxName()); } /** Set Business Partner Group. @@ -253,9 +253,9 @@ public class X_I_BPartner extends PO implements I_I_BPartner, I_Persistent return ii.intValue(); } - public I_C_Country getC_Country() throws RuntimeException + public org.compiere.model.I_C_Country getC_Country() throws RuntimeException { - return (I_C_Country)MTable.get(getCtx(), I_C_Country.Table_Name) + return (org.compiere.model.I_C_Country)MTable.get(getCtx(), org.compiere.model.I_C_Country.Table_Name) .getPO(getC_Country_ID(), get_TrxName()); } /** Set Country. @@ -281,9 +281,9 @@ public class X_I_BPartner extends PO implements I_I_BPartner, I_Persistent return ii.intValue(); } - public I_C_Greeting getC_Greeting() throws RuntimeException + public org.compiere.model.I_C_Greeting getC_Greeting() throws RuntimeException { - return (I_C_Greeting)MTable.get(getCtx(), I_C_Greeting.Table_Name) + return (org.compiere.model.I_C_Greeting)MTable.get(getCtx(), org.compiere.model.I_C_Greeting.Table_Name) .getPO(getC_Greeting_ID(), get_TrxName()); } /** Set Greeting. @@ -394,9 +394,9 @@ public class X_I_BPartner extends PO implements I_I_BPartner, I_Persistent return (String)get_Value(COLUMNNAME_CountryCode); } - public I_C_Region getC_Region() throws RuntimeException + public org.compiere.model.I_C_Region getC_Region() throws RuntimeException { - return (I_C_Region)MTable.get(getCtx(), I_C_Region.Table_Name) + return (org.compiere.model.I_C_Region)MTable.get(getCtx(), org.compiere.model.I_C_Region.Table_Name) .getPO(getC_Region_ID(), get_TrxName()); } /** Set Region. @@ -527,6 +527,20 @@ public class X_I_BPartner extends PO implements I_I_BPartner, I_Persistent return ii.intValue(); } + /** Set I_BPartner_UU. + @param I_BPartner_UU I_BPartner_UU */ + public void setI_BPartner_UU (String I_BPartner_UU) + { + set_Value (COLUMNNAME_I_BPartner_UU, I_BPartner_UU); + } + + /** Get I_BPartner_UU. + @return I_BPartner_UU */ + public String getI_BPartner_UU () + { + return (String)get_Value(COLUMNNAME_I_BPartner_UU); + } + /** Set Import Error Message. @param I_ErrorMsg Messages generated from import process @@ -855,9 +869,9 @@ public class X_I_BPartner extends PO implements I_I_BPartner, I_Persistent return (String)get_Value(COLUMNNAME_RegionName); } - public I_R_InterestArea getR_InterestArea() throws RuntimeException + public org.compiere.model.I_R_InterestArea getR_InterestArea() throws RuntimeException { - return (I_R_InterestArea)MTable.get(getCtx(), I_R_InterestArea.Table_Name) + return (org.compiere.model.I_R_InterestArea)MTable.get(getCtx(), org.compiere.model.I_R_InterestArea.Table_Name) .getPO(getR_InterestArea_ID(), get_TrxName()); } /** Set Interest Area. diff --git a/org.adempiere.base/src/org/compiere/model/X_I_BankStatement.java b/org.adempiere.base/src/org/compiere/model/X_I_BankStatement.java index dadfb85c50..1841ff6605 100644 --- a/org.adempiere.base/src/org/compiere/model/X_I_BankStatement.java +++ b/org.adempiere.base/src/org/compiere/model/X_I_BankStatement.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for I_BankStatement - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_I_BankStatement extends PO implements I_I_BankStatement, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_I_BankStatement (Properties ctx, int I_BankStatement_ID, String trxName) @@ -107,9 +107,9 @@ public class X_I_BankStatement extends PO implements I_I_BankStatement, I_Persis return (String)get_Value(COLUMNNAME_BPartnerValue); } - public I_C_BankAccount getC_BankAccount() throws RuntimeException + public org.compiere.model.I_C_BankAccount getC_BankAccount() throws RuntimeException { - return (I_C_BankAccount)MTable.get(getCtx(), I_C_BankAccount.Table_Name) + return (org.compiere.model.I_C_BankAccount)MTable.get(getCtx(), org.compiere.model.I_C_BankAccount.Table_Name) .getPO(getC_BankAccount_ID(), get_TrxName()); } /** Set Bank Account. @@ -135,9 +135,9 @@ public class X_I_BankStatement extends PO implements I_I_BankStatement, I_Persis return ii.intValue(); } - public I_C_BankStatement getC_BankStatement() throws RuntimeException + public org.compiere.model.I_C_BankStatement getC_BankStatement() throws RuntimeException { - return (I_C_BankStatement)MTable.get(getCtx(), I_C_BankStatement.Table_Name) + return (org.compiere.model.I_C_BankStatement)MTable.get(getCtx(), org.compiere.model.I_C_BankStatement.Table_Name) .getPO(getC_BankStatement_ID(), get_TrxName()); } /** Set Bank Statement. @@ -163,9 +163,9 @@ public class X_I_BankStatement extends PO implements I_I_BankStatement, I_Persis return ii.intValue(); } - public I_C_BankStatementLine getC_BankStatementLine() throws RuntimeException + public org.compiere.model.I_C_BankStatementLine getC_BankStatementLine() throws RuntimeException { - return (I_C_BankStatementLine)MTable.get(getCtx(), I_C_BankStatementLine.Table_Name) + return (org.compiere.model.I_C_BankStatementLine)MTable.get(getCtx(), org.compiere.model.I_C_BankStatementLine.Table_Name) .getPO(getC_BankStatementLine_ID(), get_TrxName()); } /** Set Bank statement line. @@ -191,9 +191,9 @@ public class X_I_BankStatement extends PO implements I_I_BankStatement, I_Persis return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -219,9 +219,9 @@ public class X_I_BankStatement extends PO implements I_I_BankStatement, I_Persis return ii.intValue(); } - public I_C_Charge getC_Charge() throws RuntimeException + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException { - return (I_C_Charge)MTable.get(getCtx(), I_C_Charge.Table_Name) + return (org.compiere.model.I_C_Charge)MTable.get(getCtx(), org.compiere.model.I_C_Charge.Table_Name) .getPO(getC_Charge_ID(), get_TrxName()); } /** Set Charge. @@ -247,9 +247,9 @@ public class X_I_BankStatement extends PO implements I_I_BankStatement, I_Persis return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -312,9 +312,9 @@ public class X_I_BankStatement extends PO implements I_I_BankStatement, I_Persis return (String)get_Value(COLUMNNAME_ChargeName); } - public I_C_Invoice getC_Invoice() throws RuntimeException + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException { - return (I_C_Invoice)MTable.get(getCtx(), I_C_Invoice.Table_Name) + return (org.compiere.model.I_C_Invoice)MTable.get(getCtx(), org.compiere.model.I_C_Invoice.Table_Name) .getPO(getC_Invoice_ID(), get_TrxName()); } /** Set Invoice. @@ -340,9 +340,9 @@ public class X_I_BankStatement extends PO implements I_I_BankStatement, I_Persis return ii.intValue(); } - public I_C_Payment getC_Payment() throws RuntimeException + public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException { - return (I_C_Payment)MTable.get(getCtx(), I_C_Payment.Table_Name) + return (org.compiere.model.I_C_Payment)MTable.get(getCtx(), org.compiere.model.I_C_Payment.Table_Name) .getPO(getC_Payment_ID(), get_TrxName()); } /** Set Payment. @@ -663,6 +663,20 @@ public class X_I_BankStatement extends PO implements I_I_BankStatement, I_Persis return ii.intValue(); } + /** Set I_BankStatement_UU. + @param I_BankStatement_UU I_BankStatement_UU */ + public void setI_BankStatement_UU (String I_BankStatement_UU) + { + set_Value (COLUMNNAME_I_BankStatement_UU, I_BankStatement_UU); + } + + /** Get I_BankStatement_UU. + @return I_BankStatement_UU */ + public String getI_BankStatement_UU () + { + return (String)get_Value(COLUMNNAME_I_BankStatement_UU); + } + /** Set Import Error Message. @param I_ErrorMsg Messages generated from import process diff --git a/org.adempiere.base/src/org/compiere/model/X_I_Conversion_Rate.java b/org.adempiere.base/src/org/compiere/model/X_I_Conversion_Rate.java index fa7a3f6147..031b2ccd92 100644 --- a/org.adempiere.base/src/org/compiere/model/X_I_Conversion_Rate.java +++ b/org.adempiere.base/src/org/compiere/model/X_I_Conversion_Rate.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for I_Conversion_Rate - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_I_Conversion_Rate extends PO implements I_I_Conversion_Rate, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_I_Conversion_Rate (Properties ctx, int I_Conversion_Rate_ID, String trxName) @@ -73,9 +73,9 @@ public class X_I_Conversion_Rate extends PO implements I_I_Conversion_Rate, I_Pe return sb.toString(); } - public I_C_Conversion_Rate getC_Conversion_Rate() throws RuntimeException + public org.compiere.model.I_C_Conversion_Rate getC_Conversion_Rate() throws RuntimeException { - return (I_C_Conversion_Rate)MTable.get(getCtx(), I_C_Conversion_Rate.Table_Name) + return (org.compiere.model.I_C_Conversion_Rate)MTable.get(getCtx(), org.compiere.model.I_C_Conversion_Rate.Table_Name) .getPO(getC_Conversion_Rate_ID(), get_TrxName()); } /** Set Conversion Rate. @@ -101,9 +101,9 @@ public class X_I_Conversion_Rate extends PO implements I_I_Conversion_Rate, I_Pe return ii.intValue(); } - public I_C_ConversionType getC_ConversionType() throws RuntimeException + public org.compiere.model.I_C_ConversionType getC_ConversionType() throws RuntimeException { - return (I_C_ConversionType)MTable.get(getCtx(), I_C_ConversionType.Table_Name) + return (org.compiere.model.I_C_ConversionType)MTable.get(getCtx(), org.compiere.model.I_C_ConversionType.Table_Name) .getPO(getC_ConversionType_ID(), get_TrxName()); } /** Set Currency Type. @@ -129,9 +129,9 @@ public class X_I_Conversion_Rate extends PO implements I_I_Conversion_Rate, I_Pe return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -157,9 +157,9 @@ public class X_I_Conversion_Rate extends PO implements I_I_Conversion_Rate, I_Pe return ii.intValue(); } - public I_C_Currency getC_Currency_To() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency_To() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID_To(), get_TrxName()); } /** Set Currency To. @@ -274,6 +274,20 @@ public class X_I_Conversion_Rate extends PO implements I_I_Conversion_Rate, I_Pe return new KeyNamePair(get_ID(), String.valueOf(getI_Conversion_Rate_ID())); } + /** Set I_Conversion_Rate_UU. + @param I_Conversion_Rate_UU I_Conversion_Rate_UU */ + public void setI_Conversion_Rate_UU (String I_Conversion_Rate_UU) + { + set_Value (COLUMNNAME_I_Conversion_Rate_UU, I_Conversion_Rate_UU); + } + + /** Get I_Conversion_Rate_UU. + @return I_Conversion_Rate_UU */ + public String getI_Conversion_Rate_UU () + { + return (String)get_Value(COLUMNNAME_I_Conversion_Rate_UU); + } + /** Set Import Error Message. @param I_ErrorMsg Messages generated from import process diff --git a/org.adempiere.base/src/org/compiere/model/X_I_ElementValue.java b/org.adempiere.base/src/org/compiere/model/X_I_ElementValue.java index 53b768b571..51dadc1c70 100644 --- a/org.adempiere.base/src/org/compiere/model/X_I_ElementValue.java +++ b/org.adempiere.base/src/org/compiere/model/X_I_ElementValue.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for I_ElementValue - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_I_ElementValue extends PO implements I_I_ElementValue, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_I_ElementValue (Properties ctx, int I_ElementValue_ID, String trxName) @@ -129,9 +129,9 @@ public class X_I_ElementValue extends PO implements I_I_ElementValue, I_Persiste return (String)get_Value(COLUMNNAME_AccountType); } - public I_AD_Column getAD_Column() throws RuntimeException + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException { - return (I_AD_Column)MTable.get(getCtx(), I_AD_Column.Table_Name) + return (org.compiere.model.I_AD_Column)MTable.get(getCtx(), org.compiere.model.I_AD_Column.Table_Name) .getPO(getAD_Column_ID(), get_TrxName()); } /** Set Column. @@ -157,9 +157,9 @@ public class X_I_ElementValue extends PO implements I_I_ElementValue, I_Persiste return ii.intValue(); } - public I_C_Element getC_Element() throws RuntimeException + public org.compiere.model.I_C_Element getC_Element() throws RuntimeException { - return (I_C_Element)MTable.get(getCtx(), I_C_Element.Table_Name) + return (org.compiere.model.I_C_Element)MTable.get(getCtx(), org.compiere.model.I_C_Element.Table_Name) .getPO(getC_Element_ID(), get_TrxName()); } /** Set Element. @@ -185,9 +185,9 @@ public class X_I_ElementValue extends PO implements I_I_ElementValue, I_Persiste return ii.intValue(); } - public I_C_ElementValue getC_ElementValue() throws RuntimeException + public org.compiere.model.I_C_ElementValue getC_ElementValue() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getC_ElementValue_ID(), get_TrxName()); } /** Set Account Element. @@ -287,6 +287,20 @@ public class X_I_ElementValue extends PO implements I_I_ElementValue, I_Persiste return ii.intValue(); } + /** Set I_ElementValue_UU. + @param I_ElementValue_UU I_ElementValue_UU */ + public void setI_ElementValue_UU (String I_ElementValue_UU) + { + set_Value (COLUMNNAME_I_ElementValue_UU, I_ElementValue_UU); + } + + /** Get I_ElementValue_UU. + @return I_ElementValue_UU */ + public String getI_ElementValue_UU () + { + return (String)get_Value(COLUMNNAME_I_ElementValue_UU); + } + /** Set Import Error Message. @param I_ErrorMsg Messages generated from import process @@ -393,9 +407,9 @@ public class X_I_ElementValue extends PO implements I_I_ElementValue, I_Persiste return (String)get_Value(COLUMNNAME_Name); } - public I_C_ElementValue getParentElementValue() throws RuntimeException + public org.compiere.model.I_C_ElementValue getParentElementValue() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getParentElementValue_ID(), get_TrxName()); } /** Set Parent Account. diff --git a/org.adempiere.base/src/org/compiere/model/X_I_FAJournal.java b/org.adempiere.base/src/org/compiere/model/X_I_FAJournal.java index 3c8d06d9fc..5a5a9bede1 100644 --- a/org.adempiere.base/src/org/compiere/model/X_I_FAJournal.java +++ b/org.adempiere.base/src/org/compiere/model/X_I_FAJournal.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for I_FAJournal - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_I_FAJournal extends PO implements I_I_FAJournal, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_I_FAJournal (Properties ctx, int I_FAJournal_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_I_FixedAsset.java b/org.adempiere.base/src/org/compiere/model/X_I_FixedAsset.java index baa7189eca..de8607c243 100644 --- a/org.adempiere.base/src/org/compiere/model/X_I_FixedAsset.java +++ b/org.adempiere.base/src/org/compiere/model/X_I_FixedAsset.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for I_FixedAsset - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_I_FixedAsset extends PO implements I_I_FixedAsset, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_I_FixedAsset (Properties ctx, int I_FixedAsset_ID, String trxName) @@ -621,6 +621,20 @@ public class X_I_FixedAsset extends PO implements I_I_FixedAsset, I_Persistent return ii.intValue(); } + /** Set I_FixedAsset_UU. + @param I_FixedAsset_UU I_FixedAsset_UU */ + public void setI_FixedAsset_UU (String I_FixedAsset_UU) + { + set_Value (COLUMNNAME_I_FixedAsset_UU, I_FixedAsset_UU); + } + + /** Get I_FixedAsset_UU. + @return I_FixedAsset_UU */ + public String getI_FixedAsset_UU () + { + return (String)get_Value(COLUMNNAME_I_FixedAsset_UU); + } + /** Set Imported. @param I_IsImported Has this import been processed diff --git a/org.adempiere.base/src/org/compiere/model/X_I_GLJournal.java b/org.adempiere.base/src/org/compiere/model/X_I_GLJournal.java index e7870ec1c3..5b1029f053 100644 --- a/org.adempiere.base/src/org/compiere/model/X_I_GLJournal.java +++ b/org.adempiere.base/src/org/compiere/model/X_I_GLJournal.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for I_GLJournal - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_I_GLJournal extends PO implements I_I_GLJournal, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_I_GLJournal (Properties ctx, int I_GLJournal_ID, String trxName) @@ -74,9 +74,9 @@ public class X_I_GLJournal extends PO implements I_I_GLJournal, I_Persistent return sb.toString(); } - public I_C_ElementValue getAccount() throws RuntimeException + public org.compiere.model.I_C_ElementValue getAccount() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getAccount_ID(), get_TrxName()); } /** Set Account. @@ -313,9 +313,9 @@ public class X_I_GLJournal extends PO implements I_I_GLJournal, I_Persistent return (String)get_Value(COLUMNNAME_BPartnerValue); } - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException { - return (I_C_AcctSchema)MTable.get(getCtx(), I_C_AcctSchema.Table_Name) + return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_Name) .getPO(getC_AcctSchema_ID(), get_TrxName()); } /** Set Accounting Schema. @@ -341,9 +341,9 @@ public class X_I_GLJournal extends PO implements I_I_GLJournal, I_Persistent return ii.intValue(); } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -386,9 +386,9 @@ public class X_I_GLJournal extends PO implements I_I_GLJournal, I_Persistent return (String)get_Value(COLUMNNAME_CategoryName); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -414,9 +414,9 @@ public class X_I_GLJournal extends PO implements I_I_GLJournal, I_Persistent return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -442,9 +442,9 @@ public class X_I_GLJournal extends PO implements I_I_GLJournal, I_Persistent return ii.intValue(); } - public I_C_ConversionType getC_ConversionType() throws RuntimeException + public org.compiere.model.I_C_ConversionType getC_ConversionType() throws RuntimeException { - return (I_C_ConversionType)MTable.get(getCtx(), I_C_ConversionType.Table_Name) + return (org.compiere.model.I_C_ConversionType)MTable.get(getCtx(), org.compiere.model.I_C_ConversionType.Table_Name) .getPO(getC_ConversionType_ID(), get_TrxName()); } /** Set Currency Type. @@ -470,9 +470,9 @@ public class X_I_GLJournal extends PO implements I_I_GLJournal, I_Persistent return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -498,9 +498,9 @@ public class X_I_GLJournal extends PO implements I_I_GLJournal, I_Persistent return ii.intValue(); } - public I_C_DocType getC_DocType() throws RuntimeException + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocType_ID(), get_TrxName()); } /** Set Document Type. @@ -543,9 +543,9 @@ public class X_I_GLJournal extends PO implements I_I_GLJournal, I_Persistent return (String)get_Value(COLUMNNAME_ClientValue); } - public I_C_Location getC_LocFrom() throws RuntimeException + public org.compiere.model.I_C_Location getC_LocFrom() throws RuntimeException { - return (I_C_Location)MTable.get(getCtx(), I_C_Location.Table_Name) + return (org.compiere.model.I_C_Location)MTable.get(getCtx(), org.compiere.model.I_C_Location.Table_Name) .getPO(getC_LocFrom_ID(), get_TrxName()); } /** Set Location From. @@ -571,9 +571,9 @@ public class X_I_GLJournal extends PO implements I_I_GLJournal, I_Persistent return ii.intValue(); } - public I_C_Location getC_LocTo() throws RuntimeException + public org.compiere.model.I_C_Location getC_LocTo() throws RuntimeException { - return (I_C_Location)MTable.get(getCtx(), I_C_Location.Table_Name) + return (org.compiere.model.I_C_Location)MTable.get(getCtx(), org.compiere.model.I_C_Location.Table_Name) .getPO(getC_LocTo_ID(), get_TrxName()); } /** Set Location To. @@ -616,9 +616,9 @@ public class X_I_GLJournal extends PO implements I_I_GLJournal, I_Persistent return (String)get_Value(COLUMNNAME_ConversionTypeValue); } - public I_C_Period getC_Period() throws RuntimeException + public org.compiere.model.I_C_Period getC_Period() throws RuntimeException { - return (I_C_Period)MTable.get(getCtx(), I_C_Period.Table_Name) + return (org.compiere.model.I_C_Period)MTable.get(getCtx(), org.compiere.model.I_C_Period.Table_Name) .getPO(getC_Period_ID(), get_TrxName()); } /** Set Period. @@ -644,9 +644,9 @@ public class X_I_GLJournal extends PO implements I_I_GLJournal, I_Persistent return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -672,9 +672,9 @@ public class X_I_GLJournal extends PO implements I_I_GLJournal, I_Persistent return ii.intValue(); } - public I_C_SalesRegion getC_SalesRegion() throws RuntimeException + public org.compiere.model.I_C_SalesRegion getC_SalesRegion() throws RuntimeException { - return (I_C_SalesRegion)MTable.get(getCtx(), I_C_SalesRegion.Table_Name) + return (org.compiere.model.I_C_SalesRegion)MTable.get(getCtx(), org.compiere.model.I_C_SalesRegion.Table_Name) .getPO(getC_SalesRegion_ID(), get_TrxName()); } /** Set Sales Region. @@ -700,9 +700,9 @@ public class X_I_GLJournal extends PO implements I_I_GLJournal, I_Persistent return ii.intValue(); } - public I_C_UOM getC_UOM() throws RuntimeException + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_ID(), get_TrxName()); } /** Set UOM. @@ -748,9 +748,9 @@ public class X_I_GLJournal extends PO implements I_I_GLJournal, I_Persistent return bd; } - public I_C_ValidCombination getC_ValidCombination() throws RuntimeException + public org.compiere.model.I_C_ValidCombination getC_ValidCombination() throws RuntimeException { - return (I_C_ValidCombination)MTable.get(getCtx(), I_C_ValidCombination.Table_Name) + return (org.compiere.model.I_C_ValidCombination)MTable.get(getCtx(), org.compiere.model.I_C_ValidCombination.Table_Name) .getPO(getC_ValidCombination_ID(), get_TrxName()); } /** Set Combination. @@ -827,9 +827,9 @@ public class X_I_GLJournal extends PO implements I_I_GLJournal, I_Persistent return (String)get_Value(COLUMNNAME_DocTypeName); } - public I_GL_Budget getGL_Budget() throws RuntimeException + public org.compiere.model.I_GL_Budget getGL_Budget() throws RuntimeException { - return (I_GL_Budget)MTable.get(getCtx(), I_GL_Budget.Table_Name) + return (org.compiere.model.I_GL_Budget)MTable.get(getCtx(), org.compiere.model.I_GL_Budget.Table_Name) .getPO(getGL_Budget_ID(), get_TrxName()); } /** Set Budget. @@ -855,9 +855,9 @@ public class X_I_GLJournal extends PO implements I_I_GLJournal, I_Persistent return ii.intValue(); } - public I_GL_Category getGL_Category() throws RuntimeException + public org.compiere.model.I_GL_Category getGL_Category() throws RuntimeException { - return (I_GL_Category)MTable.get(getCtx(), I_GL_Category.Table_Name) + return (org.compiere.model.I_GL_Category)MTable.get(getCtx(), org.compiere.model.I_GL_Category.Table_Name) .getPO(getGL_Category_ID(), get_TrxName()); } /** Set GL Category. @@ -883,9 +883,9 @@ public class X_I_GLJournal extends PO implements I_I_GLJournal, I_Persistent return ii.intValue(); } - public I_GL_JournalBatch getGL_JournalBatch() throws RuntimeException + public org.compiere.model.I_GL_JournalBatch getGL_JournalBatch() throws RuntimeException { - return (I_GL_JournalBatch)MTable.get(getCtx(), I_GL_JournalBatch.Table_Name) + return (org.compiere.model.I_GL_JournalBatch)MTable.get(getCtx(), org.compiere.model.I_GL_JournalBatch.Table_Name) .getPO(getGL_JournalBatch_ID(), get_TrxName()); } /** Set Journal Batch. @@ -911,9 +911,9 @@ public class X_I_GLJournal extends PO implements I_I_GLJournal, I_Persistent return ii.intValue(); } - public I_GL_Journal getGL_Journal() throws RuntimeException + public org.compiere.model.I_GL_Journal getGL_Journal() throws RuntimeException { - return (I_GL_Journal)MTable.get(getCtx(), I_GL_Journal.Table_Name) + return (org.compiere.model.I_GL_Journal)MTable.get(getCtx(), org.compiere.model.I_GL_Journal.Table_Name) .getPO(getGL_Journal_ID(), get_TrxName()); } /** Set Journal. @@ -939,9 +939,9 @@ public class X_I_GLJournal extends PO implements I_I_GLJournal, I_Persistent return ii.intValue(); } - public I_GL_JournalLine getGL_JournalLine() throws RuntimeException + public org.compiere.model.I_GL_JournalLine getGL_JournalLine() throws RuntimeException { - return (I_GL_JournalLine)MTable.get(getCtx(), I_GL_JournalLine.Table_Name) + return (org.compiere.model.I_GL_JournalLine)MTable.get(getCtx(), org.compiere.model.I_GL_JournalLine.Table_Name) .getPO(getGL_JournalLine_ID(), get_TrxName()); } /** Set Journal Line. @@ -1015,6 +1015,20 @@ public class X_I_GLJournal extends PO implements I_I_GLJournal, I_Persistent return new KeyNamePair(get_ID(), String.valueOf(getI_GLJournal_ID())); } + /** Set I_GLJournal_UU. + @param I_GLJournal_UU I_GLJournal_UU */ + public void setI_GLJournal_UU (String I_GLJournal_UU) + { + set_Value (COLUMNNAME_I_GLJournal_UU, I_GLJournal_UU); + } + + /** Get I_GLJournal_UU. + @return I_GLJournal_UU */ + public String getI_GLJournal_UU () + { + return (String)get_Value(COLUMNNAME_I_GLJournal_UU); + } + /** Set Imported. @param I_IsImported Has this import been processed @@ -1141,9 +1155,9 @@ public class X_I_GLJournal extends PO implements I_I_GLJournal, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -1366,9 +1380,9 @@ public class X_I_GLJournal extends PO implements I_I_GLJournal, I_Persistent return (String)get_Value(COLUMNNAME_UPC); } - public I_C_ElementValue getUser1() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser1_ID(), get_TrxName()); } /** Set User List 1. @@ -1394,9 +1408,9 @@ public class X_I_GLJournal extends PO implements I_I_GLJournal, I_Persistent return ii.intValue(); } - public I_C_ElementValue getUser2() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser2_ID(), get_TrxName()); } /** Set User List 2. diff --git a/org.adempiere.base/src/org/compiere/model/X_I_InOutLineConfirm.java b/org.adempiere.base/src/org/compiere/model/X_I_InOutLineConfirm.java index 001994589f..7550b49fa2 100644 --- a/org.adempiere.base/src/org/compiere/model/X_I_InOutLineConfirm.java +++ b/org.adempiere.base/src/org/compiere/model/X_I_InOutLineConfirm.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for I_InOutLineConfirm - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_I_InOutLineConfirm extends PO implements I_I_InOutLineConfirm, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_I_InOutLineConfirm (Properties ctx, int I_InOutLineConfirm_ID, String trxName) @@ -200,6 +200,20 @@ public class X_I_InOutLineConfirm extends PO implements I_I_InOutLineConfirm, I_ return new KeyNamePair(get_ID(), String.valueOf(getI_InOutLineConfirm_ID())); } + /** Set I_InOutLineConfirm_UU. + @param I_InOutLineConfirm_UU I_InOutLineConfirm_UU */ + public void setI_InOutLineConfirm_UU (String I_InOutLineConfirm_UU) + { + set_Value (COLUMNNAME_I_InOutLineConfirm_UU, I_InOutLineConfirm_UU); + } + + /** Get I_InOutLineConfirm_UU. + @return I_InOutLineConfirm_UU */ + public String getI_InOutLineConfirm_UU () + { + return (String)get_Value(COLUMNNAME_I_InOutLineConfirm_UU); + } + /** Set Imported. @param I_IsImported Has this import been processed @@ -224,9 +238,9 @@ public class X_I_InOutLineConfirm extends PO implements I_I_InOutLineConfirm, I_ return false; } - public I_M_InOutLineConfirm getM_InOutLineConfirm() throws RuntimeException + public org.compiere.model.I_M_InOutLineConfirm getM_InOutLineConfirm() throws RuntimeException { - return (I_M_InOutLineConfirm)MTable.get(getCtx(), I_M_InOutLineConfirm.Table_Name) + return (org.compiere.model.I_M_InOutLineConfirm)MTable.get(getCtx(), org.compiere.model.I_M_InOutLineConfirm.Table_Name) .getPO(getM_InOutLineConfirm_ID(), get_TrxName()); } /** Set Ship/Receipt Confirmation Line. diff --git a/org.adempiere.base/src/org/compiere/model/X_I_Inventory.java b/org.adempiere.base/src/org/compiere/model/X_I_Inventory.java index e472c604bc..ff9fbd6db1 100644 --- a/org.adempiere.base/src/org/compiere/model/X_I_Inventory.java +++ b/org.adempiere.base/src/org/compiere/model/X_I_Inventory.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for I_Inventory - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_I_Inventory extends PO implements I_I_Inventory, I_Persistent { /** * */ - private static final long serialVersionUID = 20120529L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_I_Inventory (Properties ctx, int I_Inventory_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_I_Invoice.java b/org.adempiere.base/src/org/compiere/model/X_I_Invoice.java index 87bd9678a8..f8b1a54188 100644 --- a/org.adempiere.base/src/org/compiere/model/X_I_Invoice.java +++ b/org.adempiere.base/src/org/compiere/model/X_I_Invoice.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for I_Invoice - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_I_Invoice extends PO implements I_I_Invoice, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_I_Invoice (Properties ctx, int I_Invoice_ID, String trxName) @@ -144,9 +144,9 @@ public class X_I_Invoice extends PO implements I_I_Invoice, I_Persistent return ii.intValue(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -189,9 +189,9 @@ public class X_I_Invoice extends PO implements I_I_Invoice, I_Persistent return (String)get_Value(COLUMNNAME_BPartnerValue); } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -217,9 +217,9 @@ public class X_I_Invoice extends PO implements I_I_Invoice, I_Persistent return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -245,9 +245,9 @@ public class X_I_Invoice extends PO implements I_I_Invoice, I_Persistent return ii.intValue(); } - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException { - return (I_C_BPartner_Location)MTable.get(getCtx(), I_C_BPartner_Location.Table_Name) + return (org.compiere.model.I_C_BPartner_Location)MTable.get(getCtx(), org.compiere.model.I_C_BPartner_Location.Table_Name) .getPO(getC_BPartner_Location_ID(), get_TrxName()); } /** Set Partner Location. @@ -273,9 +273,9 @@ public class X_I_Invoice extends PO implements I_I_Invoice, I_Persistent return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -301,9 +301,9 @@ public class X_I_Invoice extends PO implements I_I_Invoice, I_Persistent return ii.intValue(); } - public I_C_Charge getC_Charge() throws RuntimeException + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException { - return (I_C_Charge)MTable.get(getCtx(), I_C_Charge.Table_Name) + return (org.compiere.model.I_C_Charge)MTable.get(getCtx(), org.compiere.model.I_C_Charge.Table_Name) .getPO(getC_Charge_ID(), get_TrxName()); } /** Set Charge. @@ -329,9 +329,9 @@ public class X_I_Invoice extends PO implements I_I_Invoice, I_Persistent return ii.intValue(); } - public I_C_Country getC_Country() throws RuntimeException + public org.compiere.model.I_C_Country getC_Country() throws RuntimeException { - return (I_C_Country)MTable.get(getCtx(), I_C_Country.Table_Name) + return (org.compiere.model.I_C_Country)MTable.get(getCtx(), org.compiere.model.I_C_Country.Table_Name) .getPO(getC_Country_ID(), get_TrxName()); } /** Set Country. @@ -357,9 +357,9 @@ public class X_I_Invoice extends PO implements I_I_Invoice, I_Persistent return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -385,9 +385,9 @@ public class X_I_Invoice extends PO implements I_I_Invoice, I_Persistent return ii.intValue(); } - public I_C_DocType getC_DocType() throws RuntimeException + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocType_ID(), get_TrxName()); } /** Set Document Type. @@ -430,9 +430,9 @@ public class X_I_Invoice extends PO implements I_I_Invoice, I_Persistent return (String)get_Value(COLUMNNAME_ChargeName); } - public I_C_Invoice getC_Invoice() throws RuntimeException + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException { - return (I_C_Invoice)MTable.get(getCtx(), I_C_Invoice.Table_Name) + return (org.compiere.model.I_C_Invoice)MTable.get(getCtx(), org.compiere.model.I_C_Invoice.Table_Name) .getPO(getC_Invoice_ID(), get_TrxName()); } /** Set Invoice. @@ -458,9 +458,9 @@ public class X_I_Invoice extends PO implements I_I_Invoice, I_Persistent return ii.intValue(); } - public I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException + public org.compiere.model.I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException { - return (I_C_InvoiceLine)MTable.get(getCtx(), I_C_InvoiceLine.Table_Name) + return (org.compiere.model.I_C_InvoiceLine)MTable.get(getCtx(), org.compiere.model.I_C_InvoiceLine.Table_Name) .getPO(getC_InvoiceLine_ID(), get_TrxName()); } /** Set Invoice Line. @@ -503,9 +503,9 @@ public class X_I_Invoice extends PO implements I_I_Invoice, I_Persistent return (String)get_Value(COLUMNNAME_City); } - public I_C_Location getC_Location() throws RuntimeException + public org.compiere.model.I_C_Location getC_Location() throws RuntimeException { - return (I_C_Location)MTable.get(getCtx(), I_C_Location.Table_Name) + return (org.compiere.model.I_C_Location)MTable.get(getCtx(), org.compiere.model.I_C_Location.Table_Name) .getPO(getC_Location_ID(), get_TrxName()); } /** Set Address. @@ -572,9 +572,9 @@ public class X_I_Invoice extends PO implements I_I_Invoice, I_Persistent return false; } - public I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException + public org.compiere.model.I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException { - return (I_C_PaymentTerm)MTable.get(getCtx(), I_C_PaymentTerm.Table_Name) + return (org.compiere.model.I_C_PaymentTerm)MTable.get(getCtx(), org.compiere.model.I_C_PaymentTerm.Table_Name) .getPO(getC_PaymentTerm_ID(), get_TrxName()); } /** Set Payment Term. @@ -600,9 +600,9 @@ public class X_I_Invoice extends PO implements I_I_Invoice, I_Persistent return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -628,9 +628,9 @@ public class X_I_Invoice extends PO implements I_I_Invoice, I_Persistent return ii.intValue(); } - public I_C_Region getC_Region() throws RuntimeException + public org.compiere.model.I_C_Region getC_Region() throws RuntimeException { - return (I_C_Region)MTable.get(getCtx(), I_C_Region.Table_Name) + return (org.compiere.model.I_C_Region)MTable.get(getCtx(), org.compiere.model.I_C_Region.Table_Name) .getPO(getC_Region_ID(), get_TrxName()); } /** Set Region. @@ -656,9 +656,9 @@ public class X_I_Invoice extends PO implements I_I_Invoice, I_Persistent return ii.intValue(); } - public I_C_Tax getC_Tax() throws RuntimeException + public org.compiere.model.I_C_Tax getC_Tax() throws RuntimeException { - return (I_C_Tax)MTable.get(getCtx(), I_C_Tax.Table_Name) + return (org.compiere.model.I_C_Tax)MTable.get(getCtx(), org.compiere.model.I_C_Tax.Table_Name) .getPO(getC_Tax_ID(), get_TrxName()); } /** Set Tax. @@ -826,6 +826,20 @@ public class X_I_Invoice extends PO implements I_I_Invoice, I_Persistent return ii.intValue(); } + /** Set I_Invoice_UU. + @param I_Invoice_UU I_Invoice_UU */ + public void setI_Invoice_UU (String I_Invoice_UU) + { + set_Value (COLUMNNAME_I_Invoice_UU, I_Invoice_UU); + } + + /** Get I_Invoice_UU. + @return I_Invoice_UU */ + public String getI_Invoice_UU () + { + return (String)get_Value(COLUMNNAME_I_Invoice_UU); + } + /** Set Imported. @param I_IsImported Has this import been processed @@ -891,9 +905,9 @@ public class X_I_Invoice extends PO implements I_I_Invoice, I_Persistent return (String)get_Value(COLUMNNAME_LineDescription); } - public I_M_PriceList getM_PriceList() throws RuntimeException + public org.compiere.model.I_M_PriceList getM_PriceList() throws RuntimeException { - return (I_M_PriceList)MTable.get(getCtx(), I_M_PriceList.Table_Name) + return (org.compiere.model.I_M_PriceList)MTable.get(getCtx(), org.compiere.model.I_M_PriceList.Table_Name) .getPO(getM_PriceList_ID(), get_TrxName()); } /** Set Price List. @@ -919,9 +933,9 @@ public class X_I_Invoice extends PO implements I_I_Invoice, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -1151,9 +1165,9 @@ public class X_I_Invoice extends PO implements I_I_Invoice, I_Persistent return (String)get_Value(COLUMNNAME_RegionName); } - public I_AD_User getSalesRep() throws RuntimeException + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getSalesRep_ID(), get_TrxName()); } /** Set Sales Representative. diff --git a/org.adempiere.base/src/org/compiere/model/X_I_Order.java b/org.adempiere.base/src/org/compiere/model/X_I_Order.java index 4b5ab6d5ba..1e3ae556dc 100644 --- a/org.adempiere.base/src/org/compiere/model/X_I_Order.java +++ b/org.adempiere.base/src/org/compiere/model/X_I_Order.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for I_Order - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_I_Order extends PO implements I_I_Order, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_I_Order (Properties ctx, int I_Order_ID, String trxName) @@ -130,9 +130,9 @@ public class X_I_Order extends PO implements I_I_Order, I_Persistent return ii.intValue(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -158,9 +158,9 @@ public class X_I_Order extends PO implements I_I_Order, I_Persistent return ii.intValue(); } - public I_C_BPartner_Location getBillTo() throws RuntimeException + public org.compiere.model.I_C_BPartner_Location getBillTo() throws RuntimeException { - return (I_C_BPartner_Location)MTable.get(getCtx(), I_C_BPartner_Location.Table_Name) + return (org.compiere.model.I_C_BPartner_Location)MTable.get(getCtx(), org.compiere.model.I_C_BPartner_Location.Table_Name) .getPO(getBillTo_ID(), get_TrxName()); } /** Set Invoice To. @@ -203,9 +203,9 @@ public class X_I_Order extends PO implements I_I_Order, I_Persistent return (String)get_Value(COLUMNNAME_BPartnerValue); } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -231,9 +231,9 @@ public class X_I_Order extends PO implements I_I_Order, I_Persistent return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -259,9 +259,9 @@ public class X_I_Order extends PO implements I_I_Order, I_Persistent return ii.intValue(); } - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException { - return (I_C_BPartner_Location)MTable.get(getCtx(), I_C_BPartner_Location.Table_Name) + return (org.compiere.model.I_C_BPartner_Location)MTable.get(getCtx(), org.compiere.model.I_C_BPartner_Location.Table_Name) .getPO(getC_BPartner_Location_ID(), get_TrxName()); } /** Set Partner Location. @@ -287,9 +287,9 @@ public class X_I_Order extends PO implements I_I_Order, I_Persistent return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -315,9 +315,9 @@ public class X_I_Order extends PO implements I_I_Order, I_Persistent return ii.intValue(); } - public I_C_Charge getC_Charge() throws RuntimeException + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException { - return (I_C_Charge)MTable.get(getCtx(), I_C_Charge.Table_Name) + return (org.compiere.model.I_C_Charge)MTable.get(getCtx(), org.compiere.model.I_C_Charge.Table_Name) .getPO(getC_Charge_ID(), get_TrxName()); } /** Set Charge. @@ -343,9 +343,9 @@ public class X_I_Order extends PO implements I_I_Order, I_Persistent return ii.intValue(); } - public I_C_Country getC_Country() throws RuntimeException + public org.compiere.model.I_C_Country getC_Country() throws RuntimeException { - return (I_C_Country)MTable.get(getCtx(), I_C_Country.Table_Name) + return (org.compiere.model.I_C_Country)MTable.get(getCtx(), org.compiere.model.I_C_Country.Table_Name) .getPO(getC_Country_ID(), get_TrxName()); } /** Set Country. @@ -371,9 +371,9 @@ public class X_I_Order extends PO implements I_I_Order, I_Persistent return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -399,9 +399,9 @@ public class X_I_Order extends PO implements I_I_Order, I_Persistent return ii.intValue(); } - public I_C_DocType getC_DocType() throws RuntimeException + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocType_ID(), get_TrxName()); } /** Set Document Type. @@ -461,9 +461,9 @@ public class X_I_Order extends PO implements I_I_Order, I_Persistent return (String)get_Value(COLUMNNAME_City); } - public I_C_Location getC_Location() throws RuntimeException + public org.compiere.model.I_C_Location getC_Location() throws RuntimeException { - return (I_C_Location)MTable.get(getCtx(), I_C_Location.Table_Name) + return (org.compiere.model.I_C_Location)MTable.get(getCtx(), org.compiere.model.I_C_Location.Table_Name) .getPO(getC_Location_ID(), get_TrxName()); } /** Set Address. @@ -506,9 +506,9 @@ public class X_I_Order extends PO implements I_I_Order, I_Persistent return (String)get_Value(COLUMNNAME_ContactName); } - public I_C_Order getC_Order() throws RuntimeException + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException { - return (I_C_Order)MTable.get(getCtx(), I_C_Order.Table_Name) + return (org.compiere.model.I_C_Order)MTable.get(getCtx(), org.compiere.model.I_C_Order.Table_Name) .getPO(getC_Order_ID(), get_TrxName()); } /** Set Order. @@ -534,9 +534,9 @@ public class X_I_Order extends PO implements I_I_Order, I_Persistent return ii.intValue(); } - public I_C_OrderLine getC_OrderLine() throws RuntimeException + public org.compiere.model.I_C_OrderLine getC_OrderLine() throws RuntimeException { - return (I_C_OrderLine)MTable.get(getCtx(), I_C_OrderLine.Table_Name) + return (org.compiere.model.I_C_OrderLine)MTable.get(getCtx(), org.compiere.model.I_C_OrderLine.Table_Name) .getPO(getC_OrderLine_ID(), get_TrxName()); } /** Set Sales Order Line. @@ -562,9 +562,9 @@ public class X_I_Order extends PO implements I_I_Order, I_Persistent return ii.intValue(); } - public I_C_OrderSource getC_OrderSource() throws RuntimeException + public org.compiere.model.I_C_OrderSource getC_OrderSource() throws RuntimeException { - return (I_C_OrderSource)MTable.get(getCtx(), I_C_OrderSource.Table_Name) + return (org.compiere.model.I_C_OrderSource)MTable.get(getCtx(), org.compiere.model.I_C_OrderSource.Table_Name) .getPO(getC_OrderSource_ID(), get_TrxName()); } /** Set Order Source. @@ -618,9 +618,9 @@ public class X_I_Order extends PO implements I_I_Order, I_Persistent return (String)get_Value(COLUMNNAME_CountryCode); } - public I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException + public org.compiere.model.I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException { - return (I_C_PaymentTerm)MTable.get(getCtx(), I_C_PaymentTerm.Table_Name) + return (org.compiere.model.I_C_PaymentTerm)MTable.get(getCtx(), org.compiere.model.I_C_PaymentTerm.Table_Name) .getPO(getC_PaymentTerm_ID(), get_TrxName()); } /** Set Payment Term. @@ -646,9 +646,9 @@ public class X_I_Order extends PO implements I_I_Order, I_Persistent return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -674,9 +674,9 @@ public class X_I_Order extends PO implements I_I_Order, I_Persistent return ii.intValue(); } - public I_C_Region getC_Region() throws RuntimeException + public org.compiere.model.I_C_Region getC_Region() throws RuntimeException { - return (I_C_Region)MTable.get(getCtx(), I_C_Region.Table_Name) + return (org.compiere.model.I_C_Region)MTable.get(getCtx(), org.compiere.model.I_C_Region.Table_Name) .getPO(getC_Region_ID(), get_TrxName()); } /** Set Region. @@ -702,9 +702,9 @@ public class X_I_Order extends PO implements I_I_Order, I_Persistent return ii.intValue(); } - public I_C_Tax getC_Tax() throws RuntimeException + public org.compiere.model.I_C_Tax getC_Tax() throws RuntimeException { - return (I_C_Tax)MTable.get(getCtx(), I_C_Tax.Table_Name) + return (org.compiere.model.I_C_Tax)MTable.get(getCtx(), org.compiere.model.I_C_Tax.Table_Name) .getPO(getC_Tax_ID(), get_TrxName()); } /** Set Tax. @@ -730,9 +730,9 @@ public class X_I_Order extends PO implements I_I_Order, I_Persistent return ii.intValue(); } - public I_C_UOM getC_UOM() throws RuntimeException + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_ID(), get_TrxName()); } /** Set UOM. @@ -976,6 +976,20 @@ public class X_I_Order extends PO implements I_I_Order, I_Persistent return ii.intValue(); } + /** Set I_Order_UU. + @param I_Order_UU I_Order_UU */ + public void setI_Order_UU (String I_Order_UU) + { + set_Value (COLUMNNAME_I_Order_UU, I_Order_UU); + } + + /** Get I_Order_UU. + @return I_Order_UU */ + public String getI_Order_UU () + { + return (String)get_Value(COLUMNNAME_I_Order_UU); + } + /** Set Sales Transaction. @param IsSOTrx This is a Sales Transaction @@ -1017,9 +1031,9 @@ public class X_I_Order extends PO implements I_I_Order, I_Persistent return (String)get_Value(COLUMNNAME_LineDescription); } - public I_M_PriceList getM_PriceList() throws RuntimeException + public org.compiere.model.I_M_PriceList getM_PriceList() throws RuntimeException { - return (I_M_PriceList)MTable.get(getCtx(), I_M_PriceList.Table_Name) + return (org.compiere.model.I_M_PriceList)MTable.get(getCtx(), org.compiere.model.I_M_PriceList.Table_Name) .getPO(getM_PriceList_ID(), get_TrxName()); } /** Set Price List. @@ -1045,9 +1059,9 @@ public class X_I_Order extends PO implements I_I_Order, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -1073,9 +1087,9 @@ public class X_I_Order extends PO implements I_I_Order, I_Persistent return ii.intValue(); } - public I_M_Shipper getM_Shipper() throws RuntimeException + public org.compiere.model.I_M_Shipper getM_Shipper() throws RuntimeException { - return (I_M_Shipper)MTable.get(getCtx(), I_M_Shipper.Table_Name) + return (org.compiere.model.I_M_Shipper)MTable.get(getCtx(), org.compiere.model.I_M_Shipper.Table_Name) .getPO(getM_Shipper_ID(), get_TrxName()); } /** Set Shipper. @@ -1101,9 +1115,9 @@ public class X_I_Order extends PO implements I_I_Order, I_Persistent return ii.intValue(); } - public I_M_Warehouse getM_Warehouse() throws RuntimeException + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_Warehouse_ID(), get_TrxName()); } /** Set Warehouse. @@ -1316,9 +1330,9 @@ public class X_I_Order extends PO implements I_I_Order, I_Persistent return (String)get_Value(COLUMNNAME_RegionName); } - public I_AD_User getSalesRep() throws RuntimeException + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getSalesRep_ID(), get_TrxName()); } /** Set Sales Representative. diff --git a/org.adempiere.base/src/org/compiere/model/X_I_Payment.java b/org.adempiere.base/src/org/compiere/model/X_I_Payment.java index 73785e366c..bf4974c37e 100644 --- a/org.adempiere.base/src/org/compiere/model/X_I_Payment.java +++ b/org.adempiere.base/src/org/compiere/model/X_I_Payment.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for I_Payment - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_I_Payment extends PO implements I_I_Payment, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_I_Payment (Properties ctx, int I_Payment_ID, String trxName) @@ -277,9 +277,9 @@ public class X_I_Payment extends PO implements I_I_Payment, I_Persistent return (String)get_Value(COLUMNNAME_BPartnerValue); } - public I_C_BankAccount getC_BankAccount() throws RuntimeException + public org.compiere.model.I_C_BankAccount getC_BankAccount() throws RuntimeException { - return (I_C_BankAccount)MTable.get(getCtx(), I_C_BankAccount.Table_Name) + return (org.compiere.model.I_C_BankAccount)MTable.get(getCtx(), org.compiere.model.I_C_BankAccount.Table_Name) .getPO(getC_BankAccount_ID(), get_TrxName()); } /** Set Bank Account. @@ -305,9 +305,9 @@ public class X_I_Payment extends PO implements I_I_Payment, I_Persistent return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -333,9 +333,9 @@ public class X_I_Payment extends PO implements I_I_Payment, I_Persistent return ii.intValue(); } - public I_C_Charge getC_Charge() throws RuntimeException + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException { - return (I_C_Charge)MTable.get(getCtx(), I_C_Charge.Table_Name) + return (org.compiere.model.I_C_Charge)MTable.get(getCtx(), org.compiere.model.I_C_Charge.Table_Name) .getPO(getC_Charge_ID(), get_TrxName()); } /** Set Charge. @@ -361,9 +361,9 @@ public class X_I_Payment extends PO implements I_I_Payment, I_Persistent return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -389,9 +389,9 @@ public class X_I_Payment extends PO implements I_I_Payment, I_Persistent return ii.intValue(); } - public I_C_DocType getC_DocType() throws RuntimeException + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocType_ID(), get_TrxName()); } /** Set Document Type. @@ -471,9 +471,9 @@ public class X_I_Payment extends PO implements I_I_Payment, I_Persistent return (String)get_Value(COLUMNNAME_CheckNo); } - public I_C_Invoice getC_Invoice() throws RuntimeException + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException { - return (I_C_Invoice)MTable.get(getCtx(), I_C_Invoice.Table_Name) + return (org.compiere.model.I_C_Invoice)MTable.get(getCtx(), org.compiere.model.I_C_Invoice.Table_Name) .getPO(getC_Invoice_ID(), get_TrxName()); } /** Set Invoice. @@ -499,9 +499,9 @@ public class X_I_Payment extends PO implements I_I_Payment, I_Persistent return ii.intValue(); } - public I_C_Payment getC_Payment() throws RuntimeException + public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException { - return (I_C_Payment)MTable.get(getCtx(), I_C_Payment.Table_Name) + return (org.compiere.model.I_C_Payment)MTable.get(getCtx(), org.compiere.model.I_C_Payment.Table_Name) .getPO(getC_Payment_ID(), get_TrxName()); } /** Set Payment. @@ -804,6 +804,20 @@ public class X_I_Payment extends PO implements I_I_Payment, I_Persistent return ii.intValue(); } + /** Set I_Payment_UU. + @param I_Payment_UU I_Payment_UU */ + public void setI_Payment_UU (String I_Payment_UU) + { + set_Value (COLUMNNAME_I_Payment_UU, I_Payment_UU); + } + + /** Get I_Payment_UU. + @return I_Payment_UU */ + public String getI_Payment_UU () + { + return (String)get_Value(COLUMNNAME_I_Payment_UU); + } + /** Set Approved. @param IsApproved Indicates if this document requires approval diff --git a/org.adempiere.base/src/org/compiere/model/X_I_PriceList.java b/org.adempiere.base/src/org/compiere/model/X_I_PriceList.java index f063150ff8..e08cf3de51 100644 --- a/org.adempiere.base/src/org/compiere/model/X_I_PriceList.java +++ b/org.adempiere.base/src/org/compiere/model/X_I_PriceList.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for I_PriceList - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_I_PriceList extends PO implements I_I_PriceList, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_I_PriceList (Properties ctx, int I_PriceList_ID, String trxName) @@ -111,9 +111,9 @@ public class X_I_PriceList extends PO implements I_I_PriceList, I_Persistent return bd; } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -139,9 +139,9 @@ public class X_I_PriceList extends PO implements I_I_PriceList, I_Persistent return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -167,9 +167,9 @@ public class X_I_PriceList extends PO implements I_I_PriceList, I_Persistent return ii.intValue(); } - public I_C_UOM getC_UOM() throws RuntimeException + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_ID(), get_TrxName()); } /** Set UOM. @@ -297,6 +297,20 @@ public class X_I_PriceList extends PO implements I_I_PriceList, I_Persistent return ii.intValue(); } + /** Set I_PriceList_UU. + @param I_PriceList_UU I_PriceList_UU */ + public void setI_PriceList_UU (String I_PriceList_UU) + { + set_Value (COLUMNNAME_I_PriceList_UU, I_PriceList_UU); + } + + /** Get I_PriceList_UU. + @return I_PriceList_UU */ + public String getI_PriceList_UU () + { + return (String)get_Value(COLUMNNAME_I_PriceList_UU); + } + /** Set ISO Currency Code. @param ISO_Code Three letter ISO 4217 Code of the Currency @@ -362,9 +376,9 @@ public class X_I_PriceList extends PO implements I_I_PriceList, I_Persistent return false; } - public I_M_PriceList getM_PriceList() throws RuntimeException + public org.compiere.model.I_M_PriceList getM_PriceList() throws RuntimeException { - return (I_M_PriceList)MTable.get(getCtx(), I_M_PriceList.Table_Name) + return (org.compiere.model.I_M_PriceList)MTable.get(getCtx(), org.compiere.model.I_M_PriceList.Table_Name) .getPO(getM_PriceList_ID(), get_TrxName()); } /** Set Price List. @@ -390,9 +404,9 @@ public class X_I_PriceList extends PO implements I_I_PriceList, I_Persistent return ii.intValue(); } - public I_M_PriceList_Version getM_PriceList_Version() throws RuntimeException + public org.compiere.model.I_M_PriceList_Version getM_PriceList_Version() throws RuntimeException { - return (I_M_PriceList_Version)MTable.get(getCtx(), I_M_PriceList_Version.Table_Name) + return (org.compiere.model.I_M_PriceList_Version)MTable.get(getCtx(), org.compiere.model.I_M_PriceList_Version.Table_Name) .getPO(getM_PriceList_Version_ID(), get_TrxName()); } /** Set Price List Version. @@ -418,9 +432,9 @@ public class X_I_PriceList extends PO implements I_I_PriceList, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_I_Product.java b/org.adempiere.base/src/org/compiere/model/X_I_Product.java index 52c69b8b6f..27c7152e24 100644 --- a/org.adempiere.base/src/org/compiere/model/X_I_Product.java +++ b/org.adempiere.base/src/org/compiere/model/X_I_Product.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for I_Product - * @author Adempiere (generated) - * @version 360LTS.015 - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_I_Product extends PO implements I_I_Product, I_Persistent { /** * */ - private static final long serialVersionUID = 20120406L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_I_Product (Properties ctx, int I_Product_ID, String trxName) @@ -91,9 +91,9 @@ public class X_I_Product extends PO implements I_I_Product, I_Persistent return (String)get_Value(COLUMNNAME_BPartner_Value); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -119,9 +119,9 @@ public class X_I_Product extends PO implements I_I_Product, I_Persistent return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -184,9 +184,9 @@ public class X_I_Product extends PO implements I_I_Product, I_Persistent return bd; } - public I_C_UOM getC_UOM() throws RuntimeException + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_ID(), get_TrxName()); } /** Set UOM. @@ -422,6 +422,20 @@ public class X_I_Product extends PO implements I_I_Product, I_Persistent return ii.intValue(); } + /** Set I_Product_UU. + @param I_Product_UU I_Product_UU */ + public void setI_Product_UU (String I_Product_UU) + { + set_Value (COLUMNNAME_I_Product_UU, I_Product_UU); + } + + /** Get I_Product_UU. + @return I_Product_UU */ + public String getI_Product_UU () + { + return (String)get_Value(COLUMNNAME_I_Product_UU); + } + /** Set ISO Currency Code. @param ISO_Code Three letter ISO 4217 Code of the Currency @@ -456,9 +470,9 @@ public class X_I_Product extends PO implements I_I_Product, I_Persistent return (String)get_Value(COLUMNNAME_Manufacturer); } - public I_M_Product_Category getM_Product_Category() throws RuntimeException + public org.compiere.model.I_M_Product_Category getM_Product_Category() throws RuntimeException { - return (I_M_Product_Category)MTable.get(getCtx(), I_M_Product_Category.Table_Name) + return (org.compiere.model.I_M_Product_Category)MTable.get(getCtx(), org.compiere.model.I_M_Product_Category.Table_Name) .getPO(getM_Product_Category_ID(), get_TrxName()); } /** Set Product Category. @@ -484,9 +498,9 @@ public class X_I_Product extends PO implements I_I_Product, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -737,6 +751,8 @@ public class X_I_Product extends PO implements I_I_Product, I_Persistent public static final String PRODUCTTYPE_ExpenseType = "E"; /** Online = O */ public static final String PRODUCTTYPE_Online = "O"; + /** Asset = A */ + public static final String PRODUCTTYPE_Asset = "A"; /** Set Product Type. @param ProductType Type of product diff --git a/org.adempiere.base/src/org/compiere/model/X_I_ReportLine.java b/org.adempiere.base/src/org/compiere/model/X_I_ReportLine.java index 166e68a456..3a7fa9c2b3 100644 --- a/org.adempiere.base/src/org/compiere/model/X_I_ReportLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_I_ReportLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for I_ReportLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_I_ReportLine extends PO implements I_I_ReportLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_I_ReportLine (Properties ctx, int I_ReportLine_ID, String trxName) @@ -96,9 +96,9 @@ public class X_I_ReportLine extends PO implements I_I_ReportLine, I_Persistent return (String)get_Value(COLUMNNAME_CalculationType); } - public I_C_ElementValue getC_ElementValue() throws RuntimeException + public org.compiere.model.I_C_ElementValue getC_ElementValue() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getC_ElementValue_ID(), get_TrxName()); } /** Set Account Element. @@ -222,6 +222,20 @@ public class X_I_ReportLine extends PO implements I_I_ReportLine, I_Persistent return ii.intValue(); } + /** Set I_ReportLine_UU. + @param I_ReportLine_UU I_ReportLine_UU */ + public void setI_ReportLine_UU (String I_ReportLine_UU) + { + set_Value (COLUMNNAME_I_ReportLine_UU, I_ReportLine_UU); + } + + /** Get I_ReportLine_UU. + @return I_ReportLine_UU */ + public String getI_ReportLine_UU () + { + return (String)get_Value(COLUMNNAME_I_ReportLine_UU); + } + /** Set Printed. @param IsPrinted Indicates if this document / line is printed @@ -376,9 +390,9 @@ public class X_I_ReportLine extends PO implements I_I_ReportLine, I_Persistent return (String)get_Value(COLUMNNAME_PAPeriodType); } - public I_PA_ReportLine getPA_ReportLine() throws RuntimeException + public org.compiere.model.I_PA_ReportLine getPA_ReportLine() throws RuntimeException { - return (I_PA_ReportLine)MTable.get(getCtx(), I_PA_ReportLine.Table_Name) + return (org.compiere.model.I_PA_ReportLine)MTable.get(getCtx(), org.compiere.model.I_PA_ReportLine.Table_Name) .getPO(getPA_ReportLine_ID(), get_TrxName()); } /** Set Report Line. @@ -401,9 +415,9 @@ public class X_I_ReportLine extends PO implements I_I_ReportLine, I_Persistent return ii.intValue(); } - public I_PA_ReportLineSet getPA_ReportLineSet() throws RuntimeException + public org.compiere.model.I_PA_ReportLineSet getPA_ReportLineSet() throws RuntimeException { - return (I_PA_ReportLineSet)MTable.get(getCtx(), I_PA_ReportLineSet.Table_Name) + return (org.compiere.model.I_PA_ReportLineSet)MTable.get(getCtx(), org.compiere.model.I_PA_ReportLineSet.Table_Name) .getPO(getPA_ReportLineSet_ID(), get_TrxName()); } /** Set Report Line Set. @@ -426,9 +440,9 @@ public class X_I_ReportLine extends PO implements I_I_ReportLine, I_Persistent return ii.intValue(); } - public I_PA_ReportSource getPA_ReportSource() throws RuntimeException + public org.compiere.model.I_PA_ReportSource getPA_ReportSource() throws RuntimeException { - return (I_PA_ReportSource)MTable.get(getCtx(), I_PA_ReportSource.Table_Name) + return (org.compiere.model.I_PA_ReportSource)MTable.get(getCtx(), org.compiere.model.I_PA_ReportSource.Table_Name) .getPO(getPA_ReportSource_ID(), get_TrxName()); } /** Set Report Source. diff --git a/org.adempiere.base/src/org/compiere/model/X_K_Category.java b/org.adempiere.base/src/org/compiere/model/X_K_Category.java index 6ba953dba9..456b07dcd2 100644 --- a/org.adempiere.base/src/org/compiere/model/X_K_Category.java +++ b/org.adempiere.base/src/org/compiere/model/X_K_Category.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for K_Category - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_K_Category extends PO implements I_K_Category, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_K_Category (Properties ctx, int K_Category_ID, String trxName) @@ -128,6 +128,20 @@ public class X_K_Category extends PO implements I_K_Category, I_Persistent return ii.intValue(); } + /** Set K_Category_UU. + @param K_Category_UU K_Category_UU */ + public void setK_Category_UU (String K_Category_UU) + { + set_Value (COLUMNNAME_K_Category_UU, K_Category_UU); + } + + /** Get K_Category_UU. + @return K_Category_UU */ + public String getK_Category_UU () + { + return (String)get_Value(COLUMNNAME_K_Category_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_K_CategoryValue.java b/org.adempiere.base/src/org/compiere/model/X_K_CategoryValue.java index 2b98ed9717..26c0ca94d8 100644 --- a/org.adempiere.base/src/org/compiere/model/X_K_CategoryValue.java +++ b/org.adempiere.base/src/org/compiere/model/X_K_CategoryValue.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for K_CategoryValue - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_K_CategoryValue extends PO implements I_K_CategoryValue, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_K_CategoryValue (Properties ctx, int K_CategoryValue_ID, String trxName) @@ -89,9 +89,9 @@ public class X_K_CategoryValue extends PO implements I_K_CategoryValue, I_Persis return (String)get_Value(COLUMNNAME_Description); } - public I_K_Category getK_Category() throws RuntimeException + public org.compiere.model.I_K_Category getK_Category() throws RuntimeException { - return (I_K_Category)MTable.get(getCtx(), I_K_Category.Table_Name) + return (org.compiere.model.I_K_Category)MTable.get(getCtx(), org.compiere.model.I_K_Category.Table_Name) .getPO(getK_Category_ID(), get_TrxName()); } /** Set Knowledge Category. @@ -140,6 +140,20 @@ public class X_K_CategoryValue extends PO implements I_K_CategoryValue, I_Persis return ii.intValue(); } + /** Set K_CategoryValue_UU. + @param K_CategoryValue_UU K_CategoryValue_UU */ + public void setK_CategoryValue_UU (String K_CategoryValue_UU) + { + set_Value (COLUMNNAME_K_CategoryValue_UU, K_CategoryValue_UU); + } + + /** Get K_CategoryValue_UU. + @return K_CategoryValue_UU */ + public String getK_CategoryValue_UU () + { + return (String)get_Value(COLUMNNAME_K_CategoryValue_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_K_Comment.java b/org.adempiere.base/src/org/compiere/model/X_K_Comment.java index 70732648dd..ee98384e68 100644 --- a/org.adempiere.base/src/org/compiere/model/X_K_Comment.java +++ b/org.adempiere.base/src/org/compiere/model/X_K_Comment.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for K_Comment - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_K_Comment extends PO implements I_K_Comment, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_K_Comment (Properties ctx, int K_Comment_ID, String trxName) @@ -75,9 +75,9 @@ public class X_K_Comment extends PO implements I_K_Comment, I_Persistent return sb.toString(); } - public I_AD_Session getAD_Session() throws RuntimeException + public org.compiere.model.I_AD_Session getAD_Session() throws RuntimeException { - return (I_AD_Session)MTable.get(getCtx(), I_AD_Session.Table_Name) + return (org.compiere.model.I_AD_Session)MTable.get(getCtx(), org.compiere.model.I_AD_Session.Table_Name) .getPO(getAD_Session_ID(), get_TrxName()); } /** Set Session. @@ -158,9 +158,23 @@ public class X_K_Comment extends PO implements I_K_Comment, I_Persistent return new KeyNamePair(get_ID(), String.valueOf(getK_Comment_ID())); } - public I_K_Entry getK_Entry() throws RuntimeException + /** Set K_Comment_UU. + @param K_Comment_UU K_Comment_UU */ + public void setK_Comment_UU (String K_Comment_UU) + { + set_Value (COLUMNNAME_K_Comment_UU, K_Comment_UU); + } + + /** Get K_Comment_UU. + @return K_Comment_UU */ + public String getK_Comment_UU () + { + return (String)get_Value(COLUMNNAME_K_Comment_UU); + } + + public org.compiere.model.I_K_Entry getK_Entry() throws RuntimeException { - return (I_K_Entry)MTable.get(getCtx(), I_K_Entry.Table_Name) + return (org.compiere.model.I_K_Entry)MTable.get(getCtx(), org.compiere.model.I_K_Entry.Table_Name) .getPO(getK_Entry_ID(), get_TrxName()); } /** Set Entry. diff --git a/org.adempiere.base/src/org/compiere/model/X_K_Entry.java b/org.adempiere.base/src/org/compiere/model/X_K_Entry.java index 5210c726f4..6a95cff918 100644 --- a/org.adempiere.base/src/org/compiere/model/X_K_Entry.java +++ b/org.adempiere.base/src/org/compiere/model/X_K_Entry.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for K_Entry - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_K_Entry extends PO implements I_K_Entry, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_K_Entry (Properties ctx, int K_Entry_ID, String trxName) @@ -77,9 +77,9 @@ public class X_K_Entry extends PO implements I_K_Entry, I_Persistent return sb.toString(); } - public I_AD_Session getAD_Session() throws RuntimeException + public org.compiere.model.I_AD_Session getAD_Session() throws RuntimeException { - return (I_AD_Session)MTable.get(getCtx(), I_AD_Session.Table_Name) + return (org.compiere.model.I_AD_Session)MTable.get(getCtx(), org.compiere.model.I_AD_Session.Table_Name) .getPO(getAD_Session_ID(), get_TrxName()); } /** Set Session. @@ -169,6 +169,20 @@ public class X_K_Entry extends PO implements I_K_Entry, I_Persistent return ii.intValue(); } + /** Set K_Entry_UU. + @param K_Entry_UU K_Entry_UU */ + public void setK_Entry_UU (String K_Entry_UU) + { + set_Value (COLUMNNAME_K_Entry_UU, K_Entry_UU); + } + + /** Get K_Entry_UU. + @return K_Entry_UU */ + public String getK_Entry_UU () + { + return (String)get_Value(COLUMNNAME_K_Entry_UU); + } + /** Set Keywords. @param Keywords List of Keywords - separated by space, comma or semicolon @@ -186,9 +200,9 @@ public class X_K_Entry extends PO implements I_K_Entry, I_Persistent return (String)get_Value(COLUMNNAME_Keywords); } - public I_K_Source getK_Source() throws RuntimeException + public org.compiere.model.I_K_Source getK_Source() throws RuntimeException { - return (I_K_Source)MTable.get(getCtx(), I_K_Source.Table_Name) + return (org.compiere.model.I_K_Source)MTable.get(getCtx(), org.compiere.model.I_K_Source.Table_Name) .getPO(getK_Source_ID(), get_TrxName()); } /** Set Knowledge Source. @@ -214,9 +228,9 @@ public class X_K_Entry extends PO implements I_K_Entry, I_Persistent return ii.intValue(); } - public I_K_Topic getK_Topic() throws RuntimeException + public org.compiere.model.I_K_Topic getK_Topic() throws RuntimeException { - return (I_K_Topic)MTable.get(getCtx(), I_K_Topic.Table_Name) + return (org.compiere.model.I_K_Topic)MTable.get(getCtx(), org.compiere.model.I_K_Topic.Table_Name) .getPO(getK_Topic_ID(), get_TrxName()); } /** Set Knowledge Topic. diff --git a/org.adempiere.base/src/org/compiere/model/X_K_EntryCategory.java b/org.adempiere.base/src/org/compiere/model/X_K_EntryCategory.java index 28aa321198..5f9b5746b3 100644 --- a/org.adempiere.base/src/org/compiere/model/X_K_EntryCategory.java +++ b/org.adempiere.base/src/org/compiere/model/X_K_EntryCategory.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for K_EntryCategory - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_K_EntryCategory extends PO implements I_K_EntryCategory, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_K_EntryCategory (Properties ctx, int K_EntryCategory_ID, String trxName) @@ -72,9 +72,9 @@ public class X_K_EntryCategory extends PO implements I_K_EntryCategory, I_Persis return sb.toString(); } - public I_K_Category getK_Category() throws RuntimeException + public org.compiere.model.I_K_Category getK_Category() throws RuntimeException { - return (I_K_Category)MTable.get(getCtx(), I_K_Category.Table_Name) + return (org.compiere.model.I_K_Category)MTable.get(getCtx(), org.compiere.model.I_K_Category.Table_Name) .getPO(getK_Category_ID(), get_TrxName()); } /** Set Knowledge Category. @@ -100,9 +100,9 @@ public class X_K_EntryCategory extends PO implements I_K_EntryCategory, I_Persis return ii.intValue(); } - public I_K_CategoryValue getK_CategoryValue() throws RuntimeException + public org.compiere.model.I_K_CategoryValue getK_CategoryValue() throws RuntimeException { - return (I_K_CategoryValue)MTable.get(getCtx(), I_K_CategoryValue.Table_Name) + return (org.compiere.model.I_K_CategoryValue)MTable.get(getCtx(), org.compiere.model.I_K_CategoryValue.Table_Name) .getPO(getK_CategoryValue_ID(), get_TrxName()); } /** Set Category Value. @@ -136,9 +136,23 @@ public class X_K_EntryCategory extends PO implements I_K_EntryCategory, I_Persis return new KeyNamePair(get_ID(), String.valueOf(getK_CategoryValue_ID())); } - public I_K_Entry getK_Entry() throws RuntimeException + /** Set K_EntryCategory_UU. + @param K_EntryCategory_UU K_EntryCategory_UU */ + public void setK_EntryCategory_UU (String K_EntryCategory_UU) + { + set_Value (COLUMNNAME_K_EntryCategory_UU, K_EntryCategory_UU); + } + + /** Get K_EntryCategory_UU. + @return K_EntryCategory_UU */ + public String getK_EntryCategory_UU () + { + return (String)get_Value(COLUMNNAME_K_EntryCategory_UU); + } + + public org.compiere.model.I_K_Entry getK_Entry() throws RuntimeException { - return (I_K_Entry)MTable.get(getCtx(), I_K_Entry.Table_Name) + return (org.compiere.model.I_K_Entry)MTable.get(getCtx(), org.compiere.model.I_K_Entry.Table_Name) .getPO(getK_Entry_ID(), get_TrxName()); } /** Set Entry. diff --git a/org.adempiere.base/src/org/compiere/model/X_K_EntryRelated.java b/org.adempiere.base/src/org/compiere/model/X_K_EntryRelated.java index da82687ee3..c453c970ba 100644 --- a/org.adempiere.base/src/org/compiere/model/X_K_EntryRelated.java +++ b/org.adempiere.base/src/org/compiere/model/X_K_EntryRelated.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for K_EntryRelated - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_K_EntryRelated extends PO implements I_K_EntryRelated, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_K_EntryRelated (Properties ctx, int K_EntryRelated_ID, String trxName) @@ -71,9 +71,9 @@ public class X_K_EntryRelated extends PO implements I_K_EntryRelated, I_Persiste return sb.toString(); } - public I_K_Entry getK_Entry() throws RuntimeException + public org.compiere.model.I_K_Entry getK_Entry() throws RuntimeException { - return (I_K_Entry)MTable.get(getCtx(), I_K_Entry.Table_Name) + return (org.compiere.model.I_K_Entry)MTable.get(getCtx(), org.compiere.model.I_K_Entry.Table_Name) .getPO(getK_Entry_ID(), get_TrxName()); } /** Set Entry. @@ -130,6 +130,20 @@ public class X_K_EntryRelated extends PO implements I_K_EntryRelated, I_Persiste return new KeyNamePair(get_ID(), String.valueOf(getK_EntryRelated_ID())); } + /** Set K_EntryRelated_UU. + @param K_EntryRelated_UU K_EntryRelated_UU */ + public void setK_EntryRelated_UU (String K_EntryRelated_UU) + { + set_Value (COLUMNNAME_K_EntryRelated_UU, K_EntryRelated_UU); + } + + /** Get K_EntryRelated_UU. + @return K_EntryRelated_UU */ + public String getK_EntryRelated_UU () + { + return (String)get_Value(COLUMNNAME_K_EntryRelated_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_K_Index.java b/org.adempiere.base/src/org/compiere/model/X_K_Index.java index d4c539a2ae..f3a2b622a7 100644 --- a/org.adempiere.base/src/org/compiere/model/X_K_Index.java +++ b/org.adempiere.base/src/org/compiere/model/X_K_Index.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for K_Index - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_K_Index extends PO implements I_K_Index, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_K_Index (Properties ctx, int K_Index_ID, String trxName) @@ -75,9 +75,9 @@ public class X_K_Index extends PO implements I_K_Index, I_Persistent return sb.toString(); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @@ -103,9 +103,9 @@ public class X_K_Index extends PO implements I_K_Index, I_Persistent return ii.intValue(); } - public I_C_DocType getC_DocType() throws RuntimeException + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocType_ID(), get_TrxName()); } /** Set Document Type. @@ -131,9 +131,9 @@ public class X_K_Index extends PO implements I_K_Index, I_Persistent return ii.intValue(); } - public I_CM_WebProject getCM_WebProject() throws RuntimeException + public org.compiere.model.I_CM_WebProject getCM_WebProject() throws RuntimeException { - return (I_CM_WebProject)MTable.get(getCtx(), I_CM_WebProject.Table_Name) + return (org.compiere.model.I_CM_WebProject)MTable.get(getCtx(), org.compiere.model.I_CM_WebProject.Table_Name) .getPO(getCM_WebProject_ID(), get_TrxName()); } /** Set Web Project. @@ -224,6 +224,20 @@ public class X_K_Index extends PO implements I_K_Index, I_Persistent return ii.intValue(); } + /** Set K_Index_UU. + @param K_Index_UU K_Index_UU */ + public void setK_Index_UU (String K_Index_UU) + { + set_Value (COLUMNNAME_K_Index_UU, K_Index_UU); + } + + /** Get K_Index_UU. + @return K_Index_UU */ + public String getK_Index_UU () + { + return (String)get_Value(COLUMNNAME_K_Index_UU); + } + /** Set Record ID. @param Record_ID Direct internal record ID @@ -247,9 +261,9 @@ public class X_K_Index extends PO implements I_K_Index, I_Persistent return ii.intValue(); } - public I_R_RequestType getR_RequestType() throws RuntimeException + public org.compiere.model.I_R_RequestType getR_RequestType() throws RuntimeException { - return (I_R_RequestType)MTable.get(getCtx(), I_R_RequestType.Table_Name) + return (org.compiere.model.I_R_RequestType)MTable.get(getCtx(), org.compiere.model.I_R_RequestType.Table_Name) .getPO(getR_RequestType_ID(), get_TrxName()); } /** Set Request Type. diff --git a/org.adempiere.base/src/org/compiere/model/X_K_IndexLog.java b/org.adempiere.base/src/org/compiere/model/X_K_IndexLog.java index c67ee7db1c..cf14e2c86e 100644 --- a/org.adempiere.base/src/org/compiere/model/X_K_IndexLog.java +++ b/org.adempiere.base/src/org/compiere/model/X_K_IndexLog.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for K_IndexLog - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_K_IndexLog extends PO implements I_K_IndexLog, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_K_IndexLog (Properties ctx, int K_IndexLog_ID, String trxName) @@ -141,6 +141,20 @@ public class X_K_IndexLog extends PO implements I_K_IndexLog, I_Persistent return ii.intValue(); } + /** Set K_IndexLog_UU. + @param K_IndexLog_UU K_IndexLog_UU */ + public void setK_IndexLog_UU (String K_IndexLog_UU) + { + set_Value (COLUMNNAME_K_IndexLog_UU, K_IndexLog_UU); + } + + /** Get K_IndexLog_UU. + @return K_IndexLog_UU */ + public String getK_IndexLog_UU () + { + return (String)get_Value(COLUMNNAME_K_IndexLog_UU); + } + /** QuerySource AD_Reference_ID=391 */ public static final int QUERYSOURCE_AD_Reference_ID=391; /** Collaboration Management = C */ diff --git a/org.adempiere.base/src/org/compiere/model/X_K_IndexStop.java b/org.adempiere.base/src/org/compiere/model/X_K_IndexStop.java index c8193ea6b4..838e0108ed 100644 --- a/org.adempiere.base/src/org/compiere/model/X_K_IndexStop.java +++ b/org.adempiere.base/src/org/compiere/model/X_K_IndexStop.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for K_IndexStop - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_K_IndexStop extends PO implements I_K_IndexStop, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_K_IndexStop (Properties ctx, int K_IndexStop_ID, String trxName) @@ -73,9 +73,9 @@ public class X_K_IndexStop extends PO implements I_K_IndexStop, I_Persistent return sb.toString(); } - public I_C_DocType getC_DocType() throws RuntimeException + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocType_ID(), get_TrxName()); } /** Set Document Type. @@ -101,9 +101,9 @@ public class X_K_IndexStop extends PO implements I_K_IndexStop, I_Persistent return ii.intValue(); } - public I_CM_WebProject getCM_WebProject() throws RuntimeException + public org.compiere.model.I_CM_WebProject getCM_WebProject() throws RuntimeException { - return (I_CM_WebProject)MTable.get(getCtx(), I_CM_WebProject.Table_Name) + return (org.compiere.model.I_CM_WebProject)MTable.get(getCtx(), org.compiere.model.I_CM_WebProject.Table_Name) .getPO(getCM_WebProject_ID(), get_TrxName()); } /** Set Web Project. @@ -201,9 +201,23 @@ public class X_K_IndexStop extends PO implements I_K_IndexStop, I_Persistent return ii.intValue(); } - public I_R_RequestType getR_RequestType() throws RuntimeException + /** Set K_IndexStop_UU. + @param K_IndexStop_UU K_IndexStop_UU */ + public void setK_IndexStop_UU (String K_IndexStop_UU) + { + set_Value (COLUMNNAME_K_IndexStop_UU, K_IndexStop_UU); + } + + /** Get K_IndexStop_UU. + @return K_IndexStop_UU */ + public String getK_IndexStop_UU () + { + return (String)get_Value(COLUMNNAME_K_IndexStop_UU); + } + + public org.compiere.model.I_R_RequestType getR_RequestType() throws RuntimeException { - return (I_R_RequestType)MTable.get(getCtx(), I_R_RequestType.Table_Name) + return (org.compiere.model.I_R_RequestType)MTable.get(getCtx(), org.compiere.model.I_R_RequestType.Table_Name) .getPO(getR_RequestType_ID(), get_TrxName()); } /** Set Request Type. diff --git a/org.adempiere.base/src/org/compiere/model/X_K_Source.java b/org.adempiere.base/src/org/compiere/model/X_K_Source.java index 063f9fefab..2b9dbf68e3 100644 --- a/org.adempiere.base/src/org/compiere/model/X_K_Source.java +++ b/org.adempiere.base/src/org/compiere/model/X_K_Source.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for K_Source - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_K_Source extends PO implements I_K_Source, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_K_Source (Properties ctx, int K_Source_ID, String trxName) @@ -111,6 +111,20 @@ public class X_K_Source extends PO implements I_K_Source, I_Persistent return ii.intValue(); } + /** Set K_Source_UU. + @param K_Source_UU K_Source_UU */ + public void setK_Source_UU (String K_Source_UU) + { + set_Value (COLUMNNAME_K_Source_UU, K_Source_UU); + } + + /** Get K_Source_UU. + @return K_Source_UU */ + public String getK_Source_UU () + { + return (String)get_Value(COLUMNNAME_K_Source_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_K_Synonym.java b/org.adempiere.base/src/org/compiere/model/X_K_Synonym.java index 99f26155b0..148d8cd5ca 100644 --- a/org.adempiere.base/src/org/compiere/model/X_K_Synonym.java +++ b/org.adempiere.base/src/org/compiere/model/X_K_Synonym.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for K_Synonym - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_K_Synonym extends PO implements I_K_Synonym, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_K_Synonym (Properties ctx, int K_Synonym_ID, String trxName) @@ -116,6 +116,20 @@ public class X_K_Synonym extends PO implements I_K_Synonym, I_Persistent return ii.intValue(); } + /** Set K_Synonym_UU. + @param K_Synonym_UU K_Synonym_UU */ + public void setK_Synonym_UU (String K_Synonym_UU) + { + set_Value (COLUMNNAME_K_Synonym_UU, K_Synonym_UU); + } + + /** Get K_Synonym_UU. + @return K_Synonym_UU */ + public String getK_Synonym_UU () + { + return (String)get_Value(COLUMNNAME_K_Synonym_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_K_Topic.java b/org.adempiere.base/src/org/compiere/model/X_K_Topic.java index 079f30ed5d..117c3472b0 100644 --- a/org.adempiere.base/src/org/compiere/model/X_K_Topic.java +++ b/org.adempiere.base/src/org/compiere/model/X_K_Topic.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for K_Topic - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_K_Topic extends PO implements I_K_Topic, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_K_Topic (Properties ctx, int K_Topic_ID, String trxName) @@ -181,9 +181,23 @@ public class X_K_Topic extends PO implements I_K_Topic, I_Persistent return ii.intValue(); } - public I_K_Type getK_Type() throws RuntimeException + /** Set K_Topic_UU. + @param K_Topic_UU K_Topic_UU */ + public void setK_Topic_UU (String K_Topic_UU) + { + set_Value (COLUMNNAME_K_Topic_UU, K_Topic_UU); + } + + /** Get K_Topic_UU. + @return K_Topic_UU */ + public String getK_Topic_UU () + { + return (String)get_Value(COLUMNNAME_K_Topic_UU); + } + + public org.compiere.model.I_K_Type getK_Type() throws RuntimeException { - return (I_K_Type)MTable.get(getCtx(), I_K_Type.Table_Name) + return (org.compiere.model.I_K_Type)MTable.get(getCtx(), org.compiere.model.I_K_Type.Table_Name) .getPO(getK_Type_ID(), get_TrxName()); } /** Set Knowledge Type. diff --git a/org.adempiere.base/src/org/compiere/model/X_K_Type.java b/org.adempiere.base/src/org/compiere/model/X_K_Type.java index 7bc700b598..72c895e294 100644 --- a/org.adempiere.base/src/org/compiere/model/X_K_Type.java +++ b/org.adempiere.base/src/org/compiere/model/X_K_Type.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for K_Type - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_K_Type extends PO implements I_K_Type, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_K_Type (Properties ctx, int K_Type_ID, String trxName) @@ -180,6 +180,20 @@ public class X_K_Type extends PO implements I_K_Type, I_Persistent return ii.intValue(); } + /** Set K_Type_UU. + @param K_Type_UU K_Type_UU */ + public void setK_Type_UU (String K_Type_UU) + { + set_Value (COLUMNNAME_K_Type_UU, K_Type_UU); + } + + /** Get K_Type_UU. + @return K_Type_UU */ + public String getK_Type_UU () + { + return (String)get_Value(COLUMNNAME_K_Type_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_M_Attribute.java b/org.adempiere.base/src/org/compiere/model/X_M_Attribute.java index 4e986f47a9..c8a86f17b4 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_Attribute.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_Attribute.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_Attribute - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_Attribute extends PO implements I_M_Attribute, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_Attribute (Properties ctx, int M_Attribute_ID, String trxName) @@ -189,9 +189,9 @@ public class X_M_Attribute extends PO implements I_M_Attribute, I_Persistent return ii.intValue(); } - public I_M_AttributeSearch getM_AttributeSearch() throws RuntimeException + public org.compiere.model.I_M_AttributeSearch getM_AttributeSearch() throws RuntimeException { - return (I_M_AttributeSearch)MTable.get(getCtx(), I_M_AttributeSearch.Table_Name) + return (org.compiere.model.I_M_AttributeSearch)MTable.get(getCtx(), org.compiere.model.I_M_AttributeSearch.Table_Name) .getPO(getM_AttributeSearch_ID(), get_TrxName()); } /** Set Attribute Search. @@ -217,6 +217,20 @@ public class X_M_Attribute extends PO implements I_M_Attribute, I_Persistent return ii.intValue(); } + /** Set M_Attribute_UU. + @param M_Attribute_UU M_Attribute_UU */ + public void setM_Attribute_UU (String M_Attribute_UU) + { + set_Value (COLUMNNAME_M_Attribute_UU, M_Attribute_UU); + } + + /** Get M_Attribute_UU. + @return M_Attribute_UU */ + public String getM_Attribute_UU () + { + return (String)get_Value(COLUMNNAME_M_Attribute_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_M_AttributeInstance.java b/org.adempiere.base/src/org/compiere/model/X_M_AttributeInstance.java index 25dd746e38..372c742556 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_AttributeInstance.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_AttributeInstance.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_AttributeInstance - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_AttributeInstance extends PO implements I_M_AttributeInstance, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_AttributeInstance (Properties ctx, int M_AttributeInstance_ID, String trxName) @@ -73,9 +73,9 @@ public class X_M_AttributeInstance extends PO implements I_M_AttributeInstance, return sb.toString(); } - public I_M_Attribute getM_Attribute() throws RuntimeException + public org.compiere.model.I_M_Attribute getM_Attribute() throws RuntimeException { - return (I_M_Attribute)MTable.get(getCtx(), I_M_Attribute.Table_Name) + return (org.compiere.model.I_M_Attribute)MTable.get(getCtx(), org.compiere.model.I_M_Attribute.Table_Name) .getPO(getM_Attribute_ID(), get_TrxName()); } /** Set Attribute. @@ -101,6 +101,20 @@ public class X_M_AttributeInstance extends PO implements I_M_AttributeInstance, return ii.intValue(); } + /** Set M_AttributeInstance_UU. + @param M_AttributeInstance_UU M_AttributeInstance_UU */ + public void setM_AttributeInstance_UU (String M_AttributeInstance_UU) + { + set_Value (COLUMNNAME_M_AttributeInstance_UU, M_AttributeInstance_UU); + } + + /** Get M_AttributeInstance_UU. + @return M_AttributeInstance_UU */ + public String getM_AttributeInstance_UU () + { + return (String)get_Value(COLUMNNAME_M_AttributeInstance_UU); + } + public I_M_AttributeSetInstance getM_AttributeSetInstance() throws RuntimeException { return (I_M_AttributeSetInstance)MTable.get(getCtx(), I_M_AttributeSetInstance.Table_Name) @@ -129,9 +143,9 @@ public class X_M_AttributeInstance extends PO implements I_M_AttributeInstance, return ii.intValue(); } - public I_M_AttributeValue getM_AttributeValue() throws RuntimeException + public org.compiere.model.I_M_AttributeValue getM_AttributeValue() throws RuntimeException { - return (I_M_AttributeValue)MTable.get(getCtx(), I_M_AttributeValue.Table_Name) + return (org.compiere.model.I_M_AttributeValue)MTable.get(getCtx(), org.compiere.model.I_M_AttributeValue.Table_Name) .getPO(getM_AttributeValue_ID(), get_TrxName()); } /** Set Attribute Value. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_AttributeSearch.java b/org.adempiere.base/src/org/compiere/model/X_M_AttributeSearch.java index 5074a12d42..4f59ddf8f9 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_AttributeSearch.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_AttributeSearch.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_AttributeSearch - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_AttributeSearch extends PO implements I_M_AttributeSearch, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_AttributeSearch (Properties ctx, int M_AttributeSearch_ID, String trxName) @@ -111,6 +111,20 @@ public class X_M_AttributeSearch extends PO implements I_M_AttributeSearch, I_Pe return ii.intValue(); } + /** Set M_AttributeSearch_UU. + @param M_AttributeSearch_UU M_AttributeSearch_UU */ + public void setM_AttributeSearch_UU (String M_AttributeSearch_UU) + { + set_Value (COLUMNNAME_M_AttributeSearch_UU, M_AttributeSearch_UU); + } + + /** Get M_AttributeSearch_UU. + @return M_AttributeSearch_UU */ + public String getM_AttributeSearch_UU () + { + return (String)get_Value(COLUMNNAME_M_AttributeSearch_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_M_AttributeSet.java b/org.adempiere.base/src/org/compiere/model/X_M_AttributeSet.java index abc8f232b2..170f3e7155 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_AttributeSet.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_AttributeSet.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_AttributeSet - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_AttributeSet extends PO implements I_M_AttributeSet, I_Persistent { /** * */ - private static final long serialVersionUID = 20110308L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_AttributeSet (Properties ctx, int M_AttributeSet_ID, String trxName) @@ -367,6 +367,20 @@ public class X_M_AttributeSet extends PO implements I_M_AttributeSet, I_Persiste return ii.intValue(); } + /** Set M_AttributeSet_UU. + @param M_AttributeSet_UU M_AttributeSet_UU */ + public void setM_AttributeSet_UU (String M_AttributeSet_UU) + { + set_Value (COLUMNNAME_M_AttributeSet_UU, M_AttributeSet_UU); + } + + /** Get M_AttributeSet_UU. + @return M_AttributeSet_UU */ + public String getM_AttributeSet_UU () + { + return (String)get_Value(COLUMNNAME_M_AttributeSet_UU); + } + public org.compiere.model.I_M_LotCtl getM_LotCtl() throws RuntimeException { return (org.compiere.model.I_M_LotCtl)MTable.get(getCtx(), org.compiere.model.I_M_LotCtl.Table_Name) diff --git a/org.adempiere.base/src/org/compiere/model/X_M_AttributeSetExclude.java b/org.adempiere.base/src/org/compiere/model/X_M_AttributeSetExclude.java index 5946d9e566..b3f1e7ad04 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_AttributeSetExclude.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_AttributeSetExclude.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for M_AttributeSetExclude - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_AttributeSetExclude extends PO implements I_M_AttributeSetExclude, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_AttributeSetExclude (Properties ctx, int M_AttributeSetExclude_ID, String trxName) @@ -72,9 +72,9 @@ public class X_M_AttributeSetExclude extends PO implements I_M_AttributeSetExclu return sb.toString(); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @@ -147,9 +147,23 @@ public class X_M_AttributeSetExclude extends PO implements I_M_AttributeSetExclu return ii.intValue(); } - public I_M_AttributeSet getM_AttributeSet() throws RuntimeException + /** Set M_AttributeSetExclude_UU. + @param M_AttributeSetExclude_UU M_AttributeSetExclude_UU */ + public void setM_AttributeSetExclude_UU (String M_AttributeSetExclude_UU) + { + set_Value (COLUMNNAME_M_AttributeSetExclude_UU, M_AttributeSetExclude_UU); + } + + /** Get M_AttributeSetExclude_UU. + @return M_AttributeSetExclude_UU */ + public String getM_AttributeSetExclude_UU () + { + return (String)get_Value(COLUMNNAME_M_AttributeSetExclude_UU); + } + + public org.compiere.model.I_M_AttributeSet getM_AttributeSet() throws RuntimeException { - return (I_M_AttributeSet)MTable.get(getCtx(), I_M_AttributeSet.Table_Name) + return (org.compiere.model.I_M_AttributeSet)MTable.get(getCtx(), org.compiere.model.I_M_AttributeSet.Table_Name) .getPO(getM_AttributeSet_ID(), get_TrxName()); } /** Set Attribute Set. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_AttributeSetInstance.java b/org.adempiere.base/src/org/compiere/model/X_M_AttributeSetInstance.java index 2eca98164d..d0e841d43c 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_AttributeSetInstance.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_AttributeSetInstance.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_AttributeSetInstance - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_AttributeSetInstance extends PO implements I_M_AttributeSetInstance, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_AttributeSetInstance (Properties ctx, int M_AttributeSetInstance_ID, String trxName) @@ -123,9 +123,9 @@ public class X_M_AttributeSetInstance extends PO implements I_M_AttributeSetInst return (String)get_Value(COLUMNNAME_Lot); } - public I_M_AttributeSet getM_AttributeSet() throws RuntimeException + public org.compiere.model.I_M_AttributeSet getM_AttributeSet() throws RuntimeException { - return (I_M_AttributeSet)MTable.get(getCtx(), I_M_AttributeSet.Table_Name) + return (org.compiere.model.I_M_AttributeSet)MTable.get(getCtx(), org.compiere.model.I_M_AttributeSet.Table_Name) .getPO(getM_AttributeSet_ID(), get_TrxName()); } /** Set Attribute Set. @@ -182,9 +182,23 @@ public class X_M_AttributeSetInstance extends PO implements I_M_AttributeSetInst return new KeyNamePair(get_ID(), String.valueOf(getM_AttributeSetInstance_ID())); } - public I_M_Lot getM_Lot() throws RuntimeException + /** Set M_AttributeSetInstance_UU. + @param M_AttributeSetInstance_UU M_AttributeSetInstance_UU */ + public void setM_AttributeSetInstance_UU (String M_AttributeSetInstance_UU) + { + set_Value (COLUMNNAME_M_AttributeSetInstance_UU, M_AttributeSetInstance_UU); + } + + /** Get M_AttributeSetInstance_UU. + @return M_AttributeSetInstance_UU */ + public String getM_AttributeSetInstance_UU () + { + return (String)get_Value(COLUMNNAME_M_AttributeSetInstance_UU); + } + + public org.compiere.model.I_M_Lot getM_Lot() throws RuntimeException { - return (I_M_Lot)MTable.get(getCtx(), I_M_Lot.Table_Name) + return (org.compiere.model.I_M_Lot)MTable.get(getCtx(), org.compiere.model.I_M_Lot.Table_Name) .getPO(getM_Lot_ID(), get_TrxName()); } /** Set Lot. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_AttributeUse.java b/org.adempiere.base/src/org/compiere/model/X_M_AttributeUse.java index 1c74ffaa1b..e8e63a5d9e 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_AttributeUse.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_AttributeUse.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_AttributeUse - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_AttributeUse extends PO implements I_M_AttributeUse, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_AttributeUse (Properties ctx, int M_AttributeUse_ID, String trxName) @@ -73,9 +73,9 @@ public class X_M_AttributeUse extends PO implements I_M_AttributeUse, I_Persiste return sb.toString(); } - public I_M_Attribute getM_Attribute() throws RuntimeException + public org.compiere.model.I_M_Attribute getM_Attribute() throws RuntimeException { - return (I_M_Attribute)MTable.get(getCtx(), I_M_Attribute.Table_Name) + return (org.compiere.model.I_M_Attribute)MTable.get(getCtx(), org.compiere.model.I_M_Attribute.Table_Name) .getPO(getM_Attribute_ID(), get_TrxName()); } /** Set Attribute. @@ -101,9 +101,9 @@ public class X_M_AttributeUse extends PO implements I_M_AttributeUse, I_Persiste return ii.intValue(); } - public I_M_AttributeSet getM_AttributeSet() throws RuntimeException + public org.compiere.model.I_M_AttributeSet getM_AttributeSet() throws RuntimeException { - return (I_M_AttributeSet)MTable.get(getCtx(), I_M_AttributeSet.Table_Name) + return (org.compiere.model.I_M_AttributeSet)MTable.get(getCtx(), org.compiere.model.I_M_AttributeSet.Table_Name) .getPO(getM_AttributeSet_ID(), get_TrxName()); } /** Set Attribute Set. @@ -137,6 +137,20 @@ public class X_M_AttributeUse extends PO implements I_M_AttributeUse, I_Persiste return new KeyNamePair(get_ID(), String.valueOf(getM_AttributeSet_ID())); } + /** Set M_AttributeUse_UU. + @param M_AttributeUse_UU M_AttributeUse_UU */ + public void setM_AttributeUse_UU (String M_AttributeUse_UU) + { + set_Value (COLUMNNAME_M_AttributeUse_UU, M_AttributeUse_UU); + } + + /** Get M_AttributeUse_UU. + @return M_AttributeUse_UU */ + public String getM_AttributeUse_UU () + { + return (String)get_Value(COLUMNNAME_M_AttributeUse_UU); + } + /** Set Sequence. @param SeqNo Method of ordering records; lowest number comes first diff --git a/org.adempiere.base/src/org/compiere/model/X_M_AttributeValue.java b/org.adempiere.base/src/org/compiere/model/X_M_AttributeValue.java index 5ea645f33e..9f6faef754 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_AttributeValue.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_AttributeValue.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_AttributeValue - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_AttributeValue extends PO implements I_M_AttributeValue, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_AttributeValue (Properties ctx, int M_AttributeValue_ID, String trxName) @@ -90,9 +90,9 @@ public class X_M_AttributeValue extends PO implements I_M_AttributeValue, I_Pers return (String)get_Value(COLUMNNAME_Description); } - public I_M_Attribute getM_Attribute() throws RuntimeException + public org.compiere.model.I_M_Attribute getM_Attribute() throws RuntimeException { - return (I_M_Attribute)MTable.get(getCtx(), I_M_Attribute.Table_Name) + return (org.compiere.model.I_M_Attribute)MTable.get(getCtx(), org.compiere.model.I_M_Attribute.Table_Name) .getPO(getM_Attribute_ID(), get_TrxName()); } /** Set Attribute. @@ -141,6 +141,20 @@ public class X_M_AttributeValue extends PO implements I_M_AttributeValue, I_Pers return ii.intValue(); } + /** Set M_AttributeValue_UU. + @param M_AttributeValue_UU M_AttributeValue_UU */ + public void setM_AttributeValue_UU (String M_AttributeValue_UU) + { + set_Value (COLUMNNAME_M_AttributeValue_UU, M_AttributeValue_UU); + } + + /** Get M_AttributeValue_UU. + @return M_AttributeValue_UU */ + public String getM_AttributeValue_UU () + { + return (String)get_Value(COLUMNNAME_M_AttributeValue_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_M_BOM.java b/org.adempiere.base/src/org/compiere/model/X_M_BOM.java index 609d0be113..594af0c568 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_BOM.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_BOM.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_BOM - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_BOM extends PO implements I_M_BOM, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_BOM (Properties ctx, int M_BOM_ID, String trxName) @@ -201,9 +201,23 @@ public class X_M_BOM extends PO implements I_M_BOM, I_Persistent return ii.intValue(); } - public I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException + /** Set M_BOM_UU. + @param M_BOM_UU M_BOM_UU */ + public void setM_BOM_UU (String M_BOM_UU) + { + set_Value (COLUMNNAME_M_BOM_UU, M_BOM_UU); + } + + /** Get M_BOM_UU. + @return M_BOM_UU */ + public String getM_BOM_UU () + { + return (String)get_Value(COLUMNNAME_M_BOM_UU); + } + + public org.compiere.model.I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException { - return (I_M_ChangeNotice)MTable.get(getCtx(), I_M_ChangeNotice.Table_Name) + return (org.compiere.model.I_M_ChangeNotice)MTable.get(getCtx(), org.compiere.model.I_M_ChangeNotice.Table_Name) .getPO(getM_ChangeNotice_ID(), get_TrxName()); } /** Set Change Notice. @@ -229,9 +243,9 @@ public class X_M_BOM extends PO implements I_M_BOM, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_BOMAlternative.java b/org.adempiere.base/src/org/compiere/model/X_M_BOMAlternative.java index d3631184d7..cbb53ff734 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_BOMAlternative.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_BOMAlternative.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_BOMAlternative - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_BOMAlternative extends PO implements I_M_BOMAlternative, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_BOMAlternative (Properties ctx, int M_BOMAlternative_ID, String trxName) @@ -112,9 +112,23 @@ public class X_M_BOMAlternative extends PO implements I_M_BOMAlternative, I_Pers return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + /** Set M_BOMAlternative_UU. + @param M_BOMAlternative_UU M_BOMAlternative_UU */ + public void setM_BOMAlternative_UU (String M_BOMAlternative_UU) + { + set_Value (COLUMNNAME_M_BOMAlternative_UU, M_BOMAlternative_UU); + } + + /** Get M_BOMAlternative_UU. + @return M_BOMAlternative_UU */ + public String getM_BOMAlternative_UU () + { + return (String)get_Value(COLUMNNAME_M_BOMAlternative_UU); + } + + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_BOMProduct.java b/org.adempiere.base/src/org/compiere/model/X_M_BOMProduct.java index 289979de35..5740bb1066 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_BOMProduct.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_BOMProduct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_BOMProduct - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_BOMProduct extends PO implements I_M_BOMProduct, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_BOMProduct (Properties ctx, int M_BOMProduct_ID, String trxName) @@ -265,9 +265,9 @@ public class X_M_BOMProduct extends PO implements I_M_BOMProduct, I_Persistent return ii.intValue(); } - public I_M_BOMAlternative getM_BOMAlternative() throws RuntimeException + public org.compiere.model.I_M_BOMAlternative getM_BOMAlternative() throws RuntimeException { - return (I_M_BOMAlternative)MTable.get(getCtx(), I_M_BOMAlternative.Table_Name) + return (org.compiere.model.I_M_BOMAlternative)MTable.get(getCtx(), org.compiere.model.I_M_BOMAlternative.Table_Name) .getPO(getM_BOMAlternative_ID(), get_TrxName()); } /** Set Alternative Group. @@ -293,9 +293,9 @@ public class X_M_BOMProduct extends PO implements I_M_BOMProduct, I_Persistent return ii.intValue(); } - public I_M_BOM getM_BOM() throws RuntimeException + public org.compiere.model.I_M_BOM getM_BOM() throws RuntimeException { - return (I_M_BOM)MTable.get(getCtx(), I_M_BOM.Table_Name) + return (org.compiere.model.I_M_BOM)MTable.get(getCtx(), org.compiere.model.I_M_BOM.Table_Name) .getPO(getM_BOM_ID(), get_TrxName()); } /** Set BOM. @@ -344,9 +344,23 @@ public class X_M_BOMProduct extends PO implements I_M_BOMProduct, I_Persistent return ii.intValue(); } - public I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException + /** Set M_BOMProduct_UU. + @param M_BOMProduct_UU M_BOMProduct_UU */ + public void setM_BOMProduct_UU (String M_BOMProduct_UU) + { + set_Value (COLUMNNAME_M_BOMProduct_UU, M_BOMProduct_UU); + } + + /** Get M_BOMProduct_UU. + @return M_BOMProduct_UU */ + public String getM_BOMProduct_UU () + { + return (String)get_Value(COLUMNNAME_M_BOMProduct_UU); + } + + public org.compiere.model.I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException { - return (I_M_ChangeNotice)MTable.get(getCtx(), I_M_ChangeNotice.Table_Name) + return (org.compiere.model.I_M_ChangeNotice)MTable.get(getCtx(), org.compiere.model.I_M_ChangeNotice.Table_Name) .getPO(getM_ChangeNotice_ID(), get_TrxName()); } /** Set Change Notice. @@ -372,9 +386,9 @@ public class X_M_BOMProduct extends PO implements I_M_BOMProduct, I_Persistent return ii.intValue(); } - public I_M_Product getM_ProductBOM() throws RuntimeException + public org.compiere.model.I_M_Product getM_ProductBOM() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_ProductBOM_ID(), get_TrxName()); } /** Set BOM Product. @@ -400,9 +414,9 @@ public class X_M_BOMProduct extends PO implements I_M_BOMProduct, I_Persistent return ii.intValue(); } - public I_M_ProductOperation getM_ProductOperation() throws RuntimeException + public org.compiere.model.I_M_ProductOperation getM_ProductOperation() throws RuntimeException { - return (I_M_ProductOperation)MTable.get(getCtx(), I_M_ProductOperation.Table_Name) + return (org.compiere.model.I_M_ProductOperation)MTable.get(getCtx(), org.compiere.model.I_M_ProductOperation.Table_Name) .getPO(getM_ProductOperation_ID(), get_TrxName()); } /** Set Product Operation. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_ChangeNotice.java b/org.adempiere.base/src/org/compiere/model/X_M_ChangeNotice.java index ecb3470fdb..b13e4ae36f 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_ChangeNotice.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_ChangeNotice.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_ChangeNotice - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_ChangeNotice extends PO implements I_M_ChangeNotice, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_ChangeNotice (Properties ctx, int M_ChangeNotice_ID, String trxName) @@ -172,6 +172,20 @@ public class X_M_ChangeNotice extends PO implements I_M_ChangeNotice, I_Persiste return ii.intValue(); } + /** Set M_ChangeNotice_UU. + @param M_ChangeNotice_UU M_ChangeNotice_UU */ + public void setM_ChangeNotice_UU (String M_ChangeNotice_UU) + { + set_Value (COLUMNNAME_M_ChangeNotice_UU, M_ChangeNotice_UU); + } + + /** Get M_ChangeNotice_UU. + @return M_ChangeNotice_UU */ + public String getM_ChangeNotice_UU () + { + return (String)get_Value(COLUMNNAME_M_ChangeNotice_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_M_ChangeRequest.java b/org.adempiere.base/src/org/compiere/model/X_M_ChangeRequest.java index 7caddb641b..c3453f3e58 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_ChangeRequest.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_ChangeRequest.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_ChangeRequest - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_ChangeRequest extends PO implements I_M_ChangeRequest, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_ChangeRequest (Properties ctx, int M_ChangeRequest_ID, String trxName) @@ -175,9 +175,9 @@ public class X_M_ChangeRequest extends PO implements I_M_ChangeRequest, I_Persis return false; } - public I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException + public org.compiere.model.I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException { - return (I_M_ChangeNotice)MTable.get(getCtx(), I_M_ChangeNotice.Table_Name) + return (org.compiere.model.I_M_ChangeNotice)MTable.get(getCtx(), org.compiere.model.I_M_ChangeNotice.Table_Name) .getPO(getM_ChangeNotice_ID(), get_TrxName()); } /** Set Change Notice. @@ -226,9 +226,23 @@ public class X_M_ChangeRequest extends PO implements I_M_ChangeRequest, I_Persis return ii.intValue(); } - public I_M_ChangeNotice getM_FixChangeNotice() throws RuntimeException + /** Set M_ChangeRequest_UU. + @param M_ChangeRequest_UU M_ChangeRequest_UU */ + public void setM_ChangeRequest_UU (String M_ChangeRequest_UU) + { + set_Value (COLUMNNAME_M_ChangeRequest_UU, M_ChangeRequest_UU); + } + + /** Get M_ChangeRequest_UU. + @return M_ChangeRequest_UU */ + public String getM_ChangeRequest_UU () + { + return (String)get_Value(COLUMNNAME_M_ChangeRequest_UU); + } + + public org.compiere.model.I_M_ChangeNotice getM_FixChangeNotice() throws RuntimeException { - return (I_M_ChangeNotice)MTable.get(getCtx(), I_M_ChangeNotice.Table_Name) + return (org.compiere.model.I_M_ChangeNotice)MTable.get(getCtx(), org.compiere.model.I_M_ChangeNotice.Table_Name) .getPO(getM_FixChangeNotice_ID(), get_TrxName()); } /** Set Fixed in. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_Cost.java b/org.adempiere.base/src/org/compiere/model/X_M_Cost.java index 400123aa45..859caccbee 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_Cost.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_Cost.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for M_Cost - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_Cost extends PO implements I_M_Cost, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_Cost (Properties ctx, int M_Cost_ID, String trxName) @@ -79,9 +79,9 @@ public class X_M_Cost extends PO implements I_M_Cost, I_Persistent return sb.toString(); } - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException { - return (I_C_AcctSchema)MTable.get(getCtx(), I_C_AcctSchema.Table_Name) + return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_Name) .getPO(getC_AcctSchema_ID(), get_TrxName()); } /** Set Accounting Schema. @@ -347,9 +347,9 @@ public class X_M_Cost extends PO implements I_M_Cost, I_Persistent return ii.intValue(); } - public I_M_CostElement getM_CostElement() throws RuntimeException + public org.compiere.model.I_M_CostElement getM_CostElement() throws RuntimeException { - return (I_M_CostElement)MTable.get(getCtx(), I_M_CostElement.Table_Name) + return (org.compiere.model.I_M_CostElement)MTable.get(getCtx(), org.compiere.model.I_M_CostElement.Table_Name) .getPO(getM_CostElement_ID(), get_TrxName()); } /** Set Cost Element. @@ -375,9 +375,9 @@ public class X_M_Cost extends PO implements I_M_Cost, I_Persistent return ii.intValue(); } - public I_M_CostType getM_CostType() throws RuntimeException + public org.compiere.model.I_M_CostType getM_CostType() throws RuntimeException { - return (I_M_CostType)MTable.get(getCtx(), I_M_CostType.Table_Name) + return (org.compiere.model.I_M_CostType)MTable.get(getCtx(), org.compiere.model.I_M_CostType.Table_Name) .getPO(getM_CostType_ID(), get_TrxName()); } /** Set Cost Type. @@ -403,9 +403,23 @@ public class X_M_Cost extends PO implements I_M_Cost, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + /** Set M_Cost_UU. + @param M_Cost_UU M_Cost_UU */ + public void setM_Cost_UU (String M_Cost_UU) + { + set_Value (COLUMNNAME_M_Cost_UU, M_Cost_UU); + } + + /** Get M_Cost_UU. + @return M_Cost_UU */ + public String getM_Cost_UU () + { + return (String)get_Value(COLUMNNAME_M_Cost_UU); + } + + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_CostDetail.java b/org.adempiere.base/src/org/compiere/model/X_M_CostDetail.java index c8e44a9824..134af23a2a 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_CostDetail.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_CostDetail.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for M_CostDetail - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_CostDetail extends PO implements I_M_CostDetail, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_CostDetail (Properties ctx, int M_CostDetail_ID, String trxName) @@ -98,9 +98,9 @@ public class X_M_CostDetail extends PO implements I_M_CostDetail, I_Persistent return bd; } - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException { - return (I_C_AcctSchema)MTable.get(getCtx(), I_C_AcctSchema.Table_Name) + return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_Name) .getPO(getC_AcctSchema_ID(), get_TrxName()); } /** Set Accounting Schema. @@ -126,9 +126,9 @@ public class X_M_CostDetail extends PO implements I_M_CostDetail, I_Persistent return ii.intValue(); } - public I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException + public org.compiere.model.I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException { - return (I_C_InvoiceLine)MTable.get(getCtx(), I_C_InvoiceLine.Table_Name) + return (org.compiere.model.I_C_InvoiceLine)MTable.get(getCtx(), org.compiere.model.I_C_InvoiceLine.Table_Name) .getPO(getC_InvoiceLine_ID(), get_TrxName()); } /** Set Invoice Line. @@ -154,9 +154,9 @@ public class X_M_CostDetail extends PO implements I_M_CostDetail, I_Persistent return ii.intValue(); } - public I_C_OrderLine getC_OrderLine() throws RuntimeException + public org.compiere.model.I_C_OrderLine getC_OrderLine() throws RuntimeException { - return (I_C_OrderLine)MTable.get(getCtx(), I_C_OrderLine.Table_Name) + return (org.compiere.model.I_C_OrderLine)MTable.get(getCtx(), org.compiere.model.I_C_OrderLine.Table_Name) .getPO(getC_OrderLine_ID(), get_TrxName()); } /** Set Sales Order Line. @@ -182,9 +182,9 @@ public class X_M_CostDetail extends PO implements I_M_CostDetail, I_Persistent return ii.intValue(); } - public I_C_ProjectIssue getC_ProjectIssue() throws RuntimeException + public org.compiere.model.I_C_ProjectIssue getC_ProjectIssue() throws RuntimeException { - return (I_C_ProjectIssue)MTable.get(getCtx(), I_C_ProjectIssue.Table_Name) + return (org.compiere.model.I_C_ProjectIssue)MTable.get(getCtx(), org.compiere.model.I_C_ProjectIssue.Table_Name) .getPO(getC_ProjectIssue_ID(), get_TrxName()); } /** Set Project Issue. @@ -422,9 +422,23 @@ public class X_M_CostDetail extends PO implements I_M_CostDetail, I_Persistent return ii.intValue(); } - public I_M_CostElement getM_CostElement() throws RuntimeException + /** Set M_CostDetail_UU. + @param M_CostDetail_UU M_CostDetail_UU */ + public void setM_CostDetail_UU (String M_CostDetail_UU) + { + set_Value (COLUMNNAME_M_CostDetail_UU, M_CostDetail_UU); + } + + /** Get M_CostDetail_UU. + @return M_CostDetail_UU */ + public String getM_CostDetail_UU () + { + return (String)get_Value(COLUMNNAME_M_CostDetail_UU); + } + + public org.compiere.model.I_M_CostElement getM_CostElement() throws RuntimeException { - return (I_M_CostElement)MTable.get(getCtx(), I_M_CostElement.Table_Name) + return (org.compiere.model.I_M_CostElement)MTable.get(getCtx(), org.compiere.model.I_M_CostElement.Table_Name) .getPO(getM_CostElement_ID(), get_TrxName()); } /** Set Cost Element. @@ -450,9 +464,9 @@ public class X_M_CostDetail extends PO implements I_M_CostDetail, I_Persistent return ii.intValue(); } - public I_M_InOutLine getM_InOutLine() throws RuntimeException + public org.compiere.model.I_M_InOutLine getM_InOutLine() throws RuntimeException { - return (I_M_InOutLine)MTable.get(getCtx(), I_M_InOutLine.Table_Name) + return (org.compiere.model.I_M_InOutLine)MTable.get(getCtx(), org.compiere.model.I_M_InOutLine.Table_Name) .getPO(getM_InOutLine_ID(), get_TrxName()); } /** Set Shipment/Receipt Line. @@ -478,9 +492,9 @@ public class X_M_CostDetail extends PO implements I_M_CostDetail, I_Persistent return ii.intValue(); } - public I_M_InventoryLine getM_InventoryLine() throws RuntimeException + public org.compiere.model.I_M_InventoryLine getM_InventoryLine() throws RuntimeException { - return (I_M_InventoryLine)MTable.get(getCtx(), I_M_InventoryLine.Table_Name) + return (org.compiere.model.I_M_InventoryLine)MTable.get(getCtx(), org.compiere.model.I_M_InventoryLine.Table_Name) .getPO(getM_InventoryLine_ID(), get_TrxName()); } /** Set Phys.Inventory Line. @@ -506,9 +520,9 @@ public class X_M_CostDetail extends PO implements I_M_CostDetail, I_Persistent return ii.intValue(); } - public I_M_MovementLine getM_MovementLine() throws RuntimeException + public org.compiere.model.I_M_MovementLine getM_MovementLine() throws RuntimeException { - return (I_M_MovementLine)MTable.get(getCtx(), I_M_MovementLine.Table_Name) + return (org.compiere.model.I_M_MovementLine)MTable.get(getCtx(), org.compiere.model.I_M_MovementLine.Table_Name) .getPO(getM_MovementLine_ID(), get_TrxName()); } /** Set Move Line. @@ -534,9 +548,9 @@ public class X_M_CostDetail extends PO implements I_M_CostDetail, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -562,9 +576,9 @@ public class X_M_CostDetail extends PO implements I_M_CostDetail, I_Persistent return ii.intValue(); } - public I_M_ProductionLine getM_ProductionLine() throws RuntimeException + public org.compiere.model.I_M_ProductionLine getM_ProductionLine() throws RuntimeException { - return (I_M_ProductionLine)MTable.get(getCtx(), I_M_ProductionLine.Table_Name) + return (org.compiere.model.I_M_ProductionLine)MTable.get(getCtx(), org.compiere.model.I_M_ProductionLine.Table_Name) .getPO(getM_ProductionLine_ID(), get_TrxName()); } /** Set Production Line. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_CostElement.java b/org.adempiere.base/src/org/compiere/model/X_M_CostElement.java index 868e9c0b9a..07a8c63243 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_CostElement.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_CostElement.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_CostElement - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_CostElement extends PO implements I_M_CostElement, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_CostElement (Properties ctx, int M_CostElement_ID, String trxName) @@ -205,6 +205,20 @@ public class X_M_CostElement extends PO implements I_M_CostElement, I_Persistent return ii.intValue(); } + /** Set M_CostElement_UU. + @param M_CostElement_UU M_CostElement_UU */ + public void setM_CostElement_UU (String M_CostElement_UU) + { + set_Value (COLUMNNAME_M_CostElement_UU, M_CostElement_UU); + } + + /** Get M_CostElement_UU. + @return M_CostElement_UU */ + public String getM_CostElement_UU () + { + return (String)get_Value(COLUMNNAME_M_CostElement_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_M_CostHistory.java b/org.adempiere.base/src/org/compiere/model/X_M_CostHistory.java index 80edfbcf38..fc25b8c9ff 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_CostHistory.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_CostHistory.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for M_CostHistory - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_CostHistory extends PO implements I_M_CostHistory, I_Persistent { /** * */ - private static final long serialVersionUID = 20120402L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_CostHistory (Properties ctx, int M_CostHistory_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_M_CostQueue.java b/org.adempiere.base/src/org/compiere/model/X_M_CostQueue.java index 4b49b3502d..ea1ad0d86f 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_CostQueue.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_CostQueue.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for M_CostQueue - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_CostQueue extends PO implements I_M_CostQueue, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_CostQueue (Properties ctx, int M_CostQueue_ID, String trxName) @@ -78,9 +78,9 @@ public class X_M_CostQueue extends PO implements I_M_CostQueue, I_Persistent return sb.toString(); } - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException { - return (I_C_AcctSchema)MTable.get(getCtx(), I_C_AcctSchema.Table_Name) + return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_Name) .getPO(getC_AcctSchema_ID(), get_TrxName()); } /** Set Accounting Schema. @@ -174,9 +174,9 @@ public class X_M_CostQueue extends PO implements I_M_CostQueue, I_Persistent return ii.intValue(); } - public I_M_CostElement getM_CostElement() throws RuntimeException + public org.compiere.model.I_M_CostElement getM_CostElement() throws RuntimeException { - return (I_M_CostElement)MTable.get(getCtx(), I_M_CostElement.Table_Name) + return (org.compiere.model.I_M_CostElement)MTable.get(getCtx(), org.compiere.model.I_M_CostElement.Table_Name) .getPO(getM_CostElement_ID(), get_TrxName()); } /** Set Cost Element. @@ -225,9 +225,23 @@ public class X_M_CostQueue extends PO implements I_M_CostQueue, I_Persistent return ii.intValue(); } - public I_M_CostType getM_CostType() throws RuntimeException + /** Set M_CostQueue_UU. + @param M_CostQueue_UU M_CostQueue_UU */ + public void setM_CostQueue_UU (String M_CostQueue_UU) + { + set_Value (COLUMNNAME_M_CostQueue_UU, M_CostQueue_UU); + } + + /** Get M_CostQueue_UU. + @return M_CostQueue_UU */ + public String getM_CostQueue_UU () + { + return (String)get_Value(COLUMNNAME_M_CostQueue_UU); + } + + public org.compiere.model.I_M_CostType getM_CostType() throws RuntimeException { - return (I_M_CostType)MTable.get(getCtx(), I_M_CostType.Table_Name) + return (org.compiere.model.I_M_CostType)MTable.get(getCtx(), org.compiere.model.I_M_CostType.Table_Name) .getPO(getM_CostType_ID(), get_TrxName()); } /** Set Cost Type. @@ -253,9 +267,9 @@ public class X_M_CostQueue extends PO implements I_M_CostQueue, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_CostType.java b/org.adempiere.base/src/org/compiere/model/X_M_CostType.java index a001edef8a..42b123acde 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_CostType.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_CostType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_CostType - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_CostType extends PO implements I_M_CostType, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_CostType (Properties ctx, int M_CostType_ID, String trxName) @@ -128,6 +128,20 @@ public class X_M_CostType extends PO implements I_M_CostType, I_Persistent return ii.intValue(); } + /** Set M_CostType_UU. + @param M_CostType_UU M_CostType_UU */ + public void setM_CostType_UU (String M_CostType_UU) + { + set_Value (COLUMNNAME_M_CostType_UU, M_CostType_UU); + } + + /** Get M_CostType_UU. + @return M_CostType_UU */ + public String getM_CostType_UU () + { + return (String)get_Value(COLUMNNAME_M_CostType_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_M_Demand.java b/org.adempiere.base/src/org/compiere/model/X_M_Demand.java index a5c430f47e..a6e8a1ebc6 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_Demand.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_Demand.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_Demand - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_Demand extends PO implements I_M_Demand, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_Demand (Properties ctx, int M_Demand_ID, String trxName) @@ -74,9 +74,9 @@ public class X_M_Demand extends PO implements I_M_Demand, I_Persistent return sb.toString(); } - public I_C_Calendar getC_Calendar() throws RuntimeException + public org.compiere.model.I_C_Calendar getC_Calendar() throws RuntimeException { - return (I_C_Calendar)MTable.get(getCtx(), I_C_Calendar.Table_Name) + return (org.compiere.model.I_C_Calendar)MTable.get(getCtx(), org.compiere.model.I_C_Calendar.Table_Name) .getPO(getC_Calendar_ID(), get_TrxName()); } /** Set Calendar. @@ -102,9 +102,9 @@ public class X_M_Demand extends PO implements I_M_Demand, I_Persistent return ii.intValue(); } - public I_C_Year getC_Year() throws RuntimeException + public org.compiere.model.I_C_Year getC_Year() throws RuntimeException { - return (I_C_Year)MTable.get(getCtx(), I_C_Year.Table_Name) + return (org.compiere.model.I_C_Year)MTable.get(getCtx(), org.compiere.model.I_C_Year.Table_Name) .getPO(getC_Year_ID(), get_TrxName()); } /** Set Year. @@ -211,6 +211,20 @@ public class X_M_Demand extends PO implements I_M_Demand, I_Persistent return ii.intValue(); } + /** Set M_Demand_UU. + @param M_Demand_UU M_Demand_UU */ + public void setM_Demand_UU (String M_Demand_UU) + { + set_Value (COLUMNNAME_M_Demand_UU, M_Demand_UU); + } + + /** Get M_Demand_UU. + @return M_Demand_UU */ + public String getM_Demand_UU () + { + return (String)get_Value(COLUMNNAME_M_Demand_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_M_DemandDetail.java b/org.adempiere.base/src/org/compiere/model/X_M_DemandDetail.java index fd8595af72..cb4d4bc734 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_DemandDetail.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_DemandDetail.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_DemandDetail - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_DemandDetail extends PO implements I_M_DemandDetail, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_DemandDetail (Properties ctx, int M_DemandDetail_ID, String trxName) @@ -71,9 +71,9 @@ public class X_M_DemandDetail extends PO implements I_M_DemandDetail, I_Persiste return sb.toString(); } - public I_C_OrderLine getC_OrderLine() throws RuntimeException + public org.compiere.model.I_C_OrderLine getC_OrderLine() throws RuntimeException { - return (I_C_OrderLine)MTable.get(getCtx(), I_C_OrderLine.Table_Name) + return (org.compiere.model.I_C_OrderLine)MTable.get(getCtx(), org.compiere.model.I_C_OrderLine.Table_Name) .getPO(getC_OrderLine_ID(), get_TrxName()); } /** Set Sales Order Line. @@ -130,9 +130,23 @@ public class X_M_DemandDetail extends PO implements I_M_DemandDetail, I_Persiste return new KeyNamePair(get_ID(), String.valueOf(getM_DemandDetail_ID())); } - public I_M_DemandLine getM_DemandLine() throws RuntimeException + /** Set M_DemandDetail_UU. + @param M_DemandDetail_UU M_DemandDetail_UU */ + public void setM_DemandDetail_UU (String M_DemandDetail_UU) + { + set_Value (COLUMNNAME_M_DemandDetail_UU, M_DemandDetail_UU); + } + + /** Get M_DemandDetail_UU. + @return M_DemandDetail_UU */ + public String getM_DemandDetail_UU () + { + return (String)get_Value(COLUMNNAME_M_DemandDetail_UU); + } + + public org.compiere.model.I_M_DemandLine getM_DemandLine() throws RuntimeException { - return (I_M_DemandLine)MTable.get(getCtx(), I_M_DemandLine.Table_Name) + return (org.compiere.model.I_M_DemandLine)MTable.get(getCtx(), org.compiere.model.I_M_DemandLine.Table_Name) .getPO(getM_DemandLine_ID(), get_TrxName()); } /** Set Demand Line. @@ -158,9 +172,9 @@ public class X_M_DemandDetail extends PO implements I_M_DemandDetail, I_Persiste return ii.intValue(); } - public I_M_ForecastLine getM_ForecastLine() throws RuntimeException + public org.compiere.model.I_M_ForecastLine getM_ForecastLine() throws RuntimeException { - return (I_M_ForecastLine)MTable.get(getCtx(), I_M_ForecastLine.Table_Name) + return (org.compiere.model.I_M_ForecastLine)MTable.get(getCtx(), org.compiere.model.I_M_ForecastLine.Table_Name) .getPO(getM_ForecastLine_ID(), get_TrxName()); } /** Set Forecast Line. @@ -186,9 +200,9 @@ public class X_M_DemandDetail extends PO implements I_M_DemandDetail, I_Persiste return ii.intValue(); } - public I_M_RequisitionLine getM_RequisitionLine() throws RuntimeException + public org.compiere.model.I_M_RequisitionLine getM_RequisitionLine() throws RuntimeException { - return (I_M_RequisitionLine)MTable.get(getCtx(), I_M_RequisitionLine.Table_Name) + return (org.compiere.model.I_M_RequisitionLine)MTable.get(getCtx(), org.compiere.model.I_M_RequisitionLine.Table_Name) .getPO(getM_RequisitionLine_ID(), get_TrxName()); } /** Set Requisition Line. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_DemandLine.java b/org.adempiere.base/src/org/compiere/model/X_M_DemandLine.java index 175ec5649d..5ea349032d 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_DemandLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_DemandLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_DemandLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_DemandLine extends PO implements I_M_DemandLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_DemandLine (Properties ctx, int M_DemandLine_ID, String trxName) @@ -77,9 +77,9 @@ public class X_M_DemandLine extends PO implements I_M_DemandLine, I_Persistent return sb.toString(); } - public I_C_Period getC_Period() throws RuntimeException + public org.compiere.model.I_C_Period getC_Period() throws RuntimeException { - return (I_C_Period)MTable.get(getCtx(), I_C_Period.Table_Name) + return (org.compiere.model.I_C_Period)MTable.get(getCtx(), org.compiere.model.I_C_Period.Table_Name) .getPO(getC_Period_ID(), get_TrxName()); } /** Set Period. @@ -113,9 +113,9 @@ public class X_M_DemandLine extends PO implements I_M_DemandLine, I_Persistent return new KeyNamePair(get_ID(), String.valueOf(getC_Period_ID())); } - public I_M_Demand getM_Demand() throws RuntimeException + public org.compiere.model.I_M_Demand getM_Demand() throws RuntimeException { - return (I_M_Demand)MTable.get(getCtx(), I_M_Demand.Table_Name) + return (org.compiere.model.I_M_Demand)MTable.get(getCtx(), org.compiere.model.I_M_Demand.Table_Name) .getPO(getM_Demand_ID(), get_TrxName()); } /** Set Demand. @@ -164,9 +164,23 @@ public class X_M_DemandLine extends PO implements I_M_DemandLine, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + /** Set M_DemandLine_UU. + @param M_DemandLine_UU M_DemandLine_UU */ + public void setM_DemandLine_UU (String M_DemandLine_UU) + { + set_Value (COLUMNNAME_M_DemandLine_UU, M_DemandLine_UU); + } + + /** Get M_DemandLine_UU. + @return M_DemandLine_UU */ + public String getM_DemandLine_UU () + { + return (String)get_Value(COLUMNNAME_M_DemandLine_UU); + } + + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_DiscountSchema.java b/org.adempiere.base/src/org/compiere/model/X_M_DiscountSchema.java index 5ab867ebdf..6dc18ded3d 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_DiscountSchema.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_DiscountSchema.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_DiscountSchema - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_DiscountSchema extends PO implements I_M_DiscountSchema, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_DiscountSchema (Properties ctx, int M_DiscountSchema_ID, String trxName) @@ -237,6 +237,20 @@ public class X_M_DiscountSchema extends PO implements I_M_DiscountSchema, I_Pers return ii.intValue(); } + /** Set M_DiscountSchema_UU. + @param M_DiscountSchema_UU M_DiscountSchema_UU */ + public void setM_DiscountSchema_UU (String M_DiscountSchema_UU) + { + set_Value (COLUMNNAME_M_DiscountSchema_UU, M_DiscountSchema_UU); + } + + /** Get M_DiscountSchema_UU. + @return M_DiscountSchema_UU */ + public String getM_DiscountSchema_UU () + { + return (String)get_Value(COLUMNNAME_M_DiscountSchema_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_M_DiscountSchemaBreak.java b/org.adempiere.base/src/org/compiere/model/X_M_DiscountSchemaBreak.java index 2438c83503..1b8e46ba93 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_DiscountSchemaBreak.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_DiscountSchemaBreak.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_DiscountSchemaBreak - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_DiscountSchemaBreak extends PO implements I_M_DiscountSchemaBreak, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_DiscountSchemaBreak (Properties ctx, int M_DiscountSchemaBreak_ID, String trxName) @@ -166,9 +166,23 @@ public class X_M_DiscountSchemaBreak extends PO implements I_M_DiscountSchemaBre return ii.intValue(); } - public I_M_DiscountSchema getM_DiscountSchema() throws RuntimeException + /** Set M_DiscountSchemaBreak_UU. + @param M_DiscountSchemaBreak_UU M_DiscountSchemaBreak_UU */ + public void setM_DiscountSchemaBreak_UU (String M_DiscountSchemaBreak_UU) + { + set_Value (COLUMNNAME_M_DiscountSchemaBreak_UU, M_DiscountSchemaBreak_UU); + } + + /** Get M_DiscountSchemaBreak_UU. + @return M_DiscountSchemaBreak_UU */ + public String getM_DiscountSchemaBreak_UU () + { + return (String)get_Value(COLUMNNAME_M_DiscountSchemaBreak_UU); + } + + public org.compiere.model.I_M_DiscountSchema getM_DiscountSchema() throws RuntimeException { - return (I_M_DiscountSchema)MTable.get(getCtx(), I_M_DiscountSchema.Table_Name) + return (org.compiere.model.I_M_DiscountSchema)MTable.get(getCtx(), org.compiere.model.I_M_DiscountSchema.Table_Name) .getPO(getM_DiscountSchema_ID(), get_TrxName()); } /** Set Discount Schema. @@ -194,9 +208,9 @@ public class X_M_DiscountSchemaBreak extends PO implements I_M_DiscountSchemaBre return ii.intValue(); } - public I_M_Product_Category getM_Product_Category() throws RuntimeException + public org.compiere.model.I_M_Product_Category getM_Product_Category() throws RuntimeException { - return (I_M_Product_Category)MTable.get(getCtx(), I_M_Product_Category.Table_Name) + return (org.compiere.model.I_M_Product_Category)MTable.get(getCtx(), org.compiere.model.I_M_Product_Category.Table_Name) .getPO(getM_Product_Category_ID(), get_TrxName()); } /** Set Product Category. @@ -222,9 +236,9 @@ public class X_M_DiscountSchemaBreak extends PO implements I_M_DiscountSchemaBre return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_DiscountSchemaLine.java b/org.adempiere.base/src/org/compiere/model/X_M_DiscountSchemaLine.java index 29a1ae920c..ce2fdaeaad 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_DiscountSchemaLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_DiscountSchemaLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_DiscountSchemaLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_DiscountSchemaLine extends PO implements I_M_DiscountSchemaLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_DiscountSchemaLine (Properties ctx, int M_DiscountSchemaLine_ID, String trxName) @@ -103,9 +103,9 @@ public class X_M_DiscountSchemaLine extends PO implements I_M_DiscountSchemaLine return sb.toString(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -131,9 +131,9 @@ public class X_M_DiscountSchemaLine extends PO implements I_M_DiscountSchemaLine return ii.intValue(); } - public I_C_ConversionType getC_ConversionType() throws RuntimeException + public org.compiere.model.I_C_ConversionType getC_ConversionType() throws RuntimeException { - return (I_C_ConversionType)MTable.get(getCtx(), I_C_ConversionType.Table_Name) + return (org.compiere.model.I_C_ConversionType)MTable.get(getCtx(), org.compiere.model.I_C_ConversionType.Table_Name) .getPO(getC_ConversionType_ID(), get_TrxName()); } /** Set Currency Type. @@ -549,9 +549,9 @@ public class X_M_DiscountSchemaLine extends PO implements I_M_DiscountSchemaLine return (String)get_Value(COLUMNNAME_List_Rounding); } - public I_M_DiscountSchema getM_DiscountSchema() throws RuntimeException + public org.compiere.model.I_M_DiscountSchema getM_DiscountSchema() throws RuntimeException { - return (I_M_DiscountSchema)MTable.get(getCtx(), I_M_DiscountSchema.Table_Name) + return (org.compiere.model.I_M_DiscountSchema)MTable.get(getCtx(), org.compiere.model.I_M_DiscountSchema.Table_Name) .getPO(getM_DiscountSchema_ID(), get_TrxName()); } /** Set Discount Schema. @@ -600,9 +600,23 @@ public class X_M_DiscountSchemaLine extends PO implements I_M_DiscountSchemaLine return ii.intValue(); } - public I_M_Product_Category getM_Product_Category() throws RuntimeException + /** Set M_DiscountSchemaLine_UU. + @param M_DiscountSchemaLine_UU M_DiscountSchemaLine_UU */ + public void setM_DiscountSchemaLine_UU (String M_DiscountSchemaLine_UU) + { + set_Value (COLUMNNAME_M_DiscountSchemaLine_UU, M_DiscountSchemaLine_UU); + } + + /** Get M_DiscountSchemaLine_UU. + @return M_DiscountSchemaLine_UU */ + public String getM_DiscountSchemaLine_UU () + { + return (String)get_Value(COLUMNNAME_M_DiscountSchemaLine_UU); + } + + public org.compiere.model.I_M_Product_Category getM_Product_Category() throws RuntimeException { - return (I_M_Product_Category)MTable.get(getCtx(), I_M_Product_Category.Table_Name) + return (org.compiere.model.I_M_Product_Category)MTable.get(getCtx(), org.compiere.model.I_M_Product_Category.Table_Name) .getPO(getM_Product_Category_ID(), get_TrxName()); } /** Set Product Category. @@ -628,9 +642,9 @@ public class X_M_DiscountSchemaLine extends PO implements I_M_DiscountSchemaLine return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_DistributionList.java b/org.adempiere.base/src/org/compiere/model/X_M_DistributionList.java index 45cccfe576..51ca23d36e 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_DistributionList.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_DistributionList.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_DistributionList - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_DistributionList extends PO implements I_M_DistributionList, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_DistributionList (Properties ctx, int M_DistributionList_ID, String trxName) @@ -130,6 +130,20 @@ public class X_M_DistributionList extends PO implements I_M_DistributionList, I_ return ii.intValue(); } + /** Set M_DistributionList_UU. + @param M_DistributionList_UU M_DistributionList_UU */ + public void setM_DistributionList_UU (String M_DistributionList_UU) + { + set_Value (COLUMNNAME_M_DistributionList_UU, M_DistributionList_UU); + } + + /** Get M_DistributionList_UU. + @return M_DistributionList_UU */ + public String getM_DistributionList_UU () + { + return (String)get_Value(COLUMNNAME_M_DistributionList_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_M_DistributionListLine.java b/org.adempiere.base/src/org/compiere/model/X_M_DistributionListLine.java index 9905bc10cc..77f8aa1bc4 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_DistributionListLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_DistributionListLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_DistributionListLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_DistributionListLine extends PO implements I_M_DistributionListLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_DistributionListLine (Properties ctx, int M_DistributionListLine_ID, String trxName) @@ -76,9 +76,9 @@ public class X_M_DistributionListLine extends PO implements I_M_DistributionList return sb.toString(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -104,9 +104,9 @@ public class X_M_DistributionListLine extends PO implements I_M_DistributionList return ii.intValue(); } - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException { - return (I_C_BPartner_Location)MTable.get(getCtx(), I_C_BPartner_Location.Table_Name) + return (org.compiere.model.I_C_BPartner_Location)MTable.get(getCtx(), org.compiere.model.I_C_BPartner_Location.Table_Name) .getPO(getC_BPartner_Location_ID(), get_TrxName()); } /** Set Partner Location. @@ -149,9 +149,9 @@ public class X_M_DistributionListLine extends PO implements I_M_DistributionList return (String)get_Value(COLUMNNAME_Description); } - public I_M_DistributionList getM_DistributionList() throws RuntimeException + public org.compiere.model.I_M_DistributionList getM_DistributionList() throws RuntimeException { - return (I_M_DistributionList)MTable.get(getCtx(), I_M_DistributionList.Table_Name) + return (org.compiere.model.I_M_DistributionList)MTable.get(getCtx(), org.compiere.model.I_M_DistributionList.Table_Name) .getPO(getM_DistributionList_ID(), get_TrxName()); } /** Set Distribution List. @@ -208,6 +208,20 @@ public class X_M_DistributionListLine extends PO implements I_M_DistributionList return ii.intValue(); } + /** Set M_DistributionListLine_UU. + @param M_DistributionListLine_UU M_DistributionListLine_UU */ + public void setM_DistributionListLine_UU (String M_DistributionListLine_UU) + { + set_Value (COLUMNNAME_M_DistributionListLine_UU, M_DistributionListLine_UU); + } + + /** Get M_DistributionListLine_UU. + @return M_DistributionListLine_UU */ + public String getM_DistributionListLine_UU () + { + return (String)get_Value(COLUMNNAME_M_DistributionListLine_UU); + } + /** Set Minimum Quantity. @param MinQty Minimum quantity for the business partner diff --git a/org.adempiere.base/src/org/compiere/model/X_M_DistributionRun.java b/org.adempiere.base/src/org/compiere/model/X_M_DistributionRun.java index f4ea5e9ddf..0b75db13f6 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_DistributionRun.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_DistributionRun.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_DistributionRun - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_DistributionRun extends PO implements I_M_DistributionRun, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_DistributionRun (Properties ctx, int M_DistributionRun_ID, String trxName) @@ -73,9 +73,9 @@ public class X_M_DistributionRun extends PO implements I_M_DistributionRun, I_Pe return sb.toString(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -101,9 +101,9 @@ public class X_M_DistributionRun extends PO implements I_M_DistributionRun, I_Pe return ii.intValue(); } - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException { - return (I_C_BPartner_Location)MTable.get(getCtx(), I_C_BPartner_Location.Table_Name) + return (org.compiere.model.I_C_BPartner_Location)MTable.get(getCtx(), org.compiere.model.I_C_BPartner_Location.Table_Name) .getPO(getC_BPartner_Location_ID(), get_TrxName()); } /** Set Partner Location. @@ -193,6 +193,20 @@ public class X_M_DistributionRun extends PO implements I_M_DistributionRun, I_Pe return ii.intValue(); } + /** Set M_DistributionRun_UU. + @param M_DistributionRun_UU M_DistributionRun_UU */ + public void setM_DistributionRun_UU (String M_DistributionRun_UU) + { + set_Value (COLUMNNAME_M_DistributionRun_UU, M_DistributionRun_UU); + } + + /** Get M_DistributionRun_UU. + @return M_DistributionRun_UU */ + public String getM_DistributionRun_UU () + { + return (String)get_Value(COLUMNNAME_M_DistributionRun_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_M_DistributionRunLine.java b/org.adempiere.base/src/org/compiere/model/X_M_DistributionRunLine.java index 10e31b174c..ba6a1818b4 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_DistributionRunLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_DistributionRunLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_DistributionRunLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_DistributionRunLine extends PO implements I_M_DistributionRunLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_DistributionRunLine (Properties ctx, int M_DistributionRunLine_ID, String trxName) @@ -117,9 +117,9 @@ public class X_M_DistributionRunLine extends PO implements I_M_DistributionRunLi return ii.intValue(); } - public I_M_DistributionList getM_DistributionList() throws RuntimeException + public org.compiere.model.I_M_DistributionList getM_DistributionList() throws RuntimeException { - return (I_M_DistributionList)MTable.get(getCtx(), I_M_DistributionList.Table_Name) + return (org.compiere.model.I_M_DistributionList)MTable.get(getCtx(), org.compiere.model.I_M_DistributionList.Table_Name) .getPO(getM_DistributionList_ID(), get_TrxName()); } /** Set Distribution List. @@ -145,9 +145,9 @@ public class X_M_DistributionRunLine extends PO implements I_M_DistributionRunLi return ii.intValue(); } - public I_M_DistributionRun getM_DistributionRun() throws RuntimeException + public org.compiere.model.I_M_DistributionRun getM_DistributionRun() throws RuntimeException { - return (I_M_DistributionRun)MTable.get(getCtx(), I_M_DistributionRun.Table_Name) + return (org.compiere.model.I_M_DistributionRun)MTable.get(getCtx(), org.compiere.model.I_M_DistributionRun.Table_Name) .getPO(getM_DistributionRun_ID(), get_TrxName()); } /** Set Distribution Run. @@ -204,6 +204,20 @@ public class X_M_DistributionRunLine extends PO implements I_M_DistributionRunLi return ii.intValue(); } + /** Set M_DistributionRunLine_UU. + @param M_DistributionRunLine_UU M_DistributionRunLine_UU */ + public void setM_DistributionRunLine_UU (String M_DistributionRunLine_UU) + { + set_Value (COLUMNNAME_M_DistributionRunLine_UU, M_DistributionRunLine_UU); + } + + /** Get M_DistributionRunLine_UU. + @return M_DistributionRunLine_UU */ + public String getM_DistributionRunLine_UU () + { + return (String)get_Value(COLUMNNAME_M_DistributionRunLine_UU); + } + /** Set Minimum Quantity. @param MinQty Minimum quantity for the business partner @@ -224,9 +238,9 @@ public class X_M_DistributionRunLine extends PO implements I_M_DistributionRunLi return bd; } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_Forecast.java b/org.adempiere.base/src/org/compiere/model/X_M_Forecast.java index cf379c5841..1d05fadc7d 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_Forecast.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_Forecast.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_Forecast - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_Forecast extends PO implements I_M_Forecast, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_Forecast (Properties ctx, int M_Forecast_ID, String trxName) @@ -74,9 +74,9 @@ public class X_M_Forecast extends PO implements I_M_Forecast, I_Persistent return sb.toString(); } - public I_C_Calendar getC_Calendar() throws RuntimeException + public org.compiere.model.I_C_Calendar getC_Calendar() throws RuntimeException { - return (I_C_Calendar)MTable.get(getCtx(), I_C_Calendar.Table_Name) + return (org.compiere.model.I_C_Calendar)MTable.get(getCtx(), org.compiere.model.I_C_Calendar.Table_Name) .getPO(getC_Calendar_ID(), get_TrxName()); } /** Set Calendar. @@ -102,9 +102,9 @@ public class X_M_Forecast extends PO implements I_M_Forecast, I_Persistent return ii.intValue(); } - public I_C_Year getC_Year() throws RuntimeException + public org.compiere.model.I_C_Year getC_Year() throws RuntimeException { - return (I_C_Year)MTable.get(getCtx(), I_C_Year.Table_Name) + return (org.compiere.model.I_C_Year)MTable.get(getCtx(), org.compiere.model.I_C_Year.Table_Name) .getPO(getC_Year_ID(), get_TrxName()); } /** Set Year. @@ -211,9 +211,23 @@ public class X_M_Forecast extends PO implements I_M_Forecast, I_Persistent return ii.intValue(); } - public I_M_PriceList getM_PriceList() throws RuntimeException + /** Set M_Forecast_UU. + @param M_Forecast_UU M_Forecast_UU */ + public void setM_Forecast_UU (String M_Forecast_UU) + { + set_Value (COLUMNNAME_M_Forecast_UU, M_Forecast_UU); + } + + /** Get M_Forecast_UU. + @return M_Forecast_UU */ + public String getM_Forecast_UU () + { + return (String)get_Value(COLUMNNAME_M_Forecast_UU); + } + + public org.compiere.model.I_M_PriceList getM_PriceList() throws RuntimeException { - return (I_M_PriceList)MTable.get(getCtx(), I_M_PriceList.Table_Name) + return (org.compiere.model.I_M_PriceList)MTable.get(getCtx(), org.compiere.model.I_M_PriceList.Table_Name) .getPO(getM_PriceList_ID(), get_TrxName()); } /** Set Price List. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_ForecastLine.java b/org.adempiere.base/src/org/compiere/model/X_M_ForecastLine.java index 7d88b47979..e1e0230b72 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_ForecastLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_ForecastLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_ForecastLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_ForecastLine extends PO implements I_M_ForecastLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_ForecastLine (Properties ctx, int M_ForecastLine_ID, String trxName) @@ -81,9 +81,9 @@ public class X_M_ForecastLine extends PO implements I_M_ForecastLine, I_Persiste return sb.toString(); } - public I_C_Period getC_Period() throws RuntimeException + public org.compiere.model.I_C_Period getC_Period() throws RuntimeException { - return (I_C_Period)MTable.get(getCtx(), I_C_Period.Table_Name) + return (org.compiere.model.I_C_Period)MTable.get(getCtx(), org.compiere.model.I_C_Period.Table_Name) .getPO(getC_Period_ID(), get_TrxName()); } /** Set Period. @@ -134,9 +134,9 @@ public class X_M_ForecastLine extends PO implements I_M_ForecastLine, I_Persiste return (Timestamp)get_Value(COLUMNNAME_DatePromised); } - public I_M_Forecast getM_Forecast() throws RuntimeException + public org.compiere.model.I_M_Forecast getM_Forecast() throws RuntimeException { - return (I_M_Forecast)MTable.get(getCtx(), I_M_Forecast.Table_Name) + return (org.compiere.model.I_M_Forecast)MTable.get(getCtx(), org.compiere.model.I_M_Forecast.Table_Name) .getPO(getM_Forecast_ID(), get_TrxName()); } /** Set Forecast. @@ -185,9 +185,23 @@ public class X_M_ForecastLine extends PO implements I_M_ForecastLine, I_Persiste return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + /** Set M_ForecastLine_UU. + @param M_ForecastLine_UU M_ForecastLine_UU */ + public void setM_ForecastLine_UU (String M_ForecastLine_UU) + { + set_Value (COLUMNNAME_M_ForecastLine_UU, M_ForecastLine_UU); + } + + /** Get M_ForecastLine_UU. + @return M_ForecastLine_UU */ + public String getM_ForecastLine_UU () + { + return (String)get_Value(COLUMNNAME_M_ForecastLine_UU); + } + + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -213,9 +227,9 @@ public class X_M_ForecastLine extends PO implements I_M_ForecastLine, I_Persiste return ii.intValue(); } - public I_M_Warehouse getM_Warehouse() throws RuntimeException + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_Warehouse_ID(), get_TrxName()); } /** Set Warehouse. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_Freight.java b/org.adempiere.base/src/org/compiere/model/X_M_Freight.java index 3d3e09afa1..b5fd384c28 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_Freight.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_Freight.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_Freight - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_Freight extends PO implements I_M_Freight, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_Freight (Properties ctx, int M_Freight_ID, String trxName) @@ -78,9 +78,9 @@ public class X_M_Freight extends PO implements I_M_Freight, I_Persistent return sb.toString(); } - public I_C_Country getC_Country() throws RuntimeException + public org.compiere.model.I_C_Country getC_Country() throws RuntimeException { - return (I_C_Country)MTable.get(getCtx(), I_C_Country.Table_Name) + return (org.compiere.model.I_C_Country)MTable.get(getCtx(), org.compiere.model.I_C_Country.Table_Name) .getPO(getC_Country_ID(), get_TrxName()); } /** Set Country. @@ -106,9 +106,9 @@ public class X_M_Freight extends PO implements I_M_Freight, I_Persistent return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -134,9 +134,9 @@ public class X_M_Freight extends PO implements I_M_Freight, I_Persistent return ii.intValue(); } - public I_C_Region getC_Region() throws RuntimeException + public org.compiere.model.I_C_Region getC_Region() throws RuntimeException { - return (I_C_Region)MTable.get(getCtx(), I_C_Region.Table_Name) + return (org.compiere.model.I_C_Region)MTable.get(getCtx(), org.compiere.model.I_C_Region.Table_Name) .getPO(getC_Region_ID(), get_TrxName()); } /** Set Region. @@ -182,9 +182,9 @@ public class X_M_Freight extends PO implements I_M_Freight, I_Persistent return bd; } - public I_M_FreightCategory getM_FreightCategory() throws RuntimeException + public org.compiere.model.I_M_FreightCategory getM_FreightCategory() throws RuntimeException { - return (I_M_FreightCategory)MTable.get(getCtx(), I_M_FreightCategory.Table_Name) + return (org.compiere.model.I_M_FreightCategory)MTable.get(getCtx(), org.compiere.model.I_M_FreightCategory.Table_Name) .getPO(getM_FreightCategory_ID(), get_TrxName()); } /** Set Freight Category. @@ -233,9 +233,23 @@ public class X_M_Freight extends PO implements I_M_Freight, I_Persistent return ii.intValue(); } - public I_M_Shipper getM_Shipper() throws RuntimeException + /** Set M_Freight_UU. + @param M_Freight_UU M_Freight_UU */ + public void setM_Freight_UU (String M_Freight_UU) + { + set_Value (COLUMNNAME_M_Freight_UU, M_Freight_UU); + } + + /** Get M_Freight_UU. + @return M_Freight_UU */ + public String getM_Freight_UU () + { + return (String)get_Value(COLUMNNAME_M_Freight_UU); + } + + public org.compiere.model.I_M_Shipper getM_Shipper() throws RuntimeException { - return (I_M_Shipper)MTable.get(getCtx(), I_M_Shipper.Table_Name) + return (org.compiere.model.I_M_Shipper)MTable.get(getCtx(), org.compiere.model.I_M_Shipper.Table_Name) .getPO(getM_Shipper_ID(), get_TrxName()); } /** Set Shipper. @@ -292,9 +306,9 @@ public class X_M_Freight extends PO implements I_M_Freight, I_Persistent return ii.intValue(); } - public I_C_Region getTo_Region() throws RuntimeException + public org.compiere.model.I_C_Region getTo_Region() throws RuntimeException { - return (I_C_Region)MTable.get(getCtx(), I_C_Region.Table_Name) + return (org.compiere.model.I_C_Region)MTable.get(getCtx(), org.compiere.model.I_C_Region.Table_Name) .getPO(getTo_Region_ID(), get_TrxName()); } /** Set To. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_FreightCategory.java b/org.adempiere.base/src/org/compiere/model/X_M_FreightCategory.java index 88cbcba26a..443ee095ca 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_FreightCategory.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_FreightCategory.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_FreightCategory - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_FreightCategory extends PO implements I_M_FreightCategory, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_FreightCategory (Properties ctx, int M_FreightCategory_ID, String trxName) @@ -129,6 +129,20 @@ public class X_M_FreightCategory extends PO implements I_M_FreightCategory, I_Pe return ii.intValue(); } + /** Set M_FreightCategory_UU. + @param M_FreightCategory_UU M_FreightCategory_UU */ + public void setM_FreightCategory_UU (String M_FreightCategory_UU) + { + set_Value (COLUMNNAME_M_FreightCategory_UU, M_FreightCategory_UU); + } + + /** Get M_FreightCategory_UU. + @return M_FreightCategory_UU */ + public String getM_FreightCategory_UU () + { + return (String)get_Value(COLUMNNAME_M_FreightCategory_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_M_InOut.java b/org.adempiere.base/src/org/compiere/model/X_M_InOut.java index 4438554360..6dfb32ba98 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_InOut.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_InOut.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_InOut - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_InOut extends PO implements I_M_InOut, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_InOut (Properties ctx, int M_InOut_ID, String trxName) @@ -127,9 +127,9 @@ public class X_M_InOut extends PO implements I_M_InOut, I_Persistent return ii.intValue(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -155,9 +155,9 @@ public class X_M_InOut extends PO implements I_M_InOut, I_Persistent return ii.intValue(); } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -183,9 +183,9 @@ public class X_M_InOut extends PO implements I_M_InOut, I_Persistent return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -211,9 +211,9 @@ public class X_M_InOut extends PO implements I_M_InOut, I_Persistent return ii.intValue(); } - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException { - return (I_C_BPartner_Location)MTable.get(getCtx(), I_C_BPartner_Location.Table_Name) + return (org.compiere.model.I_C_BPartner_Location)MTable.get(getCtx(), org.compiere.model.I_C_BPartner_Location.Table_Name) .getPO(getC_BPartner_Location_ID(), get_TrxName()); } /** Set Partner Location. @@ -239,9 +239,9 @@ public class X_M_InOut extends PO implements I_M_InOut, I_Persistent return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -267,9 +267,9 @@ public class X_M_InOut extends PO implements I_M_InOut, I_Persistent return ii.intValue(); } - public I_C_Charge getC_Charge() throws RuntimeException + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException { - return (I_C_Charge)MTable.get(getCtx(), I_C_Charge.Table_Name) + return (org.compiere.model.I_C_Charge)MTable.get(getCtx(), org.compiere.model.I_C_Charge.Table_Name) .getPO(getC_Charge_ID(), get_TrxName()); } /** Set Charge. @@ -295,9 +295,9 @@ public class X_M_InOut extends PO implements I_M_InOut, I_Persistent return ii.intValue(); } - public I_C_DocType getC_DocType() throws RuntimeException + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocType_ID(), get_TrxName()); } /** Set Document Type. @@ -343,9 +343,9 @@ public class X_M_InOut extends PO implements I_M_InOut, I_Persistent return bd; } - public I_C_Invoice getC_Invoice() throws RuntimeException + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException { - return (I_C_Invoice)MTable.get(getCtx(), I_C_Invoice.Table_Name) + return (org.compiere.model.I_C_Invoice)MTable.get(getCtx(), org.compiere.model.I_C_Invoice.Table_Name) .getPO(getC_Invoice_ID(), get_TrxName()); } /** Set Invoice. @@ -371,9 +371,9 @@ public class X_M_InOut extends PO implements I_M_InOut, I_Persistent return ii.intValue(); } - public I_C_Order getC_Order() throws RuntimeException + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException { - return (I_C_Order)MTable.get(getCtx(), I_C_Order.Table_Name) + return (org.compiere.model.I_C_Order)MTable.get(getCtx(), org.compiere.model.I_C_Order.Table_Name) .getPO(getC_Order_ID(), get_TrxName()); } /** Set Order. @@ -399,9 +399,9 @@ public class X_M_InOut extends PO implements I_M_InOut, I_Persistent return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -732,9 +732,9 @@ public class X_M_InOut extends PO implements I_M_InOut, I_Persistent return new KeyNamePair(get_ID(), getDocumentNo()); } - public I_C_BPartner getDropShip_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getDropShip_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getDropShip_BPartner_ID(), get_TrxName()); } /** Set Drop Shipment Partner. @@ -760,9 +760,9 @@ public class X_M_InOut extends PO implements I_M_InOut, I_Persistent return ii.intValue(); } - public I_C_BPartner_Location getDropShip_Location() throws RuntimeException + public org.compiere.model.I_C_BPartner_Location getDropShip_Location() throws RuntimeException { - return (I_C_BPartner_Location)MTable.get(getCtx(), I_C_BPartner_Location.Table_Name) + return (org.compiere.model.I_C_BPartner_Location)MTable.get(getCtx(), org.compiere.model.I_C_BPartner_Location.Table_Name) .getPO(getDropShip_Location_ID(), get_TrxName()); } /** Set Drop Shipment Location. @@ -788,9 +788,9 @@ public class X_M_InOut extends PO implements I_M_InOut, I_Persistent return ii.intValue(); } - public I_AD_User getDropShip_User() throws RuntimeException + public org.compiere.model.I_AD_User getDropShip_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getDropShip_User_ID(), get_TrxName()); } /** Set Drop Shipment Contact. @@ -1048,6 +1048,20 @@ public class X_M_InOut extends PO implements I_M_InOut, I_Persistent return ii.intValue(); } + /** Set M_InOut_UU. + @param M_InOut_UU M_InOut_UU */ + public void setM_InOut_UU (String M_InOut_UU) + { + set_Value (COLUMNNAME_M_InOut_UU, M_InOut_UU); + } + + /** Get M_InOut_UU. + @return M_InOut_UU */ + public String getM_InOut_UU () + { + return (String)get_Value(COLUMNNAME_M_InOut_UU); + } + /** Set Movement Date. @param MovementDate Date a product was moved in or out of inventory @@ -1109,9 +1123,9 @@ public class X_M_InOut extends PO implements I_M_InOut, I_Persistent return (String)get_Value(COLUMNNAME_MovementType); } - public I_M_RMA getM_RMA() throws RuntimeException + public org.compiere.model.I_M_RMA getM_RMA() throws RuntimeException { - return (I_M_RMA)MTable.get(getCtx(), I_M_RMA.Table_Name) + return (org.compiere.model.I_M_RMA)MTable.get(getCtx(), org.compiere.model.I_M_RMA.Table_Name) .getPO(getM_RMA_ID(), get_TrxName()); } /** Set RMA. @@ -1137,9 +1151,9 @@ public class X_M_InOut extends PO implements I_M_InOut, I_Persistent return ii.intValue(); } - public I_M_Shipper getM_Shipper() throws RuntimeException + public org.compiere.model.I_M_Shipper getM_Shipper() throws RuntimeException { - return (I_M_Shipper)MTable.get(getCtx(), I_M_Shipper.Table_Name) + return (org.compiere.model.I_M_Shipper)MTable.get(getCtx(), org.compiere.model.I_M_Shipper.Table_Name) .getPO(getM_Shipper_ID(), get_TrxName()); } /** Set Shipper. @@ -1165,9 +1179,9 @@ public class X_M_InOut extends PO implements I_M_InOut, I_Persistent return ii.intValue(); } - public I_M_Warehouse getM_Warehouse() throws RuntimeException + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_Warehouse_ID(), get_TrxName()); } /** Set Warehouse. @@ -1386,9 +1400,9 @@ public class X_M_InOut extends PO implements I_M_InOut, I_Persistent return ii.intValue(); } - public I_M_InOut getReversal() throws RuntimeException + public org.compiere.model.I_M_InOut getReversal() throws RuntimeException { - return (I_M_InOut)MTable.get(getCtx(), I_M_InOut.Table_Name) + return (org.compiere.model.I_M_InOut)MTable.get(getCtx(), org.compiere.model.I_M_InOut.Table_Name) .getPO(getReversal_ID(), get_TrxName()); } /** Set Reversal ID. @@ -1414,9 +1428,9 @@ public class X_M_InOut extends PO implements I_M_InOut, I_Persistent return ii.intValue(); } - public I_AD_User getSalesRep() throws RuntimeException + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getSalesRep_ID(), get_TrxName()); } /** Set Sales Representative. @@ -1500,9 +1514,9 @@ public class X_M_InOut extends PO implements I_M_InOut, I_Persistent return (String)get_Value(COLUMNNAME_TrackingNo); } - public I_C_ElementValue getUser1() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser1_ID(), get_TrxName()); } /** Set User List 1. @@ -1528,9 +1542,9 @@ public class X_M_InOut extends PO implements I_M_InOut, I_Persistent return ii.intValue(); } - public I_C_ElementValue getUser2() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser2_ID(), get_TrxName()); } /** Set User List 2. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_InOutConfirm.java b/org.adempiere.base/src/org/compiere/model/X_M_InOutConfirm.java index 6056a54618..ff30f211dc 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_InOutConfirm.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_InOutConfirm.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_InOutConfirm - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_InOutConfirm extends PO implements I_M_InOutConfirm, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_InOutConfirm (Properties ctx, int M_InOutConfirm_ID, String trxName) @@ -104,9 +104,9 @@ public class X_M_InOutConfirm extends PO implements I_M_InOutConfirm, I_Persiste return bd; } - public I_C_Invoice getC_Invoice() throws RuntimeException + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException { - return (I_C_Invoice)MTable.get(getCtx(), I_C_Invoice.Table_Name) + return (org.compiere.model.I_C_Invoice)MTable.get(getCtx(), org.compiere.model.I_C_Invoice.Table_Name) .getPO(getC_Invoice_ID(), get_TrxName()); } /** Set Invoice. @@ -422,9 +422,23 @@ public class X_M_InOutConfirm extends PO implements I_M_InOutConfirm, I_Persiste return ii.intValue(); } - public I_M_InOut getM_InOut() throws RuntimeException + /** Set M_InOutConfirm_UU. + @param M_InOutConfirm_UU M_InOutConfirm_UU */ + public void setM_InOutConfirm_UU (String M_InOutConfirm_UU) + { + set_Value (COLUMNNAME_M_InOutConfirm_UU, M_InOutConfirm_UU); + } + + /** Get M_InOutConfirm_UU. + @return M_InOutConfirm_UU */ + public String getM_InOutConfirm_UU () + { + return (String)get_Value(COLUMNNAME_M_InOutConfirm_UU); + } + + public org.compiere.model.I_M_InOut getM_InOut() throws RuntimeException { - return (I_M_InOut)MTable.get(getCtx(), I_M_InOut.Table_Name) + return (org.compiere.model.I_M_InOut)MTable.get(getCtx(), org.compiere.model.I_M_InOut.Table_Name) .getPO(getM_InOut_ID(), get_TrxName()); } /** Set Shipment/Receipt. @@ -450,9 +464,9 @@ public class X_M_InOutConfirm extends PO implements I_M_InOutConfirm, I_Persiste return ii.intValue(); } - public I_M_Inventory getM_Inventory() throws RuntimeException + public org.compiere.model.I_M_Inventory getM_Inventory() throws RuntimeException { - return (I_M_Inventory)MTable.get(getCtx(), I_M_Inventory.Table_Name) + return (org.compiere.model.I_M_Inventory)MTable.get(getCtx(), org.compiere.model.I_M_Inventory.Table_Name) .getPO(getM_Inventory_ID(), get_TrxName()); } /** Set Phys.Inventory. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_InOutLine.java b/org.adempiere.base/src/org/compiere/model/X_M_InOutLine.java index e2551eee34..49a4042548 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_InOutLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_InOutLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_InOutLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_InOutLine extends PO implements I_M_InOutLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_InOutLine (Properties ctx, int M_InOutLine_ID, String trxName) @@ -109,9 +109,9 @@ public class X_M_InOutLine extends PO implements I_M_InOutLine, I_Persistent return ii.intValue(); } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -137,9 +137,9 @@ public class X_M_InOutLine extends PO implements I_M_InOutLine, I_Persistent return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -165,9 +165,9 @@ public class X_M_InOutLine extends PO implements I_M_InOutLine, I_Persistent return ii.intValue(); } - public I_C_Charge getC_Charge() throws RuntimeException + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException { - return (I_C_Charge)MTable.get(getCtx(), I_C_Charge.Table_Name) + return (org.compiere.model.I_C_Charge)MTable.get(getCtx(), org.compiere.model.I_C_Charge.Table_Name) .getPO(getC_Charge_ID(), get_TrxName()); } /** Set Charge. @@ -213,9 +213,9 @@ public class X_M_InOutLine extends PO implements I_M_InOutLine, I_Persistent return bd; } - public I_C_OrderLine getC_OrderLine() throws RuntimeException + public org.compiere.model.I_C_OrderLine getC_OrderLine() throws RuntimeException { - return (I_C_OrderLine)MTable.get(getCtx(), I_C_OrderLine.Table_Name) + return (org.compiere.model.I_C_OrderLine)MTable.get(getCtx(), org.compiere.model.I_C_OrderLine.Table_Name) .getPO(getC_OrderLine_ID(), get_TrxName()); } /** Set Sales Order Line. @@ -241,9 +241,9 @@ public class X_M_InOutLine extends PO implements I_M_InOutLine, I_Persistent return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -269,9 +269,9 @@ public class X_M_InOutLine extends PO implements I_M_InOutLine, I_Persistent return ii.intValue(); } - public I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException + public org.compiere.model.I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException { - return (I_C_ProjectPhase)MTable.get(getCtx(), I_C_ProjectPhase.Table_Name) + return (org.compiere.model.I_C_ProjectPhase)MTable.get(getCtx(), org.compiere.model.I_C_ProjectPhase.Table_Name) .getPO(getC_ProjectPhase_ID(), get_TrxName()); } /** Set Project Phase. @@ -297,9 +297,9 @@ public class X_M_InOutLine extends PO implements I_M_InOutLine, I_Persistent return ii.intValue(); } - public I_C_ProjectTask getC_ProjectTask() throws RuntimeException + public org.compiere.model.I_C_ProjectTask getC_ProjectTask() throws RuntimeException { - return (I_C_ProjectTask)MTable.get(getCtx(), I_C_ProjectTask.Table_Name) + return (org.compiere.model.I_C_ProjectTask)MTable.get(getCtx(), org.compiere.model.I_C_ProjectTask.Table_Name) .getPO(getC_ProjectTask_ID(), get_TrxName()); } /** Set Project Task. @@ -325,9 +325,9 @@ public class X_M_InOutLine extends PO implements I_M_InOutLine, I_Persistent return ii.intValue(); } - public I_C_UOM getC_UOM() throws RuntimeException + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_ID(), get_TrxName()); } /** Set UOM. @@ -474,9 +474,9 @@ public class X_M_InOutLine extends PO implements I_M_InOutLine, I_Persistent return ii.intValue(); } - public I_M_InOut getM_InOut() throws RuntimeException + public org.compiere.model.I_M_InOut getM_InOut() throws RuntimeException { - return (I_M_InOut)MTable.get(getCtx(), I_M_InOut.Table_Name) + return (org.compiere.model.I_M_InOut)MTable.get(getCtx(), org.compiere.model.I_M_InOut.Table_Name) .getPO(getM_InOut_ID(), get_TrxName()); } /** Set Shipment/Receipt. @@ -525,6 +525,20 @@ public class X_M_InOutLine extends PO implements I_M_InOutLine, I_Persistent return ii.intValue(); } + /** Set M_InOutLine_UU. + @param M_InOutLine_UU M_InOutLine_UU */ + public void setM_InOutLine_UU (String M_InOutLine_UU) + { + set_Value (COLUMNNAME_M_InOutLine_UU, M_InOutLine_UU); + } + + /** Get M_InOutLine_UU. + @return M_InOutLine_UU */ + public String getM_InOutLine_UU () + { + return (String)get_Value(COLUMNNAME_M_InOutLine_UU); + } + public I_M_Locator getM_Locator() throws RuntimeException { return (I_M_Locator)MTable.get(getCtx(), I_M_Locator.Table_Name) @@ -573,9 +587,9 @@ public class X_M_InOutLine extends PO implements I_M_InOutLine, I_Persistent return bd; } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -601,9 +615,9 @@ public class X_M_InOutLine extends PO implements I_M_InOutLine, I_Persistent return ii.intValue(); } - public I_M_RMALine getM_RMALine() throws RuntimeException + public org.compiere.model.I_M_RMALine getM_RMALine() throws RuntimeException { - return (I_M_RMALine)MTable.get(getCtx(), I_M_RMALine.Table_Name) + return (org.compiere.model.I_M_RMALine)MTable.get(getCtx(), org.compiere.model.I_M_RMALine.Table_Name) .getPO(getM_RMALine_ID(), get_TrxName()); } /** Set RMA Line. @@ -710,9 +724,9 @@ public class X_M_InOutLine extends PO implements I_M_InOutLine, I_Persistent return ii.intValue(); } - public I_M_InOutLine getReversalLine() throws RuntimeException + public org.compiere.model.I_M_InOutLine getReversalLine() throws RuntimeException { - return (I_M_InOutLine)MTable.get(getCtx(), I_M_InOutLine.Table_Name) + return (org.compiere.model.I_M_InOutLine)MTable.get(getCtx(), org.compiere.model.I_M_InOutLine.Table_Name) .getPO(getReversalLine_ID(), get_TrxName()); } /** Set Reversal Line. @@ -778,9 +792,9 @@ public class X_M_InOutLine extends PO implements I_M_InOutLine, I_Persistent return bd; } - public I_C_ElementValue getUser1() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser1_ID(), get_TrxName()); } /** Set User List 1. @@ -806,9 +820,9 @@ public class X_M_InOutLine extends PO implements I_M_InOutLine, I_Persistent return ii.intValue(); } - public I_C_ElementValue getUser2() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser2_ID(), get_TrxName()); } /** Set User List 2. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_InOutLineConfirm.java b/org.adempiere.base/src/org/compiere/model/X_M_InOutLineConfirm.java index 8f96ab7bd9..fb9255fca8 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_InOutLineConfirm.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_InOutLineConfirm.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_InOutLineConfirm - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_InOutLineConfirm extends PO implements I_M_InOutLineConfirm, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_InOutLineConfirm (Properties ctx, int M_InOutLineConfirm_ID, String trxName) @@ -77,9 +77,9 @@ public class X_M_InOutLineConfirm extends PO implements I_M_InOutLineConfirm, I_ return sb.toString(); } - public I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException + public org.compiere.model.I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException { - return (I_C_InvoiceLine)MTable.get(getCtx(), I_C_InvoiceLine.Table_Name) + return (org.compiere.model.I_C_InvoiceLine)MTable.get(getCtx(), org.compiere.model.I_C_InvoiceLine.Table_Name) .getPO(getC_InvoiceLine_ID(), get_TrxName()); } /** Set Invoice Line. @@ -179,9 +179,9 @@ public class X_M_InOutLineConfirm extends PO implements I_M_InOutLineConfirm, I_ return bd; } - public I_M_InOutConfirm getM_InOutConfirm() throws RuntimeException + public org.compiere.model.I_M_InOutConfirm getM_InOutConfirm() throws RuntimeException { - return (I_M_InOutConfirm)MTable.get(getCtx(), I_M_InOutConfirm.Table_Name) + return (org.compiere.model.I_M_InOutConfirm)MTable.get(getCtx(), org.compiere.model.I_M_InOutConfirm.Table_Name) .getPO(getM_InOutConfirm_ID(), get_TrxName()); } /** Set Ship/Receipt Confirmation. @@ -230,9 +230,23 @@ public class X_M_InOutLineConfirm extends PO implements I_M_InOutLineConfirm, I_ return ii.intValue(); } - public I_M_InOutLine getM_InOutLine() throws RuntimeException + /** Set M_InOutLineConfirm_UU. + @param M_InOutLineConfirm_UU M_InOutLineConfirm_UU */ + public void setM_InOutLineConfirm_UU (String M_InOutLineConfirm_UU) + { + set_Value (COLUMNNAME_M_InOutLineConfirm_UU, M_InOutLineConfirm_UU); + } + + /** Get M_InOutLineConfirm_UU. + @return M_InOutLineConfirm_UU */ + public String getM_InOutLineConfirm_UU () + { + return (String)get_Value(COLUMNNAME_M_InOutLineConfirm_UU); + } + + public org.compiere.model.I_M_InOutLine getM_InOutLine() throws RuntimeException { - return (I_M_InOutLine)MTable.get(getCtx(), I_M_InOutLine.Table_Name) + return (org.compiere.model.I_M_InOutLine)MTable.get(getCtx(), org.compiere.model.I_M_InOutLine.Table_Name) .getPO(getM_InOutLine_ID(), get_TrxName()); } /** Set Shipment/Receipt Line. @@ -266,9 +280,9 @@ public class X_M_InOutLineConfirm extends PO implements I_M_InOutLineConfirm, I_ return new KeyNamePair(get_ID(), String.valueOf(getM_InOutLine_ID())); } - public I_M_InventoryLine getM_InventoryLine() throws RuntimeException + public org.compiere.model.I_M_InventoryLine getM_InventoryLine() throws RuntimeException { - return (I_M_InventoryLine)MTable.get(getCtx(), I_M_InventoryLine.Table_Name) + return (org.compiere.model.I_M_InventoryLine)MTable.get(getCtx(), org.compiere.model.I_M_InventoryLine.Table_Name) .getPO(getM_InventoryLine_ID(), get_TrxName()); } /** Set Phys.Inventory Line. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_InOutLineMA.java b/org.adempiere.base/src/org/compiere/model/X_M_InOutLineMA.java index 0ff91e4478..843ec8fcb2 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_InOutLineMA.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_InOutLineMA.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_InOutLineMA - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_InOutLineMA extends PO implements I_M_InOutLineMA, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_InOutLineMA (Properties ctx, int M_InOutLineMA_ID, String trxName) @@ -102,9 +102,9 @@ public class X_M_InOutLineMA extends PO implements I_M_InOutLineMA, I_Persistent return ii.intValue(); } - public I_M_InOutLine getM_InOutLine() throws RuntimeException + public org.compiere.model.I_M_InOutLine getM_InOutLine() throws RuntimeException { - return (I_M_InOutLine)MTable.get(getCtx(), I_M_InOutLine.Table_Name) + return (org.compiere.model.I_M_InOutLine)MTable.get(getCtx(), org.compiere.model.I_M_InOutLine.Table_Name) .getPO(getM_InOutLine_ID(), get_TrxName()); } /** Set Shipment/Receipt Line. @@ -138,6 +138,20 @@ public class X_M_InOutLineMA extends PO implements I_M_InOutLineMA, I_Persistent return new KeyNamePair(get_ID(), String.valueOf(getM_InOutLine_ID())); } + /** Set M_InOutLineMA_UU. + @param M_InOutLineMA_UU M_InOutLineMA_UU */ + public void setM_InOutLineMA_UU (String M_InOutLineMA_UU) + { + set_Value (COLUMNNAME_M_InOutLineMA_UU, M_InOutLineMA_UU); + } + + /** Get M_InOutLineMA_UU. + @return M_InOutLineMA_UU */ + public String getM_InOutLineMA_UU () + { + return (String)get_Value(COLUMNNAME_M_InOutLineMA_UU); + } + /** Set Movement Quantity. @param MovementQty Quantity of a product moved. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_Inventory.java b/org.adempiere.base/src/org/compiere/model/X_M_Inventory.java index 385e2e7fd0..52cb4231f1 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_Inventory.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_Inventory.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_Inventory - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_Inventory extends PO implements I_M_Inventory, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_Inventory (Properties ctx, int M_Inventory_ID, String trxName) @@ -128,9 +128,9 @@ public class X_M_Inventory extends PO implements I_M_Inventory, I_Persistent return bd; } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -156,9 +156,9 @@ public class X_M_Inventory extends PO implements I_M_Inventory, I_Persistent return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -184,9 +184,9 @@ public class X_M_Inventory extends PO implements I_M_Inventory, I_Persistent return ii.intValue(); } - public I_C_DocType getC_DocType() throws RuntimeException + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocType_ID(), get_TrxName()); } /** Set Document Type. @@ -212,9 +212,9 @@ public class X_M_Inventory extends PO implements I_M_Inventory, I_Persistent return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -438,6 +438,20 @@ public class X_M_Inventory extends PO implements I_M_Inventory, I_Persistent return ii.intValue(); } + /** Set M_Inventory_UU. + @param M_Inventory_UU M_Inventory_UU */ + public void setM_Inventory_UU (String M_Inventory_UU) + { + set_Value (COLUMNNAME_M_Inventory_UU, M_Inventory_UU); + } + + /** Get M_Inventory_UU. + @return M_Inventory_UU */ + public String getM_Inventory_UU () + { + return (String)get_Value(COLUMNNAME_M_Inventory_UU); + } + /** Set Movement Date. @param MovementDate Date a product was moved in or out of inventory @@ -455,9 +469,9 @@ public class X_M_Inventory extends PO implements I_M_Inventory, I_Persistent return (Timestamp)get_Value(COLUMNNAME_MovementDate); } - public I_M_PerpetualInv getM_PerpetualInv() throws RuntimeException + public org.compiere.model.I_M_PerpetualInv getM_PerpetualInv() throws RuntimeException { - return (I_M_PerpetualInv)MTable.get(getCtx(), I_M_PerpetualInv.Table_Name) + return (org.compiere.model.I_M_PerpetualInv)MTable.get(getCtx(), org.compiere.model.I_M_PerpetualInv.Table_Name) .getPO(getM_PerpetualInv_ID(), get_TrxName()); } /** Set Perpetual Inventory. @@ -483,9 +497,9 @@ public class X_M_Inventory extends PO implements I_M_Inventory, I_Persistent return ii.intValue(); } - public I_M_Warehouse getM_Warehouse() throws RuntimeException + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_Warehouse_ID(), get_TrxName()); } /** Set Warehouse. @@ -600,9 +614,9 @@ public class X_M_Inventory extends PO implements I_M_Inventory, I_Persistent return false; } - public I_M_Inventory getReversal() throws RuntimeException + public org.compiere.model.I_M_Inventory getReversal() throws RuntimeException { - return (I_M_Inventory)MTable.get(getCtx(), I_M_Inventory.Table_Name) + return (org.compiere.model.I_M_Inventory)MTable.get(getCtx(), org.compiere.model.I_M_Inventory.Table_Name) .getPO(getReversal_ID(), get_TrxName()); } /** Set Reversal ID. @@ -642,9 +656,9 @@ public class X_M_Inventory extends PO implements I_M_Inventory, I_Persistent return (String)get_Value(COLUMNNAME_UpdateQty); } - public I_C_ElementValue getUser1() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser1_ID(), get_TrxName()); } /** Set User List 1. @@ -670,9 +684,9 @@ public class X_M_Inventory extends PO implements I_M_Inventory, I_Persistent return ii.intValue(); } - public I_C_ElementValue getUser2() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser2_ID(), get_TrxName()); } /** Set User List 2. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_InventoryLine.java b/org.adempiere.base/src/org/compiere/model/X_M_InventoryLine.java index d2d4035ac6..11b1aa990d 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_InventoryLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_InventoryLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_InventoryLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_InventoryLine extends PO implements I_M_InventoryLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_InventoryLine (Properties ctx, int M_InventoryLine_ID, String trxName) @@ -83,9 +83,9 @@ public class X_M_InventoryLine extends PO implements I_M_InventoryLine, I_Persis return sb.toString(); } - public I_C_Charge getC_Charge() throws RuntimeException + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException { - return (I_C_Charge)MTable.get(getCtx(), I_C_Charge.Table_Name) + return (org.compiere.model.I_C_Charge)MTable.get(getCtx(), org.compiere.model.I_C_Charge.Table_Name) .getPO(getC_Charge_ID(), get_TrxName()); } /** Set Charge. @@ -208,9 +208,9 @@ public class X_M_InventoryLine extends PO implements I_M_InventoryLine, I_Persis return ii.intValue(); } - public I_M_Inventory getM_Inventory() throws RuntimeException + public org.compiere.model.I_M_Inventory getM_Inventory() throws RuntimeException { - return (I_M_Inventory)MTable.get(getCtx(), I_M_Inventory.Table_Name) + return (org.compiere.model.I_M_Inventory)MTable.get(getCtx(), org.compiere.model.I_M_Inventory.Table_Name) .getPO(getM_Inventory_ID(), get_TrxName()); } /** Set Phys.Inventory. @@ -259,6 +259,20 @@ public class X_M_InventoryLine extends PO implements I_M_InventoryLine, I_Persis return ii.intValue(); } + /** Set M_InventoryLine_UU. + @param M_InventoryLine_UU M_InventoryLine_UU */ + public void setM_InventoryLine_UU (String M_InventoryLine_UU) + { + set_Value (COLUMNNAME_M_InventoryLine_UU, M_InventoryLine_UU); + } + + /** Get M_InventoryLine_UU. + @return M_InventoryLine_UU */ + public String getM_InventoryLine_UU () + { + return (String)get_Value(COLUMNNAME_M_InventoryLine_UU); + } + public I_M_Locator getM_Locator() throws RuntimeException { return (I_M_Locator)MTable.get(getCtx(), I_M_Locator.Table_Name) @@ -287,9 +301,9 @@ public class X_M_InventoryLine extends PO implements I_M_InventoryLine, I_Persis return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -416,9 +430,9 @@ public class X_M_InventoryLine extends PO implements I_M_InventoryLine, I_Persis return bd; } - public I_M_InventoryLine getReversalLine() throws RuntimeException + public org.compiere.model.I_M_InventoryLine getReversalLine() throws RuntimeException { - return (I_M_InventoryLine)MTable.get(getCtx(), I_M_InventoryLine.Table_Name) + return (org.compiere.model.I_M_InventoryLine)MTable.get(getCtx(), org.compiere.model.I_M_InventoryLine.Table_Name) .getPO(getReversalLine_ID(), get_TrxName()); } /** Set Reversal Line. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_InventoryLineMA.java b/org.adempiere.base/src/org/compiere/model/X_M_InventoryLineMA.java index bd99c365d7..41c4240ed1 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_InventoryLineMA.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_InventoryLineMA.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_InventoryLineMA - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_InventoryLineMA extends PO implements I_M_InventoryLineMA, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_InventoryLineMA (Properties ctx, int M_InventoryLineMA_ID, String trxName) @@ -102,9 +102,9 @@ public class X_M_InventoryLineMA extends PO implements I_M_InventoryLineMA, I_Pe return ii.intValue(); } - public I_M_InventoryLine getM_InventoryLine() throws RuntimeException + public org.compiere.model.I_M_InventoryLine getM_InventoryLine() throws RuntimeException { - return (I_M_InventoryLine)MTable.get(getCtx(), I_M_InventoryLine.Table_Name) + return (org.compiere.model.I_M_InventoryLine)MTable.get(getCtx(), org.compiere.model.I_M_InventoryLine.Table_Name) .getPO(getM_InventoryLine_ID(), get_TrxName()); } /** Set Phys.Inventory Line. @@ -138,6 +138,20 @@ public class X_M_InventoryLineMA extends PO implements I_M_InventoryLineMA, I_Pe return new KeyNamePair(get_ID(), String.valueOf(getM_InventoryLine_ID())); } + /** Set M_InventoryLineMA_UU. + @param M_InventoryLineMA_UU M_InventoryLineMA_UU */ + public void setM_InventoryLineMA_UU (String M_InventoryLineMA_UU) + { + set_Value (COLUMNNAME_M_InventoryLineMA_UU, M_InventoryLineMA_UU); + } + + /** Get M_InventoryLineMA_UU. + @return M_InventoryLineMA_UU */ + public String getM_InventoryLineMA_UU () + { + return (String)get_Value(COLUMNNAME_M_InventoryLineMA_UU); + } + /** Set Movement Quantity. @param MovementQty Quantity of a product moved. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_Locator.java b/org.adempiere.base/src/org/compiere/model/X_M_Locator.java index cb197cf2a8..04b199a2fd 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_Locator.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_Locator.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_Locator - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_Locator extends PO implements I_M_Locator, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_Locator (Properties ctx, int M_Locator_ID, String trxName) @@ -125,9 +125,23 @@ public class X_M_Locator extends PO implements I_M_Locator, I_Persistent return ii.intValue(); } - public I_M_Warehouse getM_Warehouse() throws RuntimeException + /** Set M_Locator_UU. + @param M_Locator_UU M_Locator_UU */ + public void setM_Locator_UU (String M_Locator_UU) + { + set_Value (COLUMNNAME_M_Locator_UU, M_Locator_UU); + } + + /** Get M_Locator_UU. + @return M_Locator_UU */ + public String getM_Locator_UU () + { + return (String)get_Value(COLUMNNAME_M_Locator_UU); + } + + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_Warehouse_ID(), get_TrxName()); } /** Set Warehouse. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_Lot.java b/org.adempiere.base/src/org/compiere/model/X_M_Lot.java index f6fb8cadb4..5f5e175ed6 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_Lot.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_Lot.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_Lot - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_Lot extends PO implements I_M_Lot, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_Lot (Properties ctx, int M_Lot_ID, String trxName) @@ -141,9 +141,9 @@ public class X_M_Lot extends PO implements I_M_Lot, I_Persistent return (String)get_Value(COLUMNNAME_Help); } - public I_M_LotCtl getM_LotCtl() throws RuntimeException + public org.compiere.model.I_M_LotCtl getM_LotCtl() throws RuntimeException { - return (I_M_LotCtl)MTable.get(getCtx(), I_M_LotCtl.Table_Name) + return (org.compiere.model.I_M_LotCtl)MTable.get(getCtx(), org.compiere.model.I_M_LotCtl.Table_Name) .getPO(getM_LotCtl_ID(), get_TrxName()); } /** Set Lot Control. @@ -192,9 +192,23 @@ public class X_M_Lot extends PO implements I_M_Lot, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + /** Set M_Lot_UU. + @param M_Lot_UU M_Lot_UU */ + public void setM_Lot_UU (String M_Lot_UU) + { + set_Value (COLUMNNAME_M_Lot_UU, M_Lot_UU); + } + + /** Get M_Lot_UU. + @return M_Lot_UU */ + public String getM_Lot_UU () + { + return (String)get_Value(COLUMNNAME_M_Lot_UU); + } + + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_LotCtl.java b/org.adempiere.base/src/org/compiere/model/X_M_LotCtl.java index cc323c4f8b..1858e59457 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_LotCtl.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_LotCtl.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_LotCtl - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_LotCtl extends PO implements I_M_LotCtl, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_LotCtl (Properties ctx, int M_LotCtl_ID, String trxName) @@ -157,6 +157,20 @@ public class X_M_LotCtl extends PO implements I_M_LotCtl, I_Persistent return ii.intValue(); } + /** Set M_LotCtl_UU. + @param M_LotCtl_UU M_LotCtl_UU */ + public void setM_LotCtl_UU (String M_LotCtl_UU) + { + set_Value (COLUMNNAME_M_LotCtl_UU, M_LotCtl_UU); + } + + /** Get M_LotCtl_UU. + @return M_LotCtl_UU */ + public String getM_LotCtl_UU () + { + return (String)get_Value(COLUMNNAME_M_LotCtl_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_M_LotCtlExclude.java b/org.adempiere.base/src/org/compiere/model/X_M_LotCtlExclude.java index 3a30d57c5a..ce075a6880 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_LotCtlExclude.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_LotCtlExclude.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for M_LotCtlExclude - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_LotCtlExclude extends PO implements I_M_LotCtlExclude, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_LotCtlExclude (Properties ctx, int M_LotCtlExclude_ID, String trxName) @@ -72,9 +72,9 @@ public class X_M_LotCtlExclude extends PO implements I_M_LotCtlExclude, I_Persis return sb.toString(); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @@ -147,9 +147,23 @@ public class X_M_LotCtlExclude extends PO implements I_M_LotCtlExclude, I_Persis return ii.intValue(); } - public I_M_LotCtl getM_LotCtl() throws RuntimeException + /** Set M_LotCtlExclude_UU. + @param M_LotCtlExclude_UU M_LotCtlExclude_UU */ + public void setM_LotCtlExclude_UU (String M_LotCtlExclude_UU) + { + set_Value (COLUMNNAME_M_LotCtlExclude_UU, M_LotCtlExclude_UU); + } + + /** Get M_LotCtlExclude_UU. + @return M_LotCtlExclude_UU */ + public String getM_LotCtlExclude_UU () + { + return (String)get_Value(COLUMNNAME_M_LotCtlExclude_UU); + } + + public org.compiere.model.I_M_LotCtl getM_LotCtl() throws RuntimeException { - return (I_M_LotCtl)MTable.get(getCtx(), I_M_LotCtl.Table_Name) + return (org.compiere.model.I_M_LotCtl)MTable.get(getCtx(), org.compiere.model.I_M_LotCtl.Table_Name) .getPO(getM_LotCtl_ID(), get_TrxName()); } /** Set Lot Control. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_MatchInv.java b/org.adempiere.base/src/org/compiere/model/X_M_MatchInv.java index e1623389d4..3e318cf47b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_MatchInv.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_MatchInv.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_MatchInv - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_MatchInv extends PO implements I_M_MatchInv, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_MatchInv (Properties ctx, int M_MatchInv_ID, String trxName) @@ -82,9 +82,9 @@ public class X_M_MatchInv extends PO implements I_M_MatchInv, I_Persistent return sb.toString(); } - public I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException + public org.compiere.model.I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException { - return (I_C_InvoiceLine)MTable.get(getCtx(), I_C_InvoiceLine.Table_Name) + return (org.compiere.model.I_C_InvoiceLine)MTable.get(getCtx(), org.compiere.model.I_C_InvoiceLine.Table_Name) .getPO(getC_InvoiceLine_ID(), get_TrxName()); } /** Set Invoice Line. @@ -214,9 +214,9 @@ public class X_M_MatchInv extends PO implements I_M_MatchInv, I_Persistent return ii.intValue(); } - public I_M_InOutLine getM_InOutLine() throws RuntimeException + public org.compiere.model.I_M_InOutLine getM_InOutLine() throws RuntimeException { - return (I_M_InOutLine)MTable.get(getCtx(), I_M_InOutLine.Table_Name) + return (org.compiere.model.I_M_InOutLine)MTable.get(getCtx(), org.compiere.model.I_M_InOutLine.Table_Name) .getPO(getM_InOutLine_ID(), get_TrxName()); } /** Set Shipment/Receipt Line. @@ -265,9 +265,23 @@ public class X_M_MatchInv extends PO implements I_M_MatchInv, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + /** Set M_MatchInv_UU. + @param M_MatchInv_UU M_MatchInv_UU */ + public void setM_MatchInv_UU (String M_MatchInv_UU) + { + set_Value (COLUMNNAME_M_MatchInv_UU, M_MatchInv_UU); + } + + /** Get M_MatchInv_UU. + @return M_MatchInv_UU */ + public String getM_MatchInv_UU () + { + return (String)get_Value(COLUMNNAME_M_MatchInv_UU); + } + + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_MatchPO.java b/org.adempiere.base/src/org/compiere/model/X_M_MatchPO.java index 60205f1875..ceeba9819e 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_MatchPO.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_MatchPO.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_MatchPO - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_MatchPO extends PO implements I_M_MatchPO, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_MatchPO (Properties ctx, int M_MatchPO_ID, String trxName) @@ -82,9 +82,9 @@ public class X_M_MatchPO extends PO implements I_M_MatchPO, I_Persistent return sb.toString(); } - public I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException + public org.compiere.model.I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException { - return (I_C_InvoiceLine)MTable.get(getCtx(), I_C_InvoiceLine.Table_Name) + return (org.compiere.model.I_C_InvoiceLine)MTable.get(getCtx(), org.compiere.model.I_C_InvoiceLine.Table_Name) .getPO(getC_InvoiceLine_ID(), get_TrxName()); } /** Set Invoice Line. @@ -110,9 +110,9 @@ public class X_M_MatchPO extends PO implements I_M_MatchPO, I_Persistent return ii.intValue(); } - public I_C_OrderLine getC_OrderLine() throws RuntimeException + public org.compiere.model.I_C_OrderLine getC_OrderLine() throws RuntimeException { - return (I_C_OrderLine)MTable.get(getCtx(), I_C_OrderLine.Table_Name) + return (org.compiere.model.I_C_OrderLine)MTable.get(getCtx(), org.compiere.model.I_C_OrderLine.Table_Name) .getPO(getC_OrderLine_ID(), get_TrxName()); } /** Set Sales Order Line. @@ -266,9 +266,9 @@ public class X_M_MatchPO extends PO implements I_M_MatchPO, I_Persistent return ii.intValue(); } - public I_M_InOutLine getM_InOutLine() throws RuntimeException + public org.compiere.model.I_M_InOutLine getM_InOutLine() throws RuntimeException { - return (I_M_InOutLine)MTable.get(getCtx(), I_M_InOutLine.Table_Name) + return (org.compiere.model.I_M_InOutLine)MTable.get(getCtx(), org.compiere.model.I_M_InOutLine.Table_Name) .getPO(getM_InOutLine_ID(), get_TrxName()); } /** Set Shipment/Receipt Line. @@ -317,9 +317,23 @@ public class X_M_MatchPO extends PO implements I_M_MatchPO, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + /** Set M_MatchPO_UU. + @param M_MatchPO_UU M_MatchPO_UU */ + public void setM_MatchPO_UU (String M_MatchPO_UU) + { + set_Value (COLUMNNAME_M_MatchPO_UU, M_MatchPO_UU); + } + + /** Get M_MatchPO_UU. + @return M_MatchPO_UU */ + public String getM_MatchPO_UU () + { + return (String)get_Value(COLUMNNAME_M_MatchPO_UU); + } + + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_Movement.java b/org.adempiere.base/src/org/compiere/model/X_M_Movement.java index b22d82e891..987bc967d2 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_Movement.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_Movement.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_Movement - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_Movement extends PO implements I_M_Movement, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_Movement (Properties ctx, int M_Movement_ID, String trxName) @@ -108,9 +108,9 @@ public class X_M_Movement extends PO implements I_M_Movement, I_Persistent return ii.intValue(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -156,9 +156,9 @@ public class X_M_Movement extends PO implements I_M_Movement, I_Persistent return bd; } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -184,9 +184,9 @@ public class X_M_Movement extends PO implements I_M_Movement, I_Persistent return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -240,9 +240,9 @@ public class X_M_Movement extends PO implements I_M_Movement, I_Persistent return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -268,9 +268,9 @@ public class X_M_Movement extends PO implements I_M_Movement, I_Persistent return ii.intValue(); } - public I_C_Charge getC_Charge() throws RuntimeException + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException { - return (I_C_Charge)MTable.get(getCtx(), I_C_Charge.Table_Name) + return (org.compiere.model.I_C_Charge)MTable.get(getCtx(), org.compiere.model.I_C_Charge.Table_Name) .getPO(getC_Charge_ID(), get_TrxName()); } /** Set Charge. @@ -296,9 +296,9 @@ public class X_M_Movement extends PO implements I_M_Movement, I_Persistent return ii.intValue(); } - public I_C_DocType getC_DocType() throws RuntimeException + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocType_ID(), get_TrxName()); } /** Set Document Type. @@ -344,9 +344,9 @@ public class X_M_Movement extends PO implements I_M_Movement, I_Persistent return bd; } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -742,6 +742,20 @@ public class X_M_Movement extends PO implements I_M_Movement, I_Persistent return ii.intValue(); } + /** Set M_Movement_UU. + @param M_Movement_UU M_Movement_UU */ + public void setM_Movement_UU (String M_Movement_UU) + { + set_Value (COLUMNNAME_M_Movement_UU, M_Movement_UU); + } + + /** Get M_Movement_UU. + @return M_Movement_UU */ + public String getM_Movement_UU () + { + return (String)get_Value(COLUMNNAME_M_Movement_UU); + } + /** Set Movement Date. @param MovementDate Date a product was moved in or out of inventory @@ -759,9 +773,9 @@ public class X_M_Movement extends PO implements I_M_Movement, I_Persistent return (Timestamp)get_Value(COLUMNNAME_MovementDate); } - public I_M_Shipper getM_Shipper() throws RuntimeException + public org.compiere.model.I_M_Shipper getM_Shipper() throws RuntimeException { - return (I_M_Shipper)MTable.get(getCtx(), I_M_Shipper.Table_Name) + return (org.compiere.model.I_M_Shipper)MTable.get(getCtx(), org.compiere.model.I_M_Shipper.Table_Name) .getPO(getM_Shipper_ID(), get_TrxName()); } /** Set Shipper. @@ -923,9 +937,9 @@ public class X_M_Movement extends PO implements I_M_Movement, I_Persistent return false; } - public I_M_Movement getReversal() throws RuntimeException + public org.compiere.model.I_M_Movement getReversal() throws RuntimeException { - return (I_M_Movement)MTable.get(getCtx(), I_M_Movement.Table_Name) + return (org.compiere.model.I_M_Movement)MTable.get(getCtx(), org.compiere.model.I_M_Movement.Table_Name) .getPO(getReversal_ID(), get_TrxName()); } /** Set Reversal ID. @@ -951,9 +965,9 @@ public class X_M_Movement extends PO implements I_M_Movement, I_Persistent return ii.intValue(); } - public I_AD_User getSalesRep() throws RuntimeException + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getSalesRep_ID(), get_TrxName()); } /** Set Sales Representative. @@ -979,9 +993,9 @@ public class X_M_Movement extends PO implements I_M_Movement, I_Persistent return ii.intValue(); } - public I_C_ElementValue getUser1() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser1_ID(), get_TrxName()); } /** Set User List 1. @@ -1007,9 +1021,9 @@ public class X_M_Movement extends PO implements I_M_Movement, I_Persistent return ii.intValue(); } - public I_C_ElementValue getUser2() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser2_ID(), get_TrxName()); } /** Set User List 2. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_MovementConfirm.java b/org.adempiere.base/src/org/compiere/model/X_M_MovementConfirm.java index 9cc678be7b..b0684a72a7 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_MovementConfirm.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_MovementConfirm.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_MovementConfirm - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_MovementConfirm extends PO implements I_M_MovementConfirm, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_MovementConfirm (Properties ctx, int M_MovementConfirm_ID, String trxName) @@ -257,9 +257,9 @@ public class X_M_MovementConfirm extends PO implements I_M_MovementConfirm, I_Pe return false; } - public I_M_Inventory getM_Inventory() throws RuntimeException + public org.compiere.model.I_M_Inventory getM_Inventory() throws RuntimeException { - return (I_M_Inventory)MTable.get(getCtx(), I_M_Inventory.Table_Name) + return (org.compiere.model.I_M_Inventory)MTable.get(getCtx(), org.compiere.model.I_M_Inventory.Table_Name) .getPO(getM_Inventory_ID(), get_TrxName()); } /** Set Phys.Inventory. @@ -308,9 +308,23 @@ public class X_M_MovementConfirm extends PO implements I_M_MovementConfirm, I_Pe return ii.intValue(); } - public I_M_Movement getM_Movement() throws RuntimeException + /** Set M_MovementConfirm_UU. + @param M_MovementConfirm_UU M_MovementConfirm_UU */ + public void setM_MovementConfirm_UU (String M_MovementConfirm_UU) + { + set_Value (COLUMNNAME_M_MovementConfirm_UU, M_MovementConfirm_UU); + } + + /** Get M_MovementConfirm_UU. + @return M_MovementConfirm_UU */ + public String getM_MovementConfirm_UU () + { + return (String)get_Value(COLUMNNAME_M_MovementConfirm_UU); + } + + public org.compiere.model.I_M_Movement getM_Movement() throws RuntimeException { - return (I_M_Movement)MTable.get(getCtx(), I_M_Movement.Table_Name) + return (org.compiere.model.I_M_Movement)MTable.get(getCtx(), org.compiere.model.I_M_Movement.Table_Name) .getPO(getM_Movement_ID(), get_TrxName()); } /** Set Inventory Move. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_MovementLine.java b/org.adempiere.base/src/org/compiere/model/X_M_MovementLine.java index aac16a15ac..492961c629 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_MovementLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_MovementLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_MovementLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_MovementLine extends PO implements I_M_MovementLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_MovementLine (Properties ctx, int M_MovementLine_ID, String trxName) @@ -287,9 +287,9 @@ public class X_M_MovementLine extends PO implements I_M_MovementLine, I_Persiste return ii.intValue(); } - public I_M_Movement getM_Movement() throws RuntimeException + public org.compiere.model.I_M_Movement getM_Movement() throws RuntimeException { - return (I_M_Movement)MTable.get(getCtx(), I_M_Movement.Table_Name) + return (org.compiere.model.I_M_Movement)MTable.get(getCtx(), org.compiere.model.I_M_Movement.Table_Name) .getPO(getM_Movement_ID(), get_TrxName()); } /** Set Inventory Move. @@ -338,6 +338,20 @@ public class X_M_MovementLine extends PO implements I_M_MovementLine, I_Persiste return ii.intValue(); } + /** Set M_MovementLine_UU. + @param M_MovementLine_UU M_MovementLine_UU */ + public void setM_MovementLine_UU (String M_MovementLine_UU) + { + set_Value (COLUMNNAME_M_MovementLine_UU, M_MovementLine_UU); + } + + /** Get M_MovementLine_UU. + @return M_MovementLine_UU */ + public String getM_MovementLine_UU () + { + return (String)get_Value(COLUMNNAME_M_MovementLine_UU); + } + /** Set Movement Quantity. @param MovementQty Quantity of a product moved. @@ -358,9 +372,9 @@ public class X_M_MovementLine extends PO implements I_M_MovementLine, I_Persiste return bd; } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -410,9 +424,9 @@ public class X_M_MovementLine extends PO implements I_M_MovementLine, I_Persiste return false; } - public I_M_MovementLine getReversalLine() throws RuntimeException + public org.compiere.model.I_M_MovementLine getReversalLine() throws RuntimeException { - return (I_M_MovementLine)MTable.get(getCtx(), I_M_MovementLine.Table_Name) + return (org.compiere.model.I_M_MovementLine)MTable.get(getCtx(), org.compiere.model.I_M_MovementLine.Table_Name) .getPO(getReversalLine_ID(), get_TrxName()); } /** Set Reversal Line. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_MovementLineConfirm.java b/org.adempiere.base/src/org/compiere/model/X_M_MovementLineConfirm.java index 067036c961..1cdef7c19b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_MovementLineConfirm.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_MovementLineConfirm.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_MovementLineConfirm - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_MovementLineConfirm extends PO implements I_M_MovementLineConfirm, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_MovementLineConfirm (Properties ctx, int M_MovementLineConfirm_ID, String trxName) @@ -136,9 +136,9 @@ public class X_M_MovementLineConfirm extends PO implements I_M_MovementLineConfi return bd; } - public I_M_InventoryLine getM_InventoryLine() throws RuntimeException + public org.compiere.model.I_M_InventoryLine getM_InventoryLine() throws RuntimeException { - return (I_M_InventoryLine)MTable.get(getCtx(), I_M_InventoryLine.Table_Name) + return (org.compiere.model.I_M_InventoryLine)MTable.get(getCtx(), org.compiere.model.I_M_InventoryLine.Table_Name) .getPO(getM_InventoryLine_ID(), get_TrxName()); } /** Set Phys.Inventory Line. @@ -164,9 +164,9 @@ public class X_M_MovementLineConfirm extends PO implements I_M_MovementLineConfi return ii.intValue(); } - public I_M_MovementConfirm getM_MovementConfirm() throws RuntimeException + public org.compiere.model.I_M_MovementConfirm getM_MovementConfirm() throws RuntimeException { - return (I_M_MovementConfirm)MTable.get(getCtx(), I_M_MovementConfirm.Table_Name) + return (org.compiere.model.I_M_MovementConfirm)MTable.get(getCtx(), org.compiere.model.I_M_MovementConfirm.Table_Name) .getPO(getM_MovementConfirm_ID(), get_TrxName()); } /** Set Move Confirm. @@ -223,9 +223,23 @@ public class X_M_MovementLineConfirm extends PO implements I_M_MovementLineConfi return ii.intValue(); } - public I_M_MovementLine getM_MovementLine() throws RuntimeException + /** Set M_MovementLineConfirm_UU. + @param M_MovementLineConfirm_UU M_MovementLineConfirm_UU */ + public void setM_MovementLineConfirm_UU (String M_MovementLineConfirm_UU) + { + set_Value (COLUMNNAME_M_MovementLineConfirm_UU, M_MovementLineConfirm_UU); + } + + /** Get M_MovementLineConfirm_UU. + @return M_MovementLineConfirm_UU */ + public String getM_MovementLineConfirm_UU () + { + return (String)get_Value(COLUMNNAME_M_MovementLineConfirm_UU); + } + + public org.compiere.model.I_M_MovementLine getM_MovementLine() throws RuntimeException { - return (I_M_MovementLine)MTable.get(getCtx(), I_M_MovementLine.Table_Name) + return (org.compiere.model.I_M_MovementLine)MTable.get(getCtx(), org.compiere.model.I_M_MovementLine.Table_Name) .getPO(getM_MovementLine_ID(), get_TrxName()); } /** Set Move Line. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_MovementLineMA.java b/org.adempiere.base/src/org/compiere/model/X_M_MovementLineMA.java index 3ca6ac1608..09e2067a71 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_MovementLineMA.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_MovementLineMA.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_MovementLineMA - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_MovementLineMA extends PO implements I_M_MovementLineMA, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_MovementLineMA (Properties ctx, int M_MovementLineMA_ID, String trxName) @@ -101,9 +101,9 @@ public class X_M_MovementLineMA extends PO implements I_M_MovementLineMA, I_Pers return ii.intValue(); } - public I_M_MovementLine getM_MovementLine() throws RuntimeException + public org.compiere.model.I_M_MovementLine getM_MovementLine() throws RuntimeException { - return (I_M_MovementLine)MTable.get(getCtx(), I_M_MovementLine.Table_Name) + return (org.compiere.model.I_M_MovementLine)MTable.get(getCtx(), org.compiere.model.I_M_MovementLine.Table_Name) .getPO(getM_MovementLine_ID(), get_TrxName()); } /** Set Move Line. @@ -137,6 +137,20 @@ public class X_M_MovementLineMA extends PO implements I_M_MovementLineMA, I_Pers return new KeyNamePair(get_ID(), String.valueOf(getM_MovementLine_ID())); } + /** Set M_MovementLineMA_UU. + @param M_MovementLineMA_UU M_MovementLineMA_UU */ + public void setM_MovementLineMA_UU (String M_MovementLineMA_UU) + { + set_Value (COLUMNNAME_M_MovementLineMA_UU, M_MovementLineMA_UU); + } + + /** Get M_MovementLineMA_UU. + @return M_MovementLineMA_UU */ + public String getM_MovementLineMA_UU () + { + return (String)get_Value(COLUMNNAME_M_MovementLineMA_UU); + } + /** Set Movement Quantity. @param MovementQty Quantity of a product moved. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_OperationResource.java b/org.adempiere.base/src/org/compiere/model/X_M_OperationResource.java index 1ed0cdd3fb..8675f6b6a1 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_OperationResource.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_OperationResource.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_OperationResource - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_OperationResource extends PO implements I_M_OperationResource, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_OperationResource (Properties ctx, int M_OperationResource_ID, String trxName) @@ -77,9 +77,9 @@ public class X_M_OperationResource extends PO implements I_M_OperationResource, return sb.toString(); } - public I_A_Asset getA_Asset() throws RuntimeException + public org.compiere.model.I_A_Asset getA_Asset() throws RuntimeException { - return (I_A_Asset)MTable.get(getCtx(), I_A_Asset.Table_Name) + return (org.compiere.model.I_A_Asset)MTable.get(getCtx(), org.compiere.model.I_A_Asset.Table_Name) .getPO(getA_Asset_ID(), get_TrxName()); } /** Set Asset. @@ -105,9 +105,9 @@ public class X_M_OperationResource extends PO implements I_M_OperationResource, return ii.intValue(); } - public I_C_Job getC_Job() throws RuntimeException + public org.compiere.model.I_C_Job getC_Job() throws RuntimeException { - return (I_C_Job)MTable.get(getCtx(), I_C_Job.Table_Name) + return (org.compiere.model.I_C_Job)MTable.get(getCtx(), org.compiere.model.I_C_Job.Table_Name) .getPO(getC_Job_ID(), get_TrxName()); } /** Set Position. @@ -190,9 +190,23 @@ public class X_M_OperationResource extends PO implements I_M_OperationResource, return ii.intValue(); } - public I_M_ProductOperation getM_ProductOperation() throws RuntimeException + /** Set M_OperationResource_UU. + @param M_OperationResource_UU M_OperationResource_UU */ + public void setM_OperationResource_UU (String M_OperationResource_UU) + { + set_Value (COLUMNNAME_M_OperationResource_UU, M_OperationResource_UU); + } + + /** Get M_OperationResource_UU. + @return M_OperationResource_UU */ + public String getM_OperationResource_UU () + { + return (String)get_Value(COLUMNNAME_M_OperationResource_UU); + } + + public org.compiere.model.I_M_ProductOperation getM_ProductOperation() throws RuntimeException { - return (I_M_ProductOperation)MTable.get(getCtx(), I_M_ProductOperation.Table_Name) + return (org.compiere.model.I_M_ProductOperation)MTable.get(getCtx(), org.compiere.model.I_M_ProductOperation.Table_Name) .getPO(getM_ProductOperation_ID(), get_TrxName()); } /** Set Product Operation. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_Package.java b/org.adempiere.base/src/org/compiere/model/X_M_Package.java index d12fb1927c..3f188e2557 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_Package.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_Package.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.sql.Timestamp; import java.util.Properties; /** Generated Model for M_Package - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_Package extends PO implements I_M_Package, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_Package (Properties ctx, int M_Package_ID, String trxName) @@ -124,9 +124,9 @@ public class X_M_Package extends PO implements I_M_Package, I_Persistent return (String)get_Value(COLUMNNAME_DocumentNo); } - public I_M_InOut getM_InOut() throws RuntimeException + public org.compiere.model.I_M_InOut getM_InOut() throws RuntimeException { - return (I_M_InOut)MTable.get(getCtx(), I_M_InOut.Table_Name) + return (org.compiere.model.I_M_InOut)MTable.get(getCtx(), org.compiere.model.I_M_InOut.Table_Name) .getPO(getM_InOut_ID(), get_TrxName()); } /** Set Shipment/Receipt. @@ -175,9 +175,23 @@ public class X_M_Package extends PO implements I_M_Package, I_Persistent return ii.intValue(); } - public I_M_Shipper getM_Shipper() throws RuntimeException + /** Set M_Package_UU. + @param M_Package_UU M_Package_UU */ + public void setM_Package_UU (String M_Package_UU) + { + set_Value (COLUMNNAME_M_Package_UU, M_Package_UU); + } + + /** Get M_Package_UU. + @return M_Package_UU */ + public String getM_Package_UU () + { + return (String)get_Value(COLUMNNAME_M_Package_UU); + } + + public org.compiere.model.I_M_Shipper getM_Shipper() throws RuntimeException { - return (I_M_Shipper)MTable.get(getCtx(), I_M_Shipper.Table_Name) + return (org.compiere.model.I_M_Shipper)MTable.get(getCtx(), org.compiere.model.I_M_Shipper.Table_Name) .getPO(getM_Shipper_ID(), get_TrxName()); } /** Set Shipper. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_PackageLine.java b/org.adempiere.base/src/org/compiere/model/X_M_PackageLine.java index 0def9d34ff..9faa9a8ec7 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_PackageLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_PackageLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_PackageLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_PackageLine extends PO implements I_M_PackageLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_PackageLine (Properties ctx, int M_PackageLine_ID, String trxName) @@ -92,9 +92,9 @@ public class X_M_PackageLine extends PO implements I_M_PackageLine, I_Persistent return (String)get_Value(COLUMNNAME_Description); } - public I_M_InOutLine getM_InOutLine() throws RuntimeException + public org.compiere.model.I_M_InOutLine getM_InOutLine() throws RuntimeException { - return (I_M_InOutLine)MTable.get(getCtx(), I_M_InOutLine.Table_Name) + return (org.compiere.model.I_M_InOutLine)MTable.get(getCtx(), org.compiere.model.I_M_InOutLine.Table_Name) .getPO(getM_InOutLine_ID(), get_TrxName()); } /** Set Shipment/Receipt Line. @@ -120,9 +120,9 @@ public class X_M_PackageLine extends PO implements I_M_PackageLine, I_Persistent return ii.intValue(); } - public I_M_Package getM_Package() throws RuntimeException + public org.compiere.model.I_M_Package getM_Package() throws RuntimeException { - return (I_M_Package)MTable.get(getCtx(), I_M_Package.Table_Name) + return (org.compiere.model.I_M_Package)MTable.get(getCtx(), org.compiere.model.I_M_Package.Table_Name) .getPO(getM_Package_ID(), get_TrxName()); } /** Set Package. @@ -179,6 +179,20 @@ public class X_M_PackageLine extends PO implements I_M_PackageLine, I_Persistent return ii.intValue(); } + /** Set M_PackageLine_UU. + @param M_PackageLine_UU M_PackageLine_UU */ + public void setM_PackageLine_UU (String M_PackageLine_UU) + { + set_Value (COLUMNNAME_M_PackageLine_UU, M_PackageLine_UU); + } + + /** Get M_PackageLine_UU. + @return M_PackageLine_UU */ + public String getM_PackageLine_UU () + { + return (String)get_Value(COLUMNNAME_M_PackageLine_UU); + } + /** Set Quantity. @param Qty Quantity diff --git a/org.adempiere.base/src/org/compiere/model/X_M_PartType.java b/org.adempiere.base/src/org/compiere/model/X_M_PartType.java index 553ec38909..150f059053 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_PartType.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_PartType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for M_PartType - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_PartType extends PO implements I_M_PartType, I_Persistent { /** * */ - private static final long serialVersionUID = 20120821L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_PartType (Properties ctx, int M_PartType_ID, String trxName) @@ -107,6 +107,20 @@ public class X_M_PartType extends PO implements I_M_PartType, I_Persistent return ii.intValue(); } + /** Set M_PartType_UU. + @param M_PartType_UU M_PartType_UU */ + public void setM_PartType_UU (String M_PartType_UU) + { + set_Value (COLUMNNAME_M_PartType_UU, M_PartType_UU); + } + + /** Get M_PartType_UU. + @return M_PartType_UU */ + public String getM_PartType_UU () + { + return (String)get_Value(COLUMNNAME_M_PartType_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_M_PerpetualInv.java b/org.adempiere.base/src/org/compiere/model/X_M_PerpetualInv.java index a1b4a1d9f6..839de041fe 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_PerpetualInv.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_PerpetualInv.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_PerpetualInv - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_PerpetualInv extends PO implements I_M_PerpetualInv, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_PerpetualInv (Properties ctx, int M_PerpetualInv_ID, String trxName) @@ -178,9 +178,23 @@ public class X_M_PerpetualInv extends PO implements I_M_PerpetualInv, I_Persiste return ii.intValue(); } - public I_M_Product_Category getM_Product_Category() throws RuntimeException + /** Set M_PerpetualInv_UU. + @param M_PerpetualInv_UU M_PerpetualInv_UU */ + public void setM_PerpetualInv_UU (String M_PerpetualInv_UU) + { + set_Value (COLUMNNAME_M_PerpetualInv_UU, M_PerpetualInv_UU); + } + + /** Get M_PerpetualInv_UU. + @return M_PerpetualInv_UU */ + public String getM_PerpetualInv_UU () + { + return (String)get_Value(COLUMNNAME_M_PerpetualInv_UU); + } + + public org.compiere.model.I_M_Product_Category getM_Product_Category() throws RuntimeException { - return (I_M_Product_Category)MTable.get(getCtx(), I_M_Product_Category.Table_Name) + return (org.compiere.model.I_M_Product_Category)MTable.get(getCtx(), org.compiere.model.I_M_Product_Category.Table_Name) .getPO(getM_Product_Category_ID(), get_TrxName()); } /** Set Product Category. @@ -206,9 +220,9 @@ public class X_M_PerpetualInv extends PO implements I_M_PerpetualInv, I_Persiste return ii.intValue(); } - public I_M_Warehouse getM_Warehouse() throws RuntimeException + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_Warehouse_ID(), get_TrxName()); } /** Set Warehouse. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_PriceList.java b/org.adempiere.base/src/org/compiere/model/X_M_PriceList.java index f02aa14b52..7aa5d0c062 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_PriceList.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_PriceList.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_PriceList - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_PriceList extends PO implements I_M_PriceList, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_PriceList (Properties ctx, int M_PriceList_ID, String trxName) @@ -78,9 +78,9 @@ public class X_M_PriceList extends PO implements I_M_PriceList, I_Persistent return sb.toString(); } - public I_M_PriceList getBasePriceList() throws RuntimeException + public org.compiere.model.I_M_PriceList getBasePriceList() throws RuntimeException { - return (I_M_PriceList)MTable.get(getCtx(), I_M_PriceList.Table_Name) + return (org.compiere.model.I_M_PriceList)MTable.get(getCtx(), org.compiere.model.I_M_PriceList.Table_Name) .getPO(getBasePriceList_ID(), get_TrxName()); } /** Set Base Pricelist. @@ -106,9 +106,9 @@ public class X_M_PriceList extends PO implements I_M_PriceList, I_Persistent return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -315,6 +315,20 @@ public class X_M_PriceList extends PO implements I_M_PriceList, I_Persistent return ii.intValue(); } + /** Set M_PriceList_UU. + @param M_PriceList_UU M_PriceList_UU */ + public void setM_PriceList_UU (String M_PriceList_UU) + { + set_Value (COLUMNNAME_M_PriceList_UU, M_PriceList_UU); + } + + /** Get M_PriceList_UU. + @return M_PriceList_UU */ + public String getM_PriceList_UU () + { + return (String)get_Value(COLUMNNAME_M_PriceList_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_M_PriceList_Version.java b/org.adempiere.base/src/org/compiere/model/X_M_PriceList_Version.java index 51ad1afb6f..f53f5a3bd6 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_PriceList_Version.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_PriceList_Version.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_PriceList_Version - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_PriceList_Version extends PO implements I_M_PriceList_Version, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_PriceList_Version (Properties ctx, int M_PriceList_Version_ID, String trxName) @@ -94,9 +94,9 @@ public class X_M_PriceList_Version extends PO implements I_M_PriceList_Version, return (String)get_Value(COLUMNNAME_Description); } - public I_M_DiscountSchema getM_DiscountSchema() throws RuntimeException + public org.compiere.model.I_M_DiscountSchema getM_DiscountSchema() throws RuntimeException { - return (I_M_DiscountSchema)MTable.get(getCtx(), I_M_DiscountSchema.Table_Name) + return (org.compiere.model.I_M_DiscountSchema)MTable.get(getCtx(), org.compiere.model.I_M_DiscountSchema.Table_Name) .getPO(getM_DiscountSchema_ID(), get_TrxName()); } /** Set Discount Schema. @@ -122,9 +122,9 @@ public class X_M_PriceList_Version extends PO implements I_M_PriceList_Version, return ii.intValue(); } - public I_M_PriceList getM_PriceList() throws RuntimeException + public org.compiere.model.I_M_PriceList getM_PriceList() throws RuntimeException { - return (I_M_PriceList)MTable.get(getCtx(), I_M_PriceList.Table_Name) + return (org.compiere.model.I_M_PriceList)MTable.get(getCtx(), org.compiere.model.I_M_PriceList.Table_Name) .getPO(getM_PriceList_ID(), get_TrxName()); } /** Set Price List. @@ -150,9 +150,9 @@ public class X_M_PriceList_Version extends PO implements I_M_PriceList_Version, return ii.intValue(); } - public I_M_PriceList_Version getM_Pricelist_Version_Base() throws RuntimeException + public org.compiere.model.I_M_PriceList_Version getM_Pricelist_Version_Base() throws RuntimeException { - return (I_M_PriceList_Version)MTable.get(getCtx(), I_M_PriceList_Version.Table_Name) + return (org.compiere.model.I_M_PriceList_Version)MTable.get(getCtx(), org.compiere.model.I_M_PriceList_Version.Table_Name) .getPO(getM_Pricelist_Version_Base_ID(), get_TrxName()); } /** Set Base Price List. @@ -201,6 +201,20 @@ public class X_M_PriceList_Version extends PO implements I_M_PriceList_Version, return ii.intValue(); } + /** Set M_PriceList_Version_UU. + @param M_PriceList_Version_UU M_PriceList_Version_UU */ + public void setM_PriceList_Version_UU (String M_PriceList_Version_UU) + { + set_Value (COLUMNNAME_M_PriceList_Version_UU, M_PriceList_Version_UU); + } + + /** Get M_PriceList_Version_UU. + @return M_PriceList_Version_UU */ + public String getM_PriceList_Version_UU () + { + return (String)get_Value(COLUMNNAME_M_PriceList_Version_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_M_Product.java b/org.adempiere.base/src/org/compiere/model/X_M_Product.java index 24f9bfe4d9..f1c78837f9 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_Product.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_Product.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_Product - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_Product extends PO implements I_M_Product, I_Persistent { /** * */ - private static final long serialVersionUID = 20121024L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_Product (Properties ctx, int M_Product_ID, String trxName) @@ -959,9 +959,9 @@ public class X_M_Product extends PO implements I_M_Product, I_Persistent return ii.intValue(); } - public I_M_PartType getM_PartType() throws RuntimeException + public org.compiere.model.I_M_PartType getM_PartType() throws RuntimeException { - return (I_M_PartType)MTable.get(getCtx(), I_M_PartType.Table_Name) + return (org.compiere.model.I_M_PartType)MTable.get(getCtx(), org.compiere.model.I_M_PartType.Table_Name) .getPO(getM_PartType_ID(), get_TrxName()); } /** Set Part Type. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_ProductDownload.java b/org.adempiere.base/src/org/compiere/model/X_M_ProductDownload.java index c186830d9a..c4732c99a5 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_ProductDownload.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_ProductDownload.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_ProductDownload - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_ProductDownload extends PO implements I_M_ProductDownload, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_ProductDownload (Properties ctx, int M_ProductDownload_ID, String trxName) @@ -113,9 +113,23 @@ public class X_M_ProductDownload extends PO implements I_M_ProductDownload, I_Pe return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + /** Set M_ProductDownload_UU. + @param M_ProductDownload_UU M_ProductDownload_UU */ + public void setM_ProductDownload_UU (String M_ProductDownload_UU) + { + set_Value (COLUMNNAME_M_ProductDownload_UU, M_ProductDownload_UU); + } + + /** Get M_ProductDownload_UU. + @return M_ProductDownload_UU */ + public String getM_ProductDownload_UU () + { + return (String)get_Value(COLUMNNAME_M_ProductDownload_UU); + } + + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_ProductOperation.java b/org.adempiere.base/src/org/compiere/model/X_M_ProductOperation.java index aeebec1055..a6ea8bbbb1 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_ProductOperation.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_ProductOperation.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_ProductOperation - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_ProductOperation extends PO implements I_M_ProductOperation, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_ProductOperation (Properties ctx, int M_ProductOperation_ID, String trxName) @@ -108,9 +108,9 @@ public class X_M_ProductOperation extends PO implements I_M_ProductOperation, I_ return (String)get_Value(COLUMNNAME_Help); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -159,6 +159,20 @@ public class X_M_ProductOperation extends PO implements I_M_ProductOperation, I_ return ii.intValue(); } + /** Set M_ProductOperation_UU. + @param M_ProductOperation_UU M_ProductOperation_UU */ + public void setM_ProductOperation_UU (String M_ProductOperation_UU) + { + set_Value (COLUMNNAME_M_ProductOperation_UU, M_ProductOperation_UU); + } + + /** Get M_ProductOperation_UU. + @return M_ProductOperation_UU */ + public String getM_ProductOperation_UU () + { + return (String)get_Value(COLUMNNAME_M_ProductOperation_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_M_ProductPrice.java b/org.adempiere.base/src/org/compiere/model/X_M_ProductPrice.java index feaaba87cf..685e15f230 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_ProductPrice.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_ProductPrice.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for M_ProductPrice - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_ProductPrice extends PO implements I_M_ProductPrice, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_ProductPrice (Properties ctx, int M_ProductPrice_ID, String trxName) @@ -75,9 +75,9 @@ public class X_M_ProductPrice extends PO implements I_M_ProductPrice, I_Persiste return sb.toString(); } - public I_M_PriceList_Version getM_PriceList_Version() throws RuntimeException + public org.compiere.model.I_M_PriceList_Version getM_PriceList_Version() throws RuntimeException { - return (I_M_PriceList_Version)MTable.get(getCtx(), I_M_PriceList_Version.Table_Name) + return (org.compiere.model.I_M_PriceList_Version)MTable.get(getCtx(), org.compiere.model.I_M_PriceList_Version.Table_Name) .getPO(getM_PriceList_Version_ID(), get_TrxName()); } /** Set Price List Version. @@ -103,9 +103,9 @@ public class X_M_ProductPrice extends PO implements I_M_ProductPrice, I_Persiste return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -131,6 +131,20 @@ public class X_M_ProductPrice extends PO implements I_M_ProductPrice, I_Persiste return ii.intValue(); } + /** Set M_ProductPrice_UU. + @param M_ProductPrice_UU M_ProductPrice_UU */ + public void setM_ProductPrice_UU (String M_ProductPrice_UU) + { + set_Value (COLUMNNAME_M_ProductPrice_UU, M_ProductPrice_UU); + } + + /** Get M_ProductPrice_UU. + @return M_ProductPrice_UU */ + public String getM_ProductPrice_UU () + { + return (String)get_Value(COLUMNNAME_M_ProductPrice_UU); + } + /** Set Limit Price. @param PriceLimit Lowest price for a product diff --git a/org.adempiere.base/src/org/compiere/model/X_M_ProductPriceVendorBreak.java b/org.adempiere.base/src/org/compiere/model/X_M_ProductPriceVendorBreak.java index d9834af3cc..ae41306a92 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_ProductPriceVendorBreak.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_ProductPriceVendorBreak.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for M_ProductPriceVendorBreak - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_ProductPriceVendorBreak extends PO implements I_M_ProductPriceVendorBreak, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_ProductPriceVendorBreak (Properties ctx, int M_ProductPriceVendorBreak_ID, String trxName) @@ -98,9 +98,9 @@ public class X_M_ProductPriceVendorBreak extends PO implements I_M_ProductPriceV return bd; } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -126,9 +126,9 @@ public class X_M_ProductPriceVendorBreak extends PO implements I_M_ProductPriceV return ii.intValue(); } - public I_M_PriceList_Version getM_PriceList_Version() throws RuntimeException + public org.compiere.model.I_M_PriceList_Version getM_PriceList_Version() throws RuntimeException { - return (I_M_PriceList_Version)MTable.get(getCtx(), I_M_PriceList_Version.Table_Name) + return (org.compiere.model.I_M_PriceList_Version)MTable.get(getCtx(), org.compiere.model.I_M_PriceList_Version.Table_Name) .getPO(getM_PriceList_Version_ID(), get_TrxName()); } /** Set Price List Version. @@ -154,9 +154,9 @@ public class X_M_ProductPriceVendorBreak extends PO implements I_M_ProductPriceV return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -182,8 +182,8 @@ public class X_M_ProductPriceVendorBreak extends PO implements I_M_ProductPriceV return ii.intValue(); } - /** Set Product Price Vendor Break. - @param M_ProductPriceVendorBreak_ID Product Price Vendor Break */ + /** Set Product Price Break. + @param M_ProductPriceVendorBreak_ID Product Price Break */ public void setM_ProductPriceVendorBreak_ID (int M_ProductPriceVendorBreak_ID) { if (M_ProductPriceVendorBreak_ID < 1) @@ -192,8 +192,8 @@ public class X_M_ProductPriceVendorBreak extends PO implements I_M_ProductPriceV set_ValueNoCheck (COLUMNNAME_M_ProductPriceVendorBreak_ID, Integer.valueOf(M_ProductPriceVendorBreak_ID)); } - /** Get Product Price Vendor Break. - @return Product Price Vendor Break */ + /** Get Product Price Break. + @return Product Price Break */ public int getM_ProductPriceVendorBreak_ID () { Integer ii = (Integer)get_Value(COLUMNNAME_M_ProductPriceVendorBreak_ID); @@ -202,6 +202,20 @@ public class X_M_ProductPriceVendorBreak extends PO implements I_M_ProductPriceV return ii.intValue(); } + /** Set M_ProductPriceVendorBreak_UU. + @param M_ProductPriceVendorBreak_UU M_ProductPriceVendorBreak_UU */ + public void setM_ProductPriceVendorBreak_UU (String M_ProductPriceVendorBreak_UU) + { + set_Value (COLUMNNAME_M_ProductPriceVendorBreak_UU, M_ProductPriceVendorBreak_UU); + } + + /** Get M_ProductPriceVendorBreak_UU. + @return M_ProductPriceVendorBreak_UU */ + public String getM_ProductPriceVendorBreak_UU () + { + return (String)get_Value(COLUMNNAME_M_ProductPriceVendorBreak_UU); + } + /** Set Limit Price. @param PriceLimit Lowest price for a product diff --git a/org.adempiere.base/src/org/compiere/model/X_M_Product_Acct.java b/org.adempiere.base/src/org/compiere/model/X_M_Product_Acct.java index a8a902ff9f..924458e8d2 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_Product_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_Product_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for M_Product_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_Product_Acct extends PO implements I_M_Product_Acct, I_Persistent { /** * */ - private static final long serialVersionUID = 20120928L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_Product_Acct (Properties ctx, int M_Product_Acct_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_M_Product_BOM.java b/org.adempiere.base/src/org/compiere/model/X_M_Product_BOM.java index db33eec215..dbd9396872 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_Product_BOM.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_Product_BOM.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_Product_BOM - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_Product_BOM extends PO implements I_M_Product_BOM, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_Product_BOM (Properties ctx, int M_Product_BOM_ID, String trxName) @@ -140,6 +140,44 @@ public class X_M_Product_BOM extends PO implements I_M_Product_BOM, I_Persistent return (String)get_Value(COLUMNNAME_BOMType); } + /** Set Standard Cost. + @param CostStandard + Standard Costs + */ + public void setCostStandard (BigDecimal CostStandard) + { + throw new IllegalArgumentException ("CostStandard is virtual column"); } + + /** Get Standard Cost. + @return Standard Costs + */ + public BigDecimal getCostStandard () + { + BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_CostStandard); + if (bd == null) + return Env.ZERO; + return bd; + } + + /** Set Std Cost Amount Sum. + @param CostStandardCumAmt + Standard Cost Invoice Amount Sum (internal) + */ + public void setCostStandardCumAmt (BigDecimal CostStandardCumAmt) + { + throw new IllegalArgumentException ("CostStandardCumAmt is virtual column"); } + + /** Get Std Cost Amount Sum. + @return Standard Cost Invoice Amount Sum (internal) + */ + public BigDecimal getCostStandardCumAmt () + { + BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_CostStandardCumAmt); + if (bd == null) + return Env.ZERO; + return bd; + } + /** Set Description. @param Description Optional short description of the record @@ -157,6 +195,29 @@ public class X_M_Product_BOM extends PO implements I_M_Product_BOM, I_Persistent return (String)get_Value(COLUMNNAME_Description); } + /** Set Bill of Materials. + @param IsBillOfMaterial + Bill of Materials + */ + public void setIsBillOfMaterial (boolean IsBillOfMaterial) + { + throw new IllegalArgumentException ("IsBillOfMaterial is virtual column"); } + + /** Get Bill of Materials. + @return Bill of Materials + */ + public boolean isBillOfMaterial () + { + Object oo = get_Value(COLUMNNAME_IsBillOfMaterial); + if (oo != null) + { + if (oo instanceof Boolean) + return ((Boolean)oo).booleanValue(); + return "Y".equals(oo); + } + return false; + } + /** Set Line No. @param Line Unique line for this document @@ -177,6 +238,27 @@ public class X_M_Product_BOM extends PO implements I_M_Product_BOM, I_Persistent return ii.intValue(); } + public org.compiere.model.I_M_PartType getM_PartType() throws RuntimeException + { + return (org.compiere.model.I_M_PartType)MTable.get(getCtx(), org.compiere.model.I_M_PartType.Table_Name) + .getPO(getM_PartType_ID(), get_TrxName()); } + + /** Set Part Type. + @param M_PartType_ID Part Type */ + public void setM_PartType_ID (int M_PartType_ID) + { + throw new IllegalArgumentException ("M_PartType_ID is virtual column"); } + + /** Get Part Type. + @return Part Type */ + public int getM_PartType_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_M_PartType_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + /** Set BOM Line. @param M_Product_BOM_ID BOM Line */ public void setM_Product_BOM_ID (int M_Product_BOM_ID) @@ -197,9 +279,9 @@ public class X_M_Product_BOM extends PO implements I_M_Product_BOM, I_Persistent return ii.intValue(); } - public I_M_Product getM_ProductBOM() throws RuntimeException + public org.compiere.model.I_M_Product getM_ProductBOM() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_ProductBOM_ID(), get_TrxName()); } /** Set BOM Product. @@ -233,9 +315,23 @@ public class X_M_Product_BOM extends PO implements I_M_Product_BOM, I_Persistent return new KeyNamePair(get_ID(), String.valueOf(getM_ProductBOM_ID())); } - public I_M_Product getM_Product() throws RuntimeException + /** Set M_Product_BOM_UU. + @param M_Product_BOM_UU M_Product_BOM_UU */ + public void setM_Product_BOM_UU (String M_Product_BOM_UU) + { + set_Value (COLUMNNAME_M_Product_BOM_UU, M_Product_BOM_UU); + } + + /** Get M_Product_BOM_UU. + @return M_Product_BOM_UU */ + public String getM_Product_BOM_UU () + { + return (String)get_Value(COLUMNNAME_M_Product_BOM_UU); + } + + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -260,4 +356,20 @@ public class X_M_Product_BOM extends PO implements I_M_Product_BOM, I_Persistent return 0; return ii.intValue(); } + + /** Set Search Key. + @param Value + Search key for the record in the format required - must be unique + */ + public void setValue (String Value) + { + throw new IllegalArgumentException ("Value is virtual column"); } + + /** Get Search Key. + @return Search key for the record in the format required - must be unique + */ + public String getValue () + { + return (String)get_Value(COLUMNNAME_Value); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_M_Product_Category.java b/org.adempiere.base/src/org/compiere/model/X_M_Product_Category.java index 5b731a531b..d49a7e98cf 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_Product_Category.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_Product_Category.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_Product_Category - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_Product_Category extends PO implements I_M_Product_Category, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_Product_Category (Properties ctx, int M_Product_Category_ID, String trxName) @@ -80,9 +80,9 @@ public class X_M_Product_Category extends PO implements I_M_Product_Category, I_ return sb.toString(); } - public I_A_Asset_Group getA_Asset_Group() throws RuntimeException + public org.compiere.model.I_A_Asset_Group getA_Asset_Group() throws RuntimeException { - return (I_A_Asset_Group)MTable.get(getCtx(), I_A_Asset_Group.Table_Name) + return (org.compiere.model.I_A_Asset_Group)MTable.get(getCtx(), org.compiere.model.I_A_Asset_Group.Table_Name) .getPO(getA_Asset_Group_ID(), get_TrxName()); } /** Set Asset Group. @@ -108,9 +108,9 @@ public class X_M_Product_Category extends PO implements I_M_Product_Category, I_ return ii.intValue(); } - public I_AD_PrintColor getAD_PrintColor() throws RuntimeException + public org.compiere.model.I_AD_PrintColor getAD_PrintColor() throws RuntimeException { - return (I_AD_PrintColor)MTable.get(getCtx(), I_AD_PrintColor.Table_Name) + return (org.compiere.model.I_AD_PrintColor)MTable.get(getCtx(), org.compiere.model.I_AD_PrintColor.Table_Name) .getPO(getAD_PrintColor_ID(), get_TrxName()); } /** Set Print Color. @@ -248,9 +248,9 @@ public class X_M_Product_Category extends PO implements I_M_Product_Category, I_ return ii.intValue(); } - public I_M_Product_Category getM_Product_Category_Parent() throws RuntimeException + public org.compiere.model.I_M_Product_Category getM_Product_Category_Parent() throws RuntimeException { - return (I_M_Product_Category)MTable.get(getCtx(), I_M_Product_Category.Table_Name) + return (org.compiere.model.I_M_Product_Category)MTable.get(getCtx(), org.compiere.model.I_M_Product_Category.Table_Name) .getPO(getM_Product_Category_Parent_ID(), get_TrxName()); } /** Set Parent Product Category. @@ -273,6 +273,20 @@ public class X_M_Product_Category extends PO implements I_M_Product_Category, I_ return ii.intValue(); } + /** Set M_Product_Category_UU. + @param M_Product_Category_UU M_Product_Category_UU */ + public void setM_Product_Category_UU (String M_Product_Category_UU) + { + set_Value (COLUMNNAME_M_Product_Category_UU, M_Product_Category_UU); + } + + /** Get M_Product_Category_UU. + @return M_Product_Category_UU */ + public String getM_Product_Category_UU () + { + return (String)get_Value(COLUMNNAME_M_Product_Category_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_M_Product_Category_Acct.java b/org.adempiere.base/src/org/compiere/model/X_M_Product_Category_Acct.java index 914bd49a85..f76249278d 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_Product_Category_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_Product_Category_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for M_Product_Category_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_Product_Category_Acct extends PO implements I_M_Product_Category_Acct, I_Persistent { /** * */ - private static final long serialVersionUID = 20120928L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_Product_Category_Acct (Properties ctx, int M_Product_Category_Acct_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_M_Product_PO.java b/org.adempiere.base/src/org/compiere/model/X_M_Product_PO.java index fc0d1ae3e7..7122f19f9e 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_Product_PO.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_Product_PO.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for M_Product_PO - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_Product_PO extends PO implements I_M_Product_PO, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_Product_PO (Properties ctx, int M_Product_PO_ID, String trxName) @@ -79,9 +79,9 @@ public class X_M_Product_PO extends PO implements I_M_Product_PO, I_Persistent return sb.toString(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -107,9 +107,9 @@ public class X_M_Product_PO extends PO implements I_M_Product_PO, I_Persistent return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -155,9 +155,9 @@ public class X_M_Product_PO extends PO implements I_M_Product_PO, I_Persistent return bd; } - public I_C_UOM getC_UOM() throws RuntimeException + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_ID(), get_TrxName()); } /** Set UOM. @@ -305,9 +305,9 @@ public class X_M_Product_PO extends PO implements I_M_Product_PO, I_Persistent return (String)get_Value(COLUMNNAME_Manufacturer); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -333,6 +333,20 @@ public class X_M_Product_PO extends PO implements I_M_Product_PO, I_Persistent return ii.intValue(); } + /** Set M_Product_PO_UU. + @param M_Product_PO_UU M_Product_PO_UU */ + public void setM_Product_PO_UU (String M_Product_PO_UU) + { + set_Value (COLUMNNAME_M_Product_PO_UU, M_Product_PO_UU); + } + + /** Get M_Product_PO_UU. + @return M_Product_PO_UU */ + public String getM_Product_PO_UU () + { + return (String)get_Value(COLUMNNAME_M_Product_PO_UU); + } + /** Set Minimum Order Qty. @param Order_Min Minimum order quantity in UOM diff --git a/org.adempiere.base/src/org/compiere/model/X_M_Product_QualityTest.java b/org.adempiere.base/src/org/compiere/model/X_M_Product_QualityTest.java new file mode 100644 index 0000000000..3f261b0f42 --- /dev/null +++ b/org.adempiere.base/src/org/compiere/model/X_M_Product_QualityTest.java @@ -0,0 +1,184 @@ +/****************************************************************************** + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * + * This program is free software, you can redistribute it and/or modify it * + * under the terms version 2 of the GNU General Public License as published * + * by the Free Software Foundation. This program is distributed in the hope * + * that it will be useful, but WITHOUT ANY WARRANTY, without even the implied * + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * + * See the GNU General Public License for more details. * + * You should have received a copy of the GNU General Public License along * + * with this program, if not, write to the Free Software Foundation, Inc., * + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * + * For the text or an alternative of this public license, you may reach us * + * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * + * or via info@compiere.org or http://www.compiere.org/license.html * + *****************************************************************************/ +/** Generated Model - DO NOT CHANGE */ +package org.compiere.model; + +import java.sql.ResultSet; +import java.util.Properties; +import org.compiere.util.KeyNamePair; + +/** Generated Model for M_Product_QualityTest + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ +public class X_M_Product_QualityTest extends PO implements I_M_Product_QualityTest, I_Persistent +{ + + /** + * + */ + private static final long serialVersionUID = 20121031L; + + /** Standard Constructor */ + public X_M_Product_QualityTest (Properties ctx, int M_Product_QualityTest_ID, String trxName) + { + super (ctx, M_Product_QualityTest_ID, trxName); + /** if (M_Product_QualityTest_ID == 0) + { + setExpectedResult (null); + setM_Product_ID (0); + setM_Product_QualityTest_ID (0); + setM_QualityTest_ID (0); + } */ + } + + /** Load Constructor */ + public X_M_Product_QualityTest (Properties ctx, ResultSet rs, String trxName) + { + super (ctx, rs, trxName); + } + + /** AccessLevel + * @return 3 - Client - Org + */ + protected int get_AccessLevel() + { + return accessLevel.intValue(); + } + + /** Load Meta Data */ + protected POInfo initPO (Properties ctx) + { + POInfo poi = POInfo.getPOInfo (ctx, Table_ID, get_TrxName()); + return poi; + } + + public String toString() + { + StringBuffer sb = new StringBuffer ("X_M_Product_QualityTest[") + .append(get_ID()).append("]"); + return sb.toString(); + } + + /** Set Expected Result. + @param ExpectedResult Expected Result */ + public void setExpectedResult (String ExpectedResult) + { + set_Value (COLUMNNAME_ExpectedResult, ExpectedResult); + } + + /** Get Expected Result. + @return Expected Result */ + public String getExpectedResult () + { + return (String)get_Value(COLUMNNAME_ExpectedResult); + } + + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException + { + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) + .getPO(getM_Product_ID(), get_TrxName()); } + + /** Set Product. + @param M_Product_ID + Product, Service, Item + */ + public void setM_Product_ID (int M_Product_ID) + { + if (M_Product_ID < 1) + set_ValueNoCheck (COLUMNNAME_M_Product_ID, null); + else + set_ValueNoCheck (COLUMNNAME_M_Product_ID, Integer.valueOf(M_Product_ID)); + } + + /** Get Product. + @return Product, Service, Item + */ + public int getM_Product_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_M_Product_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + + /** Set Product Quality Test. + @param M_Product_QualityTest_ID Product Quality Test */ + public void setM_Product_QualityTest_ID (int M_Product_QualityTest_ID) + { + if (M_Product_QualityTest_ID < 1) + set_ValueNoCheck (COLUMNNAME_M_Product_QualityTest_ID, null); + else + set_ValueNoCheck (COLUMNNAME_M_Product_QualityTest_ID, Integer.valueOf(M_Product_QualityTest_ID)); + } + + /** Get Product Quality Test. + @return Product Quality Test */ + public int getM_Product_QualityTest_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_M_Product_QualityTest_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + + /** Set M_Product_QualityTest_UU. + @param M_Product_QualityTest_UU M_Product_QualityTest_UU */ + public void setM_Product_QualityTest_UU (String M_Product_QualityTest_UU) + { + set_Value (COLUMNNAME_M_Product_QualityTest_UU, M_Product_QualityTest_UU); + } + + /** Get M_Product_QualityTest_UU. + @return M_Product_QualityTest_UU */ + public String getM_Product_QualityTest_UU () + { + return (String)get_Value(COLUMNNAME_M_Product_QualityTest_UU); + } + + public org.compiere.model.I_M_QualityTest getM_QualityTest() throws RuntimeException + { + return (org.compiere.model.I_M_QualityTest)MTable.get(getCtx(), org.compiere.model.I_M_QualityTest.Table_Name) + .getPO(getM_QualityTest_ID(), get_TrxName()); } + + /** Set Quality Test. + @param M_QualityTest_ID Quality Test */ + public void setM_QualityTest_ID (int M_QualityTest_ID) + { + if (M_QualityTest_ID < 1) + set_ValueNoCheck (COLUMNNAME_M_QualityTest_ID, null); + else + set_ValueNoCheck (COLUMNNAME_M_QualityTest_ID, Integer.valueOf(M_QualityTest_ID)); + } + + /** Get Quality Test. + @return Quality Test */ + public int getM_QualityTest_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_M_QualityTest_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + + /** Get Record ID/ColumnName + @return ID/ColumnName pair + */ + public KeyNamePair getKeyNamePair() + { + return new KeyNamePair(get_ID(), String.valueOf(getM_QualityTest_ID())); + } +} \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_M_Production.java b/org.adempiere.base/src/org/compiere/model/X_M_Production.java index 0592afb7c2..b9e820835d 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_Production.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_Production.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_Production - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_Production extends PO implements I_M_Production, I_Persistent { /** * */ - private static final long serialVersionUID = 20120821L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_Production (Properties ctx, int M_Production_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_M_ProductionLine.java b/org.adempiere.base/src/org/compiere/model/X_M_ProductionLine.java index 37a89464ff..e64fb10efa 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_ProductionLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_ProductionLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_ProductionLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_ProductionLine extends PO implements I_M_ProductionLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20120821L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_ProductionLine (Properties ctx, int M_ProductionLine_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_M_ProductionLineMA.java b/org.adempiere.base/src/org/compiere/model/X_M_ProductionLineMA.java index 6fd20a02b4..28ad4118e3 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_ProductionLineMA.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_ProductionLineMA.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_ProductionLineMA - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_ProductionLineMA extends PO implements I_M_ProductionLineMA, I_Persistent { /** * */ - private static final long serialVersionUID = 20120821L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_ProductionLineMA (Properties ctx, int M_ProductionLineMA_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_M_ProductionPlan.java b/org.adempiere.base/src/org/compiere/model/X_M_ProductionPlan.java index 774e7a70dd..68ae71a96c 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_ProductionPlan.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_ProductionPlan.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_ProductionPlan - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_ProductionPlan extends PO implements I_M_ProductionPlan, I_Persistent { /** * */ - private static final long serialVersionUID = 20120821L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_ProductionPlan (Properties ctx, int M_ProductionPlan_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_M_Promotion.java b/org.adempiere.base/src/org/compiere/model/X_M_Promotion.java index 25d81498c1..0c4ac61a8b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_Promotion.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_Promotion.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_Promotion - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_Promotion extends PO implements I_M_Promotion, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_Promotion (Properties ctx, int M_Promotion_ID, String trxName) @@ -73,9 +73,9 @@ public class X_M_Promotion extends PO implements I_M_Promotion, I_Persistent return sb.toString(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -138,6 +138,20 @@ public class X_M_Promotion extends PO implements I_M_Promotion, I_Persistent return ii.intValue(); } + /** Set M_Promotion_UU. + @param M_Promotion_UU M_Promotion_UU */ + public void setM_Promotion_UU (String M_Promotion_UU) + { + set_Value (COLUMNNAME_M_Promotion_UU, M_Promotion_UU); + } + + /** Get M_Promotion_UU. + @return M_Promotion_UU */ + public String getM_Promotion_UU () + { + return (String)get_Value(COLUMNNAME_M_Promotion_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_M_PromotionDistribution.java b/org.adempiere.base/src/org/compiere/model/X_M_PromotionDistribution.java index 4e606ea7a9..5fd5c6a279 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_PromotionDistribution.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_PromotionDistribution.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for M_PromotionDistribution - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_PromotionDistribution extends PO implements I_M_PromotionDistribution, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_PromotionDistribution (Properties ctx, int M_PromotionDistribution_ID, String trxName) @@ -149,9 +149,23 @@ public class X_M_PromotionDistribution extends PO implements I_M_PromotionDistri return ii.intValue(); } - public I_M_Promotion getM_Promotion() throws RuntimeException + /** Set M_PromotionDistribution_UU. + @param M_PromotionDistribution_UU M_PromotionDistribution_UU */ + public void setM_PromotionDistribution_UU (String M_PromotionDistribution_UU) + { + set_Value (COLUMNNAME_M_PromotionDistribution_UU, M_PromotionDistribution_UU); + } + + /** Get M_PromotionDistribution_UU. + @return M_PromotionDistribution_UU */ + public String getM_PromotionDistribution_UU () + { + return (String)get_Value(COLUMNNAME_M_PromotionDistribution_UU); + } + + public org.compiere.model.I_M_Promotion getM_Promotion() throws RuntimeException { - return (I_M_Promotion)MTable.get(getCtx(), I_M_Promotion.Table_Name) + return (org.compiere.model.I_M_Promotion)MTable.get(getCtx(), org.compiere.model.I_M_Promotion.Table_Name) .getPO(getM_Promotion_ID(), get_TrxName()); } /** Set Promotion. @@ -174,9 +188,9 @@ public class X_M_PromotionDistribution extends PO implements I_M_PromotionDistri return ii.intValue(); } - public I_M_PromotionLine getM_PromotionLine() throws RuntimeException + public org.compiere.model.I_M_PromotionLine getM_PromotionLine() throws RuntimeException { - return (I_M_PromotionLine)MTable.get(getCtx(), I_M_PromotionLine.Table_Name) + return (org.compiere.model.I_M_PromotionLine)MTable.get(getCtx(), org.compiere.model.I_M_PromotionLine.Table_Name) .getPO(getM_PromotionLine_ID(), get_TrxName()); } /** Set Promotion Line. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_PromotionGroup.java b/org.adempiere.base/src/org/compiere/model/X_M_PromotionGroup.java index b484da94e0..6b6d8ab1fe 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_PromotionGroup.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_PromotionGroup.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_PromotionGroup - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_PromotionGroup extends PO implements I_M_PromotionGroup, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_PromotionGroup (Properties ctx, int M_PromotionGroup_ID, String trxName) @@ -108,6 +108,20 @@ public class X_M_PromotionGroup extends PO implements I_M_PromotionGroup, I_Pers return ii.intValue(); } + /** Set M_PromotionGroup_UU. + @param M_PromotionGroup_UU M_PromotionGroup_UU */ + public void setM_PromotionGroup_UU (String M_PromotionGroup_UU) + { + set_Value (COLUMNNAME_M_PromotionGroup_UU, M_PromotionGroup_UU); + } + + /** Get M_PromotionGroup_UU. + @return M_PromotionGroup_UU */ + public String getM_PromotionGroup_UU () + { + return (String)get_Value(COLUMNNAME_M_PromotionGroup_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_M_PromotionGroupLine.java b/org.adempiere.base/src/org/compiere/model/X_M_PromotionGroupLine.java index a90fed23f6..8ab200929c 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_PromotionGroupLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_PromotionGroupLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for M_PromotionGroupLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_PromotionGroupLine extends PO implements I_M_PromotionGroupLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_PromotionGroupLine (Properties ctx, int M_PromotionGroupLine_ID, String trxName) @@ -71,9 +71,9 @@ public class X_M_PromotionGroupLine extends PO implements I_M_PromotionGroupLine return sb.toString(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -99,9 +99,9 @@ public class X_M_PromotionGroupLine extends PO implements I_M_PromotionGroupLine return ii.intValue(); } - public I_M_PromotionGroup getM_PromotionGroup() throws RuntimeException + public org.compiere.model.I_M_PromotionGroup getM_PromotionGroup() throws RuntimeException { - return (I_M_PromotionGroup)MTable.get(getCtx(), I_M_PromotionGroup.Table_Name) + return (org.compiere.model.I_M_PromotionGroup)MTable.get(getCtx(), org.compiere.model.I_M_PromotionGroup.Table_Name) .getPO(getM_PromotionGroup_ID(), get_TrxName()); } /** Set Promotion Group. @@ -143,4 +143,18 @@ public class X_M_PromotionGroupLine extends PO implements I_M_PromotionGroupLine return 0; return ii.intValue(); } + + /** Set M_PromotionGroupLine_UU. + @param M_PromotionGroupLine_UU M_PromotionGroupLine_UU */ + public void setM_PromotionGroupLine_UU (String M_PromotionGroupLine_UU) + { + set_Value (COLUMNNAME_M_PromotionGroupLine_UU, M_PromotionGroupLine_UU); + } + + /** Get M_PromotionGroupLine_UU. + @return M_PromotionGroupLine_UU */ + public String getM_PromotionGroupLine_UU () + { + return (String)get_Value(COLUMNNAME_M_PromotionGroupLine_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_M_PromotionLine.java b/org.adempiere.base/src/org/compiere/model/X_M_PromotionLine.java index 306219cf46..6d1ecf0b86 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_PromotionLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_PromotionLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for M_PromotionLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_PromotionLine extends PO implements I_M_PromotionLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_PromotionLine (Properties ctx, int M_PromotionLine_ID, String trxName) @@ -118,9 +118,9 @@ public class X_M_PromotionLine extends PO implements I_M_PromotionLine, I_Persis return bd; } - public I_M_PromotionGroup getM_PromotionGroup() throws RuntimeException + public org.compiere.model.I_M_PromotionGroup getM_PromotionGroup() throws RuntimeException { - return (I_M_PromotionGroup)MTable.get(getCtx(), I_M_PromotionGroup.Table_Name) + return (org.compiere.model.I_M_PromotionGroup)MTable.get(getCtx(), org.compiere.model.I_M_PromotionGroup.Table_Name) .getPO(getM_PromotionGroup_ID(), get_TrxName()); } /** Set Promotion Group. @@ -143,9 +143,9 @@ public class X_M_PromotionLine extends PO implements I_M_PromotionLine, I_Persis return ii.intValue(); } - public I_M_Promotion getM_Promotion() throws RuntimeException + public org.compiere.model.I_M_Promotion getM_Promotion() throws RuntimeException { - return (I_M_Promotion)MTable.get(getCtx(), I_M_Promotion.Table_Name) + return (org.compiere.model.I_M_Promotion)MTable.get(getCtx(), org.compiere.model.I_M_Promotion.Table_Name) .getPO(getM_Promotion_ID(), get_TrxName()); } /** Set Promotion. @@ -187,4 +187,18 @@ public class X_M_PromotionLine extends PO implements I_M_PromotionLine, I_Persis return 0; return ii.intValue(); } + + /** Set M_PromotionLine_UU. + @param M_PromotionLine_UU M_PromotionLine_UU */ + public void setM_PromotionLine_UU (String M_PromotionLine_UU) + { + set_Value (COLUMNNAME_M_PromotionLine_UU, M_PromotionLine_UU); + } + + /** Get M_PromotionLine_UU. + @return M_PromotionLine_UU */ + public String getM_PromotionLine_UU () + { + return (String)get_Value(COLUMNNAME_M_PromotionLine_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_M_PromotionPreCondition.java b/org.adempiere.base/src/org/compiere/model/X_M_PromotionPreCondition.java index b3122a0f60..006a2e8a62 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_PromotionPreCondition.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_PromotionPreCondition.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.sql.Timestamp; import java.util.Properties; /** Generated Model for M_PromotionPreCondition - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_PromotionPreCondition extends PO implements I_M_PromotionPreCondition, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_PromotionPreCondition (Properties ctx, int M_PromotionPreCondition_ID, String trxName) @@ -74,9 +74,9 @@ public class X_M_PromotionPreCondition extends PO implements I_M_PromotionPreCon return sb.toString(); } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -102,9 +102,9 @@ public class X_M_PromotionPreCondition extends PO implements I_M_PromotionPreCon return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -130,9 +130,9 @@ public class X_M_PromotionPreCondition extends PO implements I_M_PromotionPreCon return ii.intValue(); } - public I_C_BP_Group getC_BP_Group() throws RuntimeException + public org.compiere.model.I_C_BP_Group getC_BP_Group() throws RuntimeException { - return (I_C_BP_Group)MTable.get(getCtx(), I_C_BP_Group.Table_Name) + return (org.compiere.model.I_C_BP_Group)MTable.get(getCtx(), org.compiere.model.I_C_BP_Group.Table_Name) .getPO(getC_BP_Group_ID(), get_TrxName()); } /** Set Business Partner Group. @@ -175,9 +175,9 @@ public class X_M_PromotionPreCondition extends PO implements I_M_PromotionPreCon return (Timestamp)get_Value(COLUMNNAME_EndDate); } - public I_M_PriceList getM_PriceList() throws RuntimeException + public org.compiere.model.I_M_PriceList getM_PriceList() throws RuntimeException { - return (I_M_PriceList)MTable.get(getCtx(), I_M_PriceList.Table_Name) + return (org.compiere.model.I_M_PriceList)MTable.get(getCtx(), org.compiere.model.I_M_PriceList.Table_Name) .getPO(getM_PriceList_ID(), get_TrxName()); } /** Set Price List. @@ -203,9 +203,9 @@ public class X_M_PromotionPreCondition extends PO implements I_M_PromotionPreCon return ii.intValue(); } - public I_M_Promotion getM_Promotion() throws RuntimeException + public org.compiere.model.I_M_Promotion getM_Promotion() throws RuntimeException { - return (I_M_Promotion)MTable.get(getCtx(), I_M_Promotion.Table_Name) + return (org.compiere.model.I_M_Promotion)MTable.get(getCtx(), org.compiere.model.I_M_Promotion.Table_Name) .getPO(getM_Promotion_ID(), get_TrxName()); } /** Set Promotion. @@ -248,9 +248,23 @@ public class X_M_PromotionPreCondition extends PO implements I_M_PromotionPreCon return ii.intValue(); } - public I_M_Warehouse getM_Warehouse() throws RuntimeException + /** Set M_PromotionPreCondition_UU. + @param M_PromotionPreCondition_UU M_PromotionPreCondition_UU */ + public void setM_PromotionPreCondition_UU (String M_PromotionPreCondition_UU) + { + set_Value (COLUMNNAME_M_PromotionPreCondition_UU, M_PromotionPreCondition_UU); + } + + /** Get M_PromotionPreCondition_UU. + @return M_PromotionPreCondition_UU */ + public String getM_PromotionPreCondition_UU () + { + return (String)get_Value(COLUMNNAME_M_PromotionPreCondition_UU); + } + + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_Warehouse_ID(), get_TrxName()); } /** Set Warehouse. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_PromotionReward.java b/org.adempiere.base/src/org/compiere/model/X_M_PromotionReward.java index 40390fb1a1..efc05907be 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_PromotionReward.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_PromotionReward.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for M_PromotionReward - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_PromotionReward extends PO implements I_M_PromotionReward, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_PromotionReward (Properties ctx, int M_PromotionReward_ID, String trxName) @@ -98,9 +98,9 @@ public class X_M_PromotionReward extends PO implements I_M_PromotionReward, I_Pe return bd; } - public I_C_Charge getC_Charge() throws RuntimeException + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException { - return (I_C_Charge)MTable.get(getCtx(), I_C_Charge.Table_Name) + return (org.compiere.model.I_C_Charge)MTable.get(getCtx(), org.compiere.model.I_C_Charge.Table_Name) .getPO(getC_Charge_ID(), get_TrxName()); } /** Set Charge. @@ -198,9 +198,9 @@ public class X_M_PromotionReward extends PO implements I_M_PromotionReward, I_Pe return false; } - public I_M_PromotionDistribution getM_PromotionDistribution() throws RuntimeException + public org.compiere.model.I_M_PromotionDistribution getM_PromotionDistribution() throws RuntimeException { - return (I_M_PromotionDistribution)MTable.get(getCtx(), I_M_PromotionDistribution.Table_Name) + return (org.compiere.model.I_M_PromotionDistribution)MTable.get(getCtx(), org.compiere.model.I_M_PromotionDistribution.Table_Name) .getPO(getM_PromotionDistribution_ID(), get_TrxName()); } /** Set Promotion Distribution. @@ -223,9 +223,9 @@ public class X_M_PromotionReward extends PO implements I_M_PromotionReward, I_Pe return ii.intValue(); } - public I_M_Promotion getM_Promotion() throws RuntimeException + public org.compiere.model.I_M_Promotion getM_Promotion() throws RuntimeException { - return (I_M_Promotion)MTable.get(getCtx(), I_M_Promotion.Table_Name) + return (org.compiere.model.I_M_Promotion)MTable.get(getCtx(), org.compiere.model.I_M_Promotion.Table_Name) .getPO(getM_Promotion_ID(), get_TrxName()); } /** Set Promotion. @@ -268,9 +268,23 @@ public class X_M_PromotionReward extends PO implements I_M_PromotionReward, I_Pe return ii.intValue(); } - public I_M_PromotionDistribution getM_TargetDistribution() throws RuntimeException + /** Set M_PromotionReward_UU. + @param M_PromotionReward_UU M_PromotionReward_UU */ + public void setM_PromotionReward_UU (String M_PromotionReward_UU) + { + set_Value (COLUMNNAME_M_PromotionReward_UU, M_PromotionReward_UU); + } + + /** Get M_PromotionReward_UU. + @return M_PromotionReward_UU */ + public String getM_PromotionReward_UU () + { + return (String)get_Value(COLUMNNAME_M_PromotionReward_UU); + } + + public org.compiere.model.I_M_PromotionDistribution getM_TargetDistribution() throws RuntimeException { - return (I_M_PromotionDistribution)MTable.get(getCtx(), I_M_PromotionDistribution.Table_Name) + return (org.compiere.model.I_M_PromotionDistribution)MTable.get(getCtx(), org.compiere.model.I_M_PromotionDistribution.Table_Name) .getPO(getM_TargetDistribution_ID(), get_TrxName()); } /** Set Target distribution. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_QualityTest.java b/org.adempiere.base/src/org/compiere/model/X_M_QualityTest.java index f9bf45e0e2..c52db70860 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_QualityTest.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_QualityTest.java @@ -1,152 +1,166 @@ -/****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * - * This program is free software, you can redistribute it and/or modify it * - * under the terms version 2 of the GNU General Public License as published * - * by the Free Software Foundation. This program is distributed in the hope * - * that it will be useful, but WITHOUT ANY WARRANTY, without even the implied * - * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * - * See the GNU General Public License for more details. * - * You should have received a copy of the GNU General Public License along * - * with this program, if not, write to the Free Software Foundation, Inc., * - * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * - * For the text or an alternative of this public license, you may reach us * - * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * - * or via info@compiere.org or http://www.compiere.org/license.html * - *****************************************************************************/ -/** Generated Model - DO NOT CHANGE */ -package org.compiere.model; - -import java.sql.ResultSet; -import java.util.Properties; -import org.compiere.util.KeyNamePair; - -/** Generated Model for M_QualityTest - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ -public class X_M_QualityTest extends PO implements I_M_QualityTest, I_Persistent -{ - - /** - * - */ - private static final long serialVersionUID = 20101207L; - - /** Standard Constructor */ - public X_M_QualityTest (Properties ctx, int M_QualityTest_ID, String trxName) - { - super (ctx, M_QualityTest_ID, trxName); - /** if (M_QualityTest_ID == 0) - { - setM_QualityTest_ID (0); - setName (null); - } */ - } - - /** Load Constructor */ - public X_M_QualityTest (Properties ctx, ResultSet rs, String trxName) - { - super (ctx, rs, trxName); - } - - /** AccessLevel - * @return 3 - Client - Org - */ - protected int get_AccessLevel() - { - return accessLevel.intValue(); - } - - /** Load Meta Data */ - protected POInfo initPO (Properties ctx) - { - POInfo poi = POInfo.getPOInfo (ctx, Table_ID, get_TrxName()); - return poi; - } - - public String toString() - { - StringBuffer sb = new StringBuffer ("X_M_QualityTest[") - .append(get_ID()).append("]"); - return sb.toString(); - } - - /** Set Description. - @param Description - Optional short description of the record - */ - public void setDescription (String Description) - { - set_Value (COLUMNNAME_Description, Description); - } - - /** Get Description. - @return Optional short description of the record - */ - public String getDescription () - { - return (String)get_Value(COLUMNNAME_Description); - } - - /** Set Comment/Help. - @param Help - Comment or Hint - */ - public void setHelp (String Help) - { - set_Value (COLUMNNAME_Help, Help); - } - - /** Get Comment/Help. - @return Comment or Hint - */ - public String getHelp () - { - return (String)get_Value(COLUMNNAME_Help); - } - - /** Set Quality Test. - @param M_QualityTest_ID Quality Test */ - public void setM_QualityTest_ID (int M_QualityTest_ID) - { - if (M_QualityTest_ID < 1) - set_ValueNoCheck (COLUMNNAME_M_QualityTest_ID, null); - else - set_ValueNoCheck (COLUMNNAME_M_QualityTest_ID, Integer.valueOf(M_QualityTest_ID)); - } - - /** Get Quality Test. - @return Quality Test */ - public int getM_QualityTest_ID () - { - Integer ii = (Integer)get_Value(COLUMNNAME_M_QualityTest_ID); - if (ii == null) - return 0; - return ii.intValue(); - } - - /** Set Name. - @param Name - Alphanumeric identifier of the entity - */ - public void setName (String Name) - { - set_Value (COLUMNNAME_Name, Name); - } - - /** Get Name. - @return Alphanumeric identifier of the entity - */ - public String getName () - { - return (String)get_Value(COLUMNNAME_Name); - } - - /** Get Record ID/ColumnName - @return ID/ColumnName pair - */ - public KeyNamePair getKeyNamePair() - { - return new KeyNamePair(get_ID(), getName()); - } +/****************************************************************************** + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * + * This program is free software, you can redistribute it and/or modify it * + * under the terms version 2 of the GNU General Public License as published * + * by the Free Software Foundation. This program is distributed in the hope * + * that it will be useful, but WITHOUT ANY WARRANTY, without even the implied * + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * + * See the GNU General Public License for more details. * + * You should have received a copy of the GNU General Public License along * + * with this program, if not, write to the Free Software Foundation, Inc., * + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * + * For the text or an alternative of this public license, you may reach us * + * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * + * or via info@compiere.org or http://www.compiere.org/license.html * + *****************************************************************************/ +/** Generated Model - DO NOT CHANGE */ +package org.compiere.model; + +import java.sql.ResultSet; +import java.util.Properties; +import org.compiere.util.KeyNamePair; + +/** Generated Model for M_QualityTest + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ +public class X_M_QualityTest extends PO implements I_M_QualityTest, I_Persistent +{ + + /** + * + */ + private static final long serialVersionUID = 20121031L; + + /** Standard Constructor */ + public X_M_QualityTest (Properties ctx, int M_QualityTest_ID, String trxName) + { + super (ctx, M_QualityTest_ID, trxName); + /** if (M_QualityTest_ID == 0) + { + setM_QualityTest_ID (0); + setName (null); + } */ + } + + /** Load Constructor */ + public X_M_QualityTest (Properties ctx, ResultSet rs, String trxName) + { + super (ctx, rs, trxName); + } + + /** AccessLevel + * @return 3 - Client - Org + */ + protected int get_AccessLevel() + { + return accessLevel.intValue(); + } + + /** Load Meta Data */ + protected POInfo initPO (Properties ctx) + { + POInfo poi = POInfo.getPOInfo (ctx, Table_ID, get_TrxName()); + return poi; + } + + public String toString() + { + StringBuffer sb = new StringBuffer ("X_M_QualityTest[") + .append(get_ID()).append("]"); + return sb.toString(); + } + + /** Set Description. + @param Description + Optional short description of the record + */ + public void setDescription (String Description) + { + set_Value (COLUMNNAME_Description, Description); + } + + /** Get Description. + @return Optional short description of the record + */ + public String getDescription () + { + return (String)get_Value(COLUMNNAME_Description); + } + + /** Set Comment/Help. + @param Help + Comment or Hint + */ + public void setHelp (String Help) + { + set_Value (COLUMNNAME_Help, Help); + } + + /** Get Comment/Help. + @return Comment or Hint + */ + public String getHelp () + { + return (String)get_Value(COLUMNNAME_Help); + } + + /** Set Quality Test. + @param M_QualityTest_ID Quality Test */ + public void setM_QualityTest_ID (int M_QualityTest_ID) + { + if (M_QualityTest_ID < 1) + set_ValueNoCheck (COLUMNNAME_M_QualityTest_ID, null); + else + set_ValueNoCheck (COLUMNNAME_M_QualityTest_ID, Integer.valueOf(M_QualityTest_ID)); + } + + /** Get Quality Test. + @return Quality Test */ + public int getM_QualityTest_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_M_QualityTest_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + + /** Set M_QualityTest_UU. + @param M_QualityTest_UU M_QualityTest_UU */ + public void setM_QualityTest_UU (String M_QualityTest_UU) + { + set_Value (COLUMNNAME_M_QualityTest_UU, M_QualityTest_UU); + } + + /** Get M_QualityTest_UU. + @return M_QualityTest_UU */ + public String getM_QualityTest_UU () + { + return (String)get_Value(COLUMNNAME_M_QualityTest_UU); + } + + /** Set Name. + @param Name + Alphanumeric identifier of the entity + */ + public void setName (String Name) + { + set_Value (COLUMNNAME_Name, Name); + } + + /** Get Name. + @return Alphanumeric identifier of the entity + */ + public String getName () + { + return (String)get_Value(COLUMNNAME_Name); + } + + /** Get Record ID/ColumnName + @return ID/ColumnName pair + */ + public KeyNamePair getKeyNamePair() + { + return new KeyNamePair(get_ID(), getName()); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_M_QualityTestResult.java b/org.adempiere.base/src/org/compiere/model/X_M_QualityTestResult.java index f484b7e39f..5c513cb6ca 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_QualityTestResult.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_QualityTestResult.java @@ -1,239 +1,255 @@ -/****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * - * This program is free software, you can redistribute it and/or modify it * - * under the terms version 2 of the GNU General Public License as published * - * by the Free Software Foundation. This program is distributed in the hope * - * that it will be useful, but WITHOUT ANY WARRANTY, without even the implied * - * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * - * See the GNU General Public License for more details. * - * You should have received a copy of the GNU General Public License along * - * with this program, if not, write to the Free Software Foundation, Inc., * - * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * - * For the text or an alternative of this public license, you may reach us * - * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * - * or via info@compiere.org or http://www.compiere.org/license.html * - *****************************************************************************/ -/** Generated Model - DO NOT CHANGE */ -package org.compiere.model; - -import java.sql.ResultSet; -import java.util.Properties; - -/** Generated Model for M_QualityTestResult - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ -public class X_M_QualityTestResult extends PO implements I_M_QualityTestResult, I_Persistent -{ - - /** - * - */ - private static final long serialVersionUID = 20101207L; - - /** Standard Constructor */ - public X_M_QualityTestResult (Properties ctx, int M_QualityTestResult_ID, String trxName) - { - super (ctx, M_QualityTestResult_ID, trxName); - /** if (M_QualityTestResult_ID == 0) - { - setM_AttributeSetInstance_ID (0); - setM_QualityTest_ID (0); - setM_QualityTestResult_ID (0); - setProcessed (false); -// N - } */ - } - - /** Load Constructor */ - public X_M_QualityTestResult (Properties ctx, ResultSet rs, String trxName) - { - super (ctx, rs, trxName); - } - - /** AccessLevel - * @return 3 - Client - Org - */ - protected int get_AccessLevel() - { - return accessLevel.intValue(); - } - - /** Load Meta Data */ - protected POInfo initPO (Properties ctx) - { - POInfo poi = POInfo.getPOInfo (ctx, Table_ID, get_TrxName()); - return poi; - } - - public String toString() - { - StringBuffer sb = new StringBuffer ("X_M_QualityTestResult[") - .append(get_ID()).append("]"); - return sb.toString(); - } - - /** Set Description. - @param Description - Optional short description of the record - */ - public void setDescription (String Description) - { - throw new IllegalArgumentException ("Description is virtual column"); } - - /** Get Description. - @return Optional short description of the record - */ - public String getDescription () - { - return (String)get_Value(COLUMNNAME_Description); - } - - /** Set Expected Result. - @param ExpectedResult Expected Result */ - public void setExpectedResult (String ExpectedResult) - { - throw new IllegalArgumentException ("ExpectedResult is virtual column"); } - - /** Get Expected Result. - @return Expected Result */ - public String getExpectedResult () - { - return (String)get_Value(COLUMNNAME_ExpectedResult); - } - - /** Set QC Pass. - @param IsQCPass QC Pass */ - public void setIsQCPass (boolean IsQCPass) - { - set_Value (COLUMNNAME_IsQCPass, Boolean.valueOf(IsQCPass)); - } - - /** Get QC Pass. - @return QC Pass */ - public boolean isQCPass () - { - Object oo = get_Value(COLUMNNAME_IsQCPass); - if (oo != null) - { - if (oo instanceof Boolean) - return ((Boolean)oo).booleanValue(); - return "Y".equals(oo); - } - return false; - } - - public I_M_AttributeSetInstance getM_AttributeSetInstance() throws RuntimeException - { - return (I_M_AttributeSetInstance)MTable.get(getCtx(), I_M_AttributeSetInstance.Table_Name) - .getPO(getM_AttributeSetInstance_ID(), get_TrxName()); } - - /** Set Attribute Set Instance. - @param M_AttributeSetInstance_ID - Product Attribute Set Instance - */ - public void setM_AttributeSetInstance_ID (int M_AttributeSetInstance_ID) - { - if (M_AttributeSetInstance_ID < 0) - set_ValueNoCheck (COLUMNNAME_M_AttributeSetInstance_ID, null); - else - set_ValueNoCheck (COLUMNNAME_M_AttributeSetInstance_ID, Integer.valueOf(M_AttributeSetInstance_ID)); - } - - /** Get Attribute Set Instance. - @return Product Attribute Set Instance - */ - public int getM_AttributeSetInstance_ID () - { - Integer ii = (Integer)get_Value(COLUMNNAME_M_AttributeSetInstance_ID); - if (ii == null) - return 0; - return ii.intValue(); - } - - public I_M_QualityTest getM_QualityTest() throws RuntimeException - { - return (I_M_QualityTest)MTable.get(getCtx(), I_M_QualityTest.Table_Name) - .getPO(getM_QualityTest_ID(), get_TrxName()); } - - /** Set Quality Test. - @param M_QualityTest_ID Quality Test */ - public void setM_QualityTest_ID (int M_QualityTest_ID) - { - if (M_QualityTest_ID < 1) - set_ValueNoCheck (COLUMNNAME_M_QualityTest_ID, null); - else - set_ValueNoCheck (COLUMNNAME_M_QualityTest_ID, Integer.valueOf(M_QualityTest_ID)); - } - - /** Get Quality Test. - @return Quality Test */ - public int getM_QualityTest_ID () - { - Integer ii = (Integer)get_Value(COLUMNNAME_M_QualityTest_ID); - if (ii == null) - return 0; - return ii.intValue(); - } - - /** Set Quality Test Result. - @param M_QualityTestResult_ID Quality Test Result */ - public void setM_QualityTestResult_ID (int M_QualityTestResult_ID) - { - if (M_QualityTestResult_ID < 1) - set_ValueNoCheck (COLUMNNAME_M_QualityTestResult_ID, null); - else - set_ValueNoCheck (COLUMNNAME_M_QualityTestResult_ID, Integer.valueOf(M_QualityTestResult_ID)); - } - - /** Get Quality Test Result. - @return Quality Test Result */ - public int getM_QualityTestResult_ID () - { - Integer ii = (Integer)get_Value(COLUMNNAME_M_QualityTestResult_ID); - if (ii == null) - return 0; - return ii.intValue(); - } - - /** Set Processed. - @param Processed - The document has been processed - */ - public void setProcessed (boolean Processed) - { - set_Value (COLUMNNAME_Processed, Boolean.valueOf(Processed)); - } - - /** Get Processed. - @return The document has been processed - */ - public boolean isProcessed () - { - Object oo = get_Value(COLUMNNAME_Processed); - if (oo != null) - { - if (oo instanceof Boolean) - return ((Boolean)oo).booleanValue(); - return "Y".equals(oo); - } - return false; - } - - /** Set Result. - @param Result - Result of the action taken - */ - public void setResult (String Result) - { - set_Value (COLUMNNAME_Result, Result); - } - - /** Get Result. - @return Result of the action taken - */ - public String getResult () - { - return (String)get_Value(COLUMNNAME_Result); - } +/****************************************************************************** + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * + * This program is free software, you can redistribute it and/or modify it * + * under the terms version 2 of the GNU General Public License as published * + * by the Free Software Foundation. This program is distributed in the hope * + * that it will be useful, but WITHOUT ANY WARRANTY, without even the implied * + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * + * See the GNU General Public License for more details. * + * You should have received a copy of the GNU General Public License along * + * with this program, if not, write to the Free Software Foundation, Inc., * + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * + * For the text or an alternative of this public license, you may reach us * + * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * + * or via info@compiere.org or http://www.compiere.org/license.html * + *****************************************************************************/ +/** Generated Model - DO NOT CHANGE */ +package org.compiere.model; + +import java.sql.ResultSet; +import java.util.Properties; + +/** Generated Model for M_QualityTestResult + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ +public class X_M_QualityTestResult extends PO implements I_M_QualityTestResult, I_Persistent +{ + + /** + * + */ + private static final long serialVersionUID = 20121031L; + + /** Standard Constructor */ + public X_M_QualityTestResult (Properties ctx, int M_QualityTestResult_ID, String trxName) + { + super (ctx, M_QualityTestResult_ID, trxName); + /** if (M_QualityTestResult_ID == 0) + { + setIsQCPass (false); +// N + setM_AttributeSetInstance_ID (0); + setM_QualityTest_ID (0); + setM_QualityTestResult_ID (0); + setProcessed (false); +// N + } */ + } + + /** Load Constructor */ + public X_M_QualityTestResult (Properties ctx, ResultSet rs, String trxName) + { + super (ctx, rs, trxName); + } + + /** AccessLevel + * @return 3 - Client - Org + */ + protected int get_AccessLevel() + { + return accessLevel.intValue(); + } + + /** Load Meta Data */ + protected POInfo initPO (Properties ctx) + { + POInfo poi = POInfo.getPOInfo (ctx, Table_ID, get_TrxName()); + return poi; + } + + public String toString() + { + StringBuffer sb = new StringBuffer ("X_M_QualityTestResult[") + .append(get_ID()).append("]"); + return sb.toString(); + } + + /** Set Description. + @param Description + Optional short description of the record + */ + public void setDescription (String Description) + { + throw new IllegalArgumentException ("Description is virtual column"); } + + /** Get Description. + @return Optional short description of the record + */ + public String getDescription () + { + return (String)get_Value(COLUMNNAME_Description); + } + + /** Set Expected Result. + @param ExpectedResult Expected Result */ + public void setExpectedResult (String ExpectedResult) + { + throw new IllegalArgumentException ("ExpectedResult is virtual column"); } + + /** Get Expected Result. + @return Expected Result */ + public String getExpectedResult () + { + return (String)get_Value(COLUMNNAME_ExpectedResult); + } + + /** Set QC Pass. + @param IsQCPass QC Pass */ + public void setIsQCPass (boolean IsQCPass) + { + set_Value (COLUMNNAME_IsQCPass, Boolean.valueOf(IsQCPass)); + } + + /** Get QC Pass. + @return QC Pass */ + public boolean isQCPass () + { + Object oo = get_Value(COLUMNNAME_IsQCPass); + if (oo != null) + { + if (oo instanceof Boolean) + return ((Boolean)oo).booleanValue(); + return "Y".equals(oo); + } + return false; + } + + public I_M_AttributeSetInstance getM_AttributeSetInstance() throws RuntimeException + { + return (I_M_AttributeSetInstance)MTable.get(getCtx(), I_M_AttributeSetInstance.Table_Name) + .getPO(getM_AttributeSetInstance_ID(), get_TrxName()); } + + /** Set Attribute Set Instance. + @param M_AttributeSetInstance_ID + Product Attribute Set Instance + */ + public void setM_AttributeSetInstance_ID (int M_AttributeSetInstance_ID) + { + if (M_AttributeSetInstance_ID < 0) + set_ValueNoCheck (COLUMNNAME_M_AttributeSetInstance_ID, null); + else + set_ValueNoCheck (COLUMNNAME_M_AttributeSetInstance_ID, Integer.valueOf(M_AttributeSetInstance_ID)); + } + + /** Get Attribute Set Instance. + @return Product Attribute Set Instance + */ + public int getM_AttributeSetInstance_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_M_AttributeSetInstance_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + + public org.compiere.model.I_M_QualityTest getM_QualityTest() throws RuntimeException + { + return (org.compiere.model.I_M_QualityTest)MTable.get(getCtx(), org.compiere.model.I_M_QualityTest.Table_Name) + .getPO(getM_QualityTest_ID(), get_TrxName()); } + + /** Set Quality Test. + @param M_QualityTest_ID Quality Test */ + public void setM_QualityTest_ID (int M_QualityTest_ID) + { + if (M_QualityTest_ID < 1) + set_ValueNoCheck (COLUMNNAME_M_QualityTest_ID, null); + else + set_ValueNoCheck (COLUMNNAME_M_QualityTest_ID, Integer.valueOf(M_QualityTest_ID)); + } + + /** Get Quality Test. + @return Quality Test */ + public int getM_QualityTest_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_M_QualityTest_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + + /** Set Quality Test Result. + @param M_QualityTestResult_ID Quality Test Result */ + public void setM_QualityTestResult_ID (int M_QualityTestResult_ID) + { + if (M_QualityTestResult_ID < 1) + set_ValueNoCheck (COLUMNNAME_M_QualityTestResult_ID, null); + else + set_ValueNoCheck (COLUMNNAME_M_QualityTestResult_ID, Integer.valueOf(M_QualityTestResult_ID)); + } + + /** Get Quality Test Result. + @return Quality Test Result */ + public int getM_QualityTestResult_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_M_QualityTestResult_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + + /** Set M_QualityTestResult_UU. + @param M_QualityTestResult_UU M_QualityTestResult_UU */ + public void setM_QualityTestResult_UU (String M_QualityTestResult_UU) + { + set_Value (COLUMNNAME_M_QualityTestResult_UU, M_QualityTestResult_UU); + } + + /** Get M_QualityTestResult_UU. + @return M_QualityTestResult_UU */ + public String getM_QualityTestResult_UU () + { + return (String)get_Value(COLUMNNAME_M_QualityTestResult_UU); + } + + /** Set Processed. + @param Processed + The document has been processed + */ + public void setProcessed (boolean Processed) + { + set_Value (COLUMNNAME_Processed, Boolean.valueOf(Processed)); + } + + /** Get Processed. + @return The document has been processed + */ + public boolean isProcessed () + { + Object oo = get_Value(COLUMNNAME_Processed); + if (oo != null) + { + if (oo instanceof Boolean) + return ((Boolean)oo).booleanValue(); + return "Y".equals(oo); + } + return false; + } + + /** Set Result. + @param Result + Result of the action taken + */ + public void setResult (String Result) + { + set_Value (COLUMNNAME_Result, Result); + } + + /** Get Result. + @return Result of the action taken + */ + public String getResult () + { + return (String)get_Value(COLUMNNAME_Result); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_M_RMA.java b/org.adempiere.base/src/org/compiere/model/X_M_RMA.java index fa35fc6a6f..f9f2d14ebd 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_RMA.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_RMA.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_RMA - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_RMA extends PO implements I_M_RMA, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_RMA (Properties ctx, int M_RMA_ID, String trxName) @@ -106,9 +106,9 @@ public class X_M_RMA extends PO implements I_M_RMA, I_Persistent return bd; } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -134,9 +134,9 @@ public class X_M_RMA extends PO implements I_M_RMA, I_Persistent return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -162,9 +162,9 @@ public class X_M_RMA extends PO implements I_M_RMA, I_Persistent return ii.intValue(); } - public I_C_DocType getC_DocType() throws RuntimeException + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocType_ID(), get_TrxName()); } /** Set Document Type. @@ -190,9 +190,9 @@ public class X_M_RMA extends PO implements I_M_RMA, I_Persistent return ii.intValue(); } - public I_C_Order getC_Order() throws RuntimeException + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException { - return (I_C_Order)MTable.get(getCtx(), I_C_Order.Table_Name) + return (org.compiere.model.I_C_Order)MTable.get(getCtx(), org.compiere.model.I_C_Order.Table_Name) .getPO(getC_Order_ID(), get_TrxName()); } /** Set Order. @@ -386,9 +386,9 @@ public class X_M_RMA extends PO implements I_M_RMA, I_Persistent return (String)get_Value(COLUMNNAME_Help); } - public I_M_InOut getInOut() throws RuntimeException + public org.compiere.model.I_M_InOut getInOut() throws RuntimeException { - return (I_M_InOut)MTable.get(getCtx(), I_M_InOut.Table_Name) + return (org.compiere.model.I_M_InOut)MTable.get(getCtx(), org.compiere.model.I_M_InOut.Table_Name) .getPO(getInOut_ID(), get_TrxName()); } /** Set Shipment/Receipt. @@ -485,9 +485,9 @@ public class X_M_RMA extends PO implements I_M_RMA, I_Persistent return ii.intValue(); } - public I_M_RMAType getM_RMAType() throws RuntimeException + public org.compiere.model.I_M_RMAType getM_RMAType() throws RuntimeException { - return (I_M_RMAType)MTable.get(getCtx(), I_M_RMAType.Table_Name) + return (org.compiere.model.I_M_RMAType)MTable.get(getCtx(), org.compiere.model.I_M_RMAType.Table_Name) .getPO(getM_RMAType_ID(), get_TrxName()); } /** Set RMA Type. @@ -513,6 +513,20 @@ public class X_M_RMA extends PO implements I_M_RMA, I_Persistent return ii.intValue(); } + /** Set M_RMA_UU. + @param M_RMA_UU M_RMA_UU */ + public void setM_RMA_UU (String M_RMA_UU) + { + set_Value (COLUMNNAME_M_RMA_UU, M_RMA_UU); + } + + /** Get M_RMA_UU. + @return M_RMA_UU */ + public String getM_RMA_UU () + { + return (String)get_Value(COLUMNNAME_M_RMA_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity @@ -575,9 +589,9 @@ public class X_M_RMA extends PO implements I_M_RMA, I_Persistent return false; } - public I_M_RMA getRef_RMA() throws RuntimeException + public org.compiere.model.I_M_RMA getRef_RMA() throws RuntimeException { - return (I_M_RMA)MTable.get(getCtx(), I_M_RMA.Table_Name) + return (org.compiere.model.I_M_RMA)MTable.get(getCtx(), org.compiere.model.I_M_RMA.Table_Name) .getPO(getRef_RMA_ID(), get_TrxName()); } /** Set Referenced RMA. @@ -600,9 +614,9 @@ public class X_M_RMA extends PO implements I_M_RMA, I_Persistent return ii.intValue(); } - public I_AD_User getSalesRep() throws RuntimeException + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getSalesRep_ID(), get_TrxName()); } /** Set Sales Representative. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_RMALine.java b/org.adempiere.base/src/org/compiere/model/X_M_RMALine.java index f67ab329b0..d37ab61484 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_RMALine.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_RMALine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_RMALine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_RMALine extends PO implements I_M_RMALine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_RMALine (Properties ctx, int M_RMALine_ID, String trxName) @@ -95,9 +95,9 @@ public class X_M_RMALine extends PO implements I_M_RMALine, I_Persistent return bd; } - public I_C_Charge getC_Charge() throws RuntimeException + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException { - return (I_C_Charge)MTable.get(getCtx(), I_C_Charge.Table_Name) + return (org.compiere.model.I_C_Charge)MTable.get(getCtx(), org.compiere.model.I_C_Charge.Table_Name) .getPO(getC_Charge_ID(), get_TrxName()); } /** Set Charge. @@ -180,9 +180,9 @@ public class X_M_RMALine extends PO implements I_M_RMALine, I_Persistent return bd; } - public I_M_InOutLine getM_InOutLine() throws RuntimeException + public org.compiere.model.I_M_InOutLine getM_InOutLine() throws RuntimeException { - return (I_M_InOutLine)MTable.get(getCtx(), I_M_InOutLine.Table_Name) + return (org.compiere.model.I_M_InOutLine)MTable.get(getCtx(), org.compiere.model.I_M_InOutLine.Table_Name) .getPO(getM_InOutLine_ID(), get_TrxName()); } /** Set Shipment/Receipt Line. @@ -208,9 +208,9 @@ public class X_M_RMALine extends PO implements I_M_RMALine, I_Persistent return ii.intValue(); } - public I_M_RMA getM_RMA() throws RuntimeException + public org.compiere.model.I_M_RMA getM_RMA() throws RuntimeException { - return (I_M_RMA)MTable.get(getCtx(), I_M_RMA.Table_Name) + return (org.compiere.model.I_M_RMA)MTable.get(getCtx(), org.compiere.model.I_M_RMA.Table_Name) .getPO(getM_RMA_ID(), get_TrxName()); } /** Set RMA. @@ -267,6 +267,20 @@ public class X_M_RMALine extends PO implements I_M_RMALine, I_Persistent return ii.intValue(); } + /** Set M_RMALine_UU. + @param M_RMALine_UU M_RMALine_UU */ + public void setM_RMALine_UU (String M_RMALine_UU) + { + set_Value (COLUMNNAME_M_RMALine_UU, M_RMALine_UU); + } + + /** Get M_RMALine_UU. + @return M_RMALine_UU */ + public String getM_RMALine_UU () + { + return (String)get_Value(COLUMNNAME_M_RMALine_UU); + } + /** Set Processed. @param Processed The document has been processed @@ -351,9 +365,9 @@ public class X_M_RMALine extends PO implements I_M_RMALine, I_Persistent return bd; } - public I_M_RMALine getRef_RMALine() throws RuntimeException + public org.compiere.model.I_M_RMALine getRef_RMALine() throws RuntimeException { - return (I_M_RMALine)MTable.get(getCtx(), I_M_RMALine.Table_Name) + return (org.compiere.model.I_M_RMALine)MTable.get(getCtx(), org.compiere.model.I_M_RMALine.Table_Name) .getPO(getRef_RMALine_ID(), get_TrxName()); } /** Set Referenced RMA Line. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_RMAType.java b/org.adempiere.base/src/org/compiere/model/X_M_RMAType.java index d65de7d1d0..09562c1a66 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_RMAType.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_RMAType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_RMAType - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_RMAType extends PO implements I_M_RMAType, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_RMAType (Properties ctx, int M_RMAType_ID, String trxName) @@ -128,6 +128,20 @@ public class X_M_RMAType extends PO implements I_M_RMAType, I_Persistent return ii.intValue(); } + /** Set M_RMAType_UU. + @param M_RMAType_UU M_RMAType_UU */ + public void setM_RMAType_UU (String M_RMAType_UU) + { + set_Value (COLUMNNAME_M_RMAType_UU, M_RMAType_UU); + } + + /** Get M_RMAType_UU. + @return M_RMAType_UU */ + public String getM_RMAType_UU () + { + return (String)get_Value(COLUMNNAME_M_RMAType_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_M_RelatedProduct.java b/org.adempiere.base/src/org/compiere/model/X_M_RelatedProduct.java index 0eefa881a2..ac631cc07a 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_RelatedProduct.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_RelatedProduct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for M_RelatedProduct - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_RelatedProduct extends PO implements I_M_RelatedProduct, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_RelatedProduct (Properties ctx, int M_RelatedProduct_ID, String trxName) @@ -89,9 +89,9 @@ public class X_M_RelatedProduct extends PO implements I_M_RelatedProduct, I_Pers return (String)get_Value(COLUMNNAME_Description); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -117,6 +117,20 @@ public class X_M_RelatedProduct extends PO implements I_M_RelatedProduct, I_Pers return ii.intValue(); } + /** Set M_RelatedProduct_UU. + @param M_RelatedProduct_UU M_RelatedProduct_UU */ + public void setM_RelatedProduct_UU (String M_RelatedProduct_UU) + { + set_Value (COLUMNNAME_M_RelatedProduct_UU, M_RelatedProduct_UU); + } + + /** Get M_RelatedProduct_UU. + @return M_RelatedProduct_UU */ + public String getM_RelatedProduct_UU () + { + return (String)get_Value(COLUMNNAME_M_RelatedProduct_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity @@ -134,9 +148,9 @@ public class X_M_RelatedProduct extends PO implements I_M_RelatedProduct, I_Pers return (String)get_Value(COLUMNNAME_Name); } - public I_M_Product getRelatedProduct() throws RuntimeException + public org.compiere.model.I_M_Product getRelatedProduct() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getRelatedProduct_ID(), get_TrxName()); } /** Set Related Product. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_Replenish.java b/org.adempiere.base/src/org/compiere/model/X_M_Replenish.java index 4f9b4d41b6..8271f0a111 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_Replenish.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_Replenish.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for M_Replenish - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_Replenish extends PO implements I_M_Replenish, I_Persistent { /** * */ - private static final long serialVersionUID = 20120821L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_Replenish (Properties ctx, int M_Replenish_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_M_Requisition.java b/org.adempiere.base/src/org/compiere/model/X_M_Requisition.java index eb69734d6e..3c54a6258e 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_Requisition.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_Requisition.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_Requisition - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_Requisition extends PO implements I_M_Requisition, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_Requisition (Properties ctx, int M_Requisition_ID, String trxName) @@ -91,9 +91,9 @@ public class X_M_Requisition extends PO implements I_M_Requisition, I_Persistent return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -119,9 +119,9 @@ public class X_M_Requisition extends PO implements I_M_Requisition, I_Persistent return ii.intValue(); } - public I_C_DocType getC_DocType() throws RuntimeException + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocType_ID(), get_TrxName()); } /** Set Document Type. @@ -356,9 +356,9 @@ public class X_M_Requisition extends PO implements I_M_Requisition, I_Persistent return false; } - public I_M_PriceList getM_PriceList() throws RuntimeException + public org.compiere.model.I_M_PriceList getM_PriceList() throws RuntimeException { - return (I_M_PriceList)MTable.get(getCtx(), I_M_PriceList.Table_Name) + return (org.compiere.model.I_M_PriceList)MTable.get(getCtx(), org.compiere.model.I_M_PriceList.Table_Name) .getPO(getM_PriceList_ID(), get_TrxName()); } /** Set Price List. @@ -407,9 +407,23 @@ public class X_M_Requisition extends PO implements I_M_Requisition, I_Persistent return ii.intValue(); } - public I_M_Warehouse getM_Warehouse() throws RuntimeException + /** Set M_Requisition_UU. + @param M_Requisition_UU M_Requisition_UU */ + public void setM_Requisition_UU (String M_Requisition_UU) + { + set_Value (COLUMNNAME_M_Requisition_UU, M_Requisition_UU); + } + + /** Get M_Requisition_UU. + @return M_Requisition_UU */ + public String getM_Requisition_UU () + { + return (String)get_Value(COLUMNNAME_M_Requisition_UU); + } + + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_Warehouse_ID(), get_TrxName()); } /** Set Warehouse. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_RequisitionLine.java b/org.adempiere.base/src/org/compiere/model/X_M_RequisitionLine.java index 8fadeb010b..f09522b0e5 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_RequisitionLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_RequisitionLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_RequisitionLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_RequisitionLine extends PO implements I_M_RequisitionLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_RequisitionLine (Properties ctx, int M_RequisitionLine_ID, String trxName) @@ -79,9 +79,9 @@ public class X_M_RequisitionLine extends PO implements I_M_RequisitionLine, I_Pe return sb.toString(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -107,9 +107,9 @@ public class X_M_RequisitionLine extends PO implements I_M_RequisitionLine, I_Pe return ii.intValue(); } - public I_C_Charge getC_Charge() throws RuntimeException + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException { - return (I_C_Charge)MTable.get(getCtx(), I_C_Charge.Table_Name) + return (org.compiere.model.I_C_Charge)MTable.get(getCtx(), org.compiere.model.I_C_Charge.Table_Name) .getPO(getC_Charge_ID(), get_TrxName()); } /** Set Charge. @@ -135,9 +135,9 @@ public class X_M_RequisitionLine extends PO implements I_M_RequisitionLine, I_Pe return ii.intValue(); } - public I_C_OrderLine getC_OrderLine() throws RuntimeException + public org.compiere.model.I_C_OrderLine getC_OrderLine() throws RuntimeException { - return (I_C_OrderLine)MTable.get(getCtx(), I_C_OrderLine.Table_Name) + return (org.compiere.model.I_C_OrderLine)MTable.get(getCtx(), org.compiere.model.I_C_OrderLine.Table_Name) .getPO(getC_OrderLine_ID(), get_TrxName()); } /** Set Sales Order Line. @@ -163,9 +163,9 @@ public class X_M_RequisitionLine extends PO implements I_M_RequisitionLine, I_Pe return ii.intValue(); } - public I_C_UOM getC_UOM() throws RuntimeException + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_ID(), get_TrxName()); } /** Set UOM. @@ -284,9 +284,9 @@ public class X_M_RequisitionLine extends PO implements I_M_RequisitionLine, I_Pe return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -312,9 +312,9 @@ public class X_M_RequisitionLine extends PO implements I_M_RequisitionLine, I_Pe return ii.intValue(); } - public I_M_Requisition getM_Requisition() throws RuntimeException + public org.compiere.model.I_M_Requisition getM_Requisition() throws RuntimeException { - return (I_M_Requisition)MTable.get(getCtx(), I_M_Requisition.Table_Name) + return (org.compiere.model.I_M_Requisition)MTable.get(getCtx(), org.compiere.model.I_M_Requisition.Table_Name) .getPO(getM_Requisition_ID(), get_TrxName()); } /** Set Requisition. @@ -363,6 +363,20 @@ public class X_M_RequisitionLine extends PO implements I_M_RequisitionLine, I_Pe return ii.intValue(); } + /** Set M_RequisitionLine_UU. + @param M_RequisitionLine_UU M_RequisitionLine_UU */ + public void setM_RequisitionLine_UU (String M_RequisitionLine_UU) + { + set_Value (COLUMNNAME_M_RequisitionLine_UU, M_RequisitionLine_UU); + } + + /** Get M_RequisitionLine_UU. + @return M_RequisitionLine_UU */ + public String getM_RequisitionLine_UU () + { + return (String)get_Value(COLUMNNAME_M_RequisitionLine_UU); + } + /** Set Unit Price. @param PriceActual Actual Price diff --git a/org.adempiere.base/src/org/compiere/model/X_M_SerNoCtl.java b/org.adempiere.base/src/org/compiere/model/X_M_SerNoCtl.java index e5c8f46c7c..029a6b8811 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_SerNoCtl.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_SerNoCtl.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_SerNoCtl - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_SerNoCtl extends PO implements I_M_SerNoCtl, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_SerNoCtl (Properties ctx, int M_SerNoCtl_ID, String trxName) @@ -157,6 +157,20 @@ public class X_M_SerNoCtl extends PO implements I_M_SerNoCtl, I_Persistent return ii.intValue(); } + /** Set M_SerNoCtl_UU. + @param M_SerNoCtl_UU M_SerNoCtl_UU */ + public void setM_SerNoCtl_UU (String M_SerNoCtl_UU) + { + set_Value (COLUMNNAME_M_SerNoCtl_UU, M_SerNoCtl_UU); + } + + /** Get M_SerNoCtl_UU. + @return M_SerNoCtl_UU */ + public String getM_SerNoCtl_UU () + { + return (String)get_Value(COLUMNNAME_M_SerNoCtl_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_M_SerNoCtlExclude.java b/org.adempiere.base/src/org/compiere/model/X_M_SerNoCtlExclude.java index b0a822f1ba..1808ba254e 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_SerNoCtlExclude.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_SerNoCtlExclude.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for M_SerNoCtlExclude - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_SerNoCtlExclude extends PO implements I_M_SerNoCtlExclude, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_SerNoCtlExclude (Properties ctx, int M_SerNoCtlExclude_ID, String trxName) @@ -72,9 +72,9 @@ public class X_M_SerNoCtlExclude extends PO implements I_M_SerNoCtlExclude, I_Pe return sb.toString(); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @@ -147,9 +147,23 @@ public class X_M_SerNoCtlExclude extends PO implements I_M_SerNoCtlExclude, I_Pe return ii.intValue(); } - public I_M_SerNoCtl getM_SerNoCtl() throws RuntimeException + /** Set M_SerNoCtlExclude_UU. + @param M_SerNoCtlExclude_UU M_SerNoCtlExclude_UU */ + public void setM_SerNoCtlExclude_UU (String M_SerNoCtlExclude_UU) + { + set_Value (COLUMNNAME_M_SerNoCtlExclude_UU, M_SerNoCtlExclude_UU); + } + + /** Get M_SerNoCtlExclude_UU. + @return M_SerNoCtlExclude_UU */ + public String getM_SerNoCtlExclude_UU () + { + return (String)get_Value(COLUMNNAME_M_SerNoCtlExclude_UU); + } + + public org.compiere.model.I_M_SerNoCtl getM_SerNoCtl() throws RuntimeException { - return (I_M_SerNoCtl)MTable.get(getCtx(), I_M_SerNoCtl.Table_Name) + return (org.compiere.model.I_M_SerNoCtl)MTable.get(getCtx(), org.compiere.model.I_M_SerNoCtl.Table_Name) .getPO(getM_SerNoCtl_ID(), get_TrxName()); } /** Set Serial No Control. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_Shipper.java b/org.adempiere.base/src/org/compiere/model/X_M_Shipper.java index 3f57495125..04f4258ab4 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_Shipper.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_Shipper.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_Shipper - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_Shipper extends PO implements I_M_Shipper, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_Shipper (Properties ctx, int M_Shipper_ID, String trxName) @@ -71,9 +71,9 @@ public class X_M_Shipper extends PO implements I_M_Shipper, I_Persistent return sb.toString(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -139,6 +139,20 @@ public class X_M_Shipper extends PO implements I_M_Shipper, I_Persistent return ii.intValue(); } + /** Set M_Shipper_UU. + @param M_Shipper_UU M_Shipper_UU */ + public void setM_Shipper_UU (String M_Shipper_UU) + { + set_Value (COLUMNNAME_M_Shipper_UU, M_Shipper_UU); + } + + /** Get M_Shipper_UU. + @return M_Shipper_UU */ + public String getM_Shipper_UU () + { + return (String)get_Value(COLUMNNAME_M_Shipper_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_M_Storage.java b/org.adempiere.base/src/org/compiere/model/X_M_Storage.java index 7dfbea1b3d..66dfd5b2fc 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_Storage.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_Storage.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for M_Storage - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_Storage extends PO implements I_M_Storage, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_Storage (Properties ctx, int M_Storage_ID, String trxName) @@ -150,9 +150,9 @@ public class X_M_Storage extends PO implements I_M_Storage, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -178,6 +178,20 @@ public class X_M_Storage extends PO implements I_M_Storage, I_Persistent return ii.intValue(); } + /** Set M_Storage_UU. + @param M_Storage_UU M_Storage_UU */ + public void setM_Storage_UU (String M_Storage_UU) + { + set_Value (COLUMNNAME_M_Storage_UU, M_Storage_UU); + } + + /** Get M_Storage_UU. + @return M_Storage_UU */ + public String getM_Storage_UU () + { + return (String)get_Value(COLUMNNAME_M_Storage_UU); + } + /** Set On Hand Quantity. @param QtyOnHand On Hand Quantity diff --git a/org.adempiere.base/src/org/compiere/model/X_M_Substitute.java b/org.adempiere.base/src/org/compiere/model/X_M_Substitute.java index 00834a9241..7186aa6ce6 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_Substitute.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_Substitute.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_Substitute - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_Substitute extends PO implements I_M_Substitute, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_Substitute (Properties ctx, int M_Substitute_ID, String trxName) @@ -89,9 +89,9 @@ public class X_M_Substitute extends PO implements I_M_Substitute, I_Persistent return (String)get_Value(COLUMNNAME_Description); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -117,6 +117,20 @@ public class X_M_Substitute extends PO implements I_M_Substitute, I_Persistent return ii.intValue(); } + /** Set M_Substitute_UU. + @param M_Substitute_UU M_Substitute_UU */ + public void setM_Substitute_UU (String M_Substitute_UU) + { + set_Value (COLUMNNAME_M_Substitute_UU, M_Substitute_UU); + } + + /** Get M_Substitute_UU. + @return M_Substitute_UU */ + public String getM_Substitute_UU () + { + return (String)get_Value(COLUMNNAME_M_Substitute_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity @@ -142,9 +156,9 @@ public class X_M_Substitute extends PO implements I_M_Substitute, I_Persistent return new KeyNamePair(get_ID(), getName()); } - public I_M_Product getSubstitute() throws RuntimeException + public org.compiere.model.I_M_Product getSubstitute() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getSubstitute_ID(), get_TrxName()); } /** Set Substitute. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_Transaction.java b/org.adempiere.base/src/org/compiere/model/X_M_Transaction.java index cc77094cab..f9443fc7e1 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_Transaction.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_Transaction.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for M_Transaction - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_Transaction extends PO implements I_M_Transaction, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_Transaction (Properties ctx, int M_Transaction_ID, String trxName) @@ -79,9 +79,9 @@ public class X_M_Transaction extends PO implements I_M_Transaction, I_Persistent return sb.toString(); } - public I_C_ProjectIssue getC_ProjectIssue() throws RuntimeException + public org.compiere.model.I_C_ProjectIssue getC_ProjectIssue() throws RuntimeException { - return (I_C_ProjectIssue)MTable.get(getCtx(), I_C_ProjectIssue.Table_Name) + return (org.compiere.model.I_C_ProjectIssue)MTable.get(getCtx(), org.compiere.model.I_C_ProjectIssue.Table_Name) .getPO(getC_ProjectIssue_ID(), get_TrxName()); } /** Set Project Issue. @@ -135,9 +135,9 @@ public class X_M_Transaction extends PO implements I_M_Transaction, I_Persistent return ii.intValue(); } - public I_M_InOutLine getM_InOutLine() throws RuntimeException + public org.compiere.model.I_M_InOutLine getM_InOutLine() throws RuntimeException { - return (I_M_InOutLine)MTable.get(getCtx(), I_M_InOutLine.Table_Name) + return (org.compiere.model.I_M_InOutLine)MTable.get(getCtx(), org.compiere.model.I_M_InOutLine.Table_Name) .getPO(getM_InOutLine_ID(), get_TrxName()); } /** Set Shipment/Receipt Line. @@ -163,9 +163,9 @@ public class X_M_Transaction extends PO implements I_M_Transaction, I_Persistent return ii.intValue(); } - public I_M_InventoryLine getM_InventoryLine() throws RuntimeException + public org.compiere.model.I_M_InventoryLine getM_InventoryLine() throws RuntimeException { - return (I_M_InventoryLine)MTable.get(getCtx(), I_M_InventoryLine.Table_Name) + return (org.compiere.model.I_M_InventoryLine)MTable.get(getCtx(), org.compiere.model.I_M_InventoryLine.Table_Name) .getPO(getM_InventoryLine_ID(), get_TrxName()); } /** Set Phys.Inventory Line. @@ -219,9 +219,9 @@ public class X_M_Transaction extends PO implements I_M_Transaction, I_Persistent return ii.intValue(); } - public I_M_MovementLine getM_MovementLine() throws RuntimeException + public org.compiere.model.I_M_MovementLine getM_MovementLine() throws RuntimeException { - return (I_M_MovementLine)MTable.get(getCtx(), I_M_MovementLine.Table_Name) + return (org.compiere.model.I_M_MovementLine)MTable.get(getCtx(), org.compiere.model.I_M_MovementLine.Table_Name) .getPO(getM_MovementLine_ID(), get_TrxName()); } /** Set Move Line. @@ -336,9 +336,9 @@ public class X_M_Transaction extends PO implements I_M_Transaction, I_Persistent return (String)get_Value(COLUMNNAME_MovementType); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -364,9 +364,9 @@ public class X_M_Transaction extends PO implements I_M_Transaction, I_Persistent return ii.intValue(); } - public I_M_ProductionLine getM_ProductionLine() throws RuntimeException + public org.compiere.model.I_M_ProductionLine getM_ProductionLine() throws RuntimeException { - return (I_M_ProductionLine)MTable.get(getCtx(), I_M_ProductionLine.Table_Name) + return (org.compiere.model.I_M_ProductionLine)MTable.get(getCtx(), org.compiere.model.I_M_ProductionLine.Table_Name) .getPO(getM_ProductionLine_ID(), get_TrxName()); } /** Set Production Line. @@ -412,6 +412,20 @@ public class X_M_Transaction extends PO implements I_M_Transaction, I_Persistent return ii.intValue(); } + /** Set M_Transaction_UU. + @param M_Transaction_UU M_Transaction_UU */ + public void setM_Transaction_UU (String M_Transaction_UU) + { + set_Value (COLUMNNAME_M_Transaction_UU, M_Transaction_UU); + } + + /** Get M_Transaction_UU. + @return M_Transaction_UU */ + public String getM_Transaction_UU () + { + return (String)get_Value(COLUMNNAME_M_Transaction_UU); + } + public org.eevolution.model.I_PP_Cost_Collector getPP_Cost_Collector() throws RuntimeException { return (org.eevolution.model.I_PP_Cost_Collector)MTable.get(getCtx(), org.eevolution.model.I_PP_Cost_Collector.Table_Name) diff --git a/org.adempiere.base/src/org/compiere/model/X_M_TransactionAllocation.java b/org.adempiere.base/src/org/compiere/model/X_M_TransactionAllocation.java index 93b667ac8e..b24db743b2 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_TransactionAllocation.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_TransactionAllocation.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for M_TransactionAllocation - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_TransactionAllocation extends PO implements I_M_TransactionAllocation, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_TransactionAllocation (Properties ctx, int M_TransactionAllocation_ID, String trxName) @@ -179,9 +179,9 @@ public class X_M_TransactionAllocation extends PO implements I_M_TransactionAllo return ii.intValue(); } - public I_M_InOutLine getM_InOutLine() throws RuntimeException + public org.compiere.model.I_M_InOutLine getM_InOutLine() throws RuntimeException { - return (I_M_InOutLine)MTable.get(getCtx(), I_M_InOutLine.Table_Name) + return (org.compiere.model.I_M_InOutLine)MTable.get(getCtx(), org.compiere.model.I_M_InOutLine.Table_Name) .getPO(getM_InOutLine_ID(), get_TrxName()); } /** Set Shipment/Receipt Line. @@ -207,9 +207,9 @@ public class X_M_TransactionAllocation extends PO implements I_M_TransactionAllo return ii.intValue(); } - public I_M_InventoryLine getM_InventoryLine() throws RuntimeException + public org.compiere.model.I_M_InventoryLine getM_InventoryLine() throws RuntimeException { - return (I_M_InventoryLine)MTable.get(getCtx(), I_M_InventoryLine.Table_Name) + return (org.compiere.model.I_M_InventoryLine)MTable.get(getCtx(), org.compiere.model.I_M_InventoryLine.Table_Name) .getPO(getM_InventoryLine_ID(), get_TrxName()); } /** Set Phys.Inventory Line. @@ -235,9 +235,9 @@ public class X_M_TransactionAllocation extends PO implements I_M_TransactionAllo return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -263,9 +263,9 @@ public class X_M_TransactionAllocation extends PO implements I_M_TransactionAllo return ii.intValue(); } - public I_M_ProductionLine getM_ProductionLine() throws RuntimeException + public org.compiere.model.I_M_ProductionLine getM_ProductionLine() throws RuntimeException { - return (I_M_ProductionLine)MTable.get(getCtx(), I_M_ProductionLine.Table_Name) + return (org.compiere.model.I_M_ProductionLine)MTable.get(getCtx(), org.compiere.model.I_M_ProductionLine.Table_Name) .getPO(getM_ProductionLine_ID(), get_TrxName()); } /** Set Production Line. @@ -291,9 +291,23 @@ public class X_M_TransactionAllocation extends PO implements I_M_TransactionAllo return ii.intValue(); } - public I_M_Transaction getM_Transaction() throws RuntimeException + /** Set M_TransactionAllocation_UU. + @param M_TransactionAllocation_UU M_TransactionAllocation_UU */ + public void setM_TransactionAllocation_UU (String M_TransactionAllocation_UU) + { + set_Value (COLUMNNAME_M_TransactionAllocation_UU, M_TransactionAllocation_UU); + } + + /** Get M_TransactionAllocation_UU. + @return M_TransactionAllocation_UU */ + public String getM_TransactionAllocation_UU () + { + return (String)get_Value(COLUMNNAME_M_TransactionAllocation_UU); + } + + public org.compiere.model.I_M_Transaction getM_Transaction() throws RuntimeException { - return (I_M_Transaction)MTable.get(getCtx(), I_M_Transaction.Table_Name) + return (org.compiere.model.I_M_Transaction)MTable.get(getCtx(), org.compiere.model.I_M_Transaction.Table_Name) .getPO(getM_Transaction_ID(), get_TrxName()); } /** Set Inventory Transaction. @@ -316,9 +330,9 @@ public class X_M_TransactionAllocation extends PO implements I_M_TransactionAllo return ii.intValue(); } - public I_M_InOutLine getOut_M_InOutLine() throws RuntimeException + public org.compiere.model.I_M_InOutLine getOut_M_InOutLine() throws RuntimeException { - return (I_M_InOutLine)MTable.get(getCtx(), I_M_InOutLine.Table_Name) + return (org.compiere.model.I_M_InOutLine)MTable.get(getCtx(), org.compiere.model.I_M_InOutLine.Table_Name) .getPO(getOut_M_InOutLine_ID(), get_TrxName()); } /** Set Out Shipment Line. @@ -344,9 +358,9 @@ public class X_M_TransactionAllocation extends PO implements I_M_TransactionAllo return ii.intValue(); } - public I_M_InventoryLine getOut_M_InventoryLine() throws RuntimeException + public org.compiere.model.I_M_InventoryLine getOut_M_InventoryLine() throws RuntimeException { - return (I_M_InventoryLine)MTable.get(getCtx(), I_M_InventoryLine.Table_Name) + return (org.compiere.model.I_M_InventoryLine)MTable.get(getCtx(), org.compiere.model.I_M_InventoryLine.Table_Name) .getPO(getOut_M_InventoryLine_ID(), get_TrxName()); } /** Set Out Inventory Line. @@ -372,9 +386,9 @@ public class X_M_TransactionAllocation extends PO implements I_M_TransactionAllo return ii.intValue(); } - public I_M_ProductionLine getOut_M_ProductionLine() throws RuntimeException + public org.compiere.model.I_M_ProductionLine getOut_M_ProductionLine() throws RuntimeException { - return (I_M_ProductionLine)MTable.get(getCtx(), I_M_ProductionLine.Table_Name) + return (org.compiere.model.I_M_ProductionLine)MTable.get(getCtx(), org.compiere.model.I_M_ProductionLine.Table_Name) .getPO(getOut_M_ProductionLine_ID(), get_TrxName()); } /** Set Out Production Line. @@ -400,9 +414,9 @@ public class X_M_TransactionAllocation extends PO implements I_M_TransactionAllo return ii.intValue(); } - public I_M_Transaction getOut_M_Transaction() throws RuntimeException + public org.compiere.model.I_M_Transaction getOut_M_Transaction() throws RuntimeException { - return (I_M_Transaction)MTable.get(getCtx(), I_M_Transaction.Table_Name) + return (org.compiere.model.I_M_Transaction)MTable.get(getCtx(), org.compiere.model.I_M_Transaction.Table_Name) .getPO(getOut_M_Transaction_ID(), get_TrxName()); } /** Set Out Transaction. diff --git a/org.adempiere.base/src/org/compiere/model/X_M_Warehouse.java b/org.adempiere.base/src/org/compiere/model/X_M_Warehouse.java index a53a83c251..f898e6079b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_Warehouse.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_Warehouse.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for M_Warehouse - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_Warehouse extends PO implements I_M_Warehouse, I_Persistent { /** * */ - private static final long serialVersionUID = 20110325L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_Warehouse (Properties ctx, int M_Warehouse_ID, String trxName) @@ -221,6 +221,20 @@ public class X_M_Warehouse extends PO implements I_M_Warehouse, I_Persistent return ii.intValue(); } + /** Set M_Warehouse_UU. + @param M_Warehouse_UU M_Warehouse_UU */ + public void setM_Warehouse_UU (String M_Warehouse_UU) + { + set_Value (COLUMNNAME_M_Warehouse_UU, M_Warehouse_UU); + } + + /** Get M_Warehouse_UU. + @return M_Warehouse_UU */ + public String getM_Warehouse_UU () + { + return (String)get_Value(COLUMNNAME_M_Warehouse_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/compiere/model/X_M_Warehouse_Acct.java b/org.adempiere.base/src/org/compiere/model/X_M_Warehouse_Acct.java index 13e1e294a6..90d157754c 100644 --- a/org.adempiere.base/src/org/compiere/model/X_M_Warehouse_Acct.java +++ b/org.adempiere.base/src/org/compiere/model/X_M_Warehouse_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for M_Warehouse_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_M_Warehouse_Acct extends PO implements I_M_Warehouse_Acct, I_Persistent { /** * */ - private static final long serialVersionUID = 20120928L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_M_Warehouse_Acct (Properties ctx, int M_Warehouse_Acct_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_PA_Achievement.java b/org.adempiere.base/src/org/compiere/model/X_PA_Achievement.java index 9793929c9b..c80f9efbd5 100644 --- a/org.adempiere.base/src/org/compiere/model/X_PA_Achievement.java +++ b/org.adempiere.base/src/org/compiere/model/X_PA_Achievement.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for PA_Achievement - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PA_Achievement extends PO implements I_PA_Achievement, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PA_Achievement (Properties ctx, int PA_Achievement_ID, String trxName) @@ -221,9 +221,23 @@ public class X_PA_Achievement extends PO implements I_PA_Achievement, I_Persiste return ii.intValue(); } - public I_PA_Measure getPA_Measure() throws RuntimeException + /** Set PA_Achievement_UU. + @param PA_Achievement_UU PA_Achievement_UU */ + public void setPA_Achievement_UU (String PA_Achievement_UU) + { + set_Value (COLUMNNAME_PA_Achievement_UU, PA_Achievement_UU); + } + + /** Get PA_Achievement_UU. + @return PA_Achievement_UU */ + public String getPA_Achievement_UU () + { + return (String)get_Value(COLUMNNAME_PA_Achievement_UU); + } + + public org.compiere.model.I_PA_Measure getPA_Measure() throws RuntimeException { - return (I_PA_Measure)MTable.get(getCtx(), I_PA_Measure.Table_Name) + return (org.compiere.model.I_PA_Measure)MTable.get(getCtx(), org.compiere.model.I_PA_Measure.Table_Name) .getPO(getPA_Measure_ID(), get_TrxName()); } /** Set Measure. diff --git a/org.adempiere.base/src/org/compiere/model/X_PA_Benchmark.java b/org.adempiere.base/src/org/compiere/model/X_PA_Benchmark.java index bb96f6a422..6ea99f0599 100644 --- a/org.adempiere.base/src/org/compiere/model/X_PA_Benchmark.java +++ b/org.adempiere.base/src/org/compiere/model/X_PA_Benchmark.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for PA_Benchmark - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PA_Benchmark extends PO implements I_PA_Benchmark, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PA_Benchmark (Properties ctx, int PA_Benchmark_ID, String trxName) @@ -177,4 +177,18 @@ public class X_PA_Benchmark extends PO implements I_PA_Benchmark, I_Persistent return 0; return ii.intValue(); } + + /** Set PA_Benchmark_UU. + @param PA_Benchmark_UU PA_Benchmark_UU */ + public void setPA_Benchmark_UU (String PA_Benchmark_UU) + { + set_Value (COLUMNNAME_PA_Benchmark_UU, PA_Benchmark_UU); + } + + /** Get PA_Benchmark_UU. + @return PA_Benchmark_UU */ + public String getPA_Benchmark_UU () + { + return (String)get_Value(COLUMNNAME_PA_Benchmark_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_PA_BenchmarkData.java b/org.adempiere.base/src/org/compiere/model/X_PA_BenchmarkData.java index eb4736e058..876142c0a6 100644 --- a/org.adempiere.base/src/org/compiere/model/X_PA_BenchmarkData.java +++ b/org.adempiere.base/src/org/compiere/model/X_PA_BenchmarkData.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for PA_BenchmarkData - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PA_BenchmarkData extends PO implements I_PA_BenchmarkData, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PA_BenchmarkData (Properties ctx, int PA_BenchmarkData_ID, String trxName) @@ -179,9 +179,23 @@ public class X_PA_BenchmarkData extends PO implements I_PA_BenchmarkData, I_Pers return ii.intValue(); } - public I_PA_Benchmark getPA_Benchmark() throws RuntimeException + /** Set PA_BenchmarkData_UU. + @param PA_BenchmarkData_UU PA_BenchmarkData_UU */ + public void setPA_BenchmarkData_UU (String PA_BenchmarkData_UU) + { + set_Value (COLUMNNAME_PA_BenchmarkData_UU, PA_BenchmarkData_UU); + } + + /** Get PA_BenchmarkData_UU. + @return PA_BenchmarkData_UU */ + public String getPA_BenchmarkData_UU () + { + return (String)get_Value(COLUMNNAME_PA_BenchmarkData_UU); + } + + public org.compiere.model.I_PA_Benchmark getPA_Benchmark() throws RuntimeException { - return (I_PA_Benchmark)MTable.get(getCtx(), I_PA_Benchmark.Table_Name) + return (org.compiere.model.I_PA_Benchmark)MTable.get(getCtx(), org.compiere.model.I_PA_Benchmark.Table_Name) .getPO(getPA_Benchmark_ID(), get_TrxName()); } /** Set Benchmark. diff --git a/org.adempiere.base/src/org/compiere/model/X_PA_ColorSchema.java b/org.adempiere.base/src/org/compiere/model/X_PA_ColorSchema.java index dff1f8dc41..cca54937e6 100644 --- a/org.adempiere.base/src/org/compiere/model/X_PA_ColorSchema.java +++ b/org.adempiere.base/src/org/compiere/model/X_PA_ColorSchema.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for PA_ColorSchema - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PA_ColorSchema extends PO implements I_PA_ColorSchema, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PA_ColorSchema (Properties ctx, int PA_ColorSchema_ID, String trxName) @@ -77,9 +77,9 @@ public class X_PA_ColorSchema extends PO implements I_PA_ColorSchema, I_Persiste return sb.toString(); } - public I_AD_PrintColor getAD_PrintColor1() throws RuntimeException + public org.compiere.model.I_AD_PrintColor getAD_PrintColor1() throws RuntimeException { - return (I_AD_PrintColor)MTable.get(getCtx(), I_AD_PrintColor.Table_Name) + return (org.compiere.model.I_AD_PrintColor)MTable.get(getCtx(), org.compiere.model.I_AD_PrintColor.Table_Name) .getPO(getAD_PrintColor1_ID(), get_TrxName()); } /** Set Color 1. @@ -105,9 +105,9 @@ public class X_PA_ColorSchema extends PO implements I_PA_ColorSchema, I_Persiste return ii.intValue(); } - public I_AD_PrintColor getAD_PrintColor2() throws RuntimeException + public org.compiere.model.I_AD_PrintColor getAD_PrintColor2() throws RuntimeException { - return (I_AD_PrintColor)MTable.get(getCtx(), I_AD_PrintColor.Table_Name) + return (org.compiere.model.I_AD_PrintColor)MTable.get(getCtx(), org.compiere.model.I_AD_PrintColor.Table_Name) .getPO(getAD_PrintColor2_ID(), get_TrxName()); } /** Set Color 2. @@ -133,9 +133,9 @@ public class X_PA_ColorSchema extends PO implements I_PA_ColorSchema, I_Persiste return ii.intValue(); } - public I_AD_PrintColor getAD_PrintColor3() throws RuntimeException + public org.compiere.model.I_AD_PrintColor getAD_PrintColor3() throws RuntimeException { - return (I_AD_PrintColor)MTable.get(getCtx(), I_AD_PrintColor.Table_Name) + return (org.compiere.model.I_AD_PrintColor)MTable.get(getCtx(), org.compiere.model.I_AD_PrintColor.Table_Name) .getPO(getAD_PrintColor3_ID(), get_TrxName()); } /** Set Color 3. @@ -161,9 +161,9 @@ public class X_PA_ColorSchema extends PO implements I_PA_ColorSchema, I_Persiste return ii.intValue(); } - public I_AD_PrintColor getAD_PrintColor4() throws RuntimeException + public org.compiere.model.I_AD_PrintColor getAD_PrintColor4() throws RuntimeException { - return (I_AD_PrintColor)MTable.get(getCtx(), I_AD_PrintColor.Table_Name) + return (org.compiere.model.I_AD_PrintColor)MTable.get(getCtx(), org.compiere.model.I_AD_PrintColor.Table_Name) .getPO(getAD_PrintColor4_ID(), get_TrxName()); } /** Set Color 4. @@ -353,4 +353,18 @@ public class X_PA_ColorSchema extends PO implements I_PA_ColorSchema, I_Persiste return 0; return ii.intValue(); } + + /** Set PA_ColorSchema_UU. + @param PA_ColorSchema_UU PA_ColorSchema_UU */ + public void setPA_ColorSchema_UU (String PA_ColorSchema_UU) + { + set_Value (COLUMNNAME_PA_ColorSchema_UU, PA_ColorSchema_UU); + } + + /** Get PA_ColorSchema_UU. + @return PA_ColorSchema_UU */ + public String getPA_ColorSchema_UU () + { + return (String)get_Value(COLUMNNAME_PA_ColorSchema_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_PA_DashboardContent.java b/org.adempiere.base/src/org/compiere/model/X_PA_DashboardContent.java index da6e795ec1..ace66dad5a 100644 --- a/org.adempiere.base/src/org/compiere/model/X_PA_DashboardContent.java +++ b/org.adempiere.base/src/org/compiere/model/X_PA_DashboardContent.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for PA_DashboardContent - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PA_DashboardContent extends PO implements I_PA_DashboardContent, I_Persistent { /** * */ - private static final long serialVersionUID = 20120807L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PA_DashboardContent (Properties ctx, int PA_DashboardContent_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_PA_DashboardPreference.java b/org.adempiere.base/src/org/compiere/model/X_PA_DashboardPreference.java index aaef289604..9ec7519d04 100644 --- a/org.adempiere.base/src/org/compiere/model/X_PA_DashboardPreference.java +++ b/org.adempiere.base/src/org/compiere/model/X_PA_DashboardPreference.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for PA_DashboardPreference - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PA_DashboardPreference extends PO implements I_PA_DashboardPreference, I_Persistent { /** * */ - private static final long serialVersionUID = 20120822L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PA_DashboardPreference (Properties ctx, int PA_DashboardPreference_ID, String trxName) @@ -268,4 +268,18 @@ public class X_PA_DashboardPreference extends PO implements I_PA_DashboardPrefer return 0; return ii.intValue(); } + + /** Set PA_DashboardPreference_UU. + @param PA_DashboardPreference_UU PA_DashboardPreference_UU */ + public void setPA_DashboardPreference_UU (String PA_DashboardPreference_UU) + { + set_Value (COLUMNNAME_PA_DashboardPreference_UU, PA_DashboardPreference_UU); + } + + /** Get PA_DashboardPreference_UU. + @return PA_DashboardPreference_UU */ + public String getPA_DashboardPreference_UU () + { + return (String)get_Value(COLUMNNAME_PA_DashboardPreference_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_PA_Goal.java b/org.adempiere.base/src/org/compiere/model/X_PA_Goal.java index bfc625010c..7ffd839d8c 100644 --- a/org.adempiere.base/src/org/compiere/model/X_PA_Goal.java +++ b/org.adempiere.base/src/org/compiere/model/X_PA_Goal.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for PA_Goal - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PA_Goal extends PO implements I_PA_Goal, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PA_Goal (Properties ctx, int PA_Goal_ID, String trxName) @@ -85,9 +85,9 @@ public class X_PA_Goal extends PO implements I_PA_Goal, I_Persistent return sb.toString(); } - public I_AD_Role getAD_Role() throws RuntimeException + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException { - return (I_AD_Role)MTable.get(getCtx(), I_AD_Role.Table_Name) + return (org.compiere.model.I_AD_Role)MTable.get(getCtx(), org.compiere.model.I_AD_Role.Table_Name) .getPO(getAD_Role_ID(), get_TrxName()); } /** Set Role. @@ -113,9 +113,9 @@ public class X_PA_Goal extends PO implements I_PA_Goal, I_Persistent return ii.intValue(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -431,9 +431,9 @@ public class X_PA_Goal extends PO implements I_PA_Goal, I_Persistent return (String)get_Value(COLUMNNAME_Note); } - public I_PA_ColorSchema getPA_ColorSchema() throws RuntimeException + public org.compiere.model.I_PA_ColorSchema getPA_ColorSchema() throws RuntimeException { - return (I_PA_ColorSchema)MTable.get(getCtx(), I_PA_ColorSchema.Table_Name) + return (org.compiere.model.I_PA_ColorSchema)MTable.get(getCtx(), org.compiere.model.I_PA_ColorSchema.Table_Name) .getPO(getPA_ColorSchema_ID(), get_TrxName()); } /** Set Color Schema. @@ -482,9 +482,9 @@ public class X_PA_Goal extends PO implements I_PA_Goal, I_Persistent return ii.intValue(); } - public I_PA_Goal getPA_GoalParent() throws RuntimeException + public org.compiere.model.I_PA_Goal getPA_GoalParent() throws RuntimeException { - return (I_PA_Goal)MTable.get(getCtx(), I_PA_Goal.Table_Name) + return (org.compiere.model.I_PA_Goal)MTable.get(getCtx(), org.compiere.model.I_PA_Goal.Table_Name) .getPO(getPA_GoalParent_ID(), get_TrxName()); } /** Set Parent Goal. @@ -510,9 +510,23 @@ public class X_PA_Goal extends PO implements I_PA_Goal, I_Persistent return ii.intValue(); } - public I_PA_Measure getPA_Measure() throws RuntimeException + /** Set PA_Goal_UU. + @param PA_Goal_UU PA_Goal_UU */ + public void setPA_Goal_UU (String PA_Goal_UU) + { + set_Value (COLUMNNAME_PA_Goal_UU, PA_Goal_UU); + } + + /** Get PA_Goal_UU. + @return PA_Goal_UU */ + public String getPA_Goal_UU () + { + return (String)get_Value(COLUMNNAME_PA_Goal_UU); + } + + public org.compiere.model.I_PA_Measure getPA_Measure() throws RuntimeException { - return (I_PA_Measure)MTable.get(getCtx(), I_PA_Measure.Table_Name) + return (org.compiere.model.I_PA_Measure)MTable.get(getCtx(), org.compiere.model.I_PA_Measure.Table_Name) .getPO(getPA_Measure_ID(), get_TrxName()); } /** Set Measure. diff --git a/org.adempiere.base/src/org/compiere/model/X_PA_GoalRestriction.java b/org.adempiere.base/src/org/compiere/model/X_PA_GoalRestriction.java index fe40de0563..8526a2e5fb 100644 --- a/org.adempiere.base/src/org/compiere/model/X_PA_GoalRestriction.java +++ b/org.adempiere.base/src/org/compiere/model/X_PA_GoalRestriction.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for PA_GoalRestriction - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PA_GoalRestriction extends PO implements I_PA_GoalRestriction, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PA_GoalRestriction (Properties ctx, int PA_GoalRestriction_ID, String trxName) @@ -73,9 +73,9 @@ public class X_PA_GoalRestriction extends PO implements I_PA_GoalRestriction, I_ return sb.toString(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -101,9 +101,9 @@ public class X_PA_GoalRestriction extends PO implements I_PA_GoalRestriction, I_ return ii.intValue(); } - public I_C_BP_Group getC_BP_Group() throws RuntimeException + public org.compiere.model.I_C_BP_Group getC_BP_Group() throws RuntimeException { - return (I_C_BP_Group)MTable.get(getCtx(), I_C_BP_Group.Table_Name) + return (org.compiere.model.I_C_BP_Group)MTable.get(getCtx(), org.compiere.model.I_C_BP_Group.Table_Name) .getPO(getC_BP_Group_ID(), get_TrxName()); } /** Set Business Partner Group. @@ -159,9 +159,9 @@ public class X_PA_GoalRestriction extends PO implements I_PA_GoalRestriction, I_ return (String)get_Value(COLUMNNAME_GoalRestrictionType); } - public I_M_Product_Category getM_Product_Category() throws RuntimeException + public org.compiere.model.I_M_Product_Category getM_Product_Category() throws RuntimeException { - return (I_M_Product_Category)MTable.get(getCtx(), I_M_Product_Category.Table_Name) + return (org.compiere.model.I_M_Product_Category)MTable.get(getCtx(), org.compiere.model.I_M_Product_Category.Table_Name) .getPO(getM_Product_Category_ID(), get_TrxName()); } /** Set Product Category. @@ -187,9 +187,9 @@ public class X_PA_GoalRestriction extends PO implements I_PA_GoalRestriction, I_ return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -263,9 +263,9 @@ public class X_PA_GoalRestriction extends PO implements I_PA_GoalRestriction, I_ return ii.intValue(); } - public I_PA_Goal getPA_Goal() throws RuntimeException + public org.compiere.model.I_PA_Goal getPA_Goal() throws RuntimeException { - return (I_PA_Goal)MTable.get(getCtx(), I_PA_Goal.Table_Name) + return (org.compiere.model.I_PA_Goal)MTable.get(getCtx(), org.compiere.model.I_PA_Goal.Table_Name) .getPO(getPA_Goal_ID(), get_TrxName()); } /** Set Goal. @@ -313,4 +313,18 @@ public class X_PA_GoalRestriction extends PO implements I_PA_GoalRestriction, I_ return 0; return ii.intValue(); } + + /** Set PA_GoalRestriction_UU. + @param PA_GoalRestriction_UU PA_GoalRestriction_UU */ + public void setPA_GoalRestriction_UU (String PA_GoalRestriction_UU) + { + set_Value (COLUMNNAME_PA_GoalRestriction_UU, PA_GoalRestriction_UU); + } + + /** Get PA_GoalRestriction_UU. + @return PA_GoalRestriction_UU */ + public String getPA_GoalRestriction_UU () + { + return (String)get_Value(COLUMNNAME_PA_GoalRestriction_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_PA_Hierarchy.java b/org.adempiere.base/src/org/compiere/model/X_PA_Hierarchy.java index 691be1fe1f..fdd8cf3843 100644 --- a/org.adempiere.base/src/org/compiere/model/X_PA_Hierarchy.java +++ b/org.adempiere.base/src/org/compiere/model/X_PA_Hierarchy.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for PA_Hierarchy - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PA_Hierarchy extends PO implements I_PA_Hierarchy, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PA_Hierarchy (Properties ctx, int PA_Hierarchy_ID, String trxName) @@ -79,9 +79,9 @@ public class X_PA_Hierarchy extends PO implements I_PA_Hierarchy, I_Persistent return sb.toString(); } - public I_AD_Tree getAD_Tree_Account() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_Tree_Account() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_Account_ID(), get_TrxName()); } /** Set Account Tree. @@ -107,9 +107,9 @@ public class X_PA_Hierarchy extends PO implements I_PA_Hierarchy, I_Persistent return ii.intValue(); } - public I_AD_Tree getAD_Tree_Activity() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_Tree_Activity() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_Activity_ID(), get_TrxName()); } /** Set Activity Tree. @@ -135,9 +135,9 @@ public class X_PA_Hierarchy extends PO implements I_PA_Hierarchy, I_Persistent return ii.intValue(); } - public I_AD_Tree getAD_Tree_BPartner() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_Tree_BPartner() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_BPartner_ID(), get_TrxName()); } /** Set BPartner Tree. @@ -163,9 +163,9 @@ public class X_PA_Hierarchy extends PO implements I_PA_Hierarchy, I_Persistent return ii.intValue(); } - public I_AD_Tree getAD_Tree_Campaign() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_Tree_Campaign() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_Campaign_ID(), get_TrxName()); } /** Set Campaign Tree. @@ -191,9 +191,9 @@ public class X_PA_Hierarchy extends PO implements I_PA_Hierarchy, I_Persistent return ii.intValue(); } - public I_AD_Tree getAD_Tree_Org() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_Tree_Org() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_Org_ID(), get_TrxName()); } /** Set Organization Tree. @@ -219,9 +219,9 @@ public class X_PA_Hierarchy extends PO implements I_PA_Hierarchy, I_Persistent return ii.intValue(); } - public I_AD_Tree getAD_Tree_Product() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_Tree_Product() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_Product_ID(), get_TrxName()); } /** Set Product Tree. @@ -247,9 +247,9 @@ public class X_PA_Hierarchy extends PO implements I_PA_Hierarchy, I_Persistent return ii.intValue(); } - public I_AD_Tree getAD_Tree_Project() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_Tree_Project() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_Project_ID(), get_TrxName()); } /** Set Project Tree. @@ -275,9 +275,9 @@ public class X_PA_Hierarchy extends PO implements I_PA_Hierarchy, I_Persistent return ii.intValue(); } - public I_AD_Tree getAD_Tree_SalesRegion() throws RuntimeException + public org.compiere.model.I_AD_Tree getAD_Tree_SalesRegion() throws RuntimeException { - return (I_AD_Tree)MTable.get(getCtx(), I_AD_Tree.Table_Name) + return (org.compiere.model.I_AD_Tree)MTable.get(getCtx(), org.compiere.model.I_AD_Tree.Table_Name) .getPO(getAD_Tree_SalesRegion_ID(), get_TrxName()); } /** Set Sales Region Tree. @@ -384,4 +384,18 @@ public class X_PA_Hierarchy extends PO implements I_PA_Hierarchy, I_Persistent return 0; return ii.intValue(); } + + /** Set PA_Hierarchy_UU. + @param PA_Hierarchy_UU PA_Hierarchy_UU */ + public void setPA_Hierarchy_UU (String PA_Hierarchy_UU) + { + set_Value (COLUMNNAME_PA_Hierarchy_UU, PA_Hierarchy_UU); + } + + /** Get PA_Hierarchy_UU. + @return PA_Hierarchy_UU */ + public String getPA_Hierarchy_UU () + { + return (String)get_Value(COLUMNNAME_PA_Hierarchy_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_PA_Measure.java b/org.adempiere.base/src/org/compiere/model/X_PA_Measure.java index 6f6cbbb5a0..37920e5916 100644 --- a/org.adempiere.base/src/org/compiere/model/X_PA_Measure.java +++ b/org.adempiere.base/src/org/compiere/model/X_PA_Measure.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for PA_Measure - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PA_Measure extends PO implements I_PA_Measure, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PA_Measure (Properties ctx, int PA_Measure_ID, String trxName) @@ -94,9 +94,9 @@ public class X_PA_Measure extends PO implements I_PA_Measure, I_Persistent return (String)get_Value(COLUMNNAME_CalculationClass); } - public I_C_ProjectType getC_ProjectType() throws RuntimeException + public org.compiere.model.I_C_ProjectType getC_ProjectType() throws RuntimeException { - return (I_C_ProjectType)MTable.get(getCtx(), I_C_ProjectType.Table_Name) + return (org.compiere.model.I_C_ProjectType)MTable.get(getCtx(), org.compiere.model.I_C_ProjectType.Table_Name) .getPO(getC_ProjectType_ID(), get_TrxName()); } /** Set Project Type. @@ -259,9 +259,9 @@ public class X_PA_Measure extends PO implements I_PA_Measure, I_Persistent return new KeyNamePair(get_ID(), getName()); } - public I_PA_Benchmark getPA_Benchmark() throws RuntimeException + public org.compiere.model.I_PA_Benchmark getPA_Benchmark() throws RuntimeException { - return (I_PA_Benchmark)MTable.get(getCtx(), I_PA_Benchmark.Table_Name) + return (org.compiere.model.I_PA_Benchmark)MTable.get(getCtx(), org.compiere.model.I_PA_Benchmark.Table_Name) .getPO(getPA_Benchmark_ID(), get_TrxName()); } /** Set Benchmark. @@ -287,9 +287,9 @@ public class X_PA_Measure extends PO implements I_PA_Measure, I_Persistent return ii.intValue(); } - public I_PA_Hierarchy getPA_Hierarchy() throws RuntimeException + public org.compiere.model.I_PA_Hierarchy getPA_Hierarchy() throws RuntimeException { - return (I_PA_Hierarchy)MTable.get(getCtx(), I_PA_Hierarchy.Table_Name) + return (org.compiere.model.I_PA_Hierarchy)MTable.get(getCtx(), org.compiere.model.I_PA_Hierarchy.Table_Name) .getPO(getPA_Hierarchy_ID(), get_TrxName()); } /** Set Reporting Hierarchy. @@ -315,9 +315,9 @@ public class X_PA_Measure extends PO implements I_PA_Measure, I_Persistent return ii.intValue(); } - public I_PA_MeasureCalc getPA_MeasureCalc() throws RuntimeException + public org.compiere.model.I_PA_MeasureCalc getPA_MeasureCalc() throws RuntimeException { - return (I_PA_MeasureCalc)MTable.get(getCtx(), I_PA_MeasureCalc.Table_Name) + return (org.compiere.model.I_PA_MeasureCalc)MTable.get(getCtx(), org.compiere.model.I_PA_MeasureCalc.Table_Name) .getPO(getPA_MeasureCalc_ID(), get_TrxName()); } /** Set Measure Calculation. @@ -366,9 +366,23 @@ public class X_PA_Measure extends PO implements I_PA_Measure, I_Persistent return ii.intValue(); } - public I_PA_Ratio getPA_Ratio() throws RuntimeException + /** Set PA_Measure_UU. + @param PA_Measure_UU PA_Measure_UU */ + public void setPA_Measure_UU (String PA_Measure_UU) + { + set_Value (COLUMNNAME_PA_Measure_UU, PA_Measure_UU); + } + + /** Get PA_Measure_UU. + @return PA_Measure_UU */ + public String getPA_Measure_UU () + { + return (String)get_Value(COLUMNNAME_PA_Measure_UU); + } + + public org.compiere.model.I_PA_Ratio getPA_Ratio() throws RuntimeException { - return (I_PA_Ratio)MTable.get(getCtx(), I_PA_Ratio.Table_Name) + return (org.compiere.model.I_PA_Ratio)MTable.get(getCtx(), org.compiere.model.I_PA_Ratio.Table_Name) .getPO(getPA_Ratio_ID(), get_TrxName()); } /** Set Ratio. @@ -394,9 +408,9 @@ public class X_PA_Measure extends PO implements I_PA_Measure, I_Persistent return ii.intValue(); } - public I_R_RequestType getR_RequestType() throws RuntimeException + public org.compiere.model.I_R_RequestType getR_RequestType() throws RuntimeException { - return (I_R_RequestType)MTable.get(getCtx(), I_R_RequestType.Table_Name) + return (org.compiere.model.I_R_RequestType)MTable.get(getCtx(), org.compiere.model.I_R_RequestType.Table_Name) .getPO(getR_RequestType_ID(), get_TrxName()); } /** Set Request Type. diff --git a/org.adempiere.base/src/org/compiere/model/X_PA_MeasureCalc.java b/org.adempiere.base/src/org/compiere/model/X_PA_MeasureCalc.java index bc1ac457a4..2211d3d260 100644 --- a/org.adempiere.base/src/org/compiere/model/X_PA_MeasureCalc.java +++ b/org.adempiere.base/src/org/compiere/model/X_PA_MeasureCalc.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for PA_MeasureCalc - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PA_MeasureCalc extends PO implements I_PA_MeasureCalc, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PA_MeasureCalc (Properties ctx, int PA_MeasureCalc_ID, String trxName) @@ -83,9 +83,9 @@ public class X_PA_MeasureCalc extends PO implements I_PA_MeasureCalc, I_Persiste return sb.toString(); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @@ -264,6 +264,20 @@ public class X_PA_MeasureCalc extends PO implements I_PA_MeasureCalc, I_Persiste return ii.intValue(); } + /** Set PA_MeasureCalc_UU. + @param PA_MeasureCalc_UU PA_MeasureCalc_UU */ + public void setPA_MeasureCalc_UU (String PA_MeasureCalc_UU) + { + set_Value (COLUMNNAME_PA_MeasureCalc_UU, PA_MeasureCalc_UU); + } + + /** Get PA_MeasureCalc_UU. + @return PA_MeasureCalc_UU */ + public String getPA_MeasureCalc_UU () + { + return (String)get_Value(COLUMNNAME_PA_MeasureCalc_UU); + } + /** Set Product Column. @param ProductColumn Fully qualified Product column (M_Product_ID) diff --git a/org.adempiere.base/src/org/compiere/model/X_PA_Ratio.java b/org.adempiere.base/src/org/compiere/model/X_PA_Ratio.java index 32393df82e..602c544769 100644 --- a/org.adempiere.base/src/org/compiere/model/X_PA_Ratio.java +++ b/org.adempiere.base/src/org/compiere/model/X_PA_Ratio.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for PA_Ratio - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PA_Ratio extends PO implements I_PA_Ratio, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PA_Ratio (Properties ctx, int PA_Ratio_ID, String trxName) @@ -72,9 +72,9 @@ public class X_PA_Ratio extends PO implements I_PA_Ratio, I_Persistent return sb.toString(); } - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException { - return (I_C_AcctSchema)MTable.get(getCtx(), I_C_AcctSchema.Table_Name) + return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_Name) .getPO(getC_AcctSchema_ID(), get_TrxName()); } /** Set Accounting Schema. @@ -181,4 +181,18 @@ public class X_PA_Ratio extends PO implements I_PA_Ratio, I_Persistent return 0; return ii.intValue(); } + + /** Set PA_Ratio_UU. + @param PA_Ratio_UU PA_Ratio_UU */ + public void setPA_Ratio_UU (String PA_Ratio_UU) + { + set_Value (COLUMNNAME_PA_Ratio_UU, PA_Ratio_UU); + } + + /** Get PA_Ratio_UU. + @return PA_Ratio_UU */ + public String getPA_Ratio_UU () + { + return (String)get_Value(COLUMNNAME_PA_Ratio_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_PA_RatioElement.java b/org.adempiere.base/src/org/compiere/model/X_PA_RatioElement.java index c855bbe6dd..4526906ed0 100644 --- a/org.adempiere.base/src/org/compiere/model/X_PA_RatioElement.java +++ b/org.adempiere.base/src/org/compiere/model/X_PA_RatioElement.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for PA_RatioElement - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PA_RatioElement extends PO implements I_PA_RatioElement, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PA_RatioElement (Properties ctx, int PA_RatioElement_ID, String trxName) @@ -78,9 +78,9 @@ public class X_PA_RatioElement extends PO implements I_PA_RatioElement, I_Persis return sb.toString(); } - public I_C_ElementValue getAccount() throws RuntimeException + public org.compiere.model.I_C_ElementValue getAccount() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getAccount_ID(), get_TrxName()); } /** Set Account. @@ -160,9 +160,9 @@ public class X_PA_RatioElement extends PO implements I_PA_RatioElement, I_Persis return (String)get_Value(COLUMNNAME_Name); } - public I_PA_MeasureCalc getPA_MeasureCalc() throws RuntimeException + public org.compiere.model.I_PA_MeasureCalc getPA_MeasureCalc() throws RuntimeException { - return (I_PA_MeasureCalc)MTable.get(getCtx(), I_PA_MeasureCalc.Table_Name) + return (org.compiere.model.I_PA_MeasureCalc)MTable.get(getCtx(), org.compiere.model.I_PA_MeasureCalc.Table_Name) .getPO(getPA_MeasureCalc_ID(), get_TrxName()); } /** Set Measure Calculation. @@ -211,9 +211,23 @@ public class X_PA_RatioElement extends PO implements I_PA_RatioElement, I_Persis return ii.intValue(); } - public I_PA_Ratio getPA_Ratio() throws RuntimeException + /** Set PA_RatioElement_UU. + @param PA_RatioElement_UU PA_RatioElement_UU */ + public void setPA_RatioElement_UU (String PA_RatioElement_UU) + { + set_Value (COLUMNNAME_PA_RatioElement_UU, PA_RatioElement_UU); + } + + /** Get PA_RatioElement_UU. + @return PA_RatioElement_UU */ + public String getPA_RatioElement_UU () + { + return (String)get_Value(COLUMNNAME_PA_RatioElement_UU); + } + + public org.compiere.model.I_PA_Ratio getPA_Ratio() throws RuntimeException { - return (I_PA_Ratio)MTable.get(getCtx(), I_PA_Ratio.Table_Name) + return (org.compiere.model.I_PA_Ratio)MTable.get(getCtx(), org.compiere.model.I_PA_Ratio.Table_Name) .getPO(getPA_Ratio_ID(), get_TrxName()); } /** Set Ratio. @@ -239,9 +253,9 @@ public class X_PA_RatioElement extends PO implements I_PA_RatioElement, I_Persis return ii.intValue(); } - public I_PA_Ratio getPA_RatioUsed() throws RuntimeException + public org.compiere.model.I_PA_Ratio getPA_RatioUsed() throws RuntimeException { - return (I_PA_Ratio)MTable.get(getCtx(), I_PA_Ratio.Table_Name) + return (org.compiere.model.I_PA_Ratio)MTable.get(getCtx(), org.compiere.model.I_PA_Ratio.Table_Name) .getPO(getPA_RatioUsed_ID(), get_TrxName()); } /** Set Ratio Used. diff --git a/org.adempiere.base/src/org/compiere/model/X_PA_Report.java b/org.adempiere.base/src/org/compiere/model/X_PA_Report.java index 98b85d8a0e..375e036c4f 100644 --- a/org.adempiere.base/src/org/compiere/model/X_PA_Report.java +++ b/org.adempiere.base/src/org/compiere/model/X_PA_Report.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for PA_Report - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PA_Report extends PO implements I_PA_Report, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PA_Report (Properties ctx, int PA_Report_ID, String trxName) @@ -78,9 +78,9 @@ public class X_PA_Report extends PO implements I_PA_Report, I_Persistent return sb.toString(); } - public I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException + public org.compiere.model.I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException { - return (I_AD_PrintFormat)MTable.get(getCtx(), I_AD_PrintFormat.Table_Name) + return (org.compiere.model.I_AD_PrintFormat)MTable.get(getCtx(), org.compiere.model.I_AD_PrintFormat.Table_Name) .getPO(getAD_PrintFormat_ID(), get_TrxName()); } /** Set Print Format. @@ -106,9 +106,9 @@ public class X_PA_Report extends PO implements I_PA_Report, I_Persistent return ii.intValue(); } - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException { - return (I_C_AcctSchema)MTable.get(getCtx(), I_C_AcctSchema.Table_Name) + return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_Name) .getPO(getC_AcctSchema_ID(), get_TrxName()); } /** Set Accounting Schema. @@ -134,9 +134,9 @@ public class X_PA_Report extends PO implements I_PA_Report, I_Persistent return ii.intValue(); } - public I_C_Calendar getC_Calendar() throws RuntimeException + public org.compiere.model.I_C_Calendar getC_Calendar() throws RuntimeException { - return (I_C_Calendar)MTable.get(getCtx(), I_C_Calendar.Table_Name) + return (org.compiere.model.I_C_Calendar)MTable.get(getCtx(), org.compiere.model.I_C_Calendar.Table_Name) .getPO(getC_Calendar_ID(), get_TrxName()); } /** Set Calendar. @@ -179,9 +179,9 @@ public class X_PA_Report extends PO implements I_PA_Report, I_Persistent return (String)get_Value(COLUMNNAME_Description); } - public I_AD_Process getJasperProcess() throws RuntimeException + public org.compiere.model.I_AD_Process getJasperProcess() throws RuntimeException { - return (I_AD_Process)MTable.get(getCtx(), I_AD_Process.Table_Name) + return (org.compiere.model.I_AD_Process)MTable.get(getCtx(), org.compiere.model.I_AD_Process.Table_Name) .getPO(getJasperProcess_ID(), get_TrxName()); } /** Set Jasper Process. @@ -294,9 +294,9 @@ public class X_PA_Report extends PO implements I_PA_Report, I_Persistent return new KeyNamePair(get_ID(), getName()); } - public I_PA_ReportColumnSet getPA_ReportColumnSet() throws RuntimeException + public org.compiere.model.I_PA_ReportColumnSet getPA_ReportColumnSet() throws RuntimeException { - return (I_PA_ReportColumnSet)MTable.get(getCtx(), I_PA_ReportColumnSet.Table_Name) + return (org.compiere.model.I_PA_ReportColumnSet)MTable.get(getCtx(), org.compiere.model.I_PA_ReportColumnSet.Table_Name) .getPO(getPA_ReportColumnSet_ID(), get_TrxName()); } /** Set Report Column Set. @@ -322,9 +322,9 @@ public class X_PA_Report extends PO implements I_PA_Report, I_Persistent return ii.intValue(); } - public I_PA_ReportCube getPA_ReportCube() throws RuntimeException + public org.compiere.model.I_PA_ReportCube getPA_ReportCube() throws RuntimeException { - return (I_PA_ReportCube)MTable.get(getCtx(), I_PA_ReportCube.Table_Name) + return (org.compiere.model.I_PA_ReportCube)MTable.get(getCtx(), org.compiere.model.I_PA_ReportCube.Table_Name) .getPO(getPA_ReportCube_ID(), get_TrxName()); } /** Set Report Cube. @@ -373,9 +373,9 @@ public class X_PA_Report extends PO implements I_PA_Report, I_Persistent return ii.intValue(); } - public I_PA_ReportLineSet getPA_ReportLineSet() throws RuntimeException + public org.compiere.model.I_PA_ReportLineSet getPA_ReportLineSet() throws RuntimeException { - return (I_PA_ReportLineSet)MTable.get(getCtx(), I_PA_ReportLineSet.Table_Name) + return (org.compiere.model.I_PA_ReportLineSet)MTable.get(getCtx(), org.compiere.model.I_PA_ReportLineSet.Table_Name) .getPO(getPA_ReportLineSet_ID(), get_TrxName()); } /** Set Report Line Set. @@ -398,6 +398,20 @@ public class X_PA_Report extends PO implements I_PA_Report, I_Persistent return ii.intValue(); } + /** Set PA_Report_UU. + @param PA_Report_UU PA_Report_UU */ + public void setPA_Report_UU (String PA_Report_UU) + { + set_Value (COLUMNNAME_PA_Report_UU, PA_Report_UU); + } + + /** Get PA_Report_UU. + @return PA_Report_UU */ + public String getPA_Report_UU () + { + return (String)get_Value(COLUMNNAME_PA_Report_UU); + } + /** Set Process Now. @param Processing Process Now */ public void setProcessing (boolean Processing) diff --git a/org.adempiere.base/src/org/compiere/model/X_PA_ReportColumn.java b/org.adempiere.base/src/org/compiere/model/X_PA_ReportColumn.java index a06c6936a9..bdcb827bad 100644 --- a/org.adempiere.base/src/org/compiere/model/X_PA_ReportColumn.java +++ b/org.adempiere.base/src/org/compiere/model/X_PA_ReportColumn.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for PA_ReportColumn - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PA_ReportColumn extends PO implements I_PA_ReportColumn, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PA_ReportColumn (Properties ctx, int PA_ReportColumn_ID, String trxName) @@ -129,9 +129,9 @@ public class X_PA_ReportColumn extends PO implements I_PA_ReportColumn, I_Persis return ii.intValue(); } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -182,9 +182,9 @@ public class X_PA_ReportColumn extends PO implements I_PA_ReportColumn, I_Persis return (String)get_Value(COLUMNNAME_CalculationType); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -210,9 +210,9 @@ public class X_PA_ReportColumn extends PO implements I_PA_ReportColumn, I_Persis return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -238,9 +238,9 @@ public class X_PA_ReportColumn extends PO implements I_PA_ReportColumn, I_Persis return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -266,9 +266,9 @@ public class X_PA_ReportColumn extends PO implements I_PA_ReportColumn, I_Persis return ii.intValue(); } - public I_C_ElementValue getC_ElementValue() throws RuntimeException + public org.compiere.model.I_C_ElementValue getC_ElementValue() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getC_ElementValue_ID(), get_TrxName()); } /** Set Account Element. @@ -345,9 +345,9 @@ public class X_PA_ReportColumn extends PO implements I_PA_ReportColumn, I_Persis return (String)get_Value(COLUMNNAME_ColumnType); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -373,9 +373,9 @@ public class X_PA_ReportColumn extends PO implements I_PA_ReportColumn, I_Persis return ii.intValue(); } - public I_C_SalesRegion getC_SalesRegion() throws RuntimeException + public org.compiere.model.I_C_SalesRegion getC_SalesRegion() throws RuntimeException { - return (I_C_SalesRegion)MTable.get(getCtx(), I_C_SalesRegion.Table_Name) + return (org.compiere.model.I_C_SalesRegion)MTable.get(getCtx(), org.compiere.model.I_C_SalesRegion.Table_Name) .getPO(getC_SalesRegion_ID(), get_TrxName()); } /** Set Sales Region. @@ -534,9 +534,9 @@ public class X_PA_ReportColumn extends PO implements I_PA_ReportColumn, I_Persis return (String)get_Value(COLUMNNAME_FormatPattern); } - public I_GL_Budget getGL_Budget() throws RuntimeException + public org.compiere.model.I_GL_Budget getGL_Budget() throws RuntimeException { - return (I_GL_Budget)MTable.get(getCtx(), I_GL_Budget.Table_Name) + return (org.compiere.model.I_GL_Budget)MTable.get(getCtx(), org.compiere.model.I_GL_Budget.Table_Name) .getPO(getGL_Budget_ID(), get_TrxName()); } /** Set Budget. @@ -898,9 +898,9 @@ public class X_PA_ReportColumn extends PO implements I_PA_ReportColumn, I_Persis return false; } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -951,9 +951,9 @@ public class X_PA_ReportColumn extends PO implements I_PA_ReportColumn, I_Persis return new KeyNamePair(get_ID(), getName()); } - public I_PA_ReportColumn getOper_1() throws RuntimeException + public org.compiere.model.I_PA_ReportColumn getOper_1() throws RuntimeException { - return (I_PA_ReportColumn)MTable.get(getCtx(), I_PA_ReportColumn.Table_Name) + return (org.compiere.model.I_PA_ReportColumn)MTable.get(getCtx(), org.compiere.model.I_PA_ReportColumn.Table_Name) .getPO(getOper_1_ID(), get_TrxName()); } /** Set Operand 1. @@ -979,9 +979,9 @@ public class X_PA_ReportColumn extends PO implements I_PA_ReportColumn, I_Persis return ii.intValue(); } - public I_PA_ReportColumn getOper_2() throws RuntimeException + public org.compiere.model.I_PA_ReportColumn getOper_2() throws RuntimeException { - return (I_PA_ReportColumn)MTable.get(getCtx(), I_PA_ReportColumn.Table_Name) + return (org.compiere.model.I_PA_ReportColumn)MTable.get(getCtx(), org.compiere.model.I_PA_ReportColumn.Table_Name) .getPO(getOper_2_ID(), get_TrxName()); } /** Set Operand 2. @@ -1113,9 +1113,9 @@ public class X_PA_ReportColumn extends PO implements I_PA_ReportColumn, I_Persis return ii.intValue(); } - public I_PA_ReportColumnSet getPA_ReportColumnSet() throws RuntimeException + public org.compiere.model.I_PA_ReportColumnSet getPA_ReportColumnSet() throws RuntimeException { - return (I_PA_ReportColumnSet)MTable.get(getCtx(), I_PA_ReportColumnSet.Table_Name) + return (org.compiere.model.I_PA_ReportColumnSet)MTable.get(getCtx(), org.compiere.model.I_PA_ReportColumnSet.Table_Name) .getPO(getPA_ReportColumnSet_ID(), get_TrxName()); } /** Set Report Column Set. @@ -1141,6 +1141,20 @@ public class X_PA_ReportColumn extends PO implements I_PA_ReportColumn, I_Persis return ii.intValue(); } + /** Set PA_ReportColumn_UU. + @param PA_ReportColumn_UU PA_ReportColumn_UU */ + public void setPA_ReportColumn_UU (String PA_ReportColumn_UU) + { + set_Value (COLUMNNAME_PA_ReportColumn_UU, PA_ReportColumn_UU); + } + + /** Get PA_ReportColumn_UU. + @return PA_ReportColumn_UU */ + public String getPA_ReportColumn_UU () + { + return (String)get_Value(COLUMNNAME_PA_ReportColumn_UU); + } + /** PostingType AD_Reference_ID=125 */ public static final int POSTINGTYPE_AD_Reference_ID=125; /** Actual = A */ diff --git a/org.adempiere.base/src/org/compiere/model/X_PA_ReportColumnSet.java b/org.adempiere.base/src/org/compiere/model/X_PA_ReportColumnSet.java index bec2e88453..a831ce3c83 100644 --- a/org.adempiere.base/src/org/compiere/model/X_PA_ReportColumnSet.java +++ b/org.adempiere.base/src/org/compiere/model/X_PA_ReportColumnSet.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for PA_ReportColumnSet - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PA_ReportColumnSet extends PO implements I_PA_ReportColumnSet, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PA_ReportColumnSet (Properties ctx, int PA_ReportColumnSet_ID, String trxName) @@ -137,6 +137,20 @@ public class X_PA_ReportColumnSet extends PO implements I_PA_ReportColumnSet, I_ return ii.intValue(); } + /** Set PA_ReportColumnSet_UU. + @param PA_ReportColumnSet_UU PA_ReportColumnSet_UU */ + public void setPA_ReportColumnSet_UU (String PA_ReportColumnSet_UU) + { + set_Value (COLUMNNAME_PA_ReportColumnSet_UU, PA_ReportColumnSet_UU); + } + + /** Get PA_ReportColumnSet_UU. + @return PA_ReportColumnSet_UU */ + public String getPA_ReportColumnSet_UU () + { + return (String)get_Value(COLUMNNAME_PA_ReportColumnSet_UU); + } + /** Set Process Now. @param Processing Process Now */ public void setProcessing (boolean Processing) diff --git a/org.adempiere.base/src/org/compiere/model/X_PA_ReportCube.java b/org.adempiere.base/src/org/compiere/model/X_PA_ReportCube.java index d2e51032c6..8bc5dea0bd 100644 --- a/org.adempiere.base/src/org/compiere/model/X_PA_ReportCube.java +++ b/org.adempiere.base/src/org/compiere/model/X_PA_ReportCube.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for PA_ReportCube - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PA_ReportCube extends PO implements I_PA_ReportCube, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PA_ReportCube (Properties ctx, int PA_ReportCube_ID, String trxName) @@ -75,9 +75,9 @@ public class X_PA_ReportCube extends PO implements I_PA_ReportCube, I_Persistent return sb.toString(); } - public I_C_Calendar getC_Calendar() throws RuntimeException + public org.compiere.model.I_C_Calendar getC_Calendar() throws RuntimeException { - return (I_C_Calendar)MTable.get(getCtx(), I_C_Calendar.Table_Name) + return (org.compiere.model.I_C_Calendar)MTable.get(getCtx(), org.compiere.model.I_C_Calendar.Table_Name) .getPO(getC_Calendar_ID(), get_TrxName()); } /** Set Calendar. @@ -593,6 +593,20 @@ public class X_PA_ReportCube extends PO implements I_PA_ReportCube, I_Persistent return ii.intValue(); } + /** Set PA_ReportCube_UU. + @param PA_ReportCube_UU PA_ReportCube_UU */ + public void setPA_ReportCube_UU (String PA_ReportCube_UU) + { + set_Value (COLUMNNAME_PA_ReportCube_UU, PA_ReportCube_UU); + } + + /** Get PA_ReportCube_UU. + @return PA_ReportCube_UU */ + public String getPA_ReportCube_UU () + { + return (String)get_Value(COLUMNNAME_PA_ReportCube_UU); + } + /** Set Process Now. @param Processing Process Now */ public void setProcessing (boolean Processing) diff --git a/org.adempiere.base/src/org/compiere/model/X_PA_ReportLine.java b/org.adempiere.base/src/org/compiere/model/X_PA_ReportLine.java index 4c73090ee8..19a105f7e0 100644 --- a/org.adempiere.base/src/org/compiere/model/X_PA_ReportLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_PA_ReportLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for PA_ReportLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PA_ReportLine extends PO implements I_PA_ReportLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PA_ReportLine (Properties ctx, int PA_ReportLine_ID, String trxName) @@ -119,9 +119,9 @@ public class X_PA_ReportLine extends PO implements I_PA_ReportLine, I_Persistent return (String)get_Value(COLUMNNAME_Description); } - public I_GL_Budget getGL_Budget() throws RuntimeException + public org.compiere.model.I_GL_Budget getGL_Budget() throws RuntimeException { - return (I_GL_Budget)MTable.get(getCtx(), I_GL_Budget.Table_Name) + return (org.compiere.model.I_GL_Budget)MTable.get(getCtx(), org.compiere.model.I_GL_Budget.Table_Name) .getPO(getGL_Budget_ID(), get_TrxName()); } /** Set Budget. @@ -217,9 +217,9 @@ public class X_PA_ReportLine extends PO implements I_PA_ReportLine, I_Persistent return new KeyNamePair(get_ID(), getName()); } - public I_PA_ReportLine getOper_1() throws RuntimeException + public org.compiere.model.I_PA_ReportLine getOper_1() throws RuntimeException { - return (I_PA_ReportLine)MTable.get(getCtx(), I_PA_ReportLine.Table_Name) + return (org.compiere.model.I_PA_ReportLine)MTable.get(getCtx(), org.compiere.model.I_PA_ReportLine.Table_Name) .getPO(getOper_1_ID(), get_TrxName()); } /** Set Operand 1. @@ -245,9 +245,9 @@ public class X_PA_ReportLine extends PO implements I_PA_ReportLine, I_Persistent return ii.intValue(); } - public I_PA_ReportLine getOper_2() throws RuntimeException + public org.compiere.model.I_PA_ReportLine getOper_2() throws RuntimeException { - return (I_PA_ReportLine)MTable.get(getCtx(), I_PA_ReportLine.Table_Name) + return (org.compiere.model.I_PA_ReportLine)MTable.get(getCtx(), org.compiere.model.I_PA_ReportLine.Table_Name) .getPO(getOper_2_ID(), get_TrxName()); } /** Set Operand 2. @@ -353,9 +353,9 @@ public class X_PA_ReportLine extends PO implements I_PA_ReportLine, I_Persistent return ii.intValue(); } - public I_PA_ReportLineSet getPA_ReportLineSet() throws RuntimeException + public org.compiere.model.I_PA_ReportLineSet getPA_ReportLineSet() throws RuntimeException { - return (I_PA_ReportLineSet)MTable.get(getCtx(), I_PA_ReportLineSet.Table_Name) + return (org.compiere.model.I_PA_ReportLineSet)MTable.get(getCtx(), org.compiere.model.I_PA_ReportLineSet.Table_Name) .getPO(getPA_ReportLineSet_ID(), get_TrxName()); } /** Set Report Line Set. @@ -378,6 +378,20 @@ public class X_PA_ReportLine extends PO implements I_PA_ReportLine, I_Persistent return ii.intValue(); } + /** Set PA_ReportLine_UU. + @param PA_ReportLine_UU PA_ReportLine_UU */ + public void setPA_ReportLine_UU (String PA_ReportLine_UU) + { + set_Value (COLUMNNAME_PA_ReportLine_UU, PA_ReportLine_UU); + } + + /** Get PA_ReportLine_UU. + @return PA_ReportLine_UU */ + public String getPA_ReportLine_UU () + { + return (String)get_Value(COLUMNNAME_PA_ReportLine_UU); + } + /** PostingType AD_Reference_ID=125 */ public static final int POSTINGTYPE_AD_Reference_ID=125; /** Actual = A */ diff --git a/org.adempiere.base/src/org/compiere/model/X_PA_ReportLineSet.java b/org.adempiere.base/src/org/compiere/model/X_PA_ReportLineSet.java index 1dfa405cea..eb48214aa4 100644 --- a/org.adempiere.base/src/org/compiere/model/X_PA_ReportLineSet.java +++ b/org.adempiere.base/src/org/compiere/model/X_PA_ReportLineSet.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for PA_ReportLineSet - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PA_ReportLineSet extends PO implements I_PA_ReportLineSet, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PA_ReportLineSet (Properties ctx, int PA_ReportLineSet_ID, String trxName) @@ -134,6 +134,20 @@ public class X_PA_ReportLineSet extends PO implements I_PA_ReportLineSet, I_Pers return ii.intValue(); } + /** Set PA_ReportLineSet_UU. + @param PA_ReportLineSet_UU PA_ReportLineSet_UU */ + public void setPA_ReportLineSet_UU (String PA_ReportLineSet_UU) + { + set_Value (COLUMNNAME_PA_ReportLineSet_UU, PA_ReportLineSet_UU); + } + + /** Get PA_ReportLineSet_UU. + @return PA_ReportLineSet_UU */ + public String getPA_ReportLineSet_UU () + { + return (String)get_Value(COLUMNNAME_PA_ReportLineSet_UU); + } + /** Set Process Now. @param Processing Process Now */ public void setProcessing (boolean Processing) diff --git a/org.adempiere.base/src/org/compiere/model/X_PA_ReportSource.java b/org.adempiere.base/src/org/compiere/model/X_PA_ReportSource.java index ca6ef5a0d8..050e5295a8 100644 --- a/org.adempiere.base/src/org/compiere/model/X_PA_ReportSource.java +++ b/org.adempiere.base/src/org/compiere/model/X_PA_ReportSource.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for PA_ReportSource - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PA_ReportSource extends PO implements I_PA_ReportSource, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PA_ReportSource (Properties ctx, int PA_ReportSource_ID, String trxName) @@ -119,9 +119,9 @@ public class X_PA_ReportSource extends PO implements I_PA_ReportSource, I_Persis return ii.intValue(); } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -147,9 +147,9 @@ public class X_PA_ReportSource extends PO implements I_PA_ReportSource, I_Persis return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -175,9 +175,9 @@ public class X_PA_ReportSource extends PO implements I_PA_ReportSource, I_Persis return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -203,9 +203,9 @@ public class X_PA_ReportSource extends PO implements I_PA_ReportSource, I_Persis return ii.intValue(); } - public I_C_ElementValue getC_ElementValue() throws RuntimeException + public org.compiere.model.I_C_ElementValue getC_ElementValue() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getC_ElementValue_ID(), get_TrxName()); } /** Set Account Element. @@ -259,9 +259,9 @@ public class X_PA_ReportSource extends PO implements I_PA_ReportSource, I_Persis return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -287,9 +287,9 @@ public class X_PA_ReportSource extends PO implements I_PA_ReportSource, I_Persis return ii.intValue(); } - public I_C_SalesRegion getC_SalesRegion() throws RuntimeException + public org.compiere.model.I_C_SalesRegion getC_SalesRegion() throws RuntimeException { - return (I_C_SalesRegion)MTable.get(getCtx(), I_C_SalesRegion.Table_Name) + return (org.compiere.model.I_C_SalesRegion)MTable.get(getCtx(), org.compiere.model.I_C_SalesRegion.Table_Name) .getPO(getC_SalesRegion_ID(), get_TrxName()); } /** Set Sales Region. @@ -682,9 +682,9 @@ public class X_PA_ReportSource extends PO implements I_PA_ReportSource, I_Persis return false; } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -733,9 +733,9 @@ public class X_PA_ReportSource extends PO implements I_PA_ReportSource, I_Persis return ii.intValue(); } - public I_PA_ReportLine getPA_ReportLine() throws RuntimeException + public org.compiere.model.I_PA_ReportLine getPA_ReportLine() throws RuntimeException { - return (I_PA_ReportLine)MTable.get(getCtx(), I_PA_ReportLine.Table_Name) + return (org.compiere.model.I_PA_ReportLine)MTable.get(getCtx(), org.compiere.model.I_PA_ReportLine.Table_Name) .getPO(getPA_ReportLine_ID(), get_TrxName()); } /** Set Report Line. @@ -781,6 +781,20 @@ public class X_PA_ReportSource extends PO implements I_PA_ReportSource, I_Persis return ii.intValue(); } + /** Set PA_ReportSource_UU. + @param PA_ReportSource_UU PA_ReportSource_UU */ + public void setPA_ReportSource_UU (String PA_ReportSource_UU) + { + set_Value (COLUMNNAME_PA_ReportSource_UU, PA_ReportSource_UU); + } + + /** Get PA_ReportSource_UU. + @return PA_ReportSource_UU */ + public String getPA_ReportSource_UU () + { + return (String)get_Value(COLUMNNAME_PA_ReportSource_UU); + } + /** Set User Element 1. @param UserElement1_ID User defined accounting Element diff --git a/org.adempiere.base/src/org/compiere/model/X_PA_SLA_Criteria.java b/org.adempiere.base/src/org/compiere/model/X_PA_SLA_Criteria.java index 98c7410278..030ed13a35 100644 --- a/org.adempiere.base/src/org/compiere/model/X_PA_SLA_Criteria.java +++ b/org.adempiere.base/src/org/compiere/model/X_PA_SLA_Criteria.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for PA_SLA_Criteria - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PA_SLA_Criteria extends PO implements I_PA_SLA_Criteria, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PA_SLA_Criteria (Properties ctx, int PA_SLA_Criteria_ID, String trxName) @@ -195,4 +195,18 @@ public class X_PA_SLA_Criteria extends PO implements I_PA_SLA_Criteria, I_Persis return 0; return ii.intValue(); } + + /** Set PA_SLA_Criteria_UU. + @param PA_SLA_Criteria_UU PA_SLA_Criteria_UU */ + public void setPA_SLA_Criteria_UU (String PA_SLA_Criteria_UU) + { + set_Value (COLUMNNAME_PA_SLA_Criteria_UU, PA_SLA_Criteria_UU); + } + + /** Get PA_SLA_Criteria_UU. + @return PA_SLA_Criteria_UU */ + public String getPA_SLA_Criteria_UU () + { + return (String)get_Value(COLUMNNAME_PA_SLA_Criteria_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_PA_SLA_Goal.java b/org.adempiere.base/src/org/compiere/model/X_PA_SLA_Goal.java index cdece41cd7..3c16457dbd 100644 --- a/org.adempiere.base/src/org/compiere/model/X_PA_SLA_Goal.java +++ b/org.adempiere.base/src/org/compiere/model/X_PA_SLA_Goal.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for PA_SLA_Goal - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PA_SLA_Goal extends PO implements I_PA_SLA_Goal, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PA_SLA_Goal (Properties ctx, int PA_SLA_Goal_ID, String trxName) @@ -79,9 +79,9 @@ public class X_PA_SLA_Goal extends PO implements I_PA_SLA_Goal, I_Persistent return sb.toString(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -223,9 +223,9 @@ public class X_PA_SLA_Goal extends PO implements I_PA_SLA_Goal, I_Persistent return new KeyNamePair(get_ID(), getName()); } - public I_PA_SLA_Criteria getPA_SLA_Criteria() throws RuntimeException + public org.compiere.model.I_PA_SLA_Criteria getPA_SLA_Criteria() throws RuntimeException { - return (I_PA_SLA_Criteria)MTable.get(getCtx(), I_PA_SLA_Criteria.Table_Name) + return (org.compiere.model.I_PA_SLA_Criteria)MTable.get(getCtx(), org.compiere.model.I_PA_SLA_Criteria.Table_Name) .getPO(getPA_SLA_Criteria_ID(), get_TrxName()); } /** Set SLA Criteria. @@ -274,6 +274,20 @@ public class X_PA_SLA_Goal extends PO implements I_PA_SLA_Goal, I_Persistent return ii.intValue(); } + /** Set PA_SLA_Goal_UU. + @param PA_SLA_Goal_UU PA_SLA_Goal_UU */ + public void setPA_SLA_Goal_UU (String PA_SLA_Goal_UU) + { + set_Value (COLUMNNAME_PA_SLA_Goal_UU, PA_SLA_Goal_UU); + } + + /** Get PA_SLA_Goal_UU. + @return PA_SLA_Goal_UU */ + public String getPA_SLA_Goal_UU () + { + return (String)get_Value(COLUMNNAME_PA_SLA_Goal_UU); + } + /** Set Processed. @param Processed The document has been processed diff --git a/org.adempiere.base/src/org/compiere/model/X_PA_SLA_Measure.java b/org.adempiere.base/src/org/compiere/model/X_PA_SLA_Measure.java index 03fae190b6..43d11080fe 100644 --- a/org.adempiere.base/src/org/compiere/model/X_PA_SLA_Measure.java +++ b/org.adempiere.base/src/org/compiere/model/X_PA_SLA_Measure.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for PA_SLA_Measure - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PA_SLA_Measure extends PO implements I_PA_SLA_Measure, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PA_SLA_Measure (Properties ctx, int PA_SLA_Measure_ID, String trxName) @@ -77,9 +77,9 @@ public class X_PA_SLA_Measure extends PO implements I_PA_SLA_Measure, I_Persiste return sb.toString(); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @@ -167,9 +167,9 @@ public class X_PA_SLA_Measure extends PO implements I_PA_SLA_Measure, I_Persiste return bd; } - public I_PA_SLA_Goal getPA_SLA_Goal() throws RuntimeException + public org.compiere.model.I_PA_SLA_Goal getPA_SLA_Goal() throws RuntimeException { - return (I_PA_SLA_Goal)MTable.get(getCtx(), I_PA_SLA_Goal.Table_Name) + return (org.compiere.model.I_PA_SLA_Goal)MTable.get(getCtx(), org.compiere.model.I_PA_SLA_Goal.Table_Name) .getPO(getPA_SLA_Goal_ID(), get_TrxName()); } /** Set SLA Goal. @@ -218,6 +218,20 @@ public class X_PA_SLA_Measure extends PO implements I_PA_SLA_Measure, I_Persiste return ii.intValue(); } + /** Set PA_SLA_Measure_UU. + @param PA_SLA_Measure_UU PA_SLA_Measure_UU */ + public void setPA_SLA_Measure_UU (String PA_SLA_Measure_UU) + { + set_Value (COLUMNNAME_PA_SLA_Measure_UU, PA_SLA_Measure_UU); + } + + /** Get PA_SLA_Measure_UU. + @return PA_SLA_Measure_UU */ + public String getPA_SLA_Measure_UU () + { + return (String)get_Value(COLUMNNAME_PA_SLA_Measure_UU); + } + /** Set Processed. @param Processed The document has been processed diff --git a/org.adempiere.base/src/org/compiere/model/X_RV_BPartner.java b/org.adempiere.base/src/org/compiere/model/X_RV_BPartner.java index aa53198b84..848c380fb0 100644 --- a/org.adempiere.base/src/org/compiere/model/X_RV_BPartner.java +++ b/org.adempiere.base/src/org/compiere/model/X_RV_BPartner.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for RV_BPartner - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_RV_BPartner extends PO implements I_RV_BPartner, I_Persistent { /** * */ - private static final long serialVersionUID = 20120906L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_RV_BPartner (Properties ctx, int RV_BPartner_ID, String trxName) @@ -2014,7 +2014,7 @@ public class X_RV_BPartner extends PO implements I_RV_BPartner, I_Persistent /** Set URL. @param URL - Full URL address - e.g. http://www.adempiere.org + Full URL address - e.g. http://www.idempiere.org */ public void setURL (String URL) { @@ -2022,7 +2022,7 @@ public class X_RV_BPartner extends PO implements I_RV_BPartner, I_Persistent } /** Get URL. - @return Full URL address - e.g. http://www.adempiere.org + @return Full URL address - e.g. http://www.idempiere.org */ public String getURL () { diff --git a/org.adempiere.base/src/org/compiere/model/X_RV_WarehousePrice.java b/org.adempiere.base/src/org/compiere/model/X_RV_WarehousePrice.java index f321572156..1c9d3d94b5 100644 --- a/org.adempiere.base/src/org/compiere/model/X_RV_WarehousePrice.java +++ b/org.adempiere.base/src/org/compiere/model/X_RV_WarehousePrice.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for RV_WarehousePrice - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_RV_WarehousePrice extends PO implements I_RV_WarehousePrice, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_RV_WarehousePrice (Properties ctx, int RV_WarehousePrice_ID, String trxName) @@ -77,9 +77,9 @@ public class X_RV_WarehousePrice extends PO implements I_RV_WarehousePrice, I_Pe return sb.toString(); } - public I_C_UOM getC_UOM() throws RuntimeException + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_ID(), get_TrxName()); } /** Set UOM. @@ -149,9 +149,9 @@ public class X_RV_WarehousePrice extends PO implements I_RV_WarehousePrice, I_Pe return bd; } - public I_M_PriceList_Version getM_PriceList_Version() throws RuntimeException + public org.compiere.model.I_M_PriceList_Version getM_PriceList_Version() throws RuntimeException { - return (I_M_PriceList_Version)MTable.get(getCtx(), I_M_PriceList_Version.Table_Name) + return (org.compiere.model.I_M_PriceList_Version)MTable.get(getCtx(), org.compiere.model.I_M_PriceList_Version.Table_Name) .getPO(getM_PriceList_Version_ID(), get_TrxName()); } /** Set Price List Version. @@ -177,9 +177,9 @@ public class X_RV_WarehousePrice extends PO implements I_RV_WarehousePrice, I_Pe return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -205,9 +205,9 @@ public class X_RV_WarehousePrice extends PO implements I_RV_WarehousePrice, I_Pe return ii.intValue(); } - public I_M_Warehouse getM_Warehouse() throws RuntimeException + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_Warehouse_ID(), get_TrxName()); } /** Set Warehouse. diff --git a/org.adempiere.base/src/org/compiere/model/X_R_Category.java b/org.adempiere.base/src/org/compiere/model/X_R_Category.java index aaa51689e0..805b90b745 100644 --- a/org.adempiere.base/src/org/compiere/model/X_R_Category.java +++ b/org.adempiere.base/src/org/compiere/model/X_R_Category.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for R_Category - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_R_Category extends PO implements I_R_Category, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_R_Category (Properties ctx, int R_Category_ID, String trxName) @@ -105,9 +105,9 @@ public class X_R_Category extends PO implements I_R_Category, I_Persistent return (String)get_Value(COLUMNNAME_Help); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -180,4 +180,18 @@ public class X_R_Category extends PO implements I_R_Category, I_Persistent return 0; return ii.intValue(); } + + /** Set R_Category_UU. + @param R_Category_UU R_Category_UU */ + public void setR_Category_UU (String R_Category_UU) + { + set_Value (COLUMNNAME_R_Category_UU, R_Category_UU); + } + + /** Get R_Category_UU. + @return R_Category_UU */ + public String getR_Category_UU () + { + return (String)get_Value(COLUMNNAME_R_Category_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_R_CategoryUpdates.java b/org.adempiere.base/src/org/compiere/model/X_R_CategoryUpdates.java index e48aa62e85..c11d041074 100644 --- a/org.adempiere.base/src/org/compiere/model/X_R_CategoryUpdates.java +++ b/org.adempiere.base/src/org/compiere/model/X_R_CategoryUpdates.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for R_CategoryUpdates - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_R_CategoryUpdates extends PO implements I_R_CategoryUpdates, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_R_CategoryUpdates (Properties ctx, int R_CategoryUpdates_ID, String trxName) @@ -71,9 +71,9 @@ public class X_R_CategoryUpdates extends PO implements I_R_CategoryUpdates, I_Pe return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -123,9 +123,9 @@ public class X_R_CategoryUpdates extends PO implements I_R_CategoryUpdates, I_Pe return false; } - public I_R_Category getR_Category() throws RuntimeException + public org.compiere.model.I_R_Category getR_Category() throws RuntimeException { - return (I_R_Category)MTable.get(getCtx(), I_R_Category.Table_Name) + return (org.compiere.model.I_R_Category)MTable.get(getCtx(), org.compiere.model.I_R_Category.Table_Name) .getPO(getR_Category_ID(), get_TrxName()); } /** Set Category. @@ -150,4 +150,18 @@ public class X_R_CategoryUpdates extends PO implements I_R_CategoryUpdates, I_Pe return 0; return ii.intValue(); } + + /** Set R_CategoryUpdates_UU. + @param R_CategoryUpdates_UU R_CategoryUpdates_UU */ + public void setR_CategoryUpdates_UU (String R_CategoryUpdates_UU) + { + set_Value (COLUMNNAME_R_CategoryUpdates_UU, R_CategoryUpdates_UU); + } + + /** Get R_CategoryUpdates_UU. + @return R_CategoryUpdates_UU */ + public String getR_CategoryUpdates_UU () + { + return (String)get_Value(COLUMNNAME_R_CategoryUpdates_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_R_ContactInterest.java b/org.adempiere.base/src/org/compiere/model/X_R_ContactInterest.java index 3ee90f91cf..990597ee22 100644 --- a/org.adempiere.base/src/org/compiere/model/X_R_ContactInterest.java +++ b/org.adempiere.base/src/org/compiere/model/X_R_ContactInterest.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for R_ContactInterest - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_R_ContactInterest extends PO implements I_R_ContactInterest, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_R_ContactInterest (Properties ctx, int R_ContactInterest_ID, String trxName) @@ -73,9 +73,9 @@ public class X_R_ContactInterest extends PO implements I_R_ContactInterest, I_Pe return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -126,9 +126,23 @@ public class X_R_ContactInterest extends PO implements I_R_ContactInterest, I_Pe return (Timestamp)get_Value(COLUMNNAME_OptOutDate); } - public I_R_InterestArea getR_InterestArea() throws RuntimeException + /** Set R_ContactInterest_UU. + @param R_ContactInterest_UU R_ContactInterest_UU */ + public void setR_ContactInterest_UU (String R_ContactInterest_UU) + { + set_Value (COLUMNNAME_R_ContactInterest_UU, R_ContactInterest_UU); + } + + /** Get R_ContactInterest_UU. + @return R_ContactInterest_UU */ + public String getR_ContactInterest_UU () + { + return (String)get_Value(COLUMNNAME_R_ContactInterest_UU); + } + + public org.compiere.model.I_R_InterestArea getR_InterestArea() throws RuntimeException { - return (I_R_InterestArea)MTable.get(getCtx(), I_R_InterestArea.Table_Name) + return (org.compiere.model.I_R_InterestArea)MTable.get(getCtx(), org.compiere.model.I_R_InterestArea.Table_Name) .getPO(getR_InterestArea_ID(), get_TrxName()); } /** Set Interest Area. diff --git a/org.adempiere.base/src/org/compiere/model/X_R_Group.java b/org.adempiere.base/src/org/compiere/model/X_R_Group.java index 43c908fc76..f5633485ea 100644 --- a/org.adempiere.base/src/org/compiere/model/X_R_Group.java +++ b/org.adempiere.base/src/org/compiere/model/X_R_Group.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for R_Group - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_R_Group extends PO implements I_R_Group, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_R_Group (Properties ctx, int R_Group_ID, String trxName) @@ -105,9 +105,9 @@ public class X_R_Group extends PO implements I_R_Group, I_Persistent return (String)get_Value(COLUMNNAME_Help); } - public I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException + public org.compiere.model.I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException { - return (I_M_ChangeNotice)MTable.get(getCtx(), I_M_ChangeNotice.Table_Name) + return (org.compiere.model.I_M_ChangeNotice)MTable.get(getCtx(), org.compiere.model.I_M_ChangeNotice.Table_Name) .getPO(getM_ChangeNotice_ID(), get_TrxName()); } /** Set Change Notice. @@ -208,4 +208,18 @@ public class X_R_Group extends PO implements I_R_Group, I_Persistent return 0; return ii.intValue(); } + + /** Set R_Group_UU. + @param R_Group_UU R_Group_UU */ + public void setR_Group_UU (String R_Group_UU) + { + set_Value (COLUMNNAME_R_Group_UU, R_Group_UU); + } + + /** Get R_Group_UU. + @return R_Group_UU */ + public String getR_Group_UU () + { + return (String)get_Value(COLUMNNAME_R_Group_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_R_GroupUpdates.java b/org.adempiere.base/src/org/compiere/model/X_R_GroupUpdates.java index 10274d34df..697130f7c6 100644 --- a/org.adempiere.base/src/org/compiere/model/X_R_GroupUpdates.java +++ b/org.adempiere.base/src/org/compiere/model/X_R_GroupUpdates.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for R_GroupUpdates - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_R_GroupUpdates extends PO implements I_R_GroupUpdates, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_R_GroupUpdates (Properties ctx, int R_GroupUpdates_ID, String trxName) @@ -71,9 +71,9 @@ public class X_R_GroupUpdates extends PO implements I_R_GroupUpdates, I_Persiste return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -123,9 +123,9 @@ public class X_R_GroupUpdates extends PO implements I_R_GroupUpdates, I_Persiste return false; } - public I_R_Group getR_Group() throws RuntimeException + public org.compiere.model.I_R_Group getR_Group() throws RuntimeException { - return (I_R_Group)MTable.get(getCtx(), I_R_Group.Table_Name) + return (org.compiere.model.I_R_Group)MTable.get(getCtx(), org.compiere.model.I_R_Group.Table_Name) .getPO(getR_Group_ID(), get_TrxName()); } /** Set Group. @@ -150,4 +150,18 @@ public class X_R_GroupUpdates extends PO implements I_R_GroupUpdates, I_Persiste return 0; return ii.intValue(); } + + /** Set R_GroupUpdates_UU. + @param R_GroupUpdates_UU R_GroupUpdates_UU */ + public void setR_GroupUpdates_UU (String R_GroupUpdates_UU) + { + set_Value (COLUMNNAME_R_GroupUpdates_UU, R_GroupUpdates_UU); + } + + /** Get R_GroupUpdates_UU. + @return R_GroupUpdates_UU */ + public String getR_GroupUpdates_UU () + { + return (String)get_Value(COLUMNNAME_R_GroupUpdates_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_R_InterestArea.java b/org.adempiere.base/src/org/compiere/model/X_R_InterestArea.java index c3414c29ee..b936aa19b1 100644 --- a/org.adempiere.base/src/org/compiere/model/X_R_InterestArea.java +++ b/org.adempiere.base/src/org/compiere/model/X_R_InterestArea.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for R_InterestArea - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_R_InterestArea extends PO implements I_R_InterestArea, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_R_InterestArea (Properties ctx, int R_InterestArea_ID, String trxName) @@ -163,6 +163,20 @@ public class X_R_InterestArea extends PO implements I_R_InterestArea, I_Persiste return ii.intValue(); } + /** Set R_InterestArea_UU. + @param R_InterestArea_UU R_InterestArea_UU */ + public void setR_InterestArea_UU (String R_InterestArea_UU) + { + set_Value (COLUMNNAME_R_InterestArea_UU, R_InterestArea_UU); + } + + /** Get R_InterestArea_UU. + @return R_InterestArea_UU */ + public String getR_InterestArea_UU () + { + return (String)get_Value(COLUMNNAME_R_InterestArea_UU); + } + /** Set Search Key. @param Value Search key for the record in the format required - must be unique diff --git a/org.adempiere.base/src/org/compiere/model/X_R_IssueKnown.java b/org.adempiere.base/src/org/compiere/model/X_R_IssueKnown.java index 931e1e5243..e994fd1c70 100644 --- a/org.adempiere.base/src/org/compiere/model/X_R_IssueKnown.java +++ b/org.adempiere.base/src/org/compiere/model/X_R_IssueKnown.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for R_IssueKnown - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_R_IssueKnown extends PO implements I_R_IssueKnown, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_R_IssueKnown (Properties ctx, int R_IssueKnown_ID, String trxName) @@ -229,9 +229,23 @@ public class X_R_IssueKnown extends PO implements I_R_IssueKnown, I_Persistent return ii.intValue(); } - public I_R_IssueRecommendation getR_IssueRecommendation() throws RuntimeException + /** Set R_IssueKnown_UU. + @param R_IssueKnown_UU R_IssueKnown_UU */ + public void setR_IssueKnown_UU (String R_IssueKnown_UU) + { + set_Value (COLUMNNAME_R_IssueKnown_UU, R_IssueKnown_UU); + } + + /** Get R_IssueKnown_UU. + @return R_IssueKnown_UU */ + public String getR_IssueKnown_UU () + { + return (String)get_Value(COLUMNNAME_R_IssueKnown_UU); + } + + public org.compiere.model.I_R_IssueRecommendation getR_IssueRecommendation() throws RuntimeException { - return (I_R_IssueRecommendation)MTable.get(getCtx(), I_R_IssueRecommendation.Table_Name) + return (org.compiere.model.I_R_IssueRecommendation)MTable.get(getCtx(), org.compiere.model.I_R_IssueRecommendation.Table_Name) .getPO(getR_IssueRecommendation_ID(), get_TrxName()); } /** Set Issue Recommendation. @@ -257,9 +271,9 @@ public class X_R_IssueKnown extends PO implements I_R_IssueKnown, I_Persistent return ii.intValue(); } - public I_R_IssueStatus getR_IssueStatus() throws RuntimeException + public org.compiere.model.I_R_IssueStatus getR_IssueStatus() throws RuntimeException { - return (I_R_IssueStatus)MTable.get(getCtx(), I_R_IssueStatus.Table_Name) + return (org.compiere.model.I_R_IssueStatus)MTable.get(getCtx(), org.compiere.model.I_R_IssueStatus.Table_Name) .getPO(getR_IssueStatus_ID(), get_TrxName()); } /** Set Issue Status. @@ -285,9 +299,9 @@ public class X_R_IssueKnown extends PO implements I_R_IssueKnown, I_Persistent return ii.intValue(); } - public I_R_Request getR_Request() throws RuntimeException + public org.compiere.model.I_R_Request getR_Request() throws RuntimeException { - return (I_R_Request)MTable.get(getCtx(), I_R_Request.Table_Name) + return (org.compiere.model.I_R_Request)MTable.get(getCtx(), org.compiere.model.I_R_Request.Table_Name) .getPO(getR_Request_ID(), get_TrxName()); } /** Set Request. diff --git a/org.adempiere.base/src/org/compiere/model/X_R_IssueProject.java b/org.adempiere.base/src/org/compiere/model/X_R_IssueProject.java index dbcc672ef4..f2469971a1 100644 --- a/org.adempiere.base/src/org/compiere/model/X_R_IssueProject.java +++ b/org.adempiere.base/src/org/compiere/model/X_R_IssueProject.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for R_IssueProject - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_R_IssueProject extends PO implements I_R_IssueProject, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_R_IssueProject (Properties ctx, int R_IssueProject_ID, String trxName) @@ -72,9 +72,9 @@ public class X_R_IssueProject extends PO implements I_R_IssueProject, I_Persiste return sb.toString(); } - public I_A_Asset getA_Asset() throws RuntimeException + public org.compiere.model.I_A_Asset getA_Asset() throws RuntimeException { - return (I_A_Asset)MTable.get(getCtx(), I_A_Asset.Table_Name) + return (org.compiere.model.I_A_Asset)MTable.get(getCtx(), org.compiere.model.I_A_Asset.Table_Name) .getPO(getA_Asset_ID(), get_TrxName()); } /** Set Asset. @@ -100,9 +100,9 @@ public class X_R_IssueProject extends PO implements I_R_IssueProject, I_Persiste return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -210,6 +210,20 @@ public class X_R_IssueProject extends PO implements I_R_IssueProject, I_Persiste return ii.intValue(); } + /** Set R_IssueProject_UU. + @param R_IssueProject_UU R_IssueProject_UU */ + public void setR_IssueProject_UU (String R_IssueProject_UU) + { + set_Value (COLUMNNAME_R_IssueProject_UU, R_IssueProject_UU); + } + + /** Get R_IssueProject_UU. + @return R_IssueProject_UU */ + public String getR_IssueProject_UU () + { + return (String)get_Value(COLUMNNAME_R_IssueProject_UU); + } + /** Set Statistics. @param StatisticsInfo Information to help profiling the system for solving support issues diff --git a/org.adempiere.base/src/org/compiere/model/X_R_IssueRecommendation.java b/org.adempiere.base/src/org/compiere/model/X_R_IssueRecommendation.java index a8d43f4b26..946fa8432f 100644 --- a/org.adempiere.base/src/org/compiere/model/X_R_IssueRecommendation.java +++ b/org.adempiere.base/src/org/compiere/model/X_R_IssueRecommendation.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for R_IssueRecommendation - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_R_IssueRecommendation extends PO implements I_R_IssueRecommendation, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_R_IssueRecommendation (Properties ctx, int R_IssueRecommendation_ID, String trxName) @@ -152,4 +152,18 @@ public class X_R_IssueRecommendation extends PO implements I_R_IssueRecommendati return 0; return ii.intValue(); } + + /** Set R_IssueRecommendation_UU. + @param R_IssueRecommendation_UU R_IssueRecommendation_UU */ + public void setR_IssueRecommendation_UU (String R_IssueRecommendation_UU) + { + set_Value (COLUMNNAME_R_IssueRecommendation_UU, R_IssueRecommendation_UU); + } + + /** Get R_IssueRecommendation_UU. + @return R_IssueRecommendation_UU */ + public String getR_IssueRecommendation_UU () + { + return (String)get_Value(COLUMNNAME_R_IssueRecommendation_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_R_IssueStatus.java b/org.adempiere.base/src/org/compiere/model/X_R_IssueStatus.java index f2af928b78..5667d2280f 100644 --- a/org.adempiere.base/src/org/compiere/model/X_R_IssueStatus.java +++ b/org.adempiere.base/src/org/compiere/model/X_R_IssueStatus.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for R_IssueStatus - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_R_IssueStatus extends PO implements I_R_IssueStatus, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_R_IssueStatus (Properties ctx, int R_IssueStatus_ID, String trxName) @@ -135,4 +135,18 @@ public class X_R_IssueStatus extends PO implements I_R_IssueStatus, I_Persistent return 0; return ii.intValue(); } + + /** Set R_IssueStatus_UU. + @param R_IssueStatus_UU R_IssueStatus_UU */ + public void setR_IssueStatus_UU (String R_IssueStatus_UU) + { + set_Value (COLUMNNAME_R_IssueStatus_UU, R_IssueStatus_UU); + } + + /** Get R_IssueStatus_UU. + @return R_IssueStatus_UU */ + public String getR_IssueStatus_UU () + { + return (String)get_Value(COLUMNNAME_R_IssueStatus_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_R_IssueSystem.java b/org.adempiere.base/src/org/compiere/model/X_R_IssueSystem.java index 65ccc813c0..f781542de6 100644 --- a/org.adempiere.base/src/org/compiere/model/X_R_IssueSystem.java +++ b/org.adempiere.base/src/org/compiere/model/X_R_IssueSystem.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for R_IssueSystem - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_R_IssueSystem extends PO implements I_R_IssueSystem, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_R_IssueSystem (Properties ctx, int R_IssueSystem_ID, String trxName) @@ -72,9 +72,9 @@ public class X_R_IssueSystem extends PO implements I_R_IssueSystem, I_Persistent return sb.toString(); } - public I_A_Asset getA_Asset() throws RuntimeException + public org.compiere.model.I_A_Asset getA_Asset() throws RuntimeException { - return (I_A_Asset)MTable.get(getCtx(), I_A_Asset.Table_Name) + return (org.compiere.model.I_A_Asset)MTable.get(getCtx(), org.compiere.model.I_A_Asset.Table_Name) .getPO(getA_Asset_ID(), get_TrxName()); } /** Set Asset. @@ -165,6 +165,20 @@ public class X_R_IssueSystem extends PO implements I_R_IssueSystem, I_Persistent return ii.intValue(); } + /** Set R_IssueSystem_UU. + @param R_IssueSystem_UU R_IssueSystem_UU */ + public void setR_IssueSystem_UU (String R_IssueSystem_UU) + { + set_Value (COLUMNNAME_R_IssueSystem_UU, R_IssueSystem_UU); + } + + /** Get R_IssueSystem_UU. + @return R_IssueSystem_UU */ + public String getR_IssueSystem_UU () + { + return (String)get_Value(COLUMNNAME_R_IssueSystem_UU); + } + /** Set Statistics. @param StatisticsInfo Information to help profiling the system for solving support issues diff --git a/org.adempiere.base/src/org/compiere/model/X_R_IssueUser.java b/org.adempiere.base/src/org/compiere/model/X_R_IssueUser.java index 31e8ccca13..a04cbfaabd 100644 --- a/org.adempiere.base/src/org/compiere/model/X_R_IssueUser.java +++ b/org.adempiere.base/src/org/compiere/model/X_R_IssueUser.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for R_IssueUser - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_R_IssueUser extends PO implements I_R_IssueUser, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_R_IssueUser (Properties ctx, int R_IssueUser_ID, String trxName) @@ -71,9 +71,9 @@ public class X_R_IssueUser extends PO implements I_R_IssueUser, I_Persistent return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -139,6 +139,20 @@ public class X_R_IssueUser extends PO implements I_R_IssueUser, I_Persistent return ii.intValue(); } + /** Set R_IssueUser_UU. + @param R_IssueUser_UU R_IssueUser_UU */ + public void setR_IssueUser_UU (String R_IssueUser_UU) + { + set_Value (COLUMNNAME_R_IssueUser_UU, R_IssueUser_UU); + } + + /** Get R_IssueUser_UU. + @return R_IssueUser_UU */ + public String getR_IssueUser_UU () + { + return (String)get_Value(COLUMNNAME_R_IssueUser_UU); + } + /** Set Registered EMail. @param UserName Email of the responsible for the System diff --git a/org.adempiere.base/src/org/compiere/model/X_R_MailText.java b/org.adempiere.base/src/org/compiere/model/X_R_MailText.java index c2f1f7e291..76bbc4ef3d 100644 --- a/org.adempiere.base/src/org/compiere/model/X_R_MailText.java +++ b/org.adempiere.base/src/org/compiere/model/X_R_MailText.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for R_MailText - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_R_MailText extends PO implements I_R_MailText, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_R_MailText (Properties ctx, int R_MailText_ID, String trxName) @@ -212,4 +212,18 @@ public class X_R_MailText extends PO implements I_R_MailText, I_Persistent return 0; return ii.intValue(); } + + /** Set R_MailText_UU. + @param R_MailText_UU R_MailText_UU */ + public void setR_MailText_UU (String R_MailText_UU) + { + set_Value (COLUMNNAME_R_MailText_UU, R_MailText_UU); + } + + /** Get R_MailText_UU. + @return R_MailText_UU */ + public String getR_MailText_UU () + { + return (String)get_Value(COLUMNNAME_R_MailText_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_R_Request.java b/org.adempiere.base/src/org/compiere/model/X_R_Request.java index 60dacc71a0..8baf224835 100644 --- a/org.adempiere.base/src/org/compiere/model/X_R_Request.java +++ b/org.adempiere.base/src/org/compiere/model/X_R_Request.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for R_Request - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_R_Request extends PO implements I_R_Request, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_R_Request (Properties ctx, int R_Request_ID, String trxName) @@ -90,9 +90,9 @@ public class X_R_Request extends PO implements I_R_Request, I_Persistent return sb.toString(); } - public I_A_Asset getA_Asset() throws RuntimeException + public org.compiere.model.I_A_Asset getA_Asset() throws RuntimeException { - return (I_A_Asset)MTable.get(getCtx(), I_A_Asset.Table_Name) + return (org.compiere.model.I_A_Asset)MTable.get(getCtx(), org.compiere.model.I_A_Asset.Table_Name) .getPO(getA_Asset_ID(), get_TrxName()); } /** Set Asset. @@ -118,9 +118,9 @@ public class X_R_Request extends PO implements I_R_Request, I_Persistent return ii.intValue(); } - public I_AD_Role getAD_Role() throws RuntimeException + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException { - return (I_AD_Role)MTable.get(getCtx(), I_AD_Role.Table_Name) + return (org.compiere.model.I_AD_Role)MTable.get(getCtx(), org.compiere.model.I_AD_Role.Table_Name) .getPO(getAD_Role_ID(), get_TrxName()); } /** Set Role. @@ -146,9 +146,9 @@ public class X_R_Request extends PO implements I_R_Request, I_Persistent return ii.intValue(); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @@ -174,9 +174,9 @@ public class X_R_Request extends PO implements I_R_Request, I_Persistent return ii.intValue(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -202,9 +202,9 @@ public class X_R_Request extends PO implements I_R_Request, I_Persistent return ii.intValue(); } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -230,9 +230,9 @@ public class X_R_Request extends PO implements I_R_Request, I_Persistent return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -258,9 +258,9 @@ public class X_R_Request extends PO implements I_R_Request, I_Persistent return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -286,9 +286,9 @@ public class X_R_Request extends PO implements I_R_Request, I_Persistent return ii.intValue(); } - public I_C_Invoice getC_Invoice() throws RuntimeException + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException { - return (I_C_Invoice)MTable.get(getCtx(), I_C_Invoice.Table_Name) + return (org.compiere.model.I_C_Invoice)MTable.get(getCtx(), org.compiere.model.I_C_Invoice.Table_Name) .getPO(getC_Invoice_ID(), get_TrxName()); } /** Set Invoice. @@ -314,9 +314,9 @@ public class X_R_Request extends PO implements I_R_Request, I_Persistent return ii.intValue(); } - public I_C_Invoice getC_InvoiceRequest() throws RuntimeException + public org.compiere.model.I_C_Invoice getC_InvoiceRequest() throws RuntimeException { - return (I_C_Invoice)MTable.get(getCtx(), I_C_Invoice.Table_Name) + return (org.compiere.model.I_C_Invoice)MTable.get(getCtx(), org.compiere.model.I_C_Invoice.Table_Name) .getPO(getC_InvoiceRequest_ID(), get_TrxName()); } /** Set Request Invoice. @@ -415,9 +415,9 @@ public class X_R_Request extends PO implements I_R_Request, I_Persistent return (String)get_Value(COLUMNNAME_ConfidentialTypeEntry); } - public I_C_Order getC_Order() throws RuntimeException + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException { - return (I_C_Order)MTable.get(getCtx(), I_C_Order.Table_Name) + return (org.compiere.model.I_C_Order)MTable.get(getCtx(), org.compiere.model.I_C_Order.Table_Name) .getPO(getC_Order_ID(), get_TrxName()); } /** Set Order. @@ -443,9 +443,9 @@ public class X_R_Request extends PO implements I_R_Request, I_Persistent return ii.intValue(); } - public I_C_Payment getC_Payment() throws RuntimeException + public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException { - return (I_C_Payment)MTable.get(getCtx(), I_C_Payment.Table_Name) + return (org.compiere.model.I_C_Payment)MTable.get(getCtx(), org.compiere.model.I_C_Payment.Table_Name) .getPO(getC_Payment_ID(), get_TrxName()); } /** Set Payment. @@ -471,9 +471,9 @@ public class X_R_Request extends PO implements I_R_Request, I_Persistent return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -741,9 +741,9 @@ public class X_R_Request extends PO implements I_R_Request, I_Persistent return (String)get_Value(COLUMNNAME_LastResult); } - public I_M_ChangeRequest getM_ChangeRequest() throws RuntimeException + public org.compiere.model.I_M_ChangeRequest getM_ChangeRequest() throws RuntimeException { - return (I_M_ChangeRequest)MTable.get(getCtx(), I_M_ChangeRequest.Table_Name) + return (org.compiere.model.I_M_ChangeRequest)MTable.get(getCtx(), org.compiere.model.I_M_ChangeRequest.Table_Name) .getPO(getM_ChangeRequest_ID(), get_TrxName()); } /** Set Change Request. @@ -769,9 +769,9 @@ public class X_R_Request extends PO implements I_R_Request, I_Persistent return ii.intValue(); } - public I_M_ChangeNotice getM_FixChangeNotice() throws RuntimeException + public org.compiere.model.I_M_ChangeNotice getM_FixChangeNotice() throws RuntimeException { - return (I_M_ChangeNotice)MTable.get(getCtx(), I_M_ChangeNotice.Table_Name) + return (org.compiere.model.I_M_ChangeNotice)MTable.get(getCtx(), org.compiere.model.I_M_ChangeNotice.Table_Name) .getPO(getM_FixChangeNotice_ID(), get_TrxName()); } /** Set Fixed in. @@ -797,9 +797,9 @@ public class X_R_Request extends PO implements I_R_Request, I_Persistent return ii.intValue(); } - public I_M_InOut getM_InOut() throws RuntimeException + public org.compiere.model.I_M_InOut getM_InOut() throws RuntimeException { - return (I_M_InOut)MTable.get(getCtx(), I_M_InOut.Table_Name) + return (org.compiere.model.I_M_InOut)MTable.get(getCtx(), org.compiere.model.I_M_InOut.Table_Name) .getPO(getM_InOut_ID(), get_TrxName()); } /** Set Shipment/Receipt. @@ -825,9 +825,9 @@ public class X_R_Request extends PO implements I_R_Request, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -853,9 +853,9 @@ public class X_R_Request extends PO implements I_R_Request, I_Persistent return ii.intValue(); } - public I_M_Product getM_ProductSpent() throws RuntimeException + public org.compiere.model.I_M_Product getM_ProductSpent() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_ProductSpent_ID(), get_TrxName()); } /** Set Product Used. @@ -881,9 +881,9 @@ public class X_R_Request extends PO implements I_R_Request, I_Persistent return ii.intValue(); } - public I_M_RMA getM_RMA() throws RuntimeException + public org.compiere.model.I_M_RMA getM_RMA() throws RuntimeException { - return (I_M_RMA)MTable.get(getCtx(), I_M_RMA.Table_Name) + return (org.compiere.model.I_M_RMA)MTable.get(getCtx(), org.compiere.model.I_M_RMA.Table_Name) .getPO(getM_RMA_ID(), get_TrxName()); } /** Set RMA. @@ -1077,9 +1077,9 @@ public class X_R_Request extends PO implements I_R_Request, I_Persistent return bd; } - public I_R_Category getR_Category() throws RuntimeException + public org.compiere.model.I_R_Category getR_Category() throws RuntimeException { - return (I_R_Category)MTable.get(getCtx(), I_R_Category.Table_Name) + return (org.compiere.model.I_R_Category)MTable.get(getCtx(), org.compiere.model.I_R_Category.Table_Name) .getPO(getR_Category_ID(), get_TrxName()); } /** Set Category. @@ -1165,9 +1165,9 @@ public class X_R_Request extends PO implements I_R_Request, I_Persistent return (String)get_Value(COLUMNNAME_Result); } - public I_R_Group getR_Group() throws RuntimeException + public org.compiere.model.I_R_Group getR_Group() throws RuntimeException { - return (I_R_Group)MTable.get(getCtx(), I_R_Group.Table_Name) + return (org.compiere.model.I_R_Group)MTable.get(getCtx(), org.compiere.model.I_R_Group.Table_Name) .getPO(getR_Group_ID(), get_TrxName()); } /** Set Group. @@ -1193,9 +1193,9 @@ public class X_R_Request extends PO implements I_R_Request, I_Persistent return ii.intValue(); } - public I_R_MailText getR_MailText() throws RuntimeException + public org.compiere.model.I_R_MailText getR_MailText() throws RuntimeException { - return (I_R_MailText)MTable.get(getCtx(), I_R_MailText.Table_Name) + return (org.compiere.model.I_R_MailText)MTable.get(getCtx(), org.compiere.model.I_R_MailText.Table_Name) .getPO(getR_MailText_ID(), get_TrxName()); } /** Set Mail Template. @@ -1244,9 +1244,9 @@ public class X_R_Request extends PO implements I_R_Request, I_Persistent return ii.intValue(); } - public I_R_Request getR_RequestRelated() throws RuntimeException + public org.compiere.model.I_R_Request getR_RequestRelated() throws RuntimeException { - return (I_R_Request)MTable.get(getCtx(), I_R_Request.Table_Name) + return (org.compiere.model.I_R_Request)MTable.get(getCtx(), org.compiere.model.I_R_Request.Table_Name) .getPO(getR_RequestRelated_ID(), get_TrxName()); } /** Set Related Request. @@ -1272,9 +1272,9 @@ public class X_R_Request extends PO implements I_R_Request, I_Persistent return ii.intValue(); } - public I_R_RequestType getR_RequestType() throws RuntimeException + public org.compiere.model.I_R_RequestType getR_RequestType() throws RuntimeException { - return (I_R_RequestType)MTable.get(getCtx(), I_R_RequestType.Table_Name) + return (org.compiere.model.I_R_RequestType)MTable.get(getCtx(), org.compiere.model.I_R_RequestType.Table_Name) .getPO(getR_RequestType_ID(), get_TrxName()); } /** Set Request Type. @@ -1300,9 +1300,23 @@ public class X_R_Request extends PO implements I_R_Request, I_Persistent return ii.intValue(); } - public I_R_Resolution getR_Resolution() throws RuntimeException + /** Set R_Request_UU. + @param R_Request_UU R_Request_UU */ + public void setR_Request_UU (String R_Request_UU) + { + set_Value (COLUMNNAME_R_Request_UU, R_Request_UU); + } + + /** Get R_Request_UU. + @return R_Request_UU */ + public String getR_Request_UU () + { + return (String)get_Value(COLUMNNAME_R_Request_UU); + } + + public org.compiere.model.I_R_Resolution getR_Resolution() throws RuntimeException { - return (I_R_Resolution)MTable.get(getCtx(), I_R_Resolution.Table_Name) + return (org.compiere.model.I_R_Resolution)MTable.get(getCtx(), org.compiere.model.I_R_Resolution.Table_Name) .getPO(getR_Resolution_ID(), get_TrxName()); } /** Set Resolution. @@ -1328,9 +1342,9 @@ public class X_R_Request extends PO implements I_R_Request, I_Persistent return ii.intValue(); } - public I_R_StandardResponse getR_StandardResponse() throws RuntimeException + public org.compiere.model.I_R_StandardResponse getR_StandardResponse() throws RuntimeException { - return (I_R_StandardResponse)MTable.get(getCtx(), I_R_StandardResponse.Table_Name) + return (org.compiere.model.I_R_StandardResponse)MTable.get(getCtx(), org.compiere.model.I_R_StandardResponse.Table_Name) .getPO(getR_StandardResponse_ID(), get_TrxName()); } /** Set Standard Response. @@ -1356,9 +1370,9 @@ public class X_R_Request extends PO implements I_R_Request, I_Persistent return ii.intValue(); } - public I_R_Status getR_Status() throws RuntimeException + public org.compiere.model.I_R_Status getR_Status() throws RuntimeException { - return (I_R_Status)MTable.get(getCtx(), I_R_Status.Table_Name) + return (org.compiere.model.I_R_Status)MTable.get(getCtx(), org.compiere.model.I_R_Status.Table_Name) .getPO(getR_Status_ID(), get_TrxName()); } /** Set Status. @@ -1384,9 +1398,9 @@ public class X_R_Request extends PO implements I_R_Request, I_Persistent return ii.intValue(); } - public I_AD_User getSalesRep() throws RuntimeException + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getSalesRep_ID(), get_TrxName()); } /** Set Sales Representative. diff --git a/org.adempiere.base/src/org/compiere/model/X_R_RequestAction.java b/org.adempiere.base/src/org/compiere/model/X_R_RequestAction.java index f634d93756..a641890010 100644 --- a/org.adempiere.base/src/org/compiere/model/X_R_RequestAction.java +++ b/org.adempiere.base/src/org/compiere/model/X_R_RequestAction.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for R_RequestAction - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_R_RequestAction extends PO implements I_R_RequestAction, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_R_RequestAction (Properties ctx, int R_RequestAction_ID, String trxName) @@ -73,9 +73,9 @@ public class X_R_RequestAction extends PO implements I_R_RequestAction, I_Persis return sb.toString(); } - public I_A_Asset getA_Asset() throws RuntimeException + public org.compiere.model.I_A_Asset getA_Asset() throws RuntimeException { - return (I_A_Asset)MTable.get(getCtx(), I_A_Asset.Table_Name) + return (org.compiere.model.I_A_Asset)MTable.get(getCtx(), org.compiere.model.I_A_Asset.Table_Name) .getPO(getA_Asset_ID(), get_TrxName()); } /** Set Asset. @@ -101,9 +101,9 @@ public class X_R_RequestAction extends PO implements I_R_RequestAction, I_Persis return ii.intValue(); } - public I_AD_Role getAD_Role() throws RuntimeException + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException { - return (I_AD_Role)MTable.get(getCtx(), I_AD_Role.Table_Name) + return (org.compiere.model.I_AD_Role)MTable.get(getCtx(), org.compiere.model.I_AD_Role.Table_Name) .getPO(getAD_Role_ID(), get_TrxName()); } /** Set Role. @@ -129,9 +129,9 @@ public class X_R_RequestAction extends PO implements I_R_RequestAction, I_Persis return ii.intValue(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -157,9 +157,9 @@ public class X_R_RequestAction extends PO implements I_R_RequestAction, I_Persis return ii.intValue(); } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -185,9 +185,9 @@ public class X_R_RequestAction extends PO implements I_R_RequestAction, I_Persis return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -213,9 +213,9 @@ public class X_R_RequestAction extends PO implements I_R_RequestAction, I_Persis return ii.intValue(); } - public I_C_Invoice getC_Invoice() throws RuntimeException + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException { - return (I_C_Invoice)MTable.get(getCtx(), I_C_Invoice.Table_Name) + return (org.compiere.model.I_C_Invoice)MTable.get(getCtx(), org.compiere.model.I_C_Invoice.Table_Name) .getPO(getC_Invoice_ID(), get_TrxName()); } /** Set Invoice. @@ -269,9 +269,9 @@ public class X_R_RequestAction extends PO implements I_R_RequestAction, I_Persis return (String)get_Value(COLUMNNAME_ConfidentialType); } - public I_C_Order getC_Order() throws RuntimeException + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException { - return (I_C_Order)MTable.get(getCtx(), I_C_Order.Table_Name) + return (org.compiere.model.I_C_Order)MTable.get(getCtx(), org.compiere.model.I_C_Order.Table_Name) .getPO(getC_Order_ID(), get_TrxName()); } /** Set Order. @@ -297,9 +297,9 @@ public class X_R_RequestAction extends PO implements I_R_RequestAction, I_Persis return ii.intValue(); } - public I_C_Payment getC_Payment() throws RuntimeException + public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException { - return (I_C_Payment)MTable.get(getCtx(), I_C_Payment.Table_Name) + return (org.compiere.model.I_C_Payment)MTable.get(getCtx(), org.compiere.model.I_C_Payment.Table_Name) .getPO(getC_Payment_ID(), get_TrxName()); } /** Set Payment. @@ -325,9 +325,9 @@ public class X_R_RequestAction extends PO implements I_R_RequestAction, I_Persis return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -493,9 +493,9 @@ public class X_R_RequestAction extends PO implements I_R_RequestAction, I_Persis return (String)get_Value(COLUMNNAME_IsSelfService); } - public I_M_InOut getM_InOut() throws RuntimeException + public org.compiere.model.I_M_InOut getM_InOut() throws RuntimeException { - return (I_M_InOut)MTable.get(getCtx(), I_M_InOut.Table_Name) + return (org.compiere.model.I_M_InOut)MTable.get(getCtx(), org.compiere.model.I_M_InOut.Table_Name) .getPO(getM_InOut_ID(), get_TrxName()); } /** Set Shipment/Receipt. @@ -521,9 +521,9 @@ public class X_R_RequestAction extends PO implements I_R_RequestAction, I_Persis return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -549,9 +549,9 @@ public class X_R_RequestAction extends PO implements I_R_RequestAction, I_Persis return ii.intValue(); } - public I_M_Product getM_ProductSpent() throws RuntimeException + public org.compiere.model.I_M_Product getM_ProductSpent() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_ProductSpent_ID(), get_TrxName()); } /** Set Product Used. @@ -577,9 +577,9 @@ public class X_R_RequestAction extends PO implements I_R_RequestAction, I_Persis return ii.intValue(); } - public I_M_RMA getM_RMA() throws RuntimeException + public org.compiere.model.I_M_RMA getM_RMA() throws RuntimeException { - return (I_M_RMA)MTable.get(getCtx(), I_M_RMA.Table_Name) + return (org.compiere.model.I_M_RMA)MTable.get(getCtx(), org.compiere.model.I_M_RMA.Table_Name) .getPO(getM_RMA_ID(), get_TrxName()); } /** Set RMA. @@ -742,9 +742,9 @@ public class X_R_RequestAction extends PO implements I_R_RequestAction, I_Persis return bd; } - public I_R_Category getR_Category() throws RuntimeException + public org.compiere.model.I_R_Category getR_Category() throws RuntimeException { - return (I_R_Category)MTable.get(getCtx(), I_R_Category.Table_Name) + return (org.compiere.model.I_R_Category)MTable.get(getCtx(), org.compiere.model.I_R_Category.Table_Name) .getPO(getR_Category_ID(), get_TrxName()); } /** Set Category. @@ -770,9 +770,9 @@ public class X_R_RequestAction extends PO implements I_R_RequestAction, I_Persis return ii.intValue(); } - public I_R_Group getR_Group() throws RuntimeException + public org.compiere.model.I_R_Group getR_Group() throws RuntimeException { - return (I_R_Group)MTable.get(getCtx(), I_R_Group.Table_Name) + return (org.compiere.model.I_R_Group)MTable.get(getCtx(), org.compiere.model.I_R_Group.Table_Name) .getPO(getR_Group_ID(), get_TrxName()); } /** Set Group. @@ -821,9 +821,23 @@ public class X_R_RequestAction extends PO implements I_R_RequestAction, I_Persis return ii.intValue(); } - public I_R_Request getR_Request() throws RuntimeException + /** Set R_RequestAction_UU. + @param R_RequestAction_UU R_RequestAction_UU */ + public void setR_RequestAction_UU (String R_RequestAction_UU) + { + set_Value (COLUMNNAME_R_RequestAction_UU, R_RequestAction_UU); + } + + /** Get R_RequestAction_UU. + @return R_RequestAction_UU */ + public String getR_RequestAction_UU () + { + return (String)get_Value(COLUMNNAME_R_RequestAction_UU); + } + + public org.compiere.model.I_R_Request getR_Request() throws RuntimeException { - return (I_R_Request)MTable.get(getCtx(), I_R_Request.Table_Name) + return (org.compiere.model.I_R_Request)MTable.get(getCtx(), org.compiere.model.I_R_Request.Table_Name) .getPO(getR_Request_ID(), get_TrxName()); } /** Set Request. @@ -849,9 +863,9 @@ public class X_R_RequestAction extends PO implements I_R_RequestAction, I_Persis return ii.intValue(); } - public I_R_RequestType getR_RequestType() throws RuntimeException + public org.compiere.model.I_R_RequestType getR_RequestType() throws RuntimeException { - return (I_R_RequestType)MTable.get(getCtx(), I_R_RequestType.Table_Name) + return (org.compiere.model.I_R_RequestType)MTable.get(getCtx(), org.compiere.model.I_R_RequestType.Table_Name) .getPO(getR_RequestType_ID(), get_TrxName()); } /** Set Request Type. @@ -877,9 +891,9 @@ public class X_R_RequestAction extends PO implements I_R_RequestAction, I_Persis return ii.intValue(); } - public I_R_Resolution getR_Resolution() throws RuntimeException + public org.compiere.model.I_R_Resolution getR_Resolution() throws RuntimeException { - return (I_R_Resolution)MTable.get(getCtx(), I_R_Resolution.Table_Name) + return (org.compiere.model.I_R_Resolution)MTable.get(getCtx(), org.compiere.model.I_R_Resolution.Table_Name) .getPO(getR_Resolution_ID(), get_TrxName()); } /** Set Resolution. @@ -905,9 +919,9 @@ public class X_R_RequestAction extends PO implements I_R_RequestAction, I_Persis return ii.intValue(); } - public I_R_Status getR_Status() throws RuntimeException + public org.compiere.model.I_R_Status getR_Status() throws RuntimeException { - return (I_R_Status)MTable.get(getCtx(), I_R_Status.Table_Name) + return (org.compiere.model.I_R_Status)MTable.get(getCtx(), org.compiere.model.I_R_Status.Table_Name) .getPO(getR_Status_ID(), get_TrxName()); } /** Set Status. @@ -933,9 +947,9 @@ public class X_R_RequestAction extends PO implements I_R_RequestAction, I_Persis return ii.intValue(); } - public I_AD_User getSalesRep() throws RuntimeException + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getSalesRep_ID(), get_TrxName()); } /** Set Sales Representative. diff --git a/org.adempiere.base/src/org/compiere/model/X_R_RequestProcessor.java b/org.adempiere.base/src/org/compiere/model/X_R_RequestProcessor.java index 62e13ab8d8..ad67bfdedc 100644 --- a/org.adempiere.base/src/org/compiere/model/X_R_RequestProcessor.java +++ b/org.adempiere.base/src/org/compiere/model/X_R_RequestProcessor.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for R_RequestProcessor - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_R_RequestProcessor extends PO implements I_R_RequestProcessor, I_Persistent { /** * */ - private static final long serialVersionUID = 20120920L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_R_RequestProcessor (Properties ctx, int R_RequestProcessor_ID, String trxName) @@ -39,6 +39,7 @@ public class X_R_RequestProcessor extends PO implements I_R_RequestProcessor, I_ super (ctx, R_RequestProcessor_ID, trxName); /** if (R_RequestProcessor_ID == 0) { + setAD_Schedule_ID (0); setInactivityAlertDays (0); // 0 setKeepLogDays (0); @@ -88,8 +89,8 @@ public class X_R_RequestProcessor extends PO implements I_R_RequestProcessor, I_ return (org.compiere.model.I_AD_Schedule)MTable.get(getCtx(), org.compiere.model.I_AD_Schedule.Table_Name) .getPO(getAD_Schedule_ID(), get_TrxName()); } - /** Set AD_Schedule_ID. - @param AD_Schedule_ID AD_Schedule_ID */ + /** Set Schedule. + @param AD_Schedule_ID Schedule */ public void setAD_Schedule_ID (int AD_Schedule_ID) { if (AD_Schedule_ID < 1) @@ -98,8 +99,8 @@ public class X_R_RequestProcessor extends PO implements I_R_RequestProcessor, I_ set_Value (COLUMNNAME_AD_Schedule_ID, Integer.valueOf(AD_Schedule_ID)); } - /** Get AD_Schedule_ID. - @return AD_Schedule_ID */ + /** Get Schedule. + @return Schedule */ public int getAD_Schedule_ID () { Integer ii = (Integer)get_Value(COLUMNNAME_AD_Schedule_ID); diff --git a/org.adempiere.base/src/org/compiere/model/X_R_RequestProcessorLog.java b/org.adempiere.base/src/org/compiere/model/X_R_RequestProcessorLog.java index acb5b929cd..056f8bb42d 100644 --- a/org.adempiere.base/src/org/compiere/model/X_R_RequestProcessorLog.java +++ b/org.adempiere.base/src/org/compiere/model/X_R_RequestProcessorLog.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for R_RequestProcessorLog - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_R_RequestProcessorLog extends PO implements I_R_RequestProcessorLog, I_Persistent { /** * */ - private static final long serialVersionUID = 20120920L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_R_RequestProcessorLog (Properties ctx, int R_RequestProcessorLog_ID, String trxName) @@ -197,6 +197,20 @@ public class X_R_RequestProcessorLog extends PO implements I_R_RequestProcessorL return ii.intValue(); } + /** Set R_RequestProcessorLog_UU. + @param R_RequestProcessorLog_UU R_RequestProcessorLog_UU */ + public void setR_RequestProcessorLog_UU (String R_RequestProcessorLog_UU) + { + set_Value (COLUMNNAME_R_RequestProcessorLog_UU, R_RequestProcessorLog_UU); + } + + /** Get R_RequestProcessorLog_UU. + @return R_RequestProcessorLog_UU */ + public String getR_RequestProcessorLog_UU () + { + return (String)get_Value(COLUMNNAME_R_RequestProcessorLog_UU); + } + /** Set Summary. @param Summary Textual summary of this request diff --git a/org.adempiere.base/src/org/compiere/model/X_R_RequestProcessor_Route.java b/org.adempiere.base/src/org/compiere/model/X_R_RequestProcessor_Route.java index 6c87051aa0..d38fd57f79 100644 --- a/org.adempiere.base/src/org/compiere/model/X_R_RequestProcessor_Route.java +++ b/org.adempiere.base/src/org/compiere/model/X_R_RequestProcessor_Route.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for R_RequestProcessor_Route - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_R_RequestProcessor_Route extends PO implements I_R_RequestProcessor_Route, I_Persistent { /** * */ - private static final long serialVersionUID = 20120920L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_R_RequestProcessor_Route (Properties ctx, int R_RequestProcessor_Route_ID, String trxName) @@ -169,6 +169,20 @@ public class X_R_RequestProcessor_Route extends PO implements I_R_RequestProcess return ii.intValue(); } + /** Set R_RequestProcessor_Route_UU. + @param R_RequestProcessor_Route_UU R_RequestProcessor_Route_UU */ + public void setR_RequestProcessor_Route_UU (String R_RequestProcessor_Route_UU) + { + set_Value (COLUMNNAME_R_RequestProcessor_Route_UU, R_RequestProcessor_Route_UU); + } + + /** Get R_RequestProcessor_Route_UU. + @return R_RequestProcessor_Route_UU */ + public String getR_RequestProcessor_Route_UU () + { + return (String)get_Value(COLUMNNAME_R_RequestProcessor_Route_UU); + } + public org.compiere.model.I_R_RequestType getR_RequestType() throws RuntimeException { return (org.compiere.model.I_R_RequestType)MTable.get(getCtx(), org.compiere.model.I_R_RequestType.Table_Name) diff --git a/org.adempiere.base/src/org/compiere/model/X_R_RequestType.java b/org.adempiere.base/src/org/compiere/model/X_R_RequestType.java index 9d7259872a..08740637f7 100644 --- a/org.adempiere.base/src/org/compiere/model/X_R_RequestType.java +++ b/org.adempiere.base/src/org/compiere/model/X_R_RequestType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for R_RequestType - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_R_RequestType extends PO implements I_R_RequestType, I_Persistent { /** * */ - private static final long serialVersionUID = 20120802L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_R_RequestType (Properties ctx, int R_RequestType_ID, String trxName) diff --git a/org.adempiere.base/src/org/compiere/model/X_R_RequestTypeUpdates.java b/org.adempiere.base/src/org/compiere/model/X_R_RequestTypeUpdates.java index 60374cd4a1..42807e5b32 100644 --- a/org.adempiere.base/src/org/compiere/model/X_R_RequestTypeUpdates.java +++ b/org.adempiere.base/src/org/compiere/model/X_R_RequestTypeUpdates.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for R_RequestTypeUpdates - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_R_RequestTypeUpdates extends PO implements I_R_RequestTypeUpdates, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_R_RequestTypeUpdates (Properties ctx, int R_RequestTypeUpdates_ID, String trxName) @@ -71,9 +71,9 @@ public class X_R_RequestTypeUpdates extends PO implements I_R_RequestTypeUpdates return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -123,9 +123,9 @@ public class X_R_RequestTypeUpdates extends PO implements I_R_RequestTypeUpdates return false; } - public I_R_RequestType getR_RequestType() throws RuntimeException + public org.compiere.model.I_R_RequestType getR_RequestType() throws RuntimeException { - return (I_R_RequestType)MTable.get(getCtx(), I_R_RequestType.Table_Name) + return (org.compiere.model.I_R_RequestType)MTable.get(getCtx(), org.compiere.model.I_R_RequestType.Table_Name) .getPO(getR_RequestType_ID(), get_TrxName()); } /** Set Request Type. @@ -150,4 +150,18 @@ public class X_R_RequestTypeUpdates extends PO implements I_R_RequestTypeUpdates return 0; return ii.intValue(); } + + /** Set R_RequestTypeUpdates_UU. + @param R_RequestTypeUpdates_UU R_RequestTypeUpdates_UU */ + public void setR_RequestTypeUpdates_UU (String R_RequestTypeUpdates_UU) + { + set_Value (COLUMNNAME_R_RequestTypeUpdates_UU, R_RequestTypeUpdates_UU); + } + + /** Get R_RequestTypeUpdates_UU. + @return R_RequestTypeUpdates_UU */ + public String getR_RequestTypeUpdates_UU () + { + return (String)get_Value(COLUMNNAME_R_RequestTypeUpdates_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_R_RequestUpdate.java b/org.adempiere.base/src/org/compiere/model/X_R_RequestUpdate.java index 09204e32c1..32264ab78c 100644 --- a/org.adempiere.base/src/org/compiere/model/X_R_RequestUpdate.java +++ b/org.adempiere.base/src/org/compiere/model/X_R_RequestUpdate.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for R_RequestUpdate - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_R_RequestUpdate extends PO implements I_R_RequestUpdate, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_R_RequestUpdate (Properties ctx, int R_RequestUpdate_ID, String trxName) @@ -120,9 +120,9 @@ public class X_R_RequestUpdate extends PO implements I_R_RequestUpdate, I_Persis return (Timestamp)get_Value(COLUMNNAME_EndTime); } - public I_M_Product getM_ProductSpent() throws RuntimeException + public org.compiere.model.I_M_Product getM_ProductSpent() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_ProductSpent_ID(), get_TrxName()); } /** Set Product Used. @@ -205,9 +205,9 @@ public class X_R_RequestUpdate extends PO implements I_R_RequestUpdate, I_Persis return (String)get_Value(COLUMNNAME_Result); } - public I_R_Request getR_Request() throws RuntimeException + public org.compiere.model.I_R_Request getR_Request() throws RuntimeException { - return (I_R_Request)MTable.get(getCtx(), I_R_Request.Table_Name) + return (org.compiere.model.I_R_Request)MTable.get(getCtx(), org.compiere.model.I_R_Request.Table_Name) .getPO(getR_Request_ID(), get_TrxName()); } /** Set Request. @@ -264,6 +264,20 @@ public class X_R_RequestUpdate extends PO implements I_R_RequestUpdate, I_Persis return new KeyNamePair(get_ID(), String.valueOf(getR_RequestUpdate_ID())); } + /** Set R_RequestUpdate_UU. + @param R_RequestUpdate_UU R_RequestUpdate_UU */ + public void setR_RequestUpdate_UU (String R_RequestUpdate_UU) + { + set_Value (COLUMNNAME_R_RequestUpdate_UU, R_RequestUpdate_UU); + } + + /** Get R_RequestUpdate_UU. + @return R_RequestUpdate_UU */ + public String getR_RequestUpdate_UU () + { + return (String)get_Value(COLUMNNAME_R_RequestUpdate_UU); + } + /** Set Start Time. @param StartTime Time started diff --git a/org.adempiere.base/src/org/compiere/model/X_R_RequestUpdates.java b/org.adempiere.base/src/org/compiere/model/X_R_RequestUpdates.java index 088b359827..8141720182 100644 --- a/org.adempiere.base/src/org/compiere/model/X_R_RequestUpdates.java +++ b/org.adempiere.base/src/org/compiere/model/X_R_RequestUpdates.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for R_RequestUpdates - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_R_RequestUpdates extends PO implements I_R_RequestUpdates, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_R_RequestUpdates (Properties ctx, int R_RequestUpdates_ID, String trxName) @@ -71,9 +71,9 @@ public class X_R_RequestUpdates extends PO implements I_R_RequestUpdates, I_Pers return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -123,9 +123,9 @@ public class X_R_RequestUpdates extends PO implements I_R_RequestUpdates, I_Pers return false; } - public I_R_Request getR_Request() throws RuntimeException + public org.compiere.model.I_R_Request getR_Request() throws RuntimeException { - return (I_R_Request)MTable.get(getCtx(), I_R_Request.Table_Name) + return (org.compiere.model.I_R_Request)MTable.get(getCtx(), org.compiere.model.I_R_Request.Table_Name) .getPO(getR_Request_ID(), get_TrxName()); } /** Set Request. @@ -150,4 +150,18 @@ public class X_R_RequestUpdates extends PO implements I_R_RequestUpdates, I_Pers return 0; return ii.intValue(); } + + /** Set R_RequestUpdates_UU. + @param R_RequestUpdates_UU R_RequestUpdates_UU */ + public void setR_RequestUpdates_UU (String R_RequestUpdates_UU) + { + set_Value (COLUMNNAME_R_RequestUpdates_UU, R_RequestUpdates_UU); + } + + /** Get R_RequestUpdates_UU. + @return R_RequestUpdates_UU */ + public String getR_RequestUpdates_UU () + { + return (String)get_Value(COLUMNNAME_R_RequestUpdates_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_R_Resolution.java b/org.adempiere.base/src/org/compiere/model/X_R_Resolution.java index 16433a3578..c9daae4430 100644 --- a/org.adempiere.base/src/org/compiere/model/X_R_Resolution.java +++ b/org.adempiere.base/src/org/compiere/model/X_R_Resolution.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for R_Resolution - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_R_Resolution extends PO implements I_R_Resolution, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_R_Resolution (Properties ctx, int R_Resolution_ID, String trxName) @@ -152,4 +152,18 @@ public class X_R_Resolution extends PO implements I_R_Resolution, I_Persistent return 0; return ii.intValue(); } + + /** Set R_Resolution_UU. + @param R_Resolution_UU R_Resolution_UU */ + public void setR_Resolution_UU (String R_Resolution_UU) + { + set_Value (COLUMNNAME_R_Resolution_UU, R_Resolution_UU); + } + + /** Get R_Resolution_UU. + @return R_Resolution_UU */ + public String getR_Resolution_UU () + { + return (String)get_Value(COLUMNNAME_R_Resolution_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_R_StandardResponse.java b/org.adempiere.base/src/org/compiere/model/X_R_StandardResponse.java index 6ae9244dac..6c83aa285c 100644 --- a/org.adempiere.base/src/org/compiere/model/X_R_StandardResponse.java +++ b/org.adempiere.base/src/org/compiere/model/X_R_StandardResponse.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for R_StandardResponse - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_R_StandardResponse extends PO implements I_R_StandardResponse, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_R_StandardResponse (Properties ctx, int R_StandardResponse_ID, String trxName) @@ -136,4 +136,18 @@ public class X_R_StandardResponse extends PO implements I_R_StandardResponse, I_ return 0; return ii.intValue(); } + + /** Set R_StandardResponse_UU. + @param R_StandardResponse_UU R_StandardResponse_UU */ + public void setR_StandardResponse_UU (String R_StandardResponse_UU) + { + set_Value (COLUMNNAME_R_StandardResponse_UU, R_StandardResponse_UU); + } + + /** Get R_StandardResponse_UU. + @return R_StandardResponse_UU */ + public String getR_StandardResponse_UU () + { + return (String)get_Value(COLUMNNAME_R_StandardResponse_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_R_Status.java b/org.adempiere.base/src/org/compiere/model/X_R_Status.java index 3bc67ecbad..86c56bcd28 100644 --- a/org.adempiere.base/src/org/compiere/model/X_R_Status.java +++ b/org.adempiere.base/src/org/compiere/model/X_R_Status.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for R_Status - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_R_Status extends PO implements I_R_Status, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_R_Status (Properties ctx, int R_Status_ID, String trxName) @@ -252,9 +252,9 @@ public class X_R_Status extends PO implements I_R_Status, I_Persistent return (String)get_Value(COLUMNNAME_Name); } - public I_R_Status getNext_Status() throws RuntimeException + public org.compiere.model.I_R_Status getNext_Status() throws RuntimeException { - return (I_R_Status)MTable.get(getCtx(), I_R_Status.Table_Name) + return (org.compiere.model.I_R_Status)MTable.get(getCtx(), org.compiere.model.I_R_Status.Table_Name) .getPO(getNext_Status_ID(), get_TrxName()); } /** Set Next Status. @@ -280,9 +280,9 @@ public class X_R_Status extends PO implements I_R_Status, I_Persistent return ii.intValue(); } - public I_R_StatusCategory getR_StatusCategory() throws RuntimeException + public org.compiere.model.I_R_StatusCategory getR_StatusCategory() throws RuntimeException { - return (I_R_StatusCategory)MTable.get(getCtx(), I_R_StatusCategory.Table_Name) + return (org.compiere.model.I_R_StatusCategory)MTable.get(getCtx(), org.compiere.model.I_R_StatusCategory.Table_Name) .getPO(getR_StatusCategory_ID(), get_TrxName()); } /** Set Status Category. @@ -331,6 +331,20 @@ public class X_R_Status extends PO implements I_R_Status, I_Persistent return ii.intValue(); } + /** Set R_Status_UU. + @param R_Status_UU R_Status_UU */ + public void setR_Status_UU (String R_Status_UU) + { + set_Value (COLUMNNAME_R_Status_UU, R_Status_UU); + } + + /** Get R_Status_UU. + @return R_Status_UU */ + public String getR_Status_UU () + { + return (String)get_Value(COLUMNNAME_R_Status_UU); + } + /** Set Sequence. @param SeqNo Method of ordering records; lowest number comes first @@ -379,9 +393,9 @@ public class X_R_Status extends PO implements I_R_Status, I_Persistent return ii.intValue(); } - public I_R_Status getUpdate_Status() throws RuntimeException + public org.compiere.model.I_R_Status getUpdate_Status() throws RuntimeException { - return (I_R_Status)MTable.get(getCtx(), I_R_Status.Table_Name) + return (org.compiere.model.I_R_Status)MTable.get(getCtx(), org.compiere.model.I_R_Status.Table_Name) .getPO(getUpdate_Status_ID(), get_TrxName()); } /** Set Update Status. diff --git a/org.adempiere.base/src/org/compiere/model/X_R_StatusCategory.java b/org.adempiere.base/src/org/compiere/model/X_R_StatusCategory.java index 1dbdbe0424..22faf66270 100644 --- a/org.adempiere.base/src/org/compiere/model/X_R_StatusCategory.java +++ b/org.adempiere.base/src/org/compiere/model/X_R_StatusCategory.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for R_StatusCategory - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_R_StatusCategory extends PO implements I_R_StatusCategory, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_R_StatusCategory (Properties ctx, int R_StatusCategory_ID, String trxName) @@ -177,4 +177,18 @@ public class X_R_StatusCategory extends PO implements I_R_StatusCategory, I_Pers return 0; return ii.intValue(); } + + /** Set R_StatusCategory_UU. + @param R_StatusCategory_UU R_StatusCategory_UU */ + public void setR_StatusCategory_UU (String R_StatusCategory_UU) + { + set_Value (COLUMNNAME_R_StatusCategory_UU, R_StatusCategory_UU); + } + + /** Get R_StatusCategory_UU. + @return R_StatusCategory_UU */ + public String getR_StatusCategory_UU () + { + return (String)get_Value(COLUMNNAME_R_StatusCategory_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_S_ExpenseType.java b/org.adempiere.base/src/org/compiere/model/X_S_ExpenseType.java index da554ad662..72f73b95ab 100644 --- a/org.adempiere.base/src/org/compiere/model/X_S_ExpenseType.java +++ b/org.adempiere.base/src/org/compiere/model/X_S_ExpenseType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for S_ExpenseType - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_S_ExpenseType extends PO implements I_S_ExpenseType, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_S_ExpenseType (Properties ctx, int S_ExpenseType_ID, String trxName) @@ -76,9 +76,9 @@ public class X_S_ExpenseType extends PO implements I_S_ExpenseType, I_Persistent return sb.toString(); } - public I_C_TaxCategory getC_TaxCategory() throws RuntimeException + public org.compiere.model.I_C_TaxCategory getC_TaxCategory() throws RuntimeException { - return (I_C_TaxCategory)MTable.get(getCtx(), I_C_TaxCategory.Table_Name) + return (org.compiere.model.I_C_TaxCategory)MTable.get(getCtx(), org.compiere.model.I_C_TaxCategory.Table_Name) .getPO(getC_TaxCategory_ID(), get_TrxName()); } /** Set Tax Category. @@ -104,9 +104,9 @@ public class X_S_ExpenseType extends PO implements I_S_ExpenseType, I_Persistent return ii.intValue(); } - public I_C_UOM getC_UOM() throws RuntimeException + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_ID(), get_TrxName()); } /** Set UOM. @@ -173,9 +173,9 @@ public class X_S_ExpenseType extends PO implements I_S_ExpenseType, I_Persistent return false; } - public I_M_Product_Category getM_Product_Category() throws RuntimeException + public org.compiere.model.I_M_Product_Category getM_Product_Category() throws RuntimeException { - return (I_M_Product_Category)MTable.get(getCtx(), I_M_Product_Category.Table_Name) + return (org.compiere.model.I_M_Product_Category)MTable.get(getCtx(), org.compiere.model.I_M_Product_Category.Table_Name) .getPO(getM_Product_Category_ID(), get_TrxName()); } /** Set Product Category. @@ -249,6 +249,20 @@ public class X_S_ExpenseType extends PO implements I_S_ExpenseType, I_Persistent return ii.intValue(); } + /** Set S_ExpenseType_UU. + @param S_ExpenseType_UU S_ExpenseType_UU */ + public void setS_ExpenseType_UU (String S_ExpenseType_UU) + { + set_Value (COLUMNNAME_S_ExpenseType_UU, S_ExpenseType_UU); + } + + /** Get S_ExpenseType_UU. + @return S_ExpenseType_UU */ + public String getS_ExpenseType_UU () + { + return (String)get_Value(COLUMNNAME_S_ExpenseType_UU); + } + /** Set Search Key. @param Value Search key for the record in the format required - must be unique diff --git a/org.adempiere.base/src/org/compiere/model/X_S_Resource.java b/org.adempiere.base/src/org/compiere/model/X_S_Resource.java index d1248742a9..b18fb0c8bc 100644 --- a/org.adempiere.base/src/org/compiere/model/X_S_Resource.java +++ b/org.adempiere.base/src/org/compiere/model/X_S_Resource.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for S_Resource - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_S_Resource extends PO implements I_S_Resource, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_S_Resource (Properties ctx, int S_Resource_ID, String trxName) @@ -80,9 +80,9 @@ public class X_S_Resource extends PO implements I_S_Resource, I_Persistent return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -229,9 +229,9 @@ public class X_S_Resource extends PO implements I_S_Resource, I_Persistent return (String)get_Value(COLUMNNAME_ManufacturingResourceType); } - public I_M_Warehouse getM_Warehouse() throws RuntimeException + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_Warehouse_ID(), get_TrxName()); } /** Set Warehouse. @@ -362,9 +362,9 @@ public class X_S_Resource extends PO implements I_S_Resource, I_Persistent return ii.intValue(); } - public I_S_ResourceType getS_ResourceType() throws RuntimeException + public org.compiere.model.I_S_ResourceType getS_ResourceType() throws RuntimeException { - return (I_S_ResourceType)MTable.get(getCtx(), I_S_ResourceType.Table_Name) + return (org.compiere.model.I_S_ResourceType)MTable.get(getCtx(), org.compiere.model.I_S_ResourceType.Table_Name) .getPO(getS_ResourceType_ID(), get_TrxName()); } /** Set Resource Type. @@ -387,6 +387,20 @@ public class X_S_Resource extends PO implements I_S_Resource, I_Persistent return ii.intValue(); } + /** Set S_Resource_UU. + @param S_Resource_UU S_Resource_UU */ + public void setS_Resource_UU (String S_Resource_UU) + { + set_Value (COLUMNNAME_S_Resource_UU, S_Resource_UU); + } + + /** Get S_Resource_UU. + @return S_Resource_UU */ + public String getS_Resource_UU () + { + return (String)get_Value(COLUMNNAME_S_Resource_UU); + } + /** Set Search Key. @param Value Search key for the record in the format required - must be unique diff --git a/org.adempiere.base/src/org/compiere/model/X_S_ResourceAssignment.java b/org.adempiere.base/src/org/compiere/model/X_S_ResourceAssignment.java index 811597ba9c..b1be3716b7 100644 --- a/org.adempiere.base/src/org/compiere/model/X_S_ResourceAssignment.java +++ b/org.adempiere.base/src/org/compiere/model/X_S_ResourceAssignment.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for S_ResourceAssignment - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_S_ResourceAssignment extends PO implements I_S_ResourceAssignment, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_S_ResourceAssignment (Properties ctx, int S_ResourceAssignment_ID, String trxName) @@ -212,9 +212,23 @@ public class X_S_ResourceAssignment extends PO implements I_S_ResourceAssignment return ii.intValue(); } - public I_S_Resource getS_Resource() throws RuntimeException + /** Set S_ResourceAssignment_UU. + @param S_ResourceAssignment_UU S_ResourceAssignment_UU */ + public void setS_ResourceAssignment_UU (String S_ResourceAssignment_UU) + { + set_Value (COLUMNNAME_S_ResourceAssignment_UU, S_ResourceAssignment_UU); + } + + /** Get S_ResourceAssignment_UU. + @return S_ResourceAssignment_UU */ + public String getS_ResourceAssignment_UU () + { + return (String)get_Value(COLUMNNAME_S_ResourceAssignment_UU); + } + + public org.compiere.model.I_S_Resource getS_Resource() throws RuntimeException { - return (I_S_Resource)MTable.get(getCtx(), I_S_Resource.Table_Name) + return (org.compiere.model.I_S_Resource)MTable.get(getCtx(), org.compiere.model.I_S_Resource.Table_Name) .getPO(getS_Resource_ID(), get_TrxName()); } /** Set Resource. diff --git a/org.adempiere.base/src/org/compiere/model/X_S_ResourceType.java b/org.adempiere.base/src/org/compiere/model/X_S_ResourceType.java index 8227d36463..b463177b11 100644 --- a/org.adempiere.base/src/org/compiere/model/X_S_ResourceType.java +++ b/org.adempiere.base/src/org/compiere/model/X_S_ResourceType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for S_ResourceType - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_S_ResourceType extends PO implements I_S_ResourceType, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_S_ResourceType (Properties ctx, int S_ResourceType_ID, String trxName) @@ -134,9 +134,9 @@ public class X_S_ResourceType extends PO implements I_S_ResourceType, I_Persiste return ii.intValue(); } - public I_C_TaxCategory getC_TaxCategory() throws RuntimeException + public org.compiere.model.I_C_TaxCategory getC_TaxCategory() throws RuntimeException { - return (I_C_TaxCategory)MTable.get(getCtx(), I_C_TaxCategory.Table_Name) + return (org.compiere.model.I_C_TaxCategory)MTable.get(getCtx(), org.compiere.model.I_C_TaxCategory.Table_Name) .getPO(getC_TaxCategory_ID(), get_TrxName()); } /** Set Tax Category. @@ -162,9 +162,9 @@ public class X_S_ResourceType extends PO implements I_S_ResourceType, I_Persiste return ii.intValue(); } - public I_C_UOM getC_UOM() throws RuntimeException + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_ID(), get_TrxName()); } /** Set UOM. @@ -279,9 +279,9 @@ public class X_S_ResourceType extends PO implements I_S_ResourceType, I_Persiste return false; } - public I_M_Product_Category getM_Product_Category() throws RuntimeException + public org.compiere.model.I_M_Product_Category getM_Product_Category() throws RuntimeException { - return (I_M_Product_Category)MTable.get(getCtx(), I_M_Product_Category.Table_Name) + return (org.compiere.model.I_M_Product_Category)MTable.get(getCtx(), org.compiere.model.I_M_Product_Category.Table_Name) .getPO(getM_Product_Category_ID(), get_TrxName()); } /** Set Product Category. @@ -520,6 +520,20 @@ public class X_S_ResourceType extends PO implements I_S_ResourceType, I_Persiste return ii.intValue(); } + /** Set S_ResourceType_UU. + @param S_ResourceType_UU S_ResourceType_UU */ + public void setS_ResourceType_UU (String S_ResourceType_UU) + { + set_Value (COLUMNNAME_S_ResourceType_UU, S_ResourceType_UU); + } + + /** Get S_ResourceType_UU. + @return S_ResourceType_UU */ + public String getS_ResourceType_UU () + { + return (String)get_Value(COLUMNNAME_S_ResourceType_UU); + } + /** Set Slot End. @param TimeSlotEnd Time when timeslot ends diff --git a/org.adempiere.base/src/org/compiere/model/X_S_ResourceUnAvailable.java b/org.adempiere.base/src/org/compiere/model/X_S_ResourceUnAvailable.java index fe3612a69d..7396e2e227 100644 --- a/org.adempiere.base/src/org/compiere/model/X_S_ResourceUnAvailable.java +++ b/org.adempiere.base/src/org/compiere/model/X_S_ResourceUnAvailable.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for S_ResourceUnAvailable - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_S_ResourceUnAvailable extends PO implements I_S_ResourceUnAvailable, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_S_ResourceUnAvailable (Properties ctx, int S_ResourceUnAvailable_ID, String trxName) @@ -124,9 +124,9 @@ public class X_S_ResourceUnAvailable extends PO implements I_S_ResourceUnAvailab return (String)get_Value(COLUMNNAME_Description); } - public I_S_Resource getS_Resource() throws RuntimeException + public org.compiere.model.I_S_Resource getS_Resource() throws RuntimeException { - return (I_S_Resource)MTable.get(getCtx(), I_S_Resource.Table_Name) + return (org.compiere.model.I_S_Resource)MTable.get(getCtx(), org.compiere.model.I_S_Resource.Table_Name) .getPO(getS_Resource_ID(), get_TrxName()); } /** Set Resource. @@ -179,4 +179,18 @@ public class X_S_ResourceUnAvailable extends PO implements I_S_ResourceUnAvailab return 0; return ii.intValue(); } + + /** Set S_ResourceUnAvailable_UU. + @param S_ResourceUnAvailable_UU S_ResourceUnAvailable_UU */ + public void setS_ResourceUnAvailable_UU (String S_ResourceUnAvailable_UU) + { + set_Value (COLUMNNAME_S_ResourceUnAvailable_UU, S_ResourceUnAvailable_UU); + } + + /** Get S_ResourceUnAvailable_UU. + @return S_ResourceUnAvailable_UU */ + public String getS_ResourceUnAvailable_UU () + { + return (String)get_Value(COLUMNNAME_S_ResourceUnAvailable_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_S_TimeExpense.java b/org.adempiere.base/src/org/compiere/model/X_S_TimeExpense.java index ef07415cce..e235524127 100644 --- a/org.adempiere.base/src/org/compiere/model/X_S_TimeExpense.java +++ b/org.adempiere.base/src/org/compiere/model/X_S_TimeExpense.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for S_TimeExpense - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_S_TimeExpense extends PO implements I_S_TimeExpense, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_S_TimeExpense (Properties ctx, int S_TimeExpense_ID, String trxName) @@ -105,9 +105,9 @@ public class X_S_TimeExpense extends PO implements I_S_TimeExpense, I_Persistent return bd; } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -308,9 +308,9 @@ public class X_S_TimeExpense extends PO implements I_S_TimeExpense, I_Persistent return false; } - public I_M_PriceList getM_PriceList() throws RuntimeException + public org.compiere.model.I_M_PriceList getM_PriceList() throws RuntimeException { - return (I_M_PriceList)MTable.get(getCtx(), I_M_PriceList.Table_Name) + return (org.compiere.model.I_M_PriceList)MTable.get(getCtx(), org.compiere.model.I_M_PriceList.Table_Name) .getPO(getM_PriceList_ID(), get_TrxName()); } /** Set Price List. @@ -336,9 +336,9 @@ public class X_S_TimeExpense extends PO implements I_S_TimeExpense, I_Persistent return ii.intValue(); } - public I_M_Warehouse getM_Warehouse() throws RuntimeException + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_Warehouse_ID(), get_TrxName()); } /** Set Warehouse. @@ -431,4 +431,18 @@ public class X_S_TimeExpense extends PO implements I_S_TimeExpense, I_Persistent return 0; return ii.intValue(); } + + /** Set S_TimeExpense_UU. + @param S_TimeExpense_UU S_TimeExpense_UU */ + public void setS_TimeExpense_UU (String S_TimeExpense_UU) + { + set_Value (COLUMNNAME_S_TimeExpense_UU, S_TimeExpense_UU); + } + + /** Get S_TimeExpense_UU. + @return S_TimeExpense_UU */ + public String getS_TimeExpense_UU () + { + return (String)get_Value(COLUMNNAME_S_TimeExpense_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_S_TimeExpenseLine.java b/org.adempiere.base/src/org/compiere/model/X_S_TimeExpenseLine.java index c49b0e3452..a71cd53ddf 100644 --- a/org.adempiere.base/src/org/compiere/model/X_S_TimeExpenseLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_S_TimeExpenseLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for S_TimeExpenseLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_S_TimeExpenseLine extends PO implements I_S_TimeExpenseLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_S_TimeExpenseLine (Properties ctx, int S_TimeExpenseLine_ID, String trxName) @@ -81,9 +81,9 @@ public class X_S_TimeExpenseLine extends PO implements I_S_TimeExpenseLine, I_Pe return sb.toString(); } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -109,9 +109,9 @@ public class X_S_TimeExpenseLine extends PO implements I_S_TimeExpenseLine, I_Pe return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -137,9 +137,9 @@ public class X_S_TimeExpenseLine extends PO implements I_S_TimeExpenseLine, I_Pe return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -165,9 +165,9 @@ public class X_S_TimeExpenseLine extends PO implements I_S_TimeExpenseLine, I_Pe return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -193,9 +193,9 @@ public class X_S_TimeExpenseLine extends PO implements I_S_TimeExpenseLine, I_Pe return ii.intValue(); } - public I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException + public org.compiere.model.I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException { - return (I_C_InvoiceLine)MTable.get(getCtx(), I_C_InvoiceLine.Table_Name) + return (org.compiere.model.I_C_InvoiceLine)MTable.get(getCtx(), org.compiere.model.I_C_InvoiceLine.Table_Name) .getPO(getC_InvoiceLine_ID(), get_TrxName()); } /** Set Invoice Line. @@ -241,9 +241,9 @@ public class X_S_TimeExpenseLine extends PO implements I_S_TimeExpenseLine, I_Pe return bd; } - public I_C_OrderLine getC_OrderLine() throws RuntimeException + public org.compiere.model.I_C_OrderLine getC_OrderLine() throws RuntimeException { - return (I_C_OrderLine)MTable.get(getCtx(), I_C_OrderLine.Table_Name) + return (org.compiere.model.I_C_OrderLine)MTable.get(getCtx(), org.compiere.model.I_C_OrderLine.Table_Name) .getPO(getC_OrderLine_ID(), get_TrxName()); } /** Set Sales Order Line. @@ -269,9 +269,9 @@ public class X_S_TimeExpenseLine extends PO implements I_S_TimeExpenseLine, I_Pe return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -297,9 +297,9 @@ public class X_S_TimeExpenseLine extends PO implements I_S_TimeExpenseLine, I_Pe return ii.intValue(); } - public I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException + public org.compiere.model.I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException { - return (I_C_ProjectPhase)MTable.get(getCtx(), I_C_ProjectPhase.Table_Name) + return (org.compiere.model.I_C_ProjectPhase)MTable.get(getCtx(), org.compiere.model.I_C_ProjectPhase.Table_Name) .getPO(getC_ProjectPhase_ID(), get_TrxName()); } /** Set Project Phase. @@ -325,9 +325,9 @@ public class X_S_TimeExpenseLine extends PO implements I_S_TimeExpenseLine, I_Pe return ii.intValue(); } - public I_C_ProjectTask getC_ProjectTask() throws RuntimeException + public org.compiere.model.I_C_ProjectTask getC_ProjectTask() throws RuntimeException { - return (I_C_ProjectTask)MTable.get(getCtx(), I_C_ProjectTask.Table_Name) + return (org.compiere.model.I_C_ProjectTask)MTable.get(getCtx(), org.compiere.model.I_C_ProjectTask.Table_Name) .getPO(getC_ProjectTask_ID(), get_TrxName()); } /** Set Project Task. @@ -353,9 +353,9 @@ public class X_S_TimeExpenseLine extends PO implements I_S_TimeExpenseLine, I_Pe return ii.intValue(); } - public I_C_UOM getC_UOM() throws RuntimeException + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_ID(), get_TrxName()); } /** Set UOM. @@ -531,9 +531,9 @@ public class X_S_TimeExpenseLine extends PO implements I_S_TimeExpenseLine, I_Pe return new KeyNamePair(get_ID(), String.valueOf(getLine())); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -723,9 +723,9 @@ public class X_S_TimeExpenseLine extends PO implements I_S_TimeExpenseLine, I_Pe return ii.intValue(); } - public I_S_TimeExpense getS_TimeExpense() throws RuntimeException + public org.compiere.model.I_S_TimeExpense getS_TimeExpense() throws RuntimeException { - return (I_S_TimeExpense)MTable.get(getCtx(), I_S_TimeExpense.Table_Name) + return (org.compiere.model.I_S_TimeExpense)MTable.get(getCtx(), org.compiere.model.I_S_TimeExpense.Table_Name) .getPO(getS_TimeExpense_ID(), get_TrxName()); } /** Set Expense Report. @@ -774,9 +774,23 @@ public class X_S_TimeExpenseLine extends PO implements I_S_TimeExpenseLine, I_Pe return ii.intValue(); } - public I_S_TimeType getS_TimeType() throws RuntimeException + /** Set S_TimeExpenseLine_UU. + @param S_TimeExpenseLine_UU S_TimeExpenseLine_UU */ + public void setS_TimeExpenseLine_UU (String S_TimeExpenseLine_UU) + { + set_Value (COLUMNNAME_S_TimeExpenseLine_UU, S_TimeExpenseLine_UU); + } + + /** Get S_TimeExpenseLine_UU. + @return S_TimeExpenseLine_UU */ + public String getS_TimeExpenseLine_UU () + { + return (String)get_Value(COLUMNNAME_S_TimeExpenseLine_UU); + } + + public org.compiere.model.I_S_TimeType getS_TimeType() throws RuntimeException { - return (I_S_TimeType)MTable.get(getCtx(), I_S_TimeType.Table_Name) + return (org.compiere.model.I_S_TimeType)MTable.get(getCtx(), org.compiere.model.I_S_TimeType.Table_Name) .getPO(getS_TimeType_ID(), get_TrxName()); } /** Set Time Type. diff --git a/org.adempiere.base/src/org/compiere/model/X_S_TimeType.java b/org.adempiere.base/src/org/compiere/model/X_S_TimeType.java index 8eb8bf6bf5..8aaade3afa 100644 --- a/org.adempiere.base/src/org/compiere/model/X_S_TimeType.java +++ b/org.adempiere.base/src/org/compiere/model/X_S_TimeType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for S_TimeType - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_S_TimeType extends PO implements I_S_TimeType, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_S_TimeType (Properties ctx, int S_TimeType_ID, String trxName) @@ -152,4 +152,18 @@ public class X_S_TimeType extends PO implements I_S_TimeType, I_Persistent return 0; return ii.intValue(); } + + /** Set S_TimeType_UU. + @param S_TimeType_UU S_TimeType_UU */ + public void setS_TimeType_UU (String S_TimeType_UU) + { + set_Value (COLUMNNAME_S_TimeType_UU, S_TimeType_UU); + } + + /** Get S_TimeType_UU. + @return S_TimeType_UU */ + public String getS_TimeType_UU () + { + return (String)get_Value(COLUMNNAME_S_TimeType_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_S_Training.java b/org.adempiere.base/src/org/compiere/model/X_S_Training.java index c0e476a14e..78485d29c3 100644 --- a/org.adempiere.base/src/org/compiere/model/X_S_Training.java +++ b/org.adempiere.base/src/org/compiere/model/X_S_Training.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for S_Training - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_S_Training extends PO implements I_S_Training, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_S_Training (Properties ctx, int S_Training_ID, String trxName) @@ -74,9 +74,9 @@ public class X_S_Training extends PO implements I_S_Training, I_Persistent return sb.toString(); } - public I_C_TaxCategory getC_TaxCategory() throws RuntimeException + public org.compiere.model.I_C_TaxCategory getC_TaxCategory() throws RuntimeException { - return (I_C_TaxCategory)MTable.get(getCtx(), I_C_TaxCategory.Table_Name) + return (org.compiere.model.I_C_TaxCategory)MTable.get(getCtx(), org.compiere.model.I_C_TaxCategory.Table_Name) .getPO(getC_TaxCategory_ID(), get_TrxName()); } /** Set Tax Category. @@ -102,9 +102,9 @@ public class X_S_Training extends PO implements I_S_Training, I_Persistent return ii.intValue(); } - public I_C_UOM getC_UOM() throws RuntimeException + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_ID(), get_TrxName()); } /** Set UOM. @@ -215,9 +215,9 @@ public class X_S_Training extends PO implements I_S_Training, I_Persistent return (String)get_Value(COLUMNNAME_ImageURL); } - public I_M_Product_Category getM_Product_Category() throws RuntimeException + public org.compiere.model.I_M_Product_Category getM_Product_Category() throws RuntimeException { - return (I_M_Product_Category)MTable.get(getCtx(), I_M_Product_Category.Table_Name) + return (org.compiere.model.I_M_Product_Category)MTable.get(getCtx(), org.compiere.model.I_M_Product_Category.Table_Name) .getPO(getM_Product_Category_ID(), get_TrxName()); } /** Set Product Category. @@ -311,4 +311,18 @@ public class X_S_Training extends PO implements I_S_Training, I_Persistent return 0; return ii.intValue(); } + + /** Set S_Training_UU. + @param S_Training_UU S_Training_UU */ + public void setS_Training_UU (String S_Training_UU) + { + set_Value (COLUMNNAME_S_Training_UU, S_Training_UU); + } + + /** Get S_Training_UU. + @return S_Training_UU */ + public String getS_Training_UU () + { + return (String)get_Value(COLUMNNAME_S_Training_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_S_Training_Class.java b/org.adempiere.base/src/org/compiere/model/X_S_Training_Class.java index 7672330bba..5ad0a2cb6e 100644 --- a/org.adempiere.base/src/org/compiere/model/X_S_Training_Class.java +++ b/org.adempiere.base/src/org/compiere/model/X_S_Training_Class.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for S_Training_Class - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_S_Training_Class extends PO implements I_S_Training_Class, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_S_Training_Class (Properties ctx, int S_Training_Class_ID, String trxName) @@ -92,9 +92,9 @@ public class X_S_Training_Class extends PO implements I_S_Training_Class, I_Pers return (Timestamp)get_Value(COLUMNNAME_EndDate); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -168,9 +168,23 @@ public class X_S_Training_Class extends PO implements I_S_Training_Class, I_Pers return ii.intValue(); } - public I_S_Training getS_Training() throws RuntimeException + /** Set S_Training_Class_UU. + @param S_Training_Class_UU S_Training_Class_UU */ + public void setS_Training_Class_UU (String S_Training_Class_UU) + { + set_Value (COLUMNNAME_S_Training_Class_UU, S_Training_Class_UU); + } + + /** Get S_Training_Class_UU. + @return S_Training_Class_UU */ + public String getS_Training_Class_UU () + { + return (String)get_Value(COLUMNNAME_S_Training_Class_UU); + } + + public org.compiere.model.I_S_Training getS_Training() throws RuntimeException { - return (I_S_Training)MTable.get(getCtx(), I_S_Training.Table_Name) + return (org.compiere.model.I_S_Training)MTable.get(getCtx(), org.compiere.model.I_S_Training.Table_Name) .getPO(getS_Training_ID(), get_TrxName()); } /** Set Training. diff --git a/org.adempiere.base/src/org/compiere/model/X_T_Aging.java b/org.adempiere.base/src/org/compiere/model/X_T_Aging.java index b735609686..42a534dd17 100644 --- a/org.adempiere.base/src/org/compiere/model/X_T_Aging.java +++ b/org.adempiere.base/src/org/compiere/model/X_T_Aging.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for T_Aging - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_T_Aging extends PO implements I_T_Aging, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_T_Aging (Properties ctx, int T_Aging_ID, String trxName) @@ -101,9 +101,9 @@ public class X_T_Aging extends PO implements I_T_Aging, I_Persistent return sb.toString(); } - public I_AD_PInstance getAD_PInstance() throws RuntimeException + public org.compiere.model.I_AD_PInstance getAD_PInstance() throws RuntimeException { - return (I_AD_PInstance)MTable.get(getCtx(), I_AD_PInstance.Table_Name) + return (org.compiere.model.I_AD_PInstance)MTable.get(getCtx(), org.compiere.model.I_AD_PInstance.Table_Name) .getPO(getAD_PInstance_ID(), get_TrxName()); } /** Set Process Instance. @@ -129,9 +129,9 @@ public class X_T_Aging extends PO implements I_T_Aging, I_Persistent return ii.intValue(); } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -157,9 +157,9 @@ public class X_T_Aging extends PO implements I_T_Aging, I_Persistent return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -185,9 +185,9 @@ public class X_T_Aging extends PO implements I_T_Aging, I_Persistent return ii.intValue(); } - public I_C_BP_Group getC_BP_Group() throws RuntimeException + public org.compiere.model.I_C_BP_Group getC_BP_Group() throws RuntimeException { - return (I_C_BP_Group)MTable.get(getCtx(), I_C_BP_Group.Table_Name) + return (org.compiere.model.I_C_BP_Group)MTable.get(getCtx(), org.compiere.model.I_C_BP_Group.Table_Name) .getPO(getC_BP_Group_ID(), get_TrxName()); } /** Set Business Partner Group. @@ -213,9 +213,9 @@ public class X_T_Aging extends PO implements I_T_Aging, I_Persistent return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -241,9 +241,9 @@ public class X_T_Aging extends PO implements I_T_Aging, I_Persistent return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -269,9 +269,9 @@ public class X_T_Aging extends PO implements I_T_Aging, I_Persistent return ii.intValue(); } - public I_C_Invoice getC_Invoice() throws RuntimeException + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException { - return (I_C_Invoice)MTable.get(getCtx(), I_C_Invoice.Table_Name) + return (org.compiere.model.I_C_Invoice)MTable.get(getCtx(), org.compiere.model.I_C_Invoice.Table_Name) .getPO(getC_Invoice_ID(), get_TrxName()); } /** Set Invoice. @@ -297,9 +297,9 @@ public class X_T_Aging extends PO implements I_T_Aging, I_Persistent return ii.intValue(); } - public I_C_InvoicePaySchedule getC_InvoicePaySchedule() throws RuntimeException + public org.compiere.model.I_C_InvoicePaySchedule getC_InvoicePaySchedule() throws RuntimeException { - return (I_C_InvoicePaySchedule)MTable.get(getCtx(), I_C_InvoicePaySchedule.Table_Name) + return (org.compiere.model.I_C_InvoicePaySchedule)MTable.get(getCtx(), org.compiere.model.I_C_InvoicePaySchedule.Table_Name) .getPO(getC_InvoicePaySchedule_ID(), get_TrxName()); } /** Set Invoice Payment Schedule. @@ -325,9 +325,9 @@ public class X_T_Aging extends PO implements I_T_Aging, I_Persistent return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -861,4 +861,18 @@ public class X_T_Aging extends PO implements I_T_Aging, I_Persistent { return (Timestamp)get_Value(COLUMNNAME_StatementDate); } + + /** Set T_Aging_UU. + @param T_Aging_UU T_Aging_UU */ + public void setT_Aging_UU (String T_Aging_UU) + { + set_Value (COLUMNNAME_T_Aging_UU, T_Aging_UU); + } + + /** Get T_Aging_UU. + @return T_Aging_UU */ + public String getT_Aging_UU () + { + return (String)get_Value(COLUMNNAME_T_Aging_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_T_BOM_Indented.java b/org.adempiere.base/src/org/compiere/model/X_T_BOM_Indented.java index 290a7a713a..34857dde5e 100644 --- a/org.adempiere.base/src/org/compiere/model/X_T_BOM_Indented.java +++ b/org.adempiere.base/src/org/compiere/model/X_T_BOM_Indented.java @@ -1,435 +1,449 @@ -/****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * - * This program is free software, you can redistribute it and/or modify it * - * under the terms version 2 of the GNU General Public License as published * - * by the Free Software Foundation. This program is distributed in the hope * - * that it will be useful, but WITHOUT ANY WARRANTY, without even the implied * - * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * - * See the GNU General Public License for more details. * - * You should have received a copy of the GNU General Public License along * - * with this program, if not, write to the Free Software Foundation, Inc., * - * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * - * For the text or an alternative of this public license, you may reach us * - * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * - * or via info@compiere.org or http://www.compiere.org/license.html * - *****************************************************************************/ -/** Generated Model - DO NOT CHANGE */ -package org.compiere.model; - -import java.math.BigDecimal; -import java.sql.ResultSet; -import java.util.Properties; -import org.compiere.util.Env; - -/** Generated Model for T_BOM_Indented - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ -public class X_T_BOM_Indented extends PO implements I_T_BOM_Indented, I_Persistent -{ - - /** - * - */ - private static final long serialVersionUID = 20101222L; - - /** Standard Constructor */ - public X_T_BOM_Indented (Properties ctx, int T_BOM_Indented_ID, String trxName) - { - super (ctx, T_BOM_Indented_ID, trxName); - /** if (T_BOM_Indented_ID == 0) - { - setT_BOM_Indented_ID (0); - } */ - } - - /** Load Constructor */ - public X_T_BOM_Indented (Properties ctx, ResultSet rs, String trxName) - { - super (ctx, rs, trxName); - } - - /** AccessLevel - * @return 3 - Client - Org - */ - protected int get_AccessLevel() - { - return accessLevel.intValue(); - } - - /** Load Meta Data */ - protected POInfo initPO (Properties ctx) - { - POInfo poi = POInfo.getPOInfo (ctx, Table_ID, get_TrxName()); - return poi; - } - - public String toString() - { - StringBuffer sb = new StringBuffer ("X_T_BOM_Indented[") - .append(get_ID()).append("]"); - return sb.toString(); - } - - public I_AD_PInstance getAD_PInstance() throws RuntimeException - { - return (I_AD_PInstance)MTable.get(getCtx(), I_AD_PInstance.Table_Name) - .getPO(getAD_PInstance_ID(), get_TrxName()); } - - /** Set Process Instance. - @param AD_PInstance_ID - Instance of the process - */ - public void setAD_PInstance_ID (int AD_PInstance_ID) - { - if (AD_PInstance_ID < 1) - set_Value (COLUMNNAME_AD_PInstance_ID, null); - else - set_Value (COLUMNNAME_AD_PInstance_ID, Integer.valueOf(AD_PInstance_ID)); - } - - /** Get Process Instance. - @return Instance of the process - */ - public int getAD_PInstance_ID () - { - Integer ii = (Integer)get_Value(COLUMNNAME_AD_PInstance_ID); - if (ii == null) - return 0; - return ii.intValue(); - } - - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException - { - return (I_C_AcctSchema)MTable.get(getCtx(), I_C_AcctSchema.Table_Name) - .getPO(getC_AcctSchema_ID(), get_TrxName()); } - - /** Set Accounting Schema. - @param C_AcctSchema_ID - Rules for accounting - */ - public void setC_AcctSchema_ID (int C_AcctSchema_ID) - { - if (C_AcctSchema_ID < 1) - set_Value (COLUMNNAME_C_AcctSchema_ID, null); - else - set_Value (COLUMNNAME_C_AcctSchema_ID, Integer.valueOf(C_AcctSchema_ID)); - } - - /** Get Accounting Schema. - @return Rules for accounting - */ - public int getC_AcctSchema_ID () - { - Integer ii = (Integer)get_Value(COLUMNNAME_C_AcctSchema_ID); - if (ii == null) - return 0; - return ii.intValue(); - } - - /** Set Cost. - @param Cost - Cost information - */ - public void setCost (BigDecimal Cost) - { - set_Value (COLUMNNAME_Cost, Cost); - } - - /** Get Cost. - @return Cost information - */ - public BigDecimal getCost () - { - BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_Cost); - if (bd == null) - return Env.ZERO; - return bd; - } - - /** Set Future Cost. - @param CostFuture - Cost information - */ - public void setCostFuture (BigDecimal CostFuture) - { - set_Value (COLUMNNAME_CostFuture, CostFuture); - } - - /** Get Future Cost. - @return Cost information - */ - public BigDecimal getCostFuture () - { - BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_CostFuture); - if (bd == null) - return Env.ZERO; - return bd; - } - - /** Set Current Cost Price. - @param CurrentCostPrice - The currently used cost price - */ - public void setCurrentCostPrice (BigDecimal CurrentCostPrice) - { - set_Value (COLUMNNAME_CurrentCostPrice, CurrentCostPrice); - } - - /** Get Current Cost Price. - @return The currently used cost price - */ - public BigDecimal getCurrentCostPrice () - { - BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_CurrentCostPrice); - if (bd == null) - return Env.ZERO; - return bd; - } - - /** Set Current Cost Price Lower Level. - @param CurrentCostPriceLL - Current Price Lower Level Is the sum of the costs of the components of this product manufactured for this level. - */ - public void setCurrentCostPriceLL (BigDecimal CurrentCostPriceLL) - { - set_Value (COLUMNNAME_CurrentCostPriceLL, CurrentCostPriceLL); - } - - /** Get Current Cost Price Lower Level. - @return Current Price Lower Level Is the sum of the costs of the components of this product manufactured for this level. - */ - public BigDecimal getCurrentCostPriceLL () - { - BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_CurrentCostPriceLL); - if (bd == null) - return Env.ZERO; - return bd; - } - - /** Set Future Cost Price. - @param FutureCostPrice Future Cost Price */ - public void setFutureCostPrice (BigDecimal FutureCostPrice) - { - set_Value (COLUMNNAME_FutureCostPrice, FutureCostPrice); - } - - /** Get Future Cost Price. - @return Future Cost Price */ - public BigDecimal getFutureCostPrice () - { - BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_FutureCostPrice); - if (bd == null) - return Env.ZERO; - return bd; - } - - /** Set Future Cost Price Lower Level. - @param FutureCostPriceLL Future Cost Price Lower Level */ - public void setFutureCostPriceLL (BigDecimal FutureCostPriceLL) - { - set_Value (COLUMNNAME_FutureCostPriceLL, FutureCostPriceLL); - } - - /** Get Future Cost Price Lower Level. - @return Future Cost Price Lower Level */ - public BigDecimal getFutureCostPriceLL () - { - BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_FutureCostPriceLL); - if (bd == null) - return Env.ZERO; - return bd; - } - - /** Set Level no. - @param LevelNo Level no */ - public void setLevelNo (int LevelNo) - { - set_Value (COLUMNNAME_LevelNo, Integer.valueOf(LevelNo)); - } - - /** Get Level no. - @return Level no */ - public int getLevelNo () - { - Integer ii = (Integer)get_Value(COLUMNNAME_LevelNo); - if (ii == null) - return 0; - return ii.intValue(); - } - - /** Set Levels. - @param Levels Levels */ - public void setLevels (String Levels) - { - set_Value (COLUMNNAME_Levels, Levels); - } - - /** Get Levels. - @return Levels */ - public String getLevels () - { - return (String)get_Value(COLUMNNAME_Levels); - } - - public I_M_CostElement getM_CostElement() throws RuntimeException - { - return (I_M_CostElement)MTable.get(getCtx(), I_M_CostElement.Table_Name) - .getPO(getM_CostElement_ID(), get_TrxName()); } - - /** Set Cost Element. - @param M_CostElement_ID - Product Cost Element - */ - public void setM_CostElement_ID (int M_CostElement_ID) - { - if (M_CostElement_ID < 1) - set_Value (COLUMNNAME_M_CostElement_ID, null); - else - set_Value (COLUMNNAME_M_CostElement_ID, Integer.valueOf(M_CostElement_ID)); - } - - /** Get Cost Element. - @return Product Cost Element - */ - public int getM_CostElement_ID () - { - Integer ii = (Integer)get_Value(COLUMNNAME_M_CostElement_ID); - if (ii == null) - return 0; - return ii.intValue(); - } - - public I_M_Product getM_Product() throws RuntimeException - { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) - .getPO(getM_Product_ID(), get_TrxName()); } - - /** Set Product. - @param M_Product_ID - Product, Service, Item - */ - public void setM_Product_ID (int M_Product_ID) - { - if (M_Product_ID < 1) - set_Value (COLUMNNAME_M_Product_ID, null); - else - set_Value (COLUMNNAME_M_Product_ID, Integer.valueOf(M_Product_ID)); - } - - /** Get Product. - @return Product, Service, Item - */ - public int getM_Product_ID () - { - Integer ii = (Integer)get_Value(COLUMNNAME_M_Product_ID); - if (ii == null) - return 0; - return ii.intValue(); - } - - /** Set Quantity. - @param Qty - Quantity - */ - public void setQty (BigDecimal Qty) - { - set_Value (COLUMNNAME_Qty, Qty); - } - - /** Get Quantity. - @return Quantity - */ - public BigDecimal getQty () - { - BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_Qty); - if (bd == null) - return Env.ZERO; - return bd; - } - - /** Set Quantity. - @param QtyBOM - Indicate the Quantity use in this BOM - */ - public void setQtyBOM (BigDecimal QtyBOM) - { - set_Value (COLUMNNAME_QtyBOM, QtyBOM); - } - - /** Get Quantity. - @return Indicate the Quantity use in this BOM - */ - public BigDecimal getQtyBOM () - { - BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_QtyBOM); - if (bd == null) - return Env.ZERO; - return bd; - } - - public I_M_Product getSel_Product() throws RuntimeException - { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) - .getPO(getSel_Product_ID(), get_TrxName()); } - - /** Set Selected Product. - @param Sel_Product_ID Selected Product */ - public void setSel_Product_ID (int Sel_Product_ID) - { - if (Sel_Product_ID < 1) - set_Value (COLUMNNAME_Sel_Product_ID, null); - else - set_Value (COLUMNNAME_Sel_Product_ID, Integer.valueOf(Sel_Product_ID)); - } - - /** Get Selected Product. - @return Selected Product */ - public int getSel_Product_ID () - { - Integer ii = (Integer)get_Value(COLUMNNAME_Sel_Product_ID); - if (ii == null) - return 0; - return ii.intValue(); - } - - /** Set Sequence. - @param SeqNo - Method of ordering records; lowest number comes first - */ - public void setSeqNo (int SeqNo) - { - set_Value (COLUMNNAME_SeqNo, Integer.valueOf(SeqNo)); - } - - /** Get Sequence. - @return Method of ordering records; lowest number comes first - */ - public int getSeqNo () - { - Integer ii = (Integer)get_Value(COLUMNNAME_SeqNo); - if (ii == null) - return 0; - return ii.intValue(); - } - - /** Set Indented BOM Report. - @param T_BOM_Indented_ID Indented BOM Report */ - public void setT_BOM_Indented_ID (int T_BOM_Indented_ID) - { - if (T_BOM_Indented_ID < 1) - set_ValueNoCheck (COLUMNNAME_T_BOM_Indented_ID, null); - else - set_ValueNoCheck (COLUMNNAME_T_BOM_Indented_ID, Integer.valueOf(T_BOM_Indented_ID)); - } - - /** Get Indented BOM Report. - @return Indented BOM Report */ - public int getT_BOM_Indented_ID () - { - Integer ii = (Integer)get_Value(COLUMNNAME_T_BOM_Indented_ID); - if (ii == null) - return 0; - return ii.intValue(); - } +/****************************************************************************** + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * + * This program is free software, you can redistribute it and/or modify it * + * under the terms version 2 of the GNU General Public License as published * + * by the Free Software Foundation. This program is distributed in the hope * + * that it will be useful, but WITHOUT ANY WARRANTY, without even the implied * + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * + * See the GNU General Public License for more details. * + * You should have received a copy of the GNU General Public License along * + * with this program, if not, write to the Free Software Foundation, Inc., * + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * + * For the text or an alternative of this public license, you may reach us * + * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * + * or via info@compiere.org or http://www.compiere.org/license.html * + *****************************************************************************/ +/** Generated Model - DO NOT CHANGE */ +package org.compiere.model; + +import java.math.BigDecimal; +import java.sql.ResultSet; +import java.util.Properties; +import org.compiere.util.Env; + +/** Generated Model for T_BOM_Indented + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ +public class X_T_BOM_Indented extends PO implements I_T_BOM_Indented, I_Persistent +{ + + /** + * + */ + private static final long serialVersionUID = 20121031L; + + /** Standard Constructor */ + public X_T_BOM_Indented (Properties ctx, int T_BOM_Indented_ID, String trxName) + { + super (ctx, T_BOM_Indented_ID, trxName); + /** if (T_BOM_Indented_ID == 0) + { + setT_BOM_Indented_ID (0); + } */ + } + + /** Load Constructor */ + public X_T_BOM_Indented (Properties ctx, ResultSet rs, String trxName) + { + super (ctx, rs, trxName); + } + + /** AccessLevel + * @return 3 - Client - Org + */ + protected int get_AccessLevel() + { + return accessLevel.intValue(); + } + + /** Load Meta Data */ + protected POInfo initPO (Properties ctx) + { + POInfo poi = POInfo.getPOInfo (ctx, Table_ID, get_TrxName()); + return poi; + } + + public String toString() + { + StringBuffer sb = new StringBuffer ("X_T_BOM_Indented[") + .append(get_ID()).append("]"); + return sb.toString(); + } + + public org.compiere.model.I_AD_PInstance getAD_PInstance() throws RuntimeException + { + return (org.compiere.model.I_AD_PInstance)MTable.get(getCtx(), org.compiere.model.I_AD_PInstance.Table_Name) + .getPO(getAD_PInstance_ID(), get_TrxName()); } + + /** Set Process Instance. + @param AD_PInstance_ID + Instance of the process + */ + public void setAD_PInstance_ID (int AD_PInstance_ID) + { + if (AD_PInstance_ID < 1) + set_Value (COLUMNNAME_AD_PInstance_ID, null); + else + set_Value (COLUMNNAME_AD_PInstance_ID, Integer.valueOf(AD_PInstance_ID)); + } + + /** Get Process Instance. + @return Instance of the process + */ + public int getAD_PInstance_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_AD_PInstance_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException + { + return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_Name) + .getPO(getC_AcctSchema_ID(), get_TrxName()); } + + /** Set Accounting Schema. + @param C_AcctSchema_ID + Rules for accounting + */ + public void setC_AcctSchema_ID (int C_AcctSchema_ID) + { + if (C_AcctSchema_ID < 1) + set_Value (COLUMNNAME_C_AcctSchema_ID, null); + else + set_Value (COLUMNNAME_C_AcctSchema_ID, Integer.valueOf(C_AcctSchema_ID)); + } + + /** Get Accounting Schema. + @return Rules for accounting + */ + public int getC_AcctSchema_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_C_AcctSchema_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + + /** Set Cost. + @param Cost + Cost information + */ + public void setCost (BigDecimal Cost) + { + set_Value (COLUMNNAME_Cost, Cost); + } + + /** Get Cost. + @return Cost information + */ + public BigDecimal getCost () + { + BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_Cost); + if (bd == null) + return Env.ZERO; + return bd; + } + + /** Set Future Cost. + @param CostFuture + Cost information + */ + public void setCostFuture (BigDecimal CostFuture) + { + set_Value (COLUMNNAME_CostFuture, CostFuture); + } + + /** Get Future Cost. + @return Cost information + */ + public BigDecimal getCostFuture () + { + BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_CostFuture); + if (bd == null) + return Env.ZERO; + return bd; + } + + /** Set Current Cost Price. + @param CurrentCostPrice + The currently used cost price + */ + public void setCurrentCostPrice (BigDecimal CurrentCostPrice) + { + set_Value (COLUMNNAME_CurrentCostPrice, CurrentCostPrice); + } + + /** Get Current Cost Price. + @return The currently used cost price + */ + public BigDecimal getCurrentCostPrice () + { + BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_CurrentCostPrice); + if (bd == null) + return Env.ZERO; + return bd; + } + + /** Set Current Cost Price Lower Level. + @param CurrentCostPriceLL + Current Price Lower Level Is the sum of the costs of the components of this product manufactured for this level. + */ + public void setCurrentCostPriceLL (BigDecimal CurrentCostPriceLL) + { + set_Value (COLUMNNAME_CurrentCostPriceLL, CurrentCostPriceLL); + } + + /** Get Current Cost Price Lower Level. + @return Current Price Lower Level Is the sum of the costs of the components of this product manufactured for this level. + */ + public BigDecimal getCurrentCostPriceLL () + { + BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_CurrentCostPriceLL); + if (bd == null) + return Env.ZERO; + return bd; + } + + /** Set Future Cost Price. + @param FutureCostPrice Future Cost Price */ + public void setFutureCostPrice (BigDecimal FutureCostPrice) + { + set_Value (COLUMNNAME_FutureCostPrice, FutureCostPrice); + } + + /** Get Future Cost Price. + @return Future Cost Price */ + public BigDecimal getFutureCostPrice () + { + BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_FutureCostPrice); + if (bd == null) + return Env.ZERO; + return bd; + } + + /** Set Future Cost Price Lower Level. + @param FutureCostPriceLL Future Cost Price Lower Level */ + public void setFutureCostPriceLL (BigDecimal FutureCostPriceLL) + { + set_Value (COLUMNNAME_FutureCostPriceLL, FutureCostPriceLL); + } + + /** Get Future Cost Price Lower Level. + @return Future Cost Price Lower Level */ + public BigDecimal getFutureCostPriceLL () + { + BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_FutureCostPriceLL); + if (bd == null) + return Env.ZERO; + return bd; + } + + /** Set Level no. + @param LevelNo Level no */ + public void setLevelNo (int LevelNo) + { + set_Value (COLUMNNAME_LevelNo, Integer.valueOf(LevelNo)); + } + + /** Get Level no. + @return Level no */ + public int getLevelNo () + { + Integer ii = (Integer)get_Value(COLUMNNAME_LevelNo); + if (ii == null) + return 0; + return ii.intValue(); + } + + /** Set Levels. + @param Levels Levels */ + public void setLevels (String Levels) + { + set_Value (COLUMNNAME_Levels, Levels); + } + + /** Get Levels. + @return Levels */ + public String getLevels () + { + return (String)get_Value(COLUMNNAME_Levels); + } + + public org.compiere.model.I_M_CostElement getM_CostElement() throws RuntimeException + { + return (org.compiere.model.I_M_CostElement)MTable.get(getCtx(), org.compiere.model.I_M_CostElement.Table_Name) + .getPO(getM_CostElement_ID(), get_TrxName()); } + + /** Set Cost Element. + @param M_CostElement_ID + Product Cost Element + */ + public void setM_CostElement_ID (int M_CostElement_ID) + { + if (M_CostElement_ID < 1) + set_Value (COLUMNNAME_M_CostElement_ID, null); + else + set_Value (COLUMNNAME_M_CostElement_ID, Integer.valueOf(M_CostElement_ID)); + } + + /** Get Cost Element. + @return Product Cost Element + */ + public int getM_CostElement_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_M_CostElement_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException + { + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) + .getPO(getM_Product_ID(), get_TrxName()); } + + /** Set Product. + @param M_Product_ID + Product, Service, Item + */ + public void setM_Product_ID (int M_Product_ID) + { + if (M_Product_ID < 1) + set_Value (COLUMNNAME_M_Product_ID, null); + else + set_Value (COLUMNNAME_M_Product_ID, Integer.valueOf(M_Product_ID)); + } + + /** Get Product. + @return Product, Service, Item + */ + public int getM_Product_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_M_Product_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + + /** Set Quantity. + @param Qty + Quantity + */ + public void setQty (BigDecimal Qty) + { + set_Value (COLUMNNAME_Qty, Qty); + } + + /** Get Quantity. + @return Quantity + */ + public BigDecimal getQty () + { + BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_Qty); + if (bd == null) + return Env.ZERO; + return bd; + } + + /** Set Quantity. + @param QtyBOM + Indicate the Quantity use in this BOM + */ + public void setQtyBOM (BigDecimal QtyBOM) + { + set_Value (COLUMNNAME_QtyBOM, QtyBOM); + } + + /** Get Quantity. + @return Indicate the Quantity use in this BOM + */ + public BigDecimal getQtyBOM () + { + BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_QtyBOM); + if (bd == null) + return Env.ZERO; + return bd; + } + + public org.compiere.model.I_M_Product getSel_Product() throws RuntimeException + { + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) + .getPO(getSel_Product_ID(), get_TrxName()); } + + /** Set Selected Product. + @param Sel_Product_ID Selected Product */ + public void setSel_Product_ID (int Sel_Product_ID) + { + if (Sel_Product_ID < 1) + set_Value (COLUMNNAME_Sel_Product_ID, null); + else + set_Value (COLUMNNAME_Sel_Product_ID, Integer.valueOf(Sel_Product_ID)); + } + + /** Get Selected Product. + @return Selected Product */ + public int getSel_Product_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_Sel_Product_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + + /** Set Sequence. + @param SeqNo + Method of ordering records; lowest number comes first + */ + public void setSeqNo (int SeqNo) + { + set_Value (COLUMNNAME_SeqNo, Integer.valueOf(SeqNo)); + } + + /** Get Sequence. + @return Method of ordering records; lowest number comes first + */ + public int getSeqNo () + { + Integer ii = (Integer)get_Value(COLUMNNAME_SeqNo); + if (ii == null) + return 0; + return ii.intValue(); + } + + /** Set Indented BOM Report. + @param T_BOM_Indented_ID Indented BOM Report */ + public void setT_BOM_Indented_ID (int T_BOM_Indented_ID) + { + if (T_BOM_Indented_ID < 1) + set_ValueNoCheck (COLUMNNAME_T_BOM_Indented_ID, null); + else + set_ValueNoCheck (COLUMNNAME_T_BOM_Indented_ID, Integer.valueOf(T_BOM_Indented_ID)); + } + + /** Get Indented BOM Report. + @return Indented BOM Report */ + public int getT_BOM_Indented_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_T_BOM_Indented_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + + /** Set T_BOM_Indented_UU. + @param T_BOM_Indented_UU T_BOM_Indented_UU */ + public void setT_BOM_Indented_UU (String T_BOM_Indented_UU) + { + set_Value (COLUMNNAME_T_BOM_Indented_UU, T_BOM_Indented_UU); + } + + /** Get T_BOM_Indented_UU. + @return T_BOM_Indented_UU */ + public String getT_BOM_Indented_UU () + { + return (String)get_Value(COLUMNNAME_T_BOM_Indented_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_T_CashFlow.java b/org.adempiere.base/src/org/compiere/model/X_T_CashFlow.java index d509e4a226..b0cdb92fd0 100644 --- a/org.adempiere.base/src/org/compiere/model/X_T_CashFlow.java +++ b/org.adempiere.base/src/org/compiere/model/X_T_CashFlow.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for T_CashFlow - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_T_CashFlow extends PO implements I_T_CashFlow, I_Persistent { /** * */ - private static final long serialVersionUID = 20110325L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_T_CashFlow (Properties ctx, int T_CashFlow_ID, String trxName) @@ -603,4 +603,18 @@ public class X_T_CashFlow extends PO implements I_T_CashFlow, I_Persistent return 0; return ii.intValue(); } + + /** Set T_CashFlow_UU. + @param T_CashFlow_UU T_CashFlow_UU */ + public void setT_CashFlow_UU (String T_CashFlow_UU) + { + set_Value (COLUMNNAME_T_CashFlow_UU, T_CashFlow_UU); + } + + /** Get T_CashFlow_UU. + @return T_CashFlow_UU */ + public String getT_CashFlow_UU () + { + return (String)get_Value(COLUMNNAME_T_CashFlow_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_T_DistributionRunDetail.java b/org.adempiere.base/src/org/compiere/model/X_T_DistributionRunDetail.java index 13bbce17ba..cde50dddde 100644 --- a/org.adempiere.base/src/org/compiere/model/X_T_DistributionRunDetail.java +++ b/org.adempiere.base/src/org/compiere/model/X_T_DistributionRunDetail.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for T_DistributionRunDetail - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_T_DistributionRunDetail extends PO implements I_T_DistributionRunDetail, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_T_DistributionRunDetail (Properties ctx, int T_DistributionRunDetail_ID, String trxName) @@ -81,9 +81,9 @@ public class X_T_DistributionRunDetail extends PO implements I_T_DistributionRun return sb.toString(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -109,9 +109,9 @@ public class X_T_DistributionRunDetail extends PO implements I_T_DistributionRun return ii.intValue(); } - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException { - return (I_C_BPartner_Location)MTable.get(getCtx(), I_C_BPartner_Location.Table_Name) + return (org.compiere.model.I_C_BPartner_Location)MTable.get(getCtx(), org.compiere.model.I_C_BPartner_Location.Table_Name) .getPO(getC_BPartner_Location_ID(), get_TrxName()); } /** Set Partner Location. @@ -137,9 +137,9 @@ public class X_T_DistributionRunDetail extends PO implements I_T_DistributionRun return ii.intValue(); } - public I_M_DistributionList getM_DistributionList() throws RuntimeException + public org.compiere.model.I_M_DistributionList getM_DistributionList() throws RuntimeException { - return (I_M_DistributionList)MTable.get(getCtx(), I_M_DistributionList.Table_Name) + return (org.compiere.model.I_M_DistributionList)MTable.get(getCtx(), org.compiere.model.I_M_DistributionList.Table_Name) .getPO(getM_DistributionList_ID(), get_TrxName()); } /** Set Distribution List. @@ -165,9 +165,9 @@ public class X_T_DistributionRunDetail extends PO implements I_T_DistributionRun return ii.intValue(); } - public I_M_DistributionListLine getM_DistributionListLine() throws RuntimeException + public org.compiere.model.I_M_DistributionListLine getM_DistributionListLine() throws RuntimeException { - return (I_M_DistributionListLine)MTable.get(getCtx(), I_M_DistributionListLine.Table_Name) + return (org.compiere.model.I_M_DistributionListLine)MTable.get(getCtx(), org.compiere.model.I_M_DistributionListLine.Table_Name) .getPO(getM_DistributionListLine_ID(), get_TrxName()); } /** Set Distribution List Line. @@ -193,9 +193,9 @@ public class X_T_DistributionRunDetail extends PO implements I_T_DistributionRun return ii.intValue(); } - public I_M_DistributionRun getM_DistributionRun() throws RuntimeException + public org.compiere.model.I_M_DistributionRun getM_DistributionRun() throws RuntimeException { - return (I_M_DistributionRun)MTable.get(getCtx(), I_M_DistributionRun.Table_Name) + return (org.compiere.model.I_M_DistributionRun)MTable.get(getCtx(), org.compiere.model.I_M_DistributionRun.Table_Name) .getPO(getM_DistributionRun_ID(), get_TrxName()); } /** Set Distribution Run. @@ -229,9 +229,9 @@ public class X_T_DistributionRunDetail extends PO implements I_T_DistributionRun return new KeyNamePair(get_ID(), String.valueOf(getM_DistributionRun_ID())); } - public I_M_DistributionRunLine getM_DistributionRunLine() throws RuntimeException + public org.compiere.model.I_M_DistributionRunLine getM_DistributionRunLine() throws RuntimeException { - return (I_M_DistributionRunLine)MTable.get(getCtx(), I_M_DistributionRunLine.Table_Name) + return (org.compiere.model.I_M_DistributionRunLine)MTable.get(getCtx(), org.compiere.model.I_M_DistributionRunLine.Table_Name) .getPO(getM_DistributionRunLine_ID(), get_TrxName()); } /** Set Distribution Run Line. @@ -277,9 +277,9 @@ public class X_T_DistributionRunDetail extends PO implements I_T_DistributionRun return bd; } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -344,4 +344,18 @@ public class X_T_DistributionRunDetail extends PO implements I_T_DistributionRun return Env.ZERO; return bd; } + + /** Set T_DistributionRunDetail_UU. + @param T_DistributionRunDetail_UU T_DistributionRunDetail_UU */ + public void setT_DistributionRunDetail_UU (String T_DistributionRunDetail_UU) + { + set_Value (COLUMNNAME_T_DistributionRunDetail_UU, T_DistributionRunDetail_UU); + } + + /** Get T_DistributionRunDetail_UU. + @return T_DistributionRunDetail_UU */ + public String getT_DistributionRunDetail_UU () + { + return (String)get_Value(COLUMNNAME_T_DistributionRunDetail_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_T_InventoryValue.java b/org.adempiere.base/src/org/compiere/model/X_T_InventoryValue.java index 005807603b..575e7dd86e 100644 --- a/org.adempiere.base/src/org/compiere/model/X_T_InventoryValue.java +++ b/org.adempiere.base/src/org/compiere/model/X_T_InventoryValue.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for T_InventoryValue - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_T_InventoryValue extends PO implements I_T_InventoryValue, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_T_InventoryValue (Properties ctx, int T_InventoryValue_ID, String trxName) @@ -75,9 +75,9 @@ public class X_T_InventoryValue extends PO implements I_T_InventoryValue, I_Pers return sb.toString(); } - public I_AD_PInstance getAD_PInstance() throws RuntimeException + public org.compiere.model.I_AD_PInstance getAD_PInstance() throws RuntimeException { - return (I_AD_PInstance)MTable.get(getCtx(), I_AD_PInstance.Table_Name) + return (org.compiere.model.I_AD_PInstance)MTable.get(getCtx(), org.compiere.model.I_AD_PInstance.Table_Name) .getPO(getAD_PInstance_ID(), get_TrxName()); } /** Set Process Instance. @@ -103,9 +103,9 @@ public class X_T_InventoryValue extends PO implements I_T_InventoryValue, I_Pers return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -256,9 +256,9 @@ public class X_T_InventoryValue extends PO implements I_T_InventoryValue, I_Pers return ii.intValue(); } - public I_M_CostElement getM_CostElement() throws RuntimeException + public org.compiere.model.I_M_CostElement getM_CostElement() throws RuntimeException { - return (I_M_CostElement)MTable.get(getCtx(), I_M_CostElement.Table_Name) + return (org.compiere.model.I_M_CostElement)MTable.get(getCtx(), org.compiere.model.I_M_CostElement.Table_Name) .getPO(getM_CostElement_ID(), get_TrxName()); } /** Set Cost Element. @@ -284,9 +284,9 @@ public class X_T_InventoryValue extends PO implements I_T_InventoryValue, I_Pers return ii.intValue(); } - public I_M_PriceList_Version getM_PriceList_Version() throws RuntimeException + public org.compiere.model.I_M_PriceList_Version getM_PriceList_Version() throws RuntimeException { - return (I_M_PriceList_Version)MTable.get(getCtx(), I_M_PriceList_Version.Table_Name) + return (org.compiere.model.I_M_PriceList_Version)MTable.get(getCtx(), org.compiere.model.I_M_PriceList_Version.Table_Name) .getPO(getM_PriceList_Version_ID(), get_TrxName()); } /** Set Price List Version. @@ -312,9 +312,9 @@ public class X_T_InventoryValue extends PO implements I_T_InventoryValue, I_Pers return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -340,9 +340,9 @@ public class X_T_InventoryValue extends PO implements I_T_InventoryValue, I_Pers return ii.intValue(); } - public I_M_Warehouse getM_Warehouse() throws RuntimeException + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_Warehouse_ID(), get_TrxName()); } /** Set Warehouse. @@ -547,4 +547,18 @@ public class X_T_InventoryValue extends PO implements I_T_InventoryValue, I_Pers return Env.ZERO; return bd; } + + /** Set T_InventoryValue_UU. + @param T_InventoryValue_UU T_InventoryValue_UU */ + public void setT_InventoryValue_UU (String T_InventoryValue_UU) + { + set_Value (COLUMNNAME_T_InventoryValue_UU, T_InventoryValue_UU); + } + + /** Get T_InventoryValue_UU. + @return T_InventoryValue_UU */ + public String getT_InventoryValue_UU () + { + return (String)get_Value(COLUMNNAME_T_InventoryValue_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_T_InvoiceGL.java b/org.adempiere.base/src/org/compiere/model/X_T_InvoiceGL.java index 70ff3d5827..9cd9cf8bbe 100644 --- a/org.adempiere.base/src/org/compiere/model/X_T_InvoiceGL.java +++ b/org.adempiere.base/src/org/compiere/model/X_T_InvoiceGL.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for T_InvoiceGL - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_T_InvoiceGL extends PO implements I_T_InvoiceGL, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_T_InvoiceGL (Properties ctx, int T_InvoiceGL_ID, String trxName) @@ -85,9 +85,9 @@ public class X_T_InvoiceGL extends PO implements I_T_InvoiceGL, I_Persistent return sb.toString(); } - public I_AD_PInstance getAD_PInstance() throws RuntimeException + public org.compiere.model.I_AD_PInstance getAD_PInstance() throws RuntimeException { - return (I_AD_PInstance)MTable.get(getCtx(), I_AD_PInstance.Table_Name) + return (org.compiere.model.I_AD_PInstance)MTable.get(getCtx(), org.compiere.model.I_AD_PInstance.Table_Name) .getPO(getAD_PInstance_ID(), get_TrxName()); } /** Set Process Instance. @@ -259,9 +259,9 @@ public class X_T_InvoiceGL extends PO implements I_T_InvoiceGL, I_Persistent return (String)get_Value(COLUMNNAME_APAR); } - public I_C_ConversionType getC_ConversionTypeReval() throws RuntimeException + public org.compiere.model.I_C_ConversionType getC_ConversionTypeReval() throws RuntimeException { - return (I_C_ConversionType)MTable.get(getCtx(), I_C_ConversionType.Table_Name) + return (org.compiere.model.I_C_ConversionType)MTable.get(getCtx(), org.compiere.model.I_C_ConversionType.Table_Name) .getPO(getC_ConversionTypeReval_ID(), get_TrxName()); } /** Set Revaluation Conversion Type. @@ -287,9 +287,9 @@ public class X_T_InvoiceGL extends PO implements I_T_InvoiceGL, I_Persistent return ii.intValue(); } - public I_C_DocType getC_DocTypeReval() throws RuntimeException + public org.compiere.model.I_C_DocType getC_DocTypeReval() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocTypeReval_ID(), get_TrxName()); } /** Set Revaluation Document Type. @@ -315,9 +315,9 @@ public class X_T_InvoiceGL extends PO implements I_T_InvoiceGL, I_Persistent return ii.intValue(); } - public I_C_Invoice getC_Invoice() throws RuntimeException + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException { - return (I_C_Invoice)MTable.get(getCtx(), I_C_Invoice.Table_Name) + return (org.compiere.model.I_C_Invoice)MTable.get(getCtx(), org.compiere.model.I_C_Invoice.Table_Name) .getPO(getC_Invoice_ID(), get_TrxName()); } /** Set Invoice. @@ -463,4 +463,18 @@ public class X_T_InvoiceGL extends PO implements I_T_InvoiceGL, I_Persistent return Env.ZERO; return bd; } + + /** Set T_InvoiceGL_UU. + @param T_InvoiceGL_UU T_InvoiceGL_UU */ + public void setT_InvoiceGL_UU (String T_InvoiceGL_UU) + { + set_Value (COLUMNNAME_T_InvoiceGL_UU, T_InvoiceGL_UU); + } + + /** Get T_InvoiceGL_UU. + @return T_InvoiceGL_UU */ + public String getT_InvoiceGL_UU () + { + return (String)get_Value(COLUMNNAME_T_InvoiceGL_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_T_Reconciliation.java b/org.adempiere.base/src/org/compiere/model/X_T_Reconciliation.java new file mode 100644 index 0000000000..814cbc3173 --- /dev/null +++ b/org.adempiere.base/src/org/compiere/model/X_T_Reconciliation.java @@ -0,0 +1,151 @@ +/****************************************************************************** + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * + * This program is free software, you can redistribute it and/or modify it * + * under the terms version 2 of the GNU General Public License as published * + * by the Free Software Foundation. This program is distributed in the hope * + * that it will be useful, but WITHOUT ANY WARRANTY, without even the implied * + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * + * See the GNU General Public License for more details. * + * You should have received a copy of the GNU General Public License along * + * with this program, if not, write to the Free Software Foundation, Inc., * + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * + * For the text or an alternative of this public license, you may reach us * + * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * + * or via info@compiere.org or http://www.compiere.org/license.html * + *****************************************************************************/ +/** Generated Model - DO NOT CHANGE */ +package org.compiere.model; + +import java.sql.ResultSet; +import java.util.Properties; + +/** Generated Model for T_Reconciliation + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ +public class X_T_Reconciliation extends PO implements I_T_Reconciliation, I_Persistent +{ + + /** + * + */ + private static final long serialVersionUID = 20121031L; + + /** Standard Constructor */ + public X_T_Reconciliation (Properties ctx, int T_Reconciliation_ID, String trxName) + { + super (ctx, T_Reconciliation_ID, trxName); + /** if (T_Reconciliation_ID == 0) + { + setAD_PInstance_ID (0); + setFact_Acct_ID (0); + } */ + } + + /** Load Constructor */ + public X_T_Reconciliation (Properties ctx, ResultSet rs, String trxName) + { + super (ctx, rs, trxName); + } + + /** AccessLevel + * @return 3 - Client - Org + */ + protected int get_AccessLevel() + { + return accessLevel.intValue(); + } + + /** Load Meta Data */ + protected POInfo initPO (Properties ctx) + { + POInfo poi = POInfo.getPOInfo (ctx, Table_ID, get_TrxName()); + return poi; + } + + public String toString() + { + StringBuffer sb = new StringBuffer ("X_T_Reconciliation[") + .append(get_ID()).append("]"); + return sb.toString(); + } + + public org.compiere.model.I_AD_PInstance getAD_PInstance() throws RuntimeException + { + return (org.compiere.model.I_AD_PInstance)MTable.get(getCtx(), org.compiere.model.I_AD_PInstance.Table_Name) + .getPO(getAD_PInstance_ID(), get_TrxName()); } + + /** Set Process Instance. + @param AD_PInstance_ID + Instance of the process + */ + public void setAD_PInstance_ID (int AD_PInstance_ID) + { + if (AD_PInstance_ID < 1) + set_ValueNoCheck (COLUMNNAME_AD_PInstance_ID, null); + else + set_ValueNoCheck (COLUMNNAME_AD_PInstance_ID, Integer.valueOf(AD_PInstance_ID)); + } + + /** Get Process Instance. + @return Instance of the process + */ + public int getAD_PInstance_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_AD_PInstance_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + + /** Set Accounting Fact. + @param Fact_Acct_ID Accounting Fact */ + public void setFact_Acct_ID (int Fact_Acct_ID) + { + if (Fact_Acct_ID < 1) + set_ValueNoCheck (COLUMNNAME_Fact_Acct_ID, null); + else + set_ValueNoCheck (COLUMNNAME_Fact_Acct_ID, Integer.valueOf(Fact_Acct_ID)); + } + + /** Get Accounting Fact. + @return Accounting Fact */ + public int getFact_Acct_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_Fact_Acct_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + + /** Set Match Code. + @param MatchCode + String identifying related accounting facts + */ + public void setMatchCode (String MatchCode) + { + set_Value (COLUMNNAME_MatchCode, MatchCode); + } + + /** Get Match Code. + @return String identifying related accounting facts + */ + public String getMatchCode () + { + return (String)get_Value(COLUMNNAME_MatchCode); + } + + /** Set T_Reconciliation_UU. + @param T_Reconciliation_UU T_Reconciliation_UU */ + public void setT_Reconciliation_UU (String T_Reconciliation_UU) + { + set_Value (COLUMNNAME_T_Reconciliation_UU, T_Reconciliation_UU); + } + + /** Get T_Reconciliation_UU. + @return T_Reconciliation_UU */ + public String getT_Reconciliation_UU () + { + return (String)get_Value(COLUMNNAME_T_Reconciliation_UU); + } +} \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_T_Replenish.java b/org.adempiere.base/src/org/compiere/model/X_T_Replenish.java index 6e2e8b721d..e331ec58d9 100644 --- a/org.adempiere.base/src/org/compiere/model/X_T_Replenish.java +++ b/org.adempiere.base/src/org/compiere/model/X_T_Replenish.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for T_Replenish - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_T_Replenish extends PO implements I_T_Replenish, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_T_Replenish (Properties ctx, int T_Replenish_ID, String trxName) @@ -77,9 +77,9 @@ public class X_T_Replenish extends PO implements I_T_Replenish, I_Persistent return sb.toString(); } - public I_AD_PInstance getAD_PInstance() throws RuntimeException + public org.compiere.model.I_AD_PInstance getAD_PInstance() throws RuntimeException { - return (I_AD_PInstance)MTable.get(getCtx(), I_AD_PInstance.Table_Name) + return (org.compiere.model.I_AD_PInstance)MTable.get(getCtx(), org.compiere.model.I_AD_PInstance.Table_Name) .getPO(getAD_PInstance_ID(), get_TrxName()); } /** Set Process Instance. @@ -105,9 +105,9 @@ public class X_T_Replenish extends PO implements I_T_Replenish, I_Persistent return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -133,9 +133,9 @@ public class X_T_Replenish extends PO implements I_T_Replenish, I_Persistent return ii.intValue(); } - public I_C_DocType getC_DocType() throws RuntimeException + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocType_ID(), get_TrxName()); } /** Set Document Type. @@ -201,9 +201,9 @@ public class X_T_Replenish extends PO implements I_T_Replenish, I_Persistent return bd; } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -229,9 +229,9 @@ public class X_T_Replenish extends PO implements I_T_Replenish, I_Persistent return ii.intValue(); } - public I_M_Warehouse getM_Warehouse() throws RuntimeException + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_Warehouse_ID(), get_TrxName()); } /** Set Warehouse. @@ -257,9 +257,9 @@ public class X_T_Replenish extends PO implements I_T_Replenish, I_Persistent return ii.intValue(); } - public I_M_Warehouse getM_WarehouseSource() throws RuntimeException + public org.compiere.model.I_M_Warehouse getM_WarehouseSource() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_WarehouseSource_ID(), get_TrxName()); } /** Set Source Warehouse. @@ -457,4 +457,18 @@ public class X_T_Replenish extends PO implements I_T_Replenish, I_Persistent { return (String)get_Value(COLUMNNAME_ReplenishType); } + + /** Set T_Replenish_UU. + @param T_Replenish_UU T_Replenish_UU */ + public void setT_Replenish_UU (String T_Replenish_UU) + { + set_Value (COLUMNNAME_T_Replenish_UU, T_Replenish_UU); + } + + /** Get T_Replenish_UU. + @return T_Replenish_UU */ + public String getT_Replenish_UU () + { + return (String)get_Value(COLUMNNAME_T_Replenish_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_T_Report.java b/org.adempiere.base/src/org/compiere/model/X_T_Report.java index f15528ac46..fcb3a7f3dc 100644 --- a/org.adempiere.base/src/org/compiere/model/X_T_Report.java +++ b/org.adempiere.base/src/org/compiere/model/X_T_Report.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for T_Report - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_T_Report extends PO implements I_T_Report, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_T_Report (Properties ctx, int T_Report_ID, String trxName) @@ -75,9 +75,9 @@ public class X_T_Report extends PO implements I_T_Report, I_Persistent return sb.toString(); } - public I_AD_PInstance getAD_PInstance() throws RuntimeException + public org.compiere.model.I_AD_PInstance getAD_PInstance() throws RuntimeException { - return (I_AD_PInstance)MTable.get(getCtx(), I_AD_PInstance.Table_Name) + return (org.compiere.model.I_AD_PInstance)MTable.get(getCtx(), org.compiere.model.I_AD_PInstance.Table_Name) .getPO(getAD_PInstance_ID(), get_TrxName()); } /** Set Process Instance. @@ -539,9 +539,9 @@ public class X_T_Report extends PO implements I_T_Report, I_Persistent return new KeyNamePair(get_ID(), getName()); } - public I_PA_ReportLine getPA_ReportLine() throws RuntimeException + public org.compiere.model.I_PA_ReportLine getPA_ReportLine() throws RuntimeException { - return (I_PA_ReportLine)MTable.get(getCtx(), I_PA_ReportLine.Table_Name) + return (org.compiere.model.I_PA_ReportLine)MTable.get(getCtx(), org.compiere.model.I_PA_ReportLine.Table_Name) .getPO(getPA_ReportLine_ID(), get_TrxName()); } /** Set Report Line. @@ -606,4 +606,18 @@ public class X_T_Report extends PO implements I_T_Report, I_Persistent return 0; return ii.intValue(); } + + /** Set T_Report_UU. + @param T_Report_UU T_Report_UU */ + public void setT_Report_UU (String T_Report_UU) + { + set_Value (COLUMNNAME_T_Report_UU, T_Report_UU); + } + + /** Get T_Report_UU. + @return T_Report_UU */ + public String getT_Report_UU () + { + return (String)get_Value(COLUMNNAME_T_Report_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_T_ReportStatement.java b/org.adempiere.base/src/org/compiere/model/X_T_ReportStatement.java index 88a30e2beb..5431eb4e49 100644 --- a/org.adempiere.base/src/org/compiere/model/X_T_ReportStatement.java +++ b/org.adempiere.base/src/org/compiere/model/X_T_ReportStatement.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for T_ReportStatement - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_T_ReportStatement extends PO implements I_T_ReportStatement, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_T_ReportStatement (Properties ctx, int T_ReportStatement_ID, String trxName) @@ -76,9 +76,9 @@ public class X_T_ReportStatement extends PO implements I_T_ReportStatement, I_Pe return sb.toString(); } - public I_AD_PInstance getAD_PInstance() throws RuntimeException + public org.compiere.model.I_AD_PInstance getAD_PInstance() throws RuntimeException { - return (I_AD_PInstance)MTable.get(getCtx(), I_AD_PInstance.Table_Name) + return (org.compiere.model.I_AD_PInstance)MTable.get(getCtx(), org.compiere.model.I_AD_PInstance.Table_Name) .getPO(getAD_PInstance_ID(), get_TrxName()); } /** Set Process Instance. @@ -195,9 +195,9 @@ public class X_T_ReportStatement extends PO implements I_T_ReportStatement, I_Pe return (String)get_Value(COLUMNNAME_Description); } - public I_Fact_Acct getFact_Acct() throws RuntimeException + public org.compiere.model.I_Fact_Acct getFact_Acct() throws RuntimeException { - return (I_Fact_Acct)MTable.get(getCtx(), I_Fact_Acct.Table_Name) + return (org.compiere.model.I_Fact_Acct)MTable.get(getCtx(), org.compiere.model.I_Fact_Acct.Table_Name) .getPO(getFact_Acct_ID(), get_TrxName()); } /** Set Accounting Fact. @@ -281,4 +281,18 @@ public class X_T_ReportStatement extends PO implements I_T_ReportStatement, I_Pe return Env.ZERO; return bd; } + + /** Set T_ReportStatement_UU. + @param T_ReportStatement_UU T_ReportStatement_UU */ + public void setT_ReportStatement_UU (String T_ReportStatement_UU) + { + set_Value (COLUMNNAME_T_ReportStatement_UU, T_ReportStatement_UU); + } + + /** Get T_ReportStatement_UU. + @return T_ReportStatement_UU */ + public String getT_ReportStatement_UU () + { + return (String)get_Value(COLUMNNAME_T_ReportStatement_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_T_Transaction.java b/org.adempiere.base/src/org/compiere/model/X_T_Transaction.java index 6cd812f2ac..4f1d2cb6f2 100644 --- a/org.adempiere.base/src/org/compiere/model/X_T_Transaction.java +++ b/org.adempiere.base/src/org/compiere/model/X_T_Transaction.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for T_Transaction - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_T_Transaction extends PO implements I_T_Transaction, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_T_Transaction (Properties ctx, int T_Transaction_ID, String trxName) @@ -79,9 +79,9 @@ public class X_T_Transaction extends PO implements I_T_Transaction, I_Persistent return sb.toString(); } - public I_AD_PInstance getAD_PInstance() throws RuntimeException + public org.compiere.model.I_AD_PInstance getAD_PInstance() throws RuntimeException { - return (I_AD_PInstance)MTable.get(getCtx(), I_AD_PInstance.Table_Name) + return (org.compiere.model.I_AD_PInstance)MTable.get(getCtx(), org.compiere.model.I_AD_PInstance.Table_Name) .getPO(getAD_PInstance_ID(), get_TrxName()); } /** Set Process Instance. @@ -107,9 +107,9 @@ public class X_T_Transaction extends PO implements I_T_Transaction, I_Persistent return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -135,9 +135,9 @@ public class X_T_Transaction extends PO implements I_T_Transaction, I_Persistent return ii.intValue(); } - public I_C_ProjectIssue getC_ProjectIssue() throws RuntimeException + public org.compiere.model.I_C_ProjectIssue getC_ProjectIssue() throws RuntimeException { - return (I_C_ProjectIssue)MTable.get(getCtx(), I_C_ProjectIssue.Table_Name) + return (org.compiere.model.I_C_ProjectIssue)MTable.get(getCtx(), org.compiere.model.I_C_ProjectIssue.Table_Name) .getPO(getC_ProjectIssue_ID(), get_TrxName()); } /** Set Project Issue. @@ -191,9 +191,9 @@ public class X_T_Transaction extends PO implements I_T_Transaction, I_Persistent return ii.intValue(); } - public I_M_InOut getM_InOut() throws RuntimeException + public org.compiere.model.I_M_InOut getM_InOut() throws RuntimeException { - return (I_M_InOut)MTable.get(getCtx(), I_M_InOut.Table_Name) + return (org.compiere.model.I_M_InOut)MTable.get(getCtx(), org.compiere.model.I_M_InOut.Table_Name) .getPO(getM_InOut_ID(), get_TrxName()); } /** Set Shipment/Receipt. @@ -219,9 +219,9 @@ public class X_T_Transaction extends PO implements I_T_Transaction, I_Persistent return ii.intValue(); } - public I_M_InOutLine getM_InOutLine() throws RuntimeException + public org.compiere.model.I_M_InOutLine getM_InOutLine() throws RuntimeException { - return (I_M_InOutLine)MTable.get(getCtx(), I_M_InOutLine.Table_Name) + return (org.compiere.model.I_M_InOutLine)MTable.get(getCtx(), org.compiere.model.I_M_InOutLine.Table_Name) .getPO(getM_InOutLine_ID(), get_TrxName()); } /** Set Shipment/Receipt Line. @@ -247,9 +247,9 @@ public class X_T_Transaction extends PO implements I_T_Transaction, I_Persistent return ii.intValue(); } - public I_M_Inventory getM_Inventory() throws RuntimeException + public org.compiere.model.I_M_Inventory getM_Inventory() throws RuntimeException { - return (I_M_Inventory)MTable.get(getCtx(), I_M_Inventory.Table_Name) + return (org.compiere.model.I_M_Inventory)MTable.get(getCtx(), org.compiere.model.I_M_Inventory.Table_Name) .getPO(getM_Inventory_ID(), get_TrxName()); } /** Set Phys.Inventory. @@ -275,9 +275,9 @@ public class X_T_Transaction extends PO implements I_T_Transaction, I_Persistent return ii.intValue(); } - public I_M_InventoryLine getM_InventoryLine() throws RuntimeException + public org.compiere.model.I_M_InventoryLine getM_InventoryLine() throws RuntimeException { - return (I_M_InventoryLine)MTable.get(getCtx(), I_M_InventoryLine.Table_Name) + return (org.compiere.model.I_M_InventoryLine)MTable.get(getCtx(), org.compiere.model.I_M_InventoryLine.Table_Name) .getPO(getM_InventoryLine_ID(), get_TrxName()); } /** Set Phys.Inventory Line. @@ -331,9 +331,9 @@ public class X_T_Transaction extends PO implements I_T_Transaction, I_Persistent return ii.intValue(); } - public I_M_Movement getM_Movement() throws RuntimeException + public org.compiere.model.I_M_Movement getM_Movement() throws RuntimeException { - return (I_M_Movement)MTable.get(getCtx(), I_M_Movement.Table_Name) + return (org.compiere.model.I_M_Movement)MTable.get(getCtx(), org.compiere.model.I_M_Movement.Table_Name) .getPO(getM_Movement_ID(), get_TrxName()); } /** Set Inventory Move. @@ -359,9 +359,9 @@ public class X_T_Transaction extends PO implements I_T_Transaction, I_Persistent return ii.intValue(); } - public I_M_MovementLine getM_MovementLine() throws RuntimeException + public org.compiere.model.I_M_MovementLine getM_MovementLine() throws RuntimeException { - return (I_M_MovementLine)MTable.get(getCtx(), I_M_MovementLine.Table_Name) + return (org.compiere.model.I_M_MovementLine)MTable.get(getCtx(), org.compiere.model.I_M_MovementLine.Table_Name) .getPO(getM_MovementLine_ID(), get_TrxName()); } /** Set Move Line. @@ -468,9 +468,9 @@ public class X_T_Transaction extends PO implements I_T_Transaction, I_Persistent return (String)get_Value(COLUMNNAME_MovementType); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -496,9 +496,9 @@ public class X_T_Transaction extends PO implements I_T_Transaction, I_Persistent return ii.intValue(); } - public I_M_Production getM_Production() throws RuntimeException + public org.compiere.model.I_M_Production getM_Production() throws RuntimeException { - return (I_M_Production)MTable.get(getCtx(), I_M_Production.Table_Name) + return (org.compiere.model.I_M_Production)MTable.get(getCtx(), org.compiere.model.I_M_Production.Table_Name) .getPO(getM_Production_ID(), get_TrxName()); } /** Set Production. @@ -524,9 +524,9 @@ public class X_T_Transaction extends PO implements I_T_Transaction, I_Persistent return ii.intValue(); } - public I_M_ProductionLine getM_ProductionLine() throws RuntimeException + public org.compiere.model.I_M_ProductionLine getM_ProductionLine() throws RuntimeException { - return (I_M_ProductionLine)MTable.get(getCtx(), I_M_ProductionLine.Table_Name) + return (org.compiere.model.I_M_ProductionLine)MTable.get(getCtx(), org.compiere.model.I_M_ProductionLine.Table_Name) .getPO(getM_ProductionLine_ID(), get_TrxName()); } /** Set Production Line. @@ -552,9 +552,9 @@ public class X_T_Transaction extends PO implements I_T_Transaction, I_Persistent return ii.intValue(); } - public I_M_Transaction getM_Transaction() throws RuntimeException + public org.compiere.model.I_M_Transaction getM_Transaction() throws RuntimeException { - return (I_M_Transaction)MTable.get(getCtx(), I_M_Transaction.Table_Name) + return (org.compiere.model.I_M_Transaction)MTable.get(getCtx(), org.compiere.model.I_M_Transaction.Table_Name) .getPO(getM_Transaction_ID(), get_TrxName()); } /** Set Inventory Transaction. @@ -577,9 +577,9 @@ public class X_T_Transaction extends PO implements I_T_Transaction, I_Persistent return ii.intValue(); } - public I_M_InOutLine getSearch_InOut() throws RuntimeException + public org.compiere.model.I_M_InOutLine getSearch_InOut() throws RuntimeException { - return (I_M_InOutLine)MTable.get(getCtx(), I_M_InOutLine.Table_Name) + return (org.compiere.model.I_M_InOutLine)MTable.get(getCtx(), org.compiere.model.I_M_InOutLine.Table_Name) .getPO(getSearch_InOut_ID(), get_TrxName()); } /** Set Search Shipment/Receipt. @@ -605,9 +605,9 @@ public class X_T_Transaction extends PO implements I_T_Transaction, I_Persistent return ii.intValue(); } - public I_C_Invoice getSearch_Invoice() throws RuntimeException + public org.compiere.model.I_C_Invoice getSearch_Invoice() throws RuntimeException { - return (I_C_Invoice)MTable.get(getCtx(), I_C_Invoice.Table_Name) + return (org.compiere.model.I_C_Invoice)MTable.get(getCtx(), org.compiere.model.I_C_Invoice.Table_Name) .getPO(getSearch_Invoice_ID(), get_TrxName()); } /** Set Search Invoice. @@ -633,9 +633,9 @@ public class X_T_Transaction extends PO implements I_T_Transaction, I_Persistent return ii.intValue(); } - public I_C_Order getSearch_Order() throws RuntimeException + public org.compiere.model.I_C_Order getSearch_Order() throws RuntimeException { - return (I_C_Order)MTable.get(getCtx(), I_C_Order.Table_Name) + return (org.compiere.model.I_C_Order)MTable.get(getCtx(), org.compiere.model.I_C_Order.Table_Name) .getPO(getSearch_Order_ID(), get_TrxName()); } /** Set Search Order. @@ -660,4 +660,18 @@ public class X_T_Transaction extends PO implements I_T_Transaction, I_Persistent return 0; return ii.intValue(); } + + /** Set T_Transaction_UU. + @param T_Transaction_UU T_Transaction_UU */ + public void setT_Transaction_UU (String T_Transaction_UU) + { + set_Value (COLUMNNAME_T_Transaction_UU, T_Transaction_UU); + } + + /** Get T_Transaction_UU. + @return T_Transaction_UU */ + public String getT_Transaction_UU () + { + return (String)get_Value(COLUMNNAME_T_Transaction_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_Test.java b/org.adempiere.base/src/org/compiere/model/X_Test.java index f05b933ac9..fe1aecf667 100644 --- a/org.adempiere.base/src/org/compiere/model/X_Test.java +++ b/org.adempiere.base/src/org/compiere/model/X_Test.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for Test - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_Test extends PO implements I_Test, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_Test (Properties ctx, int Test_ID, String trxName) @@ -116,9 +116,9 @@ public class X_Test extends PO implements I_Test, I_Persistent return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -144,9 +144,9 @@ public class X_Test extends PO implements I_Test, I_Persistent return ii.intValue(); } - public I_C_Currency getC_Currency() throws RuntimeException + public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { - return (I_C_Currency)MTable.get(getCtx(), I_C_Currency.Table_Name) + return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_Name) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @@ -217,9 +217,9 @@ public class X_Test extends PO implements I_Test, I_Persistent return ii.intValue(); } - public I_C_Payment getC_Payment() throws RuntimeException + public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException { - return (I_C_Payment)MTable.get(getCtx(), I_C_Payment.Table_Name) + return (org.compiere.model.I_C_Payment)MTable.get(getCtx(), org.compiere.model.I_C_Payment.Table_Name) .getPO(getC_Payment_ID(), get_TrxName()); } /** Set Payment. @@ -245,9 +245,9 @@ public class X_Test extends PO implements I_Test, I_Persistent return ii.intValue(); } - public I_C_UOM getC_UOM() throws RuntimeException + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_ID(), get_TrxName()); } /** Set UOM. @@ -335,9 +335,9 @@ public class X_Test extends PO implements I_Test, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -498,6 +498,20 @@ public class X_Test extends PO implements I_Test, I_Persistent return ii.intValue(); } + /** Set Test_UU. + @param Test_UU Test_UU */ + public void setTest_UU (String Test_UU) + { + set_Value (COLUMNNAME_Test_UU, Test_UU); + } + + /** Get Test_UU. + @return Test_UU */ + public String getTest_UU () + { + return (String)get_Value(COLUMNNAME_Test_UU); + } + /** Set Integer. @param T_Integer Integer */ public void setT_Integer (int T_Integer) diff --git a/org.adempiere.base/src/org/compiere/model/X_U_BlackListCheque.java b/org.adempiere.base/src/org/compiere/model/X_U_BlackListCheque.java index a984b2f1a5..0e8d1ee16c 100644 --- a/org.adempiere.base/src/org/compiere/model/X_U_BlackListCheque.java +++ b/org.adempiere.base/src/org/compiere/model/X_U_BlackListCheque.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for U_BlackListCheque - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_U_BlackListCheque extends PO implements I_U_BlackListCheque, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_U_BlackListCheque (Properties ctx, int U_BlackListCheque_ID, String trxName) @@ -118,4 +118,18 @@ public class X_U_BlackListCheque extends PO implements I_U_BlackListCheque, I_Pe return 0; return ii.intValue(); } + + /** Set U_BlackListCheque_UU. + @param U_BlackListCheque_UU U_BlackListCheque_UU */ + public void setU_BlackListCheque_UU (String U_BlackListCheque_UU) + { + set_Value (COLUMNNAME_U_BlackListCheque_UU, U_BlackListCheque_UU); + } + + /** Get U_BlackListCheque_UU. + @return U_BlackListCheque_UU */ + public String getU_BlackListCheque_UU () + { + return (String)get_Value(COLUMNNAME_U_BlackListCheque_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_U_POSTerminal.java b/org.adempiere.base/src/org/compiere/model/X_U_POSTerminal.java index 23b0331900..b96ad57628 100644 --- a/org.adempiere.base/src/org/compiere/model/X_U_POSTerminal.java +++ b/org.adempiere.base/src/org/compiere/model/X_U_POSTerminal.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.sql.Timestamp; import java.util.Properties; /** Generated Model for U_POSTerminal - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_U_POSTerminal extends PO implements I_U_POSTerminal, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_U_POSTerminal (Properties ctx, int U_POSTerminal_ID, String trxName) @@ -99,9 +99,9 @@ public class X_U_POSTerminal extends PO implements I_U_POSTerminal, I_Persistent return false; } - public I_C_BankAccount getCard_BankAccount() throws RuntimeException + public org.compiere.model.I_C_BankAccount getCard_BankAccount() throws RuntimeException { - return (I_C_BankAccount)MTable.get(getCtx(), I_C_BankAccount.Table_Name) + return (org.compiere.model.I_C_BankAccount)MTable.get(getCtx(), org.compiere.model.I_C_BankAccount.Table_Name) .getPO(getCard_BankAccount_ID(), get_TrxName()); } /** Set Card Bank Account. @@ -127,9 +127,9 @@ public class X_U_POSTerminal extends PO implements I_U_POSTerminal, I_Persistent return ii.intValue(); } - public I_C_BankAccount getCardTransferBankAccount() throws RuntimeException + public org.compiere.model.I_C_BankAccount getCardTransferBankAccount() throws RuntimeException { - return (I_C_BankAccount)MTable.get(getCtx(), I_C_BankAccount.Table_Name) + return (org.compiere.model.I_C_BankAccount)MTable.get(getCtx(), org.compiere.model.I_C_BankAccount.Table_Name) .getPO(getCardTransferBankAccount_ID(), get_TrxName()); } /** Set Transfer Card trx to. @@ -155,9 +155,9 @@ public class X_U_POSTerminal extends PO implements I_U_POSTerminal, I_Persistent return ii.intValue(); } - public I_C_CashBook getCardTransferCashBook() throws RuntimeException + public org.compiere.model.I_C_CashBook getCardTransferCashBook() throws RuntimeException { - return (I_C_CashBook)MTable.get(getCtx(), I_C_CashBook.Table_Name) + return (org.compiere.model.I_C_CashBook)MTable.get(getCtx(), org.compiere.model.I_C_CashBook.Table_Name) .getPO(getCardTransferCashBook_ID(), get_TrxName()); } /** Set Transfer Card trx to. @@ -228,9 +228,9 @@ public class X_U_POSTerminal extends PO implements I_U_POSTerminal, I_Persistent return (String)get_Value(COLUMNNAME_CashBookTransferType); } - public I_C_BankAccount getCashTransferBankAccount() throws RuntimeException + public org.compiere.model.I_C_BankAccount getCashTransferBankAccount() throws RuntimeException { - return (I_C_BankAccount)MTable.get(getCtx(), I_C_BankAccount.Table_Name) + return (org.compiere.model.I_C_BankAccount)MTable.get(getCtx(), org.compiere.model.I_C_BankAccount.Table_Name) .getPO(getCashTransferBankAccount_ID(), get_TrxName()); } /** Set Transfer Cash trx to. @@ -256,9 +256,9 @@ public class X_U_POSTerminal extends PO implements I_U_POSTerminal, I_Persistent return ii.intValue(); } - public I_C_CashBook getCashTransferCashBook() throws RuntimeException + public org.compiere.model.I_C_CashBook getCashTransferCashBook() throws RuntimeException { - return (I_C_CashBook)MTable.get(getCtx(), I_C_CashBook.Table_Name) + return (org.compiere.model.I_C_CashBook)MTable.get(getCtx(), org.compiere.model.I_C_CashBook.Table_Name) .getPO(getCashTransferCashBook_ID(), get_TrxName()); } /** Set Transfer Cash trx to. @@ -284,9 +284,9 @@ public class X_U_POSTerminal extends PO implements I_U_POSTerminal, I_Persistent return ii.intValue(); } - public I_C_CashBook getC_CashBook() throws RuntimeException + public org.compiere.model.I_C_CashBook getC_CashBook() throws RuntimeException { - return (I_C_CashBook)MTable.get(getCtx(), I_C_CashBook.Table_Name) + return (org.compiere.model.I_C_CashBook)MTable.get(getCtx(), org.compiere.model.I_C_CashBook.Table_Name) .getPO(getC_CashBook_ID(), get_TrxName()); } /** Set Cash Book. @@ -312,9 +312,9 @@ public class X_U_POSTerminal extends PO implements I_U_POSTerminal, I_Persistent return ii.intValue(); } - public I_C_BPartner getC_CashBPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_CashBPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_CashBPartner_ID(), get_TrxName()); } /** Set Cash BPartner. @@ -340,9 +340,9 @@ public class X_U_POSTerminal extends PO implements I_U_POSTerminal, I_Persistent return ii.intValue(); } - public I_C_BankAccount getCheck_BankAccount() throws RuntimeException + public org.compiere.model.I_C_BankAccount getCheck_BankAccount() throws RuntimeException { - return (I_C_BankAccount)MTable.get(getCtx(), I_C_BankAccount.Table_Name) + return (org.compiere.model.I_C_BankAccount)MTable.get(getCtx(), org.compiere.model.I_C_BankAccount.Table_Name) .getPO(getCheck_BankAccount_ID(), get_TrxName()); } /** Set Check Bank Account. @@ -368,9 +368,9 @@ public class X_U_POSTerminal extends PO implements I_U_POSTerminal, I_Persistent return ii.intValue(); } - public I_C_BankAccount getCheckTransferBankAccount() throws RuntimeException + public org.compiere.model.I_C_BankAccount getCheckTransferBankAccount() throws RuntimeException { - return (I_C_BankAccount)MTable.get(getCtx(), I_C_BankAccount.Table_Name) + return (org.compiere.model.I_C_BankAccount)MTable.get(getCtx(), org.compiere.model.I_C_BankAccount.Table_Name) .getPO(getCheckTransferBankAccount_ID(), get_TrxName()); } /** Set Tranfer Check trx to. @@ -396,9 +396,9 @@ public class X_U_POSTerminal extends PO implements I_U_POSTerminal, I_Persistent return ii.intValue(); } - public I_C_CashBook getCheckTransferCashBook() throws RuntimeException + public org.compiere.model.I_C_CashBook getCheckTransferCashBook() throws RuntimeException { - return (I_C_CashBook)MTable.get(getCtx(), I_C_CashBook.Table_Name) + return (org.compiere.model.I_C_CashBook)MTable.get(getCtx(), org.compiere.model.I_C_CashBook.Table_Name) .getPO(getCheckTransferCashBook_ID(), get_TrxName()); } /** Set Transfer Check trx to. @@ -445,9 +445,9 @@ public class X_U_POSTerminal extends PO implements I_U_POSTerminal, I_Persistent return (String)get_Value(COLUMNNAME_CheckTransferType); } - public I_C_BPartner getC_TemplateBPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_TemplateBPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_TemplateBPartner_ID(), get_TrxName()); } /** Set Template BPartner. @@ -568,9 +568,9 @@ public class X_U_POSTerminal extends PO implements I_U_POSTerminal, I_Persistent return ii.intValue(); } - public I_M_Warehouse getM_Warehouse() throws RuntimeException + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_Warehouse_ID(), get_TrxName()); } /** Set Warehouse. @@ -613,9 +613,9 @@ public class X_U_POSTerminal extends PO implements I_U_POSTerminal, I_Persistent return (String)get_Value(COLUMNNAME_Name); } - public I_M_PriceList getPO_PriceList() throws RuntimeException + public org.compiere.model.I_M_PriceList getPO_PriceList() throws RuntimeException { - return (I_M_PriceList)MTable.get(getCtx(), I_M_PriceList.Table_Name) + return (org.compiere.model.I_M_PriceList)MTable.get(getCtx(), org.compiere.model.I_M_PriceList.Table_Name) .getPO(getPO_PriceList_ID(), get_TrxName()); } /** Set Purchase Pricelist. @@ -658,9 +658,9 @@ public class X_U_POSTerminal extends PO implements I_U_POSTerminal, I_Persistent return (String)get_Value(COLUMNNAME_PrinterName); } - public I_AD_User getSalesRep() throws RuntimeException + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getSalesRep_ID(), get_TrxName()); } /** Set Sales Representative. @@ -686,9 +686,9 @@ public class X_U_POSTerminal extends PO implements I_U_POSTerminal, I_Persistent return ii.intValue(); } - public I_M_PriceList getSO_PriceList() throws RuntimeException + public org.compiere.model.I_M_PriceList getSO_PriceList() throws RuntimeException { - return (I_M_PriceList)MTable.get(getCtx(), I_M_PriceList.Table_Name) + return (org.compiere.model.I_M_PriceList)MTable.get(getCtx(), org.compiere.model.I_M_PriceList.Table_Name) .getPO(getSO_PriceList_ID(), get_TrxName()); } /** Set Sales Pricelist. @@ -748,6 +748,20 @@ public class X_U_POSTerminal extends PO implements I_U_POSTerminal, I_Persistent return ii.intValue(); } + /** Set U_POSTerminal_UU. + @param U_POSTerminal_UU U_POSTerminal_UU */ + public void setU_POSTerminal_UU (String U_POSTerminal_UU) + { + set_Value (COLUMNNAME_U_POSTerminal_UU, U_POSTerminal_UU); + } + + /** Get U_POSTerminal_UU. + @return U_POSTerminal_UU */ + public String getU_POSTerminal_UU () + { + return (String)get_Value(COLUMNNAME_U_POSTerminal_UU); + } + /** Set Search Key. @param Value Search key for the record in the format required - must be unique diff --git a/org.adempiere.base/src/org/compiere/model/X_U_RoleMenu.java b/org.adempiere.base/src/org/compiere/model/X_U_RoleMenu.java index be43341915..0becc51f2b 100644 --- a/org.adempiere.base/src/org/compiere/model/X_U_RoleMenu.java +++ b/org.adempiere.base/src/org/compiere/model/X_U_RoleMenu.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for U_RoleMenu - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_U_RoleMenu extends PO implements I_U_RoleMenu, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_U_RoleMenu (Properties ctx, int U_RoleMenu_ID, String trxName) @@ -71,9 +71,9 @@ public class X_U_RoleMenu extends PO implements I_U_RoleMenu, I_Persistent return sb.toString(); } - public I_AD_Role getAD_Role() throws RuntimeException + public org.compiere.model.I_AD_Role getAD_Role() throws RuntimeException { - return (I_AD_Role)MTable.get(getCtx(), I_AD_Role.Table_Name) + return (org.compiere.model.I_AD_Role)MTable.get(getCtx(), org.compiere.model.I_AD_Role.Table_Name) .getPO(getAD_Role_ID(), get_TrxName()); } /** Set Role. @@ -119,9 +119,23 @@ public class X_U_RoleMenu extends PO implements I_U_RoleMenu, I_Persistent return ii.intValue(); } - public I_U_WebMenu getU_WebMenu() throws RuntimeException + /** Set U_RoleMenu_UU. + @param U_RoleMenu_UU U_RoleMenu_UU */ + public void setU_RoleMenu_UU (String U_RoleMenu_UU) + { + set_Value (COLUMNNAME_U_RoleMenu_UU, U_RoleMenu_UU); + } + + /** Get U_RoleMenu_UU. + @return U_RoleMenu_UU */ + public String getU_RoleMenu_UU () + { + return (String)get_Value(COLUMNNAME_U_RoleMenu_UU); + } + + public org.compiere.model.I_U_WebMenu getU_WebMenu() throws RuntimeException { - return (I_U_WebMenu)MTable.get(getCtx(), I_U_WebMenu.Table_Name) + return (org.compiere.model.I_U_WebMenu)MTable.get(getCtx(), org.compiere.model.I_U_WebMenu.Table_Name) .getPO(getU_WebMenu_ID(), get_TrxName()); } /** Set Web Menu. diff --git a/org.adempiere.base/src/org/compiere/model/X_U_WebMenu.java b/org.adempiere.base/src/org/compiere/model/X_U_WebMenu.java index edbf794a01..2db531ea58 100644 --- a/org.adempiere.base/src/org/compiere/model/X_U_WebMenu.java +++ b/org.adempiere.base/src/org/compiere/model/X_U_WebMenu.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.Env; /** Generated Model for U_WebMenu - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_U_WebMenu extends PO implements I_U_WebMenu, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_U_WebMenu (Properties ctx, int U_WebMenu_ID, String trxName) @@ -204,9 +204,9 @@ public class X_U_WebMenu extends PO implements I_U_WebMenu, I_Persistent return (String)get_Value(COLUMNNAME_Name); } - public I_U_WebMenu getParentMenu() throws RuntimeException + public org.compiere.model.I_U_WebMenu getParentMenu() throws RuntimeException { - return (I_U_WebMenu)MTable.get(getCtx(), I_U_WebMenu.Table_Name) + return (org.compiere.model.I_U_WebMenu)MTable.get(getCtx(), org.compiere.model.I_U_WebMenu.Table_Name) .getPO(getParentMenu_ID(), get_TrxName()); } /** Set Parent Menu. @@ -279,4 +279,18 @@ public class X_U_WebMenu extends PO implements I_U_WebMenu, I_Persistent return 0; return ii.intValue(); } + + /** Set U_WebMenu_UU. + @param U_WebMenu_UU U_WebMenu_UU */ + public void setU_WebMenu_UU (String U_WebMenu_UU) + { + set_Value (COLUMNNAME_U_WebMenu_UU, U_WebMenu_UU); + } + + /** Get U_WebMenu_UU. + @return U_WebMenu_UU */ + public String getU_WebMenu_UU () + { + return (String)get_Value(COLUMNNAME_U_WebMenu_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_U_Web_Properties.java b/org.adempiere.base/src/org/compiere/model/X_U_Web_Properties.java index ca9cffaa16..45d0d9b764 100644 --- a/org.adempiere.base/src/org/compiere/model/X_U_Web_Properties.java +++ b/org.adempiere.base/src/org/compiere/model/X_U_Web_Properties.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -21,15 +21,15 @@ import java.sql.ResultSet; import java.util.Properties; /** Generated Model for U_Web_Properties - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_U_Web_Properties extends PO implements I_U_Web_Properties, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_U_Web_Properties (Properties ctx, int U_Web_Properties_ID, String trxName) @@ -118,4 +118,18 @@ public class X_U_Web_Properties extends PO implements I_U_Web_Properties, I_Pers return 0; return ii.intValue(); } + + /** Set U_Web_Properties_UU. + @param U_Web_Properties_UU U_Web_Properties_UU */ + public void setU_Web_Properties_UU (String U_Web_Properties_UU) + { + set_Value (COLUMNNAME_U_Web_Properties_UU, U_Web_Properties_UU); + } + + /** Get U_Web_Properties_UU. + @return U_Web_Properties_UU */ + public String getU_Web_Properties_UU () + { + return (String)get_Value(COLUMNNAME_U_Web_Properties_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_W_Advertisement.java b/org.adempiere.base/src/org/compiere/model/X_W_Advertisement.java index 6a16e37cad..17da529caf 100644 --- a/org.adempiere.base/src/org/compiere/model/X_W_Advertisement.java +++ b/org.adempiere.base/src/org/compiere/model/X_W_Advertisement.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for W_Advertisement - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_W_Advertisement extends PO implements I_W_Advertisement, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_W_Advertisement (Properties ctx, int W_Advertisement_ID, String trxName) @@ -96,9 +96,9 @@ public class X_W_Advertisement extends PO implements I_W_Advertisement, I_Persis return (String)get_Value(COLUMNNAME_AdText); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -124,9 +124,9 @@ public class X_W_Advertisement extends PO implements I_W_Advertisement, I_Persis return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -378,9 +378,23 @@ public class X_W_Advertisement extends PO implements I_W_Advertisement, I_Persis return ii.intValue(); } - public I_W_ClickCount getW_ClickCount() throws RuntimeException + /** Set W_Advertisement_UU. + @param W_Advertisement_UU W_Advertisement_UU */ + public void setW_Advertisement_UU (String W_Advertisement_UU) + { + set_Value (COLUMNNAME_W_Advertisement_UU, W_Advertisement_UU); + } + + /** Get W_Advertisement_UU. + @return W_Advertisement_UU */ + public String getW_Advertisement_UU () + { + return (String)get_Value(COLUMNNAME_W_Advertisement_UU); + } + + public org.compiere.model.I_W_ClickCount getW_ClickCount() throws RuntimeException { - return (I_W_ClickCount)MTable.get(getCtx(), I_W_ClickCount.Table_Name) + return (org.compiere.model.I_W_ClickCount)MTable.get(getCtx(), org.compiere.model.I_W_ClickCount.Table_Name) .getPO(getW_ClickCount_ID(), get_TrxName()); } /** Set Click Count. @@ -406,9 +420,9 @@ public class X_W_Advertisement extends PO implements I_W_Advertisement, I_Persis return ii.intValue(); } - public I_W_CounterCount getW_CounterCount() throws RuntimeException + public org.compiere.model.I_W_CounterCount getW_CounterCount() throws RuntimeException { - return (I_W_CounterCount)MTable.get(getCtx(), I_W_CounterCount.Table_Name) + return (org.compiere.model.I_W_CounterCount)MTable.get(getCtx(), org.compiere.model.I_W_CounterCount.Table_Name) .getPO(getW_CounterCount_ID(), get_TrxName()); } /** Set Counter Count. diff --git a/org.adempiere.base/src/org/compiere/model/X_W_Basket.java b/org.adempiere.base/src/org/compiere/model/X_W_Basket.java index 17926bc2f6..8881d4b9cd 100644 --- a/org.adempiere.base/src/org/compiere/model/X_W_Basket.java +++ b/org.adempiere.base/src/org/compiere/model/X_W_Basket.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for W_Basket - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_W_Basket extends PO implements I_W_Basket, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_W_Basket (Properties ctx, int W_Basket_ID, String trxName) @@ -72,9 +72,9 @@ public class X_W_Basket extends PO implements I_W_Basket, I_Persistent return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -100,9 +100,9 @@ public class X_W_Basket extends PO implements I_W_Basket, I_Persistent return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -145,9 +145,9 @@ public class X_W_Basket extends PO implements I_W_Basket, I_Persistent return (String)get_Value(COLUMNNAME_EMail); } - public I_M_PriceList getM_PriceList() throws RuntimeException + public org.compiere.model.I_M_PriceList getM_PriceList() throws RuntimeException { - return (I_M_PriceList)MTable.get(getCtx(), I_M_PriceList.Table_Name) + return (org.compiere.model.I_M_PriceList)MTable.get(getCtx(), org.compiere.model.I_M_PriceList.Table_Name) .getPO(getM_PriceList_ID(), get_TrxName()); } /** Set Price List. @@ -223,4 +223,18 @@ public class X_W_Basket extends PO implements I_W_Basket, I_Persistent return 0; return ii.intValue(); } + + /** Set W_Basket_UU. + @param W_Basket_UU W_Basket_UU */ + public void setW_Basket_UU (String W_Basket_UU) + { + set_Value (COLUMNNAME_W_Basket_UU, W_Basket_UU); + } + + /** Get W_Basket_UU. + @return W_Basket_UU */ + public String getW_Basket_UU () + { + return (String)get_Value(COLUMNNAME_W_Basket_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_W_BasketLine.java b/org.adempiere.base/src/org/compiere/model/X_W_BasketLine.java index 9651ad90fe..6d5cd723b7 100644 --- a/org.adempiere.base/src/org/compiere/model/X_W_BasketLine.java +++ b/org.adempiere.base/src/org/compiere/model/X_W_BasketLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for W_BasketLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_W_BasketLine extends PO implements I_W_BasketLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_W_BasketLine (Properties ctx, int W_BasketLine_ID, String trxName) @@ -123,9 +123,9 @@ public class X_W_BasketLine extends PO implements I_W_BasketLine, I_Persistent return new KeyNamePair(get_ID(), String.valueOf(getLine())); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -205,9 +205,9 @@ public class X_W_BasketLine extends PO implements I_W_BasketLine, I_Persistent return bd; } - public I_W_Basket getW_Basket() throws RuntimeException + public org.compiere.model.I_W_Basket getW_Basket() throws RuntimeException { - return (I_W_Basket)MTable.get(getCtx(), I_W_Basket.Table_Name) + return (org.compiere.model.I_W_Basket)MTable.get(getCtx(), org.compiere.model.I_W_Basket.Table_Name) .getPO(getW_Basket_ID(), get_TrxName()); } /** Set Basket. @@ -255,4 +255,18 @@ public class X_W_BasketLine extends PO implements I_W_BasketLine, I_Persistent return 0; return ii.intValue(); } + + /** Set W_BasketLine_UU. + @param W_BasketLine_UU W_BasketLine_UU */ + public void setW_BasketLine_UU (String W_BasketLine_UU) + { + set_Value (COLUMNNAME_W_BasketLine_UU, W_BasketLine_UU); + } + + /** Get W_BasketLine_UU. + @return W_BasketLine_UU */ + public String getW_BasketLine_UU () + { + return (String)get_Value(COLUMNNAME_W_BasketLine_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_W_Click.java b/org.adempiere.base/src/org/compiere/model/X_W_Click.java index 0bfdad3b93..04640db908 100644 --- a/org.adempiere.base/src/org/compiere/model/X_W_Click.java +++ b/org.adempiere.base/src/org/compiere/model/X_W_Click.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for W_Click - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_W_Click extends PO implements I_W_Click, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_W_Click (Properties ctx, int W_Click_ID, String trxName) @@ -245,9 +245,9 @@ public class X_W_Click extends PO implements I_W_Click, I_Persistent return (String)get_Value(COLUMNNAME_UserAgent); } - public I_W_ClickCount getW_ClickCount() throws RuntimeException + public org.compiere.model.I_W_ClickCount getW_ClickCount() throws RuntimeException { - return (I_W_ClickCount)MTable.get(getCtx(), I_W_ClickCount.Table_Name) + return (org.compiere.model.I_W_ClickCount)MTable.get(getCtx(), org.compiere.model.I_W_ClickCount.Table_Name) .getPO(getW_ClickCount_ID(), get_TrxName()); } /** Set Click Count. @@ -295,4 +295,18 @@ public class X_W_Click extends PO implements I_W_Click, I_Persistent return 0; return ii.intValue(); } + + /** Set W_Click_UU. + @param W_Click_UU W_Click_UU */ + public void setW_Click_UU (String W_Click_UU) + { + set_Value (COLUMNNAME_W_Click_UU, W_Click_UU); + } + + /** Get W_Click_UU. + @return W_Click_UU */ + public String getW_Click_UU () + { + return (String)get_Value(COLUMNNAME_W_Click_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_W_ClickCount.java b/org.adempiere.base/src/org/compiere/model/X_W_ClickCount.java index 80fdae219a..389e4315c6 100644 --- a/org.adempiere.base/src/org/compiere/model/X_W_ClickCount.java +++ b/org.adempiere.base/src/org/compiere/model/X_W_ClickCount.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for W_ClickCount - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_W_ClickCount extends PO implements I_W_ClickCount, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_W_ClickCount (Properties ctx, int W_ClickCount_ID, String trxName) @@ -72,9 +72,9 @@ public class X_W_ClickCount extends PO implements I_W_ClickCount, I_Persistent return sb.toString(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -200,4 +200,18 @@ public class X_W_ClickCount extends PO implements I_W_ClickCount, I_Persistent return 0; return ii.intValue(); } + + /** Set W_ClickCount_UU. + @param W_ClickCount_UU W_ClickCount_UU */ + public void setW_ClickCount_UU (String W_ClickCount_UU) + { + set_Value (COLUMNNAME_W_ClickCount_UU, W_ClickCount_UU); + } + + /** Get W_ClickCount_UU. + @return W_ClickCount_UU */ + public String getW_ClickCount_UU () + { + return (String)get_Value(COLUMNNAME_W_ClickCount_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_W_Counter.java b/org.adempiere.base/src/org/compiere/model/X_W_Counter.java index c7bfefa334..040b4d6347 100644 --- a/org.adempiere.base/src/org/compiere/model/X_W_Counter.java +++ b/org.adempiere.base/src/org/compiere/model/X_W_Counter.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for W_Counter - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_W_Counter extends PO implements I_W_Counter, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_W_Counter (Properties ctx, int W_Counter_ID, String trxName) @@ -245,9 +245,9 @@ public class X_W_Counter extends PO implements I_W_Counter, I_Persistent return (String)get_Value(COLUMNNAME_UserAgent); } - public I_W_CounterCount getW_CounterCount() throws RuntimeException + public org.compiere.model.I_W_CounterCount getW_CounterCount() throws RuntimeException { - return (I_W_CounterCount)MTable.get(getCtx(), I_W_CounterCount.Table_Name) + return (org.compiere.model.I_W_CounterCount)MTable.get(getCtx(), org.compiere.model.I_W_CounterCount.Table_Name) .getPO(getW_CounterCount_ID(), get_TrxName()); } /** Set Counter Count. @@ -295,4 +295,18 @@ public class X_W_Counter extends PO implements I_W_Counter, I_Persistent return 0; return ii.intValue(); } + + /** Set W_Counter_UU. + @param W_Counter_UU W_Counter_UU */ + public void setW_Counter_UU (String W_Counter_UU) + { + set_Value (COLUMNNAME_W_Counter_UU, W_Counter_UU); + } + + /** Get W_Counter_UU. + @return W_Counter_UU */ + public String getW_Counter_UU () + { + return (String)get_Value(COLUMNNAME_W_Counter_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_W_CounterCount.java b/org.adempiere.base/src/org/compiere/model/X_W_CounterCount.java index c096eef41d..09e573f51d 100644 --- a/org.adempiere.base/src/org/compiere/model/X_W_CounterCount.java +++ b/org.adempiere.base/src/org/compiere/model/X_W_CounterCount.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for W_CounterCount - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_W_CounterCount extends PO implements I_W_CounterCount, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_W_CounterCount (Properties ctx, int W_CounterCount_ID, String trxName) @@ -72,9 +72,9 @@ public class X_W_CounterCount extends PO implements I_W_CounterCount, I_Persiste return sb.toString(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -197,4 +197,18 @@ public class X_W_CounterCount extends PO implements I_W_CounterCount, I_Persiste return 0; return ii.intValue(); } + + /** Set W_CounterCount_UU. + @param W_CounterCount_UU W_CounterCount_UU */ + public void setW_CounterCount_UU (String W_CounterCount_UU) + { + set_Value (COLUMNNAME_W_CounterCount_UU, W_CounterCount_UU); + } + + /** Get W_CounterCount_UU. + @return W_CounterCount_UU */ + public String getW_CounterCount_UU () + { + return (String)get_Value(COLUMNNAME_W_CounterCount_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/compiere/model/X_W_MailMsg.java b/org.adempiere.base/src/org/compiere/model/X_W_MailMsg.java index 111fcda266..a4e2d49cd9 100644 --- a/org.adempiere.base/src/org/compiere/model/X_W_MailMsg.java +++ b/org.adempiere.base/src/org/compiere/model/X_W_MailMsg.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for W_MailMsg - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_W_MailMsg extends PO implements I_W_MailMsg, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_W_MailMsg (Properties ctx, int W_MailMsg_ID, String trxName) @@ -246,9 +246,23 @@ public class X_W_MailMsg extends PO implements I_W_MailMsg, I_Persistent return ii.intValue(); } - public I_W_Store getW_Store() throws RuntimeException + /** Set W_MailMsg_UU. + @param W_MailMsg_UU W_MailMsg_UU */ + public void setW_MailMsg_UU (String W_MailMsg_UU) + { + set_Value (COLUMNNAME_W_MailMsg_UU, W_MailMsg_UU); + } + + /** Get W_MailMsg_UU. + @return W_MailMsg_UU */ + public String getW_MailMsg_UU () + { + return (String)get_Value(COLUMNNAME_W_MailMsg_UU); + } + + public org.compiere.model.I_W_Store getW_Store() throws RuntimeException { - return (I_W_Store)MTable.get(getCtx(), I_W_Store.Table_Name) + return (org.compiere.model.I_W_Store)MTable.get(getCtx(), org.compiere.model.I_W_Store.Table_Name) .getPO(getW_Store_ID(), get_TrxName()); } /** Set Web Store. diff --git a/org.adempiere.base/src/org/compiere/model/X_W_Store.java b/org.adempiere.base/src/org/compiere/model/X_W_Store.java index 85c1f21efd..0a8ae05213 100644 --- a/org.adempiere.base/src/org/compiere/model/X_W_Store.java +++ b/org.adempiere.base/src/org/compiere/model/X_W_Store.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for W_Store - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_W_Store extends PO implements I_W_Store, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_W_Store (Properties ctx, int W_Store_ID, String trxName) @@ -98,9 +98,9 @@ public class X_W_Store extends PO implements I_W_Store, I_Persistent return sb.toString(); } - public I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException + public org.compiere.model.I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException { - return (I_C_PaymentTerm)MTable.get(getCtx(), I_C_PaymentTerm.Table_Name) + return (org.compiere.model.I_C_PaymentTerm)MTable.get(getCtx(), org.compiere.model.I_C_PaymentTerm.Table_Name) .getPO(getC_PaymentTerm_ID(), get_TrxName()); } /** Set Payment Term. @@ -458,9 +458,9 @@ public class X_W_Store extends PO implements I_W_Store, I_Persistent return false; } - public I_M_PriceList getM_PriceList() throws RuntimeException + public org.compiere.model.I_M_PriceList getM_PriceList() throws RuntimeException { - return (I_M_PriceList)MTable.get(getCtx(), I_M_PriceList.Table_Name) + return (org.compiere.model.I_M_PriceList)MTable.get(getCtx(), org.compiere.model.I_M_PriceList.Table_Name) .getPO(getM_PriceList_ID(), get_TrxName()); } /** Set Price List. @@ -486,9 +486,9 @@ public class X_W_Store extends PO implements I_W_Store, I_Persistent return ii.intValue(); } - public I_M_Warehouse getM_Warehouse() throws RuntimeException + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_Warehouse_ID(), get_TrxName()); } /** Set Warehouse. @@ -539,9 +539,9 @@ public class X_W_Store extends PO implements I_W_Store, I_Persistent return new KeyNamePair(get_ID(), getName()); } - public I_AD_User getSalesRep() throws RuntimeException + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getSalesRep_ID(), get_TrxName()); } /** Set Sales Representative. @@ -586,7 +586,7 @@ public class X_W_Store extends PO implements I_W_Store, I_Persistent /** Set URL. @param URL - Full URL address - e.g. http://www.adempiere.org + Full URL address - e.g. http://www.idempiere.org */ public void setURL (String URL) { @@ -594,7 +594,7 @@ public class X_W_Store extends PO implements I_W_Store, I_Persistent } /** Get URL. - @return Full URL address - e.g. http://www.adempiere.org + @return Full URL address - e.g. http://www.idempiere.org */ public String getURL () { @@ -827,4 +827,18 @@ public class X_W_Store extends PO implements I_W_Store, I_Persistent { return (String)get_Value(COLUMNNAME_WStoreUserPW); } + + /** Set W_Store_UU. + @param W_Store_UU W_Store_UU */ + public void setW_Store_UU (String W_Store_UU) + { + set_Value (COLUMNNAME_W_Store_UU, W_Store_UU); + } + + /** Get W_Store_UU. + @return W_Store_UU */ + public String getW_Store_UU () + { + return (String)get_Value(COLUMNNAME_W_Store_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/eevolution/model/I_C_TaxBase.java b/org.adempiere.base/src/org/eevolution/model/I_C_TaxBase.java index 484467340f..2175ec951e 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_C_TaxBase.java +++ b/org.adempiere.base/src/org/eevolution/model/I_C_TaxBase.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for C_TaxBase - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_TaxBase { @@ -32,7 +32,7 @@ public interface I_C_TaxBase public static final String Table_Name = "C_TaxBase"; /** AD_Table_ID=53069 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53069; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -101,6 +101,15 @@ public interface I_C_TaxBase /** Get Tax Base */ public int getC_TaxBase_ID(); + /** Column name C_TaxBase_UU */ + public static final String COLUMNNAME_C_TaxBase_UU = "C_TaxBase_UU"; + + /** Set C_TaxBase_UU */ + public void setC_TaxBase_UU (String C_TaxBase_UU); + + /** Get C_TaxBase_UU */ + public String getC_TaxBase_UU(); + /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_C_TaxDefinition.java b/org.adempiere.base/src/org/eevolution/model/I_C_TaxDefinition.java index 38235a264a..66c1e4159f 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_C_TaxDefinition.java +++ b/org.adempiere.base/src/org/eevolution/model/I_C_TaxDefinition.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for C_TaxDefinition - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_TaxDefinition { @@ -32,7 +32,7 @@ public interface I_C_TaxDefinition public static final String Table_Name = "C_TaxDefinition"; /** AD_Table_ID=53067 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53067; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -76,7 +76,7 @@ public interface I_C_TaxDefinition */ public int getAD_OrgType_ID(); - public I_AD_OrgType getAD_OrgType() throws RuntimeException; + public org.compiere.model.I_AD_OrgType getAD_OrgType() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -91,7 +91,7 @@ public interface I_C_TaxDefinition */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_BP_Group_ID */ public static final String COLUMNNAME_C_BP_Group_ID = "C_BP_Group_ID"; @@ -106,7 +106,7 @@ public interface I_C_TaxDefinition */ public int getC_BP_Group_ID(); - public I_C_BP_Group getC_BP_Group() throws RuntimeException; + public org.compiere.model.I_C_BP_Group getC_BP_Group() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -148,7 +148,7 @@ public interface I_C_TaxDefinition */ public int getC_TaxCategory_ID(); - public I_C_TaxCategory getC_TaxCategory() throws RuntimeException; + public org.compiere.model.I_C_TaxCategory getC_TaxCategory() throws RuntimeException; /** Column name C_TaxDefinition_ID */ public static final String COLUMNNAME_C_TaxDefinition_ID = "C_TaxDefinition_ID"; @@ -159,6 +159,15 @@ public interface I_C_TaxDefinition /** Get Tax Definition */ public int getC_TaxDefinition_ID(); + /** Column name C_TaxDefinition_UU */ + public static final String COLUMNNAME_C_TaxDefinition_UU = "C_TaxDefinition_UU"; + + /** Set C_TaxDefinition_UU */ + public void setC_TaxDefinition_UU (String C_TaxDefinition_UU); + + /** Get C_TaxDefinition_UU */ + public String getC_TaxDefinition_UU(); + /** Column name C_TaxGroup_ID */ public static final String COLUMNNAME_C_TaxGroup_ID = "C_TaxGroup_ID"; @@ -183,7 +192,7 @@ public interface I_C_TaxDefinition */ public int getC_Tax_ID(); - public I_C_Tax getC_Tax() throws RuntimeException; + public org.compiere.model.I_C_Tax getC_Tax() throws RuntimeException; /** Column name C_TaxType_ID */ public static final String COLUMNNAME_C_TaxType_ID = "C_TaxType_ID"; @@ -279,7 +288,7 @@ public interface I_C_TaxDefinition */ public int getM_Product_Category_ID(); - public I_M_Product_Category getM_Product_Category() throws RuntimeException; + public org.compiere.model.I_M_Product_Category getM_Product_Category() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -294,7 +303,7 @@ public interface I_C_TaxDefinition */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_C_TaxGroup.java b/org.adempiere.base/src/org/eevolution/model/I_C_TaxGroup.java index c7c2aceb52..cbb262fe29 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_C_TaxGroup.java +++ b/org.adempiere.base/src/org/eevolution/model/I_C_TaxGroup.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for C_TaxGroup - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_TaxGroup { @@ -32,7 +32,7 @@ public interface I_C_TaxGroup public static final String Table_Name = "C_TaxGroup"; /** AD_Table_ID=53066 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53066; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,6 +88,15 @@ public interface I_C_TaxGroup /** Get Tax Group */ public int getC_TaxGroup_ID(); + /** Column name C_TaxGroup_UU */ + public static final String COLUMNNAME_C_TaxGroup_UU = "C_TaxGroup_UU"; + + /** Set C_TaxGroup_UU */ + public void setC_TaxGroup_UU (String C_TaxGroup_UU); + + /** Get C_TaxGroup_UU */ + public String getC_TaxGroup_UU(); + /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_C_TaxType.java b/org.adempiere.base/src/org/eevolution/model/I_C_TaxType.java index 5bdd5990f8..ea12ce4e70 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_C_TaxType.java +++ b/org.adempiere.base/src/org/eevolution/model/I_C_TaxType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for C_TaxType - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_C_TaxType { @@ -32,7 +32,7 @@ public interface I_C_TaxType public static final String Table_Name = "C_TaxType"; /** AD_Table_ID=53068 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53068; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -88,6 +88,15 @@ public interface I_C_TaxType /** Get Tax Type */ public int getC_TaxType_ID(); + /** Column name C_TaxType_UU */ + public static final String COLUMNNAME_C_TaxType_UU = "C_TaxType_UU"; + + /** Set C_TaxType_UU */ + public void setC_TaxType_UU (String C_TaxType_UU); + + /** Get C_TaxType_UU */ + public String getC_TaxType_UU(); + /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_DD_NetworkDistribution.java b/org.adempiere.base/src/org/eevolution/model/I_DD_NetworkDistribution.java index faa3945451..76acfea2f0 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_DD_NetworkDistribution.java +++ b/org.adempiere.base/src/org/eevolution/model/I_DD_NetworkDistribution.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for DD_NetworkDistribution - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_DD_NetworkDistribution { @@ -32,7 +32,7 @@ public interface I_DD_NetworkDistribution public static final String Table_Name = "DD_NetworkDistribution"; /** AD_Table_ID=53060 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53060; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -101,6 +101,15 @@ public interface I_DD_NetworkDistribution /** Get Network Distribution */ public int getDD_NetworkDistribution_ID(); + /** Column name DD_NetworkDistribution_UU */ + public static final String COLUMNNAME_DD_NetworkDistribution_UU = "DD_NetworkDistribution_UU"; + + /** Set DD_NetworkDistribution_UU */ + public void setDD_NetworkDistribution_UU (String DD_NetworkDistribution_UU); + + /** Get DD_NetworkDistribution_UU */ + public String getDD_NetworkDistribution_UU(); + /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; @@ -166,7 +175,7 @@ public interface I_DD_NetworkDistribution */ public int getM_ChangeNotice_ID(); - public I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException; + public org.compiere.model.I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_DD_NetworkDistributionLine.java b/org.adempiere.base/src/org/eevolution/model/I_DD_NetworkDistributionLine.java index 15898d0f67..aa383e106d 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_DD_NetworkDistributionLine.java +++ b/org.adempiere.base/src/org/eevolution/model/I_DD_NetworkDistributionLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for DD_NetworkDistributionLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_DD_NetworkDistributionLine { @@ -32,7 +32,7 @@ public interface I_DD_NetworkDistributionLine public static final String Table_Name = "DD_NetworkDistributionLine"; /** AD_Table_ID=53061 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53061; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -99,6 +99,15 @@ public interface I_DD_NetworkDistributionLine /** Get Network Distribution Line */ public int getDD_NetworkDistributionLine_ID(); + /** Column name DD_NetworkDistributionLine_UU */ + public static final String COLUMNNAME_DD_NetworkDistributionLine_UU = "DD_NetworkDistributionLine_UU"; + + /** Set DD_NetworkDistributionLine_UU */ + public void setDD_NetworkDistributionLine_UU (String DD_NetworkDistributionLine_UU); + + /** Get DD_NetworkDistributionLine_UU */ + public String getDD_NetworkDistributionLine_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; @@ -125,7 +134,7 @@ public interface I_DD_NetworkDistributionLine */ public int getM_Shipper_ID(); - public I_M_Shipper getM_Shipper() throws RuntimeException; + public org.compiere.model.I_M_Shipper getM_Shipper() throws RuntimeException; /** Column name M_Warehouse_ID */ public static final String COLUMNNAME_M_Warehouse_ID = "M_Warehouse_ID"; @@ -140,7 +149,7 @@ public interface I_DD_NetworkDistributionLine */ public int getM_Warehouse_ID(); - public I_M_Warehouse getM_Warehouse() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException; /** Column name M_WarehouseSource_ID */ public static final String COLUMNNAME_M_WarehouseSource_ID = "M_WarehouseSource_ID"; @@ -155,7 +164,7 @@ public interface I_DD_NetworkDistributionLine */ public int getM_WarehouseSource_ID(); - public I_M_Warehouse getM_WarehouseSource() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_WarehouseSource() throws RuntimeException; /** Column name Percent */ public static final String COLUMNNAME_Percent = "Percent"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_DD_Order.java b/org.adempiere.base/src/org/eevolution/model/I_DD_Order.java index d0336efa01..0ecf082769 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_DD_Order.java +++ b/org.adempiere.base/src/org/eevolution/model/I_DD_Order.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for DD_Order - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_DD_Order { @@ -32,7 +32,7 @@ public interface I_DD_Order public static final String Table_Name = "DD_Order"; /** AD_Table_ID=53037 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53037; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -89,7 +89,7 @@ public interface I_DD_Order */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name C_Activity_ID */ public static final String COLUMNNAME_C_Activity_ID = "C_Activity_ID"; @@ -104,7 +104,7 @@ public interface I_DD_Order */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -119,7 +119,7 @@ public interface I_DD_Order */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_BPartner_Location_ID */ public static final String COLUMNNAME_C_BPartner_Location_ID = "C_BPartner_Location_ID"; @@ -134,7 +134,7 @@ public interface I_DD_Order */ public int getC_BPartner_Location_ID(); - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -149,7 +149,7 @@ public interface I_DD_Order */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_Charge_ID */ public static final String COLUMNNAME_C_Charge_ID = "C_Charge_ID"; @@ -164,7 +164,7 @@ public interface I_DD_Order */ public int getC_Charge_ID(); - public I_C_Charge getC_Charge() throws RuntimeException; + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException; /** Column name C_DocType_ID */ public static final String COLUMNNAME_C_DocType_ID = "C_DocType_ID"; @@ -179,7 +179,7 @@ public interface I_DD_Order */ public int getC_DocType_ID(); - public I_C_DocType getC_DocType() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException; /** Column name ChargeAmt */ public static final String COLUMNNAME_ChargeAmt = "ChargeAmt"; @@ -207,7 +207,7 @@ public interface I_DD_Order */ public int getC_Invoice_ID(); - public I_C_Invoice getC_Invoice() throws RuntimeException; + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException; /** Column name C_Order_ID */ public static final String COLUMNNAME_C_Order_ID = "C_Order_ID"; @@ -222,7 +222,7 @@ public interface I_DD_Order */ public int getC_Order_ID(); - public I_C_Order getC_Order() throws RuntimeException; + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException; /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -237,7 +237,7 @@ public interface I_DD_Order */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name CreateConfirm */ public static final String COLUMNNAME_CreateConfirm = "CreateConfirm"; @@ -347,6 +347,15 @@ public interface I_DD_Order /** Get Distribution Order */ public int getDD_Order_ID(); + /** Column name DD_Order_UU */ + public static final String COLUMNNAME_DD_Order_UU = "DD_Order_UU"; + + /** Set DD_Order_UU */ + public void setDD_Order_UU (String DD_Order_UU); + + /** Get DD_Order_UU */ + public String getDD_Order_UU(); + /** Column name DeliveryRule */ public static final String COLUMNNAME_DeliveryRule = "DeliveryRule"; @@ -586,7 +595,7 @@ public interface I_DD_Order */ public int getM_Shipper_ID(); - public I_M_Shipper getM_Shipper() throws RuntimeException; + public org.compiere.model.I_M_Shipper getM_Shipper() throws RuntimeException; /** Column name M_Warehouse_ID */ public static final String COLUMNNAME_M_Warehouse_ID = "M_Warehouse_ID"; @@ -601,7 +610,7 @@ public interface I_DD_Order */ public int getM_Warehouse_ID(); - public I_M_Warehouse getM_Warehouse() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException; /** Column name NoPackages */ public static final String COLUMNNAME_NoPackages = "NoPackages"; @@ -729,7 +738,7 @@ public interface I_DD_Order */ public int getSalesRep_ID(); - public I_AD_User getSalesRep() throws RuntimeException; + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException; /** Column name SendEMail */ public static final String COLUMNNAME_SendEMail = "SendEMail"; @@ -799,7 +808,7 @@ public interface I_DD_Order */ public int getUser1_ID(); - public I_C_ElementValue getUser1() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException; /** Column name User2_ID */ public static final String COLUMNNAME_User2_ID = "User2_ID"; @@ -814,7 +823,7 @@ public interface I_DD_Order */ public int getUser2_ID(); - public I_C_ElementValue getUser2() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException; /** Column name Volume */ public static final String COLUMNNAME_Volume = "Volume"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_DD_OrderLine.java b/org.adempiere.base/src/org/eevolution/model/I_DD_OrderLine.java index cc0975a9c4..3a269342af 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_DD_OrderLine.java +++ b/org.adempiere.base/src/org/eevolution/model/I_DD_OrderLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for DD_OrderLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_DD_OrderLine { @@ -32,7 +32,7 @@ public interface I_DD_OrderLine public static final String Table_Name = "DD_OrderLine"; /** AD_Table_ID=53038 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53038; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -89,7 +89,7 @@ public interface I_DD_OrderLine */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -104,7 +104,7 @@ public interface I_DD_OrderLine */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_Charge_ID */ public static final String COLUMNNAME_C_Charge_ID = "C_Charge_ID"; @@ -119,7 +119,7 @@ public interface I_DD_OrderLine */ public int getC_Charge_ID(); - public I_C_Charge getC_Charge() throws RuntimeException; + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException; /** Column name ConfirmedQty */ public static final String COLUMNNAME_ConfirmedQty = "ConfirmedQty"; @@ -147,7 +147,7 @@ public interface I_DD_OrderLine */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -178,7 +178,7 @@ public interface I_DD_OrderLine */ public int getC_UOM_ID(); - public I_C_UOM getC_UOM() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException; /** Column name DateDelivered */ public static final String COLUMNNAME_DateDelivered = "DateDelivered"; @@ -239,6 +239,15 @@ public interface I_DD_OrderLine /** Get Distribution Order Line */ public int getDD_OrderLine_ID(); + /** Column name DD_OrderLine_UU */ + public static final String COLUMNNAME_DD_OrderLine_UU = "DD_OrderLine_UU"; + + /** Set DD_OrderLine_UU */ + public void setDD_OrderLine_UU (String DD_OrderLine_UU); + + /** Get DD_OrderLine_UU */ + public String getDD_OrderLine_UU(); + /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; @@ -373,7 +382,7 @@ public interface I_DD_OrderLine */ public int getM_Locator_ID(); - public I_M_Locator getM_Locator() throws RuntimeException; + public org.compiere.model.I_M_Locator getM_Locator() throws RuntimeException; /** Column name M_LocatorTo_ID */ public static final String COLUMNNAME_M_LocatorTo_ID = "M_LocatorTo_ID"; @@ -388,7 +397,7 @@ public interface I_DD_OrderLine */ public int getM_LocatorTo_ID(); - public I_M_Locator getM_LocatorTo() throws RuntimeException; + public org.compiere.model.I_M_Locator getM_LocatorTo() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -403,7 +412,7 @@ public interface I_DD_OrderLine */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name M_Shipper_ID */ public static final String COLUMNNAME_M_Shipper_ID = "M_Shipper_ID"; @@ -418,7 +427,7 @@ public interface I_DD_OrderLine */ public int getM_Shipper_ID(); - public I_M_Shipper getM_Shipper() throws RuntimeException; + public org.compiere.model.I_M_Shipper getM_Shipper() throws RuntimeException; /** Column name PickedQty */ public static final String COLUMNNAME_PickedQty = "PickedQty"; @@ -558,7 +567,7 @@ public interface I_DD_OrderLine */ public int getUser1_ID(); - public I_C_ElementValue getUser1() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException; /** Column name User2_ID */ public static final String COLUMNNAME_User2_ID = "User2_ID"; @@ -573,5 +582,5 @@ public interface I_DD_OrderLine */ public int getUser2_ID(); - public I_C_ElementValue getUser2() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException; } diff --git a/org.adempiere.base/src/org/eevolution/model/I_HR_Attribute.java b/org.adempiere.base/src/org/eevolution/model/I_HR_Attribute.java index 0882b421ad..74f3ee0498 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_HR_Attribute.java +++ b/org.adempiere.base/src/org/eevolution/model/I_HR_Attribute.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for HR_Attribute - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_HR_Attribute { @@ -32,7 +32,7 @@ public interface I_HR_Attribute public static final String Table_Name = "HR_Attribute"; /** AD_Table_ID=53087 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53087; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -72,7 +72,7 @@ public interface I_HR_Attribute /** Get Rule */ public int getAD_Rule_ID(); - public I_AD_Rule getAD_Rule() throws RuntimeException; + public org.compiere.model.I_AD_Rule getAD_Rule() throws RuntimeException; /** Column name Amount */ public static final String COLUMNNAME_Amount = "Amount"; @@ -100,7 +100,7 @@ public interface I_HR_Attribute */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name ColumnType */ public static final String COLUMNNAME_ColumnType = "ColumnType"; @@ -160,6 +160,15 @@ public interface I_HR_Attribute /** Get Payroll Employee Attribute */ public int getHR_Attribute_ID(); + /** Column name HR_Attribute_UU */ + public static final String COLUMNNAME_HR_Attribute_UU = "HR_Attribute_UU"; + + /** Set HR_Attribute_UU */ + public void setHR_Attribute_UU (String HR_Attribute_UU); + + /** Get HR_Attribute_UU */ + public String getHR_Attribute_UU(); + /** Column name HR_Concept_ID */ public static final String COLUMNNAME_HR_Concept_ID = "HR_Concept_ID"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_HR_Concept.java b/org.adempiere.base/src/org/eevolution/model/I_HR_Concept.java index 1c0b381162..efb198857f 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_HR_Concept.java +++ b/org.adempiere.base/src/org/eevolution/model/I_HR_Concept.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for HR_Concept - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_HR_Concept { @@ -32,7 +32,7 @@ public interface I_HR_Concept public static final String Table_Name = "HR_Concept"; /** AD_Table_ID=53090 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53090; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -89,7 +89,7 @@ public interface I_HR_Concept */ public int getAD_Reference_ID(); - public I_AD_Reference getAD_Reference() throws RuntimeException; + public org.compiere.model.I_AD_Reference getAD_Reference() throws RuntimeException; /** Column name ColumnType */ public static final String COLUMNNAME_ColumnType = "ColumnType"; @@ -149,6 +149,15 @@ public interface I_HR_Concept /** Get Payroll Concept */ public int getHR_Concept_ID(); + /** Column name HR_Concept_UU */ + public static final String COLUMNNAME_HR_Concept_UU = "HR_Concept_UU"; + + /** Set HR_Concept_UU */ + public void setHR_Concept_UU (String HR_Concept_UU); + + /** Get HR_Concept_UU */ + public String getHR_Concept_UU(); + /** Column name HR_Department_ID */ public static final String COLUMNNAME_HR_Department_ID = "HR_Department_ID"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_HR_Concept_Acct.java b/org.adempiere.base/src/org/eevolution/model/I_HR_Concept_Acct.java index ea1106a8aa..e62fb88765 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_HR_Concept_Acct.java +++ b/org.adempiere.base/src/org/eevolution/model/I_HR_Concept_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for HR_Concept_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_HR_Concept_Acct { @@ -32,7 +32,7 @@ public interface I_HR_Concept_Acct public static final String Table_Name = "HR_Concept_Acct"; /** AD_Table_ID=53091 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53091; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -76,7 +76,7 @@ public interface I_HR_Concept_Acct */ public int getC_AcctSchema_ID(); - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException; /** Column name C_BP_Group_ID */ public static final String COLUMNNAME_C_BP_Group_ID = "C_BP_Group_ID"; @@ -91,7 +91,7 @@ public interface I_HR_Concept_Acct */ public int getC_BP_Group_ID(); - public I_C_BP_Group getC_BP_Group() throws RuntimeException; + public org.compiere.model.I_C_BP_Group getC_BP_Group() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -118,6 +118,15 @@ public interface I_HR_Concept_Acct /** Get Payroll Concept Account */ public int getHR_Concept_Acct_ID(); + /** Column name HR_Concept_Acct_UU */ + public static final String COLUMNNAME_HR_Concept_Acct_UU = "HR_Concept_Acct_UU"; + + /** Set HR_Concept_Acct_UU */ + public void setHR_Concept_Acct_UU (String HR_Concept_Acct_UU); + + /** Get HR_Concept_Acct_UU */ + public String getHR_Concept_Acct_UU(); + /** Column name HR_Concept_ID */ public static final String COLUMNNAME_HR_Concept_ID = "HR_Concept_ID"; @@ -206,7 +215,7 @@ public interface I_HR_Concept_Acct */ public int getUser1_ID(); - public I_C_ElementValue getUser1() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException; /** Column name User2_ID */ public static final String COLUMNNAME_User2_ID = "User2_ID"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_HR_Concept_Category.java b/org.adempiere.base/src/org/eevolution/model/I_HR_Concept_Category.java index afa9a63ba8..977f5dd3b1 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_HR_Concept_Category.java +++ b/org.adempiere.base/src/org/eevolution/model/I_HR_Concept_Category.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for HR_Concept_Category - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_HR_Concept_Category { @@ -32,7 +32,7 @@ public interface I_HR_Concept_Category public static final String Table_Name = "HR_Concept_Category"; /** AD_Table_ID=53097 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53097; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -112,6 +112,15 @@ public interface I_HR_Concept_Category /** Get Payroll Concept Category */ public int getHR_Concept_Category_ID(); + /** Column name HR_Concept_Category_UU */ + public static final String COLUMNNAME_HR_Concept_Category_UU = "HR_Concept_Category_UU"; + + /** Set HR_Concept_Category_UU */ + public void setHR_Concept_Category_UU (String HR_Concept_Category_UU); + + /** Get HR_Concept_Category_UU */ + public String getHR_Concept_Category_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_HR_Contract.java b/org.adempiere.base/src/org/eevolution/model/I_HR_Contract.java index 0066be6c26..30e9f5d73d 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_HR_Contract.java +++ b/org.adempiere.base/src/org/eevolution/model/I_HR_Contract.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for HR_Contract - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_HR_Contract { @@ -32,7 +32,7 @@ public interface I_HR_Contract public static final String Table_Name = "HR_Contract"; /** AD_Table_ID=53085 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53085; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -76,7 +76,7 @@ public interface I_HR_Contract */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -91,7 +91,7 @@ public interface I_HR_Contract */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -106,7 +106,7 @@ public interface I_HR_Contract */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -146,6 +146,15 @@ public interface I_HR_Contract /** Get Payroll Contract */ public int getHR_Contract_ID(); + /** Column name HR_Contract_UU */ + public static final String COLUMNNAME_HR_Contract_UU = "HR_Contract_UU"; + + /** Set HR_Contract_UU */ + public void setHR_Contract_UU (String HR_Contract_UU); + + /** Get HR_Contract_UU */ + public String getHR_Contract_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_HR_Department.java b/org.adempiere.base/src/org/eevolution/model/I_HR_Department.java index 523812b3bd..8e20fec9cb 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_HR_Department.java +++ b/org.adempiere.base/src/org/eevolution/model/I_HR_Department.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for HR_Department - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_HR_Department { @@ -32,7 +32,7 @@ public interface I_HR_Department public static final String Table_Name = "HR_Department"; /** AD_Table_ID=53088 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53088; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -76,7 +76,7 @@ public interface I_HR_Department */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -116,6 +116,15 @@ public interface I_HR_Department /** Get Payroll Department */ public int getHR_Department_ID(); + /** Column name HR_Department_UU */ + public static final String COLUMNNAME_HR_Department_UU = "HR_Department_UU"; + + /** Set HR_Department_UU */ + public void setHR_Department_UU (String HR_Department_UU); + + /** Get HR_Department_UU */ + public String getHR_Department_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_HR_Employee.java b/org.adempiere.base/src/org/eevolution/model/I_HR_Employee.java index d85bf19cbd..61c05aeebc 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_HR_Employee.java +++ b/org.adempiere.base/src/org/eevolution/model/I_HR_Employee.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for HR_Employee - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_HR_Employee { @@ -32,7 +32,7 @@ public interface I_HR_Employee public static final String Table_Name = "HR_Employee"; /** AD_Table_ID=53086 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53086; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -76,7 +76,7 @@ public interface I_HR_Employee */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -91,7 +91,7 @@ public interface I_HR_Employee */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name Code */ public static final String COLUMNNAME_Code = "Code"; @@ -155,6 +155,15 @@ public interface I_HR_Employee /** Get Payroll Employee */ public int getHR_Employee_ID(); + /** Column name HR_Employee_UU */ + public static final String COLUMNNAME_HR_Employee_UU = "HR_Employee_UU"; + + /** Set HR_Employee_UU */ + public void setHR_Employee_UU (String HR_Employee_UU); + + /** Get HR_Employee_UU */ + public String getHR_Employee_UU(); + /** Column name HR_Job_ID */ public static final String COLUMNNAME_HR_Job_ID = "HR_Job_ID"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_HR_Job.java b/org.adempiere.base/src/org/eevolution/model/I_HR_Job.java index 46e9f1c611..ea896c486b 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_HR_Job.java +++ b/org.adempiere.base/src/org/eevolution/model/I_HR_Job.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for HR_Job - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_HR_Job { @@ -32,7 +32,7 @@ public interface I_HR_Job public static final String Table_Name = "HR_Job"; /** AD_Table_ID=53089 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53089; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -112,6 +112,15 @@ public interface I_HR_Job /** Get Payroll Job */ public int getHR_Job_ID(); + /** Column name HR_Job_UU */ + public static final String COLUMNNAME_HR_Job_UU = "HR_Job_UU"; + + /** Set HR_Job_UU */ + public void setHR_Job_UU (String HR_Job_UU); + + /** Get HR_Job_UU */ + public String getHR_Job_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; @@ -184,7 +193,7 @@ public interface I_HR_Job */ public int getSupervisor_ID(); - public I_AD_User getSupervisor() throws RuntimeException; + public org.compiere.model.I_AD_User getSupervisor() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_HR_List.java b/org.adempiere.base/src/org/eevolution/model/I_HR_List.java index 98a0892bb9..0dca85a597 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_HR_List.java +++ b/org.adempiere.base/src/org/eevolution/model/I_HR_List.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for HR_List - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_HR_List { @@ -32,7 +32,7 @@ public interface I_HR_List public static final String Table_Name = "HR_List"; /** AD_Table_ID=53099 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53099; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -134,6 +134,15 @@ public interface I_HR_List public org.eevolution.model.I_HR_ListType getHR_ListType() throws RuntimeException; + /** Column name HR_List_UU */ + public static final String COLUMNNAME_HR_List_UU = "HR_List_UU"; + + /** Set HR_List_UU */ + public void setHR_List_UU (String HR_List_UU); + + /** Get HR_List_UU */ + public String getHR_List_UU(); + /** Column name HR_Payroll_ID */ public static final String COLUMNNAME_HR_Payroll_ID = "HR_Payroll_ID"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_HR_ListLine.java b/org.adempiere.base/src/org/eevolution/model/I_HR_ListLine.java index 9fa35f961b..32c558d34d 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_HR_ListLine.java +++ b/org.adempiere.base/src/org/eevolution/model/I_HR_ListLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for HR_ListLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_HR_ListLine { @@ -32,7 +32,7 @@ public interface I_HR_ListLine public static final String Table_Name = "HR_ListLine"; /** AD_Table_ID=53101 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53101; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -160,6 +160,15 @@ public interface I_HR_ListLine /** Get Payroll List Line */ public int getHR_ListLine_ID(); + /** Column name HR_ListLine_UU */ + public static final String COLUMNNAME_HR_ListLine_UU = "HR_ListLine_UU"; + + /** Set HR_ListLine_UU */ + public void setHR_ListLine_UU (String HR_ListLine_UU); + + /** Get HR_ListLine_UU */ + public String getHR_ListLine_UU(); + /** Column name HR_ListVersion_ID */ public static final String COLUMNNAME_HR_ListVersion_ID = "HR_ListVersion_ID"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_HR_ListType.java b/org.adempiere.base/src/org/eevolution/model/I_HR_ListType.java index 7c968c38ef..495dc7bf93 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_HR_ListType.java +++ b/org.adempiere.base/src/org/eevolution/model/I_HR_ListType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for HR_ListType - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_HR_ListType { @@ -32,7 +32,7 @@ public interface I_HR_ListType public static final String Table_Name = "HR_ListType"; /** AD_Table_ID=53098 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53098; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -101,6 +101,15 @@ public interface I_HR_ListType /** Get Payroll List Type */ public int getHR_ListType_ID(); + /** Column name HR_ListType_UU */ + public static final String COLUMNNAME_HR_ListType_UU = "HR_ListType_UU"; + + /** Set HR_ListType_UU */ + public void setHR_ListType_UU (String HR_ListType_UU); + + /** Get HR_ListType_UU */ + public String getHR_ListType_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_HR_ListVersion.java b/org.adempiere.base/src/org/eevolution/model/I_HR_ListVersion.java index 7a2533a556..f3835b911f 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_HR_ListVersion.java +++ b/org.adempiere.base/src/org/eevolution/model/I_HR_ListVersion.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for HR_ListVersion - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_HR_ListVersion { @@ -32,7 +32,7 @@ public interface I_HR_ListVersion public static final String Table_Name = "HR_ListVersion"; /** AD_Table_ID=53100 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53100; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -123,6 +123,15 @@ public interface I_HR_ListVersion /** Get Payroll List Version */ public int getHR_ListVersion_ID(); + /** Column name HR_ListVersion_UU */ + public static final String COLUMNNAME_HR_ListVersion_UU = "HR_ListVersion_UU"; + + /** Set HR_ListVersion_UU */ + public void setHR_ListVersion_UU (String HR_ListVersion_UU); + + /** Get HR_ListVersion_UU */ + public String getHR_ListVersion_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_HR_Movement.java b/org.adempiere.base/src/org/eevolution/model/I_HR_Movement.java index e3eb9e1999..ae9e752c94 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_HR_Movement.java +++ b/org.adempiere.base/src/org/eevolution/model/I_HR_Movement.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for HR_Movement - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_HR_Movement { @@ -32,7 +32,7 @@ public interface I_HR_Movement public static final String Table_Name = "HR_Movement"; /** AD_Table_ID=53102 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53102; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -98,7 +98,7 @@ public interface I_HR_Movement /** Get Rule */ public int getAD_Rule_ID(); - public I_AD_Rule getAD_Rule() throws RuntimeException; + public org.compiere.model.I_AD_Rule getAD_Rule() throws RuntimeException; /** Column name Amount */ public static final String COLUMNNAME_Amount = "Amount"; @@ -126,7 +126,7 @@ public interface I_HR_Movement */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -141,7 +141,7 @@ public interface I_HR_Movement */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_BP_BankAccount_ID */ public static final String COLUMNNAME_C_BP_BankAccount_ID = "C_BP_BankAccount_ID"; @@ -156,7 +156,7 @@ public interface I_HR_Movement */ public int getC_BP_BankAccount_ID(); - public I_C_BP_BankAccount getC_BP_BankAccount() throws RuntimeException; + public org.compiere.model.I_C_BP_BankAccount getC_BP_BankAccount() throws RuntimeException; /** Column name C_BP_Group_ID */ public static final String COLUMNNAME_C_BP_Group_ID = "C_BP_Group_ID"; @@ -171,7 +171,7 @@ public interface I_HR_Movement */ public int getC_BP_Group_ID(); - public I_C_BP_Group getC_BP_Group() throws RuntimeException; + public org.compiere.model.I_C_BP_Group getC_BP_Group() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -186,7 +186,7 @@ public interface I_HR_Movement */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name ColumnType */ public static final String COLUMNNAME_ColumnType = "ColumnType"; @@ -210,7 +210,7 @@ public interface I_HR_Movement */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name C_ProjectPhase_ID */ public static final String COLUMNNAME_C_ProjectPhase_ID = "C_ProjectPhase_ID"; @@ -225,7 +225,7 @@ public interface I_HR_Movement */ public int getC_ProjectPhase_ID(); - public I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException; + public org.compiere.model.I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException; /** Column name C_ProjectTask_ID */ public static final String COLUMNNAME_C_ProjectTask_ID = "C_ProjectTask_ID"; @@ -240,7 +240,7 @@ public interface I_HR_Movement */ public int getC_ProjectTask_ID(); - public I_C_ProjectTask getC_ProjectTask() throws RuntimeException; + public org.compiere.model.I_C_ProjectTask getC_ProjectTask() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -324,6 +324,15 @@ public interface I_HR_Movement /** Get Payroll Movement */ public int getHR_Movement_ID(); + /** Column name HR_Movement_UU */ + public static final String COLUMNNAME_HR_Movement_UU = "HR_Movement_UU"; + + /** Set HR_Movement_UU */ + public void setHR_Movement_UU (String HR_Movement_UU); + + /** Get HR_Movement_UU */ + public String getHR_Movement_UU(); + /** Column name HR_Process_ID */ public static final String COLUMNNAME_HR_Process_ID = "HR_Process_ID"; @@ -466,7 +475,7 @@ public interface I_HR_Movement */ public int getUser1_ID(); - public I_C_ElementValue getUser1() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException; /** Column name User2_ID */ public static final String COLUMNNAME_User2_ID = "User2_ID"; @@ -481,7 +490,7 @@ public interface I_HR_Movement */ public int getUser2_ID(); - public I_C_ElementValue getUser2() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException; /** Column name ValidFrom */ public static final String COLUMNNAME_ValidFrom = "ValidFrom"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_HR_Payroll.java b/org.adempiere.base/src/org/eevolution/model/I_HR_Payroll.java index 018943583b..926978b9fc 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_HR_Payroll.java +++ b/org.adempiere.base/src/org/eevolution/model/I_HR_Payroll.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for HR_Payroll - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_HR_Payroll { @@ -32,7 +32,7 @@ public interface I_HR_Payroll public static final String Table_Name = "HR_Payroll"; /** AD_Table_ID=53093 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53093; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -76,7 +76,7 @@ public interface I_HR_Payroll */ public int getAD_PrintFormat_ID(); - public I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException; + public org.compiere.model.I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException; /** Column name C_Charge_ID */ public static final String COLUMNNAME_C_Charge_ID = "C_Charge_ID"; @@ -91,7 +91,7 @@ public interface I_HR_Payroll */ public int getC_Charge_ID(); - public I_C_Charge getC_Charge() throws RuntimeException; + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -142,6 +142,15 @@ public interface I_HR_Payroll /** Get Payroll */ public int getHR_Payroll_ID(); + /** Column name HR_Payroll_UU */ + public static final String COLUMNNAME_HR_Payroll_UU = "HR_Payroll_UU"; + + /** Set HR_Payroll_UU */ + public void setHR_Payroll_UU (String HR_Payroll_UU); + + /** Get HR_Payroll_UU */ + public String getHR_Payroll_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_HR_PayrollConcept.java b/org.adempiere.base/src/org/eevolution/model/I_HR_PayrollConcept.java index be6e8733a4..0a94773eae 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_HR_PayrollConcept.java +++ b/org.adempiere.base/src/org/eevolution/model/I_HR_PayrollConcept.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for HR_PayrollConcept - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_HR_PayrollConcept { @@ -32,7 +32,7 @@ public interface I_HR_PayrollConcept public static final String Table_Name = "HR_PayrollConcept"; /** AD_Table_ID=53096 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53096; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -72,7 +72,7 @@ public interface I_HR_PayrollConcept /** Get Rule */ public int getAD_Rule_ID(); - public I_AD_Rule getAD_Rule() throws RuntimeException; + public org.compiere.model.I_AD_Rule getAD_Rule() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -110,6 +110,15 @@ public interface I_HR_PayrollConcept /** Get Payroll Concept */ public int getHR_PayrollConcept_ID(); + /** Column name HR_PayrollConcept_UU */ + public static final String COLUMNNAME_HR_PayrollConcept_UU = "HR_PayrollConcept_UU"; + + /** Set HR_PayrollConcept_UU */ + public void setHR_PayrollConcept_UU (String HR_PayrollConcept_UU); + + /** Get HR_PayrollConcept_UU */ + public String getHR_PayrollConcept_UU(); + /** Column name HR_Payroll_ID */ public static final String COLUMNNAME_HR_Payroll_ID = "HR_Payroll_ID"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_HR_Period.java b/org.adempiere.base/src/org/eevolution/model/I_HR_Period.java index 7af0fb3921..2e56a27485 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_HR_Period.java +++ b/org.adempiere.base/src/org/eevolution/model/I_HR_Period.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for HR_Period - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_HR_Period { @@ -32,7 +32,7 @@ public interface I_HR_Period public static final String Table_Name = "HR_Period"; /** AD_Table_ID=53094 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53094; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -76,7 +76,7 @@ public interface I_HR_Period */ public int getC_Period_ID(); - public I_C_Period getC_Period() throws RuntimeException; + public org.compiere.model.I_C_Period getC_Period() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -107,7 +107,7 @@ public interface I_HR_Period */ public int getC_Year_ID(); - public I_C_Year getC_Year() throws RuntimeException; + public org.compiere.model.I_C_Year getC_Year() throws RuntimeException; /** Column name DateAcct */ public static final String COLUMNNAME_DateAcct = "DateAcct"; @@ -168,6 +168,15 @@ public interface I_HR_Period /** Get Payroll Period */ public int getHR_Period_ID(); + /** Column name HR_Period_UU */ + public static final String COLUMNNAME_HR_Period_UU = "HR_Period_UU"; + + /** Set HR_Period_UU */ + public void setHR_Period_UU (String HR_Period_UU); + + /** Get HR_Period_UU */ + public String getHR_Period_UU(); + /** Column name HR_Year_ID */ public static final String COLUMNNAME_HR_Year_ID = "HR_Year_ID"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_HR_Process.java b/org.adempiere.base/src/org/eevolution/model/I_HR_Process.java index fb633f952b..e7254a68b1 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_HR_Process.java +++ b/org.adempiere.base/src/org/eevolution/model/I_HR_Process.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for HR_Process - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_HR_Process { @@ -32,7 +32,7 @@ public interface I_HR_Process public static final String Table_Name = "HR_Process"; /** AD_Table_ID=53092 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53092; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -76,7 +76,7 @@ public interface I_HR_Process */ public int getAD_PrintFormat_ID(); - public I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException; + public org.compiere.model.I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException; /** Column name AD_Workflow_ID */ public static final String COLUMNNAME_AD_Workflow_ID = "AD_Workflow_ID"; @@ -91,7 +91,7 @@ public interface I_HR_Process */ public int getAD_Workflow_ID(); - public I_AD_Workflow getAD_Workflow() throws RuntimeException; + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -106,7 +106,7 @@ public interface I_HR_Process */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Charge_ID */ public static final String COLUMNNAME_C_Charge_ID = "C_Charge_ID"; @@ -121,7 +121,7 @@ public interface I_HR_Process */ public int getC_Charge_ID(); - public I_C_Charge getC_Charge() throws RuntimeException; + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException; /** Column name C_DocType_ID */ public static final String COLUMNNAME_C_DocType_ID = "C_DocType_ID"; @@ -136,7 +136,7 @@ public interface I_HR_Process */ public int getC_DocType_ID(); - public I_C_DocType getC_DocType() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException; /** Column name C_DocTypeTarget_ID */ public static final String COLUMNNAME_C_DocTypeTarget_ID = "C_DocTypeTarget_ID"; @@ -151,7 +151,7 @@ public interface I_HR_Process */ public int getC_DocTypeTarget_ID(); - public I_C_DocType getC_DocTypeTarget() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocTypeTarget() throws RuntimeException; /** Column name ColumnSQL */ public static final String COLUMNNAME_ColumnSQL = "ColumnSQL"; @@ -179,7 +179,7 @@ public interface I_HR_Process */ public int getC_PaySelection_ID(); - public I_C_PaySelection getC_PaySelection() throws RuntimeException; + public org.compiere.model.I_C_PaySelection getC_PaySelection() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -313,6 +313,15 @@ public interface I_HR_Process /** Get Payroll Process */ public int getHR_Process_ID(); + /** Column name HR_Process_UU */ + public static final String COLUMNNAME_HR_Process_UU = "HR_Process_UU"; + + /** Set HR_Process_UU */ + public void setHR_Process_UU (String HR_Process_UU); + + /** Get HR_Process_UU */ + public String getHR_Process_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_HR_Year.java b/org.adempiere.base/src/org/eevolution/model/I_HR_Year.java index 3e42b21603..2172b64b0f 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_HR_Year.java +++ b/org.adempiere.base/src/org/eevolution/model/I_HR_Year.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for HR_Year - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_HR_Year { @@ -32,7 +32,7 @@ public interface I_HR_Year public static final String Table_Name = "HR_Year"; /** AD_Table_ID=53095 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53095; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -92,7 +92,7 @@ public interface I_HR_Year */ public int getC_Year_ID(); - public I_C_Year getC_Year() throws RuntimeException; + public org.compiere.model.I_C_Year getC_Year() throws RuntimeException; /** Column name HR_Payroll_ID */ public static final String COLUMNNAME_HR_Payroll_ID = "HR_Payroll_ID"; @@ -114,6 +114,15 @@ public interface I_HR_Year /** Get Payroll Year */ public int getHR_Year_ID(); + /** Column name HR_Year_UU */ + public static final String COLUMNNAME_HR_Year_UU = "HR_Year_UU"; + + /** Set HR_Year_UU */ + public void setHR_Year_UU (String HR_Year_UU); + + /** Get HR_Year_UU */ + public String getHR_Year_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_I_HR_Movement.java b/org.adempiere.base/src/org/eevolution/model/I_I_HR_Movement.java index a2458aa6ec..eaeb5a2d6f 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_I_HR_Movement.java +++ b/org.adempiere.base/src/org/eevolution/model/I_I_HR_Movement.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for I_HR_Movement - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_I_HR_Movement { @@ -32,7 +32,7 @@ public interface I_I_HR_Movement public static final String Table_Name = "I_HR_Movement"; /** AD_Table_ID=53259 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53259; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -201,6 +201,15 @@ public interface I_I_HR_Movement /** Get Payroll Movement Import */ public int getI_HR_Movement_ID(); + /** Column name I_HR_Movement_UU */ + public static final String COLUMNNAME_I_HR_Movement_UU = "I_HR_Movement_UU"; + + /** Set I_HR_Movement_UU */ + public void setI_HR_Movement_UU (String I_HR_Movement_UU); + + /** Get I_HR_Movement_UU */ + public String getI_HR_Movement_UU(); + /** Column name I_IsImported */ public static final String COLUMNNAME_I_IsImported = "I_IsImported"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_I_Movement.java b/org.adempiere.base/src/org/eevolution/model/I_I_Movement.java index 37124db71b..a00d2da764 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_I_Movement.java +++ b/org.adempiere.base/src/org/eevolution/model/I_I_Movement.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for I_Movement - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_I_Movement { @@ -32,7 +32,7 @@ public interface I_I_Movement public static final String Table_Name = "I_Movement"; /** AD_Table_ID=53278 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53278; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -50,21 +50,6 @@ public interface I_I_Movement */ public int getAD_Client_ID(); - /** Column name AD_OrgTrx_ID */ - public static final String COLUMNNAME_AD_OrgTrx_ID = "AD_OrgTrx_ID"; - - /** Set Trx Organization. - * Performing or initiating organization - */ - public void setAD_OrgTrx_ID (int AD_OrgTrx_ID); - - /** Get Trx Organization. - * Performing or initiating organization - */ - public int getAD_OrgTrx_ID(); - - public I_AD_Org getAD_OrgTrx() throws RuntimeException; - /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -78,20 +63,35 @@ public interface I_I_Movement */ public int getAD_Org_ID(); + /** Column name AD_OrgTrx_ID */ + public static final String COLUMNNAME_AD_OrgTrx_ID = "AD_OrgTrx_ID"; + + /** Set Trx Organization. + * Performing or initiating organization + */ + public void setAD_OrgTrx_ID (int AD_OrgTrx_ID); + + /** Get Trx Organization. + * Performing or initiating organization + */ + public int getAD_OrgTrx_ID(); + + public org.compiere.model.I_AD_Org getAD_OrgTrx() throws RuntimeException; + /** Column name AD_User_ID */ public static final String COLUMNNAME_AD_User_ID = "AD_User_ID"; - /** Set Usuario. + /** Set User/Contact. * User within the system - Internal or Business Partner Contact */ public void setAD_User_ID (int AD_User_ID); - /** Get Usuario. + /** Get User/Contact. * User within the system - Internal or Business Partner Contact */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name BPartnerValue */ public static final String COLUMNNAME_BPartnerValue = "BPartnerValue"; @@ -106,6 +106,15 @@ public interface I_I_Movement */ public String getBPartnerValue(); + /** Column name CampaignValue */ + public static final String COLUMNNAME_CampaignValue = "CampaignValue"; + + /** Set CampaignValue */ + public void setCampaignValue (String CampaignValue); + + /** Get CampaignValue */ + public String getCampaignValue(); + /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; @@ -119,7 +128,7 @@ public interface I_I_Movement */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -134,7 +143,7 @@ public interface I_I_Movement */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_DocType_ID */ public static final String COLUMNNAME_C_DocType_ID = "C_DocType_ID"; @@ -149,7 +158,7 @@ public interface I_I_Movement */ public int getC_DocType_ID(); - public I_C_DocType getC_DocType() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException; /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -164,16 +173,7 @@ public interface I_I_Movement */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; - - /** Column name CampaignValue */ - public static final String COLUMNNAME_CampaignValue = "CampaignValue"; - - /** Set CampaignValue */ - public void setCampaignValue (String CampaignValue); - - /** Get CampaignValue */ - public String getCampaignValue(); + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -291,6 +291,15 @@ public interface I_I_Movement /** Get I_Movement_ID */ public int getI_Movement_ID(); + /** Column name I_Movement_UU */ + public static final String COLUMNNAME_I_Movement_UU = "I_Movement_UU"; + + /** Set I_Movement_UU */ + public void setI_Movement_UU (String I_Movement_UU); + + /** Get I_Movement_UU */ + public String getI_Movement_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; @@ -326,21 +335,6 @@ public interface I_I_Movement */ public String getLocatorValue(); - /** Column name M_LocatorTo_ID */ - public static final String COLUMNNAME_M_LocatorTo_ID = "M_LocatorTo_ID"; - - /** Set Locator To. - * Location inventory is moved to - */ - public void setM_LocatorTo_ID (int M_LocatorTo_ID); - - /** Get Locator To. - * Location inventory is moved to - */ - public int getM_LocatorTo_ID(); - - public I_M_Locator getM_LocatorTo() throws RuntimeException; - /** Column name M_Locator_ID */ public static final String COLUMNNAME_M_Locator_ID = "M_Locator_ID"; @@ -356,20 +350,20 @@ public interface I_I_Movement public I_M_Locator getM_Locator() throws RuntimeException; - /** Column name M_MovementLine_ID */ - public static final String COLUMNNAME_M_MovementLine_ID = "M_MovementLine_ID"; + /** Column name M_LocatorTo_ID */ + public static final String COLUMNNAME_M_LocatorTo_ID = "M_LocatorTo_ID"; - /** Set Move Line. - * Inventory Move document Line + /** Set Locator To. + * Location inventory is moved to */ - public void setM_MovementLine_ID (int M_MovementLine_ID); + public void setM_LocatorTo_ID (int M_LocatorTo_ID); - /** Get Move Line. - * Inventory Move document Line + /** Get Locator To. + * Location inventory is moved to */ - public int getM_MovementLine_ID(); + public int getM_LocatorTo_ID(); - public I_M_MovementLine getM_MovementLine() throws RuntimeException; + public I_M_Locator getM_LocatorTo() throws RuntimeException; /** Column name M_Movement_ID */ public static final String COLUMNNAME_M_Movement_ID = "M_Movement_ID"; @@ -384,37 +378,22 @@ public interface I_I_Movement */ public int getM_Movement_ID(); - public I_M_Movement getM_Movement() throws RuntimeException; + public org.compiere.model.I_M_Movement getM_Movement() throws RuntimeException; - /** Column name M_Product_ID */ - public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; + /** Column name M_MovementLine_ID */ + public static final String COLUMNNAME_M_MovementLine_ID = "M_MovementLine_ID"; - /** Set Product. - * Product, Service, Item + /** Set Move Line. + * Inventory Move document Line */ - public void setM_Product_ID (int M_Product_ID); + public void setM_MovementLine_ID (int M_MovementLine_ID); - /** Get Product. - * Product, Service, Item + /** Get Move Line. + * Inventory Move document Line */ - public int getM_Product_ID(); + public int getM_MovementLine_ID(); - public I_M_Product getM_Product() throws RuntimeException; - - /** Column name M_Shipper_ID */ - public static final String COLUMNNAME_M_Shipper_ID = "M_Shipper_ID"; - - /** Set Shipper. - * Method or manner of product delivery - */ - public void setM_Shipper_ID (int M_Shipper_ID); - - /** Get Shipper. - * Method or manner of product delivery - */ - public int getM_Shipper_ID(); - - public I_M_Shipper getM_Shipper() throws RuntimeException; + public org.compiere.model.I_M_MovementLine getM_MovementLine() throws RuntimeException; /** Column name MovementDate */ public static final String COLUMNNAME_MovementDate = "MovementDate"; @@ -442,6 +421,36 @@ public interface I_I_Movement */ public BigDecimal getMovementQty(); + /** Column name M_Product_ID */ + public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; + + /** Set Product. + * Product, Service, Item + */ + public void setM_Product_ID (int M_Product_ID); + + /** Get Product. + * Product, Service, Item + */ + public int getM_Product_ID(); + + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; + + /** Column name M_Shipper_ID */ + public static final String COLUMNNAME_M_Shipper_ID = "M_Shipper_ID"; + + /** Set Shipper. + * Method or manner of product delivery + */ + public void setM_Shipper_ID (int M_Shipper_ID); + + /** Get Shipper. + * Method or manner of product delivery + */ + public int getM_Shipper_ID(); + + public org.compiere.model.I_M_Shipper getM_Shipper() throws RuntimeException; + /** Column name OrgTrxValue */ public static final String COLUMNNAME_OrgTrxValue = "OrgTrxValue"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_I_ProductPlanning.java b/org.adempiere.base/src/org/eevolution/model/I_I_ProductPlanning.java index 821adc662c..98c89f494c 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_I_ProductPlanning.java +++ b/org.adempiere.base/src/org/eevolution/model/I_I_ProductPlanning.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for I_ProductPlanning - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_I_ProductPlanning { @@ -32,7 +32,7 @@ public interface I_I_ProductPlanning public static final String Table_Name = "I_ProductPlanning"; /** AD_Table_ID=53260 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53260; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -102,7 +102,7 @@ public interface I_I_ProductPlanning */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -203,6 +203,15 @@ public interface I_I_ProductPlanning /** Get Import Product Planning */ public int getI_ProductPlanning_ID(); + /** Column name I_ProductPlanning_UU */ + public static final String COLUMNNAME_I_ProductPlanning_UU = "I_ProductPlanning_UU"; + + /** Set I_ProductPlanning_UU */ + public void setI_ProductPlanning_UU (String I_ProductPlanning_UU); + + /** Get I_ProductPlanning_UU */ + public String getI_ProductPlanning_UU(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; @@ -264,7 +273,7 @@ public interface I_I_ProductPlanning */ public int getM_Forecast_ID(); - public I_M_Forecast getM_Forecast() throws RuntimeException; + public org.compiere.model.I_M_Forecast getM_Forecast() throws RuntimeException; /** Column name M_ForecastLine_ID */ public static final String COLUMNNAME_M_ForecastLine_ID = "M_ForecastLine_ID"; @@ -279,7 +288,7 @@ public interface I_I_ProductPlanning */ public int getM_ForecastLine_ID(); - public I_M_ForecastLine getM_ForecastLine() throws RuntimeException; + public org.compiere.model.I_M_ForecastLine getM_ForecastLine() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -294,7 +303,7 @@ public interface I_I_ProductPlanning */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name M_Warehouse_ID */ public static final String COLUMNNAME_M_Warehouse_ID = "M_Warehouse_ID"; @@ -309,7 +318,7 @@ public interface I_I_ProductPlanning */ public int getM_Warehouse_ID(); - public I_M_Warehouse getM_Warehouse() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException; /** Column name NetworkDistributionValue */ public static final String COLUMNNAME_NetworkDistributionValue = "NetworkDistributionValue"; @@ -412,7 +421,7 @@ public interface I_I_ProductPlanning /** Get Planner */ public int getPlanner_ID(); - public I_AD_User getPlanner() throws RuntimeException; + public org.compiere.model.I_AD_User getPlanner() throws RuntimeException; /** Column name PlannerValue */ public static final String COLUMNNAME_PlannerValue = "PlannerValue"; @@ -566,7 +575,7 @@ public interface I_I_ProductPlanning */ public int getS_Resource_ID(); - public I_S_Resource getS_Resource() throws RuntimeException; + public org.compiere.model.I_S_Resource getS_Resource() throws RuntimeException; /** Column name TimeFence */ public static final String COLUMNNAME_TimeFence = "TimeFence"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_PP_Cost_Collector.java b/org.adempiere.base/src/org/eevolution/model/I_PP_Cost_Collector.java index 7f87c267bd..b6774cd4c5 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_PP_Cost_Collector.java +++ b/org.adempiere.base/src/org/eevolution/model/I_PP_Cost_Collector.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for PP_Cost_Collector - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PP_Cost_Collector { @@ -32,7 +32,7 @@ public interface I_PP_Cost_Collector public static final String Table_Name = "PP_Cost_Collector"; /** AD_Table_ID=53035 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53035; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -89,7 +89,7 @@ public interface I_PP_Cost_Collector */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name C_Activity_ID */ public static final String COLUMNNAME_C_Activity_ID = "C_Activity_ID"; @@ -104,7 +104,7 @@ public interface I_PP_Cost_Collector */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -119,7 +119,7 @@ public interface I_PP_Cost_Collector */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_DocType_ID */ public static final String COLUMNNAME_C_DocType_ID = "C_DocType_ID"; @@ -134,7 +134,7 @@ public interface I_PP_Cost_Collector */ public int getC_DocType_ID(); - public I_C_DocType getC_DocType() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException; /** Column name C_DocTypeTarget_ID */ public static final String COLUMNNAME_C_DocTypeTarget_ID = "C_DocTypeTarget_ID"; @@ -149,7 +149,7 @@ public interface I_PP_Cost_Collector */ public int getC_DocTypeTarget_ID(); - public I_C_DocType getC_DocTypeTarget() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocTypeTarget() throws RuntimeException; /** Column name CostCollectorType */ public static final String COLUMNNAME_CostCollectorType = "CostCollectorType"; @@ -177,7 +177,7 @@ public interface I_PP_Cost_Collector */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -208,7 +208,7 @@ public interface I_PP_Cost_Collector */ public int getC_UOM_ID(); - public I_C_UOM getC_UOM() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException; /** Column name DateAcct */ public static final String COLUMNNAME_DateAcct = "DateAcct"; @@ -384,7 +384,7 @@ public interface I_PP_Cost_Collector */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name M_Warehouse_ID */ public static final String COLUMNNAME_M_Warehouse_ID = "M_Warehouse_ID"; @@ -399,7 +399,7 @@ public interface I_PP_Cost_Collector */ public int getM_Warehouse_ID(); - public I_M_Warehouse getM_Warehouse() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException; /** Column name Posted */ public static final String COLUMNNAME_Posted = "Posted"; @@ -423,6 +423,15 @@ public interface I_PP_Cost_Collector /** Get Manufacturing Cost Collector */ public int getPP_Cost_Collector_ID(); + /** Column name PP_Cost_Collector_UU */ + public static final String COLUMNNAME_PP_Cost_Collector_UU = "PP_Cost_Collector_UU"; + + /** Set PP_Cost_Collector_UU */ + public void setPP_Cost_Collector_UU (String PP_Cost_Collector_UU); + + /** Get PP_Cost_Collector_UU */ + public String getPP_Cost_Collector_UU(); + /** Column name PP_Order_BOMLine_ID */ public static final String COLUMNNAME_PP_Order_BOMLine_ID = "PP_Order_BOMLine_ID"; @@ -569,7 +578,7 @@ public interface I_PP_Cost_Collector */ public int getS_Resource_ID(); - public I_S_Resource getS_Resource() throws RuntimeException; + public org.compiere.model.I_S_Resource getS_Resource() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; @@ -600,7 +609,7 @@ public interface I_PP_Cost_Collector */ public int getUser1_ID(); - public I_AD_User getUser1() throws RuntimeException; + public org.compiere.model.I_AD_User getUser1() throws RuntimeException; /** Column name User2_ID */ public static final String COLUMNNAME_User2_ID = "User2_ID"; @@ -615,5 +624,5 @@ public interface I_PP_Cost_Collector */ public int getUser2_ID(); - public I_AD_User getUser2() throws RuntimeException; + public org.compiere.model.I_AD_User getUser2() throws RuntimeException; } diff --git a/org.adempiere.base/src/org/eevolution/model/I_PP_Cost_CollectorMA.java b/org.adempiere.base/src/org/eevolution/model/I_PP_Cost_CollectorMA.java index ac1aad6e04..34d0065317 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_PP_Cost_CollectorMA.java +++ b/org.adempiere.base/src/org/eevolution/model/I_PP_Cost_CollectorMA.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for PP_Cost_CollectorMA - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PP_Cost_CollectorMA { @@ -32,7 +32,7 @@ public interface I_PP_Cost_CollectorMA public static final String Table_Name = "PP_Cost_CollectorMA"; /** AD_Table_ID=53062 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53062; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -140,6 +140,15 @@ public interface I_PP_Cost_CollectorMA /** Get Manufacturing Order MA */ public int getPP_Cost_CollectorMA_ID(); + /** Column name PP_Cost_CollectorMA_UU */ + public static final String COLUMNNAME_PP_Cost_CollectorMA_UU = "PP_Cost_CollectorMA_UU"; + + /** Set PP_Cost_CollectorMA_UU */ + public void setPP_Cost_CollectorMA_UU (String PP_Cost_CollectorMA_UU); + + /** Get PP_Cost_CollectorMA_UU */ + public String getPP_Cost_CollectorMA_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_PP_MRP.java b/org.adempiere.base/src/org/eevolution/model/I_PP_MRP.java index f4b0af0425..e1aa10aeae 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_PP_MRP.java +++ b/org.adempiere.base/src/org/eevolution/model/I_PP_MRP.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for PP_MRP - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PP_MRP { @@ -32,7 +32,7 @@ public interface I_PP_MRP public static final String Table_Name = "PP_MRP"; /** AD_Table_ID=53043 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53043; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -76,7 +76,7 @@ public interface I_PP_MRP */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name C_Order_ID */ public static final String COLUMNNAME_C_Order_ID = "C_Order_ID"; @@ -91,7 +91,7 @@ public interface I_PP_MRP */ public int getC_Order_ID(); - public I_C_Order getC_Order() throws RuntimeException; + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException; /** Column name C_OrderLine_ID */ public static final String COLUMNNAME_C_OrderLine_ID = "C_OrderLine_ID"; @@ -106,7 +106,7 @@ public interface I_PP_MRP */ public int getC_OrderLine_ID(); - public I_C_OrderLine getC_OrderLine() throws RuntimeException; + public org.compiere.model.I_C_OrderLine getC_OrderLine() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -302,7 +302,7 @@ public interface I_PP_MRP */ public int getM_Forecast_ID(); - public I_M_Forecast getM_Forecast() throws RuntimeException; + public org.compiere.model.I_M_Forecast getM_Forecast() throws RuntimeException; /** Column name M_ForecastLine_ID */ public static final String COLUMNNAME_M_ForecastLine_ID = "M_ForecastLine_ID"; @@ -317,7 +317,7 @@ public interface I_PP_MRP */ public int getM_ForecastLine_ID(); - public I_M_ForecastLine getM_ForecastLine() throws RuntimeException; + public org.compiere.model.I_M_ForecastLine getM_ForecastLine() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -332,7 +332,7 @@ public interface I_PP_MRP */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name M_Requisition_ID */ public static final String COLUMNNAME_M_Requisition_ID = "M_Requisition_ID"; @@ -347,7 +347,7 @@ public interface I_PP_MRP */ public int getM_Requisition_ID(); - public I_M_Requisition getM_Requisition() throws RuntimeException; + public org.compiere.model.I_M_Requisition getM_Requisition() throws RuntimeException; /** Column name M_RequisitionLine_ID */ public static final String COLUMNNAME_M_RequisitionLine_ID = "M_RequisitionLine_ID"; @@ -362,7 +362,7 @@ public interface I_PP_MRP */ public int getM_RequisitionLine_ID(); - public I_M_RequisitionLine getM_RequisitionLine() throws RuntimeException; + public org.compiere.model.I_M_RequisitionLine getM_RequisitionLine() throws RuntimeException; /** Column name M_Warehouse_ID */ public static final String COLUMNNAME_M_Warehouse_ID = "M_Warehouse_ID"; @@ -377,7 +377,7 @@ public interface I_PP_MRP */ public int getM_Warehouse_ID(); - public I_M_Warehouse getM_Warehouse() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; @@ -414,7 +414,7 @@ public interface I_PP_MRP /** Get Planner */ public int getPlanner_ID(); - public I_AD_User getPlanner() throws RuntimeException; + public org.compiere.model.I_AD_User getPlanner() throws RuntimeException; /** Column name PP_MRP_ID */ public static final String COLUMNNAME_PP_MRP_ID = "PP_MRP_ID"; @@ -429,6 +429,15 @@ public interface I_PP_MRP */ public int getPP_MRP_ID(); + /** Column name PP_MRP_UU */ + public static final String COLUMNNAME_PP_MRP_UU = "PP_MRP_UU"; + + /** Set PP_MRP_UU */ + public void setPP_MRP_UU (String PP_MRP_UU); + + /** Get PP_MRP_UU */ + public String getPP_MRP_UU(); + /** Column name PP_Order_BOMLine_ID */ public static final String COLUMNNAME_PP_Order_BOMLine_ID = "PP_Order_BOMLine_ID"; @@ -494,7 +503,7 @@ public interface I_PP_MRP */ public int getS_Resource_ID(); - public I_S_Resource getS_Resource() throws RuntimeException; + public org.compiere.model.I_S_Resource getS_Resource() throws RuntimeException; /** Column name TypeMRP */ public static final String COLUMNNAME_TypeMRP = "TypeMRP"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_PP_Order.java b/org.adempiere.base/src/org/eevolution/model/I_PP_Order.java index edbf82daf3..2a28bea550 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_PP_Order.java +++ b/org.adempiere.base/src/org/eevolution/model/I_PP_Order.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for PP_Order - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PP_Order { @@ -32,7 +32,7 @@ public interface I_PP_Order public static final String Table_Name = "PP_Order"; /** AD_Table_ID=53027 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53027; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -89,7 +89,7 @@ public interface I_PP_Order */ public int getAD_Workflow_ID(); - public I_AD_Workflow getAD_Workflow() throws RuntimeException; + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException; /** Column name Assay */ public static final String COLUMNNAME_Assay = "Assay"; @@ -117,7 +117,7 @@ public interface I_PP_Order */ public int getC_Activity_ID(); - public I_C_Activity getC_Activity() throws RuntimeException; + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException; /** Column name C_Campaign_ID */ public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID"; @@ -132,7 +132,7 @@ public interface I_PP_Order */ public int getC_Campaign_ID(); - public I_C_Campaign getC_Campaign() throws RuntimeException; + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException; /** Column name C_DocType_ID */ public static final String COLUMNNAME_C_DocType_ID = "C_DocType_ID"; @@ -147,7 +147,7 @@ public interface I_PP_Order */ public int getC_DocType_ID(); - public I_C_DocType getC_DocType() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException; /** Column name C_DocTypeTarget_ID */ public static final String COLUMNNAME_C_DocTypeTarget_ID = "C_DocTypeTarget_ID"; @@ -162,7 +162,7 @@ public interface I_PP_Order */ public int getC_DocTypeTarget_ID(); - public I_C_DocType getC_DocTypeTarget() throws RuntimeException; + public org.compiere.model.I_C_DocType getC_DocTypeTarget() throws RuntimeException; /** Column name CopyFrom */ public static final String COLUMNNAME_CopyFrom = "CopyFrom"; @@ -190,7 +190,7 @@ public interface I_PP_Order */ public int getC_OrderLine_ID(); - public I_C_OrderLine getC_OrderLine() throws RuntimeException; + public org.compiere.model.I_C_OrderLine getC_OrderLine() throws RuntimeException; /** Column name C_Project_ID */ public static final String COLUMNNAME_C_Project_ID = "C_Project_ID"; @@ -205,7 +205,7 @@ public interface I_PP_Order */ public int getC_Project_ID(); - public I_C_Project getC_Project() throws RuntimeException; + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -236,7 +236,7 @@ public interface I_PP_Order */ public int getC_UOM_ID(); - public I_C_UOM getC_UOM() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException; /** Column name DateConfirm */ public static final String COLUMNNAME_DateConfirm = "DateConfirm"; @@ -540,7 +540,7 @@ public interface I_PP_Order */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name M_Warehouse_ID */ public static final String COLUMNNAME_M_Warehouse_ID = "M_Warehouse_ID"; @@ -555,7 +555,7 @@ public interface I_PP_Order */ public int getM_Warehouse_ID(); - public I_M_Warehouse getM_Warehouse() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException; /** Column name OrderType */ public static final String COLUMNNAME_OrderType = "OrderType"; @@ -579,7 +579,7 @@ public interface I_PP_Order /** Get Planner */ public int getPlanner_ID(); - public I_AD_User getPlanner() throws RuntimeException; + public org.compiere.model.I_AD_User getPlanner() throws RuntimeException; /** Column name Posted */ public static final String COLUMNNAME_Posted = "Posted"; @@ -607,6 +607,15 @@ public interface I_PP_Order */ public int getPP_Order_ID(); + /** Column name PP_Order_UU */ + public static final String COLUMNNAME_PP_Order_UU = "PP_Order_UU"; + + /** Set PP_Order_UU */ + public void setPP_Order_UU (String PP_Order_UU); + + /** Get PP_Order_UU */ + public String getPP_Order_UU(); + /** Column name PP_Product_BOM_ID */ public static final String COLUMNNAME_PP_Product_BOM_ID = "PP_Product_BOM_ID"; @@ -801,7 +810,7 @@ public interface I_PP_Order */ public int getS_Resource_ID(); - public I_S_Resource getS_Resource() throws RuntimeException; + public org.compiere.model.I_S_Resource getS_Resource() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; @@ -832,7 +841,7 @@ public interface I_PP_Order */ public int getUser1_ID(); - public I_C_ElementValue getUser1() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException; /** Column name User2_ID */ public static final String COLUMNNAME_User2_ID = "User2_ID"; @@ -847,7 +856,7 @@ public interface I_PP_Order */ public int getUser2_ID(); - public I_C_ElementValue getUser2() throws RuntimeException; + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException; /** Column name Yield */ public static final String COLUMNNAME_Yield = "Yield"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_PP_Order_BOM.java b/org.adempiere.base/src/org/eevolution/model/I_PP_Order_BOM.java index 5d12d362b6..880e008435 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_PP_Order_BOM.java +++ b/org.adempiere.base/src/org/eevolution/model/I_PP_Order_BOM.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for PP_Order_BOM - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PP_Order_BOM { @@ -32,7 +32,7 @@ public interface I_PP_Order_BOM public static final String Table_Name = "PP_Order_BOM"; /** AD_Table_ID=53026 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53026; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -131,7 +131,7 @@ public interface I_PP_Order_BOM */ public int getC_UOM_ID(); - public I_C_UOM getC_UOM() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException; /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; @@ -213,7 +213,7 @@ public interface I_PP_Order_BOM */ public int getM_ChangeNotice_ID(); - public I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException; + public org.compiere.model.I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -228,7 +228,7 @@ public interface I_PP_Order_BOM */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; @@ -252,6 +252,15 @@ public interface I_PP_Order_BOM /** Get Manufacturing Order BOM */ public int getPP_Order_BOM_ID(); + /** Column name PP_Order_BOM_UU */ + public static final String COLUMNNAME_PP_Order_BOM_UU = "PP_Order_BOM_UU"; + + /** Set PP_Order_BOM_UU */ + public void setPP_Order_BOM_UU (String PP_Order_BOM_UU); + + /** Get PP_Order_BOM_UU */ + public String getPP_Order_BOM_UU(); + /** Column name PP_Order_ID */ public static final String COLUMNNAME_PP_Order_ID = "PP_Order_ID"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_PP_Order_BOMLine.java b/org.adempiere.base/src/org/eevolution/model/I_PP_Order_BOMLine.java index 0dc0a80c96..da0cf9bac0 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_PP_Order_BOMLine.java +++ b/org.adempiere.base/src/org/eevolution/model/I_PP_Order_BOMLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for PP_Order_BOMLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PP_Order_BOMLine { @@ -32,7 +32,7 @@ public interface I_PP_Order_BOMLine public static final String Table_Name = "PP_Order_BOMLine"; /** AD_Table_ID=53025 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53025; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -76,7 +76,7 @@ public interface I_PP_Order_BOMLine */ public int getAD_User_ID(); - public I_AD_User getAD_User() throws RuntimeException; + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name Assay */ public static final String COLUMNNAME_Assay = "Assay"; @@ -159,7 +159,7 @@ public interface I_PP_Order_BOMLine */ public int getC_UOM_ID(); - public I_C_UOM getC_UOM() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException; /** Column name DateDelivered */ public static final String COLUMNNAME_DateDelivered = "DateDelivered"; @@ -332,7 +332,7 @@ public interface I_PP_Order_BOMLine */ public int getM_ChangeNotice_ID(); - public I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException; + public org.compiere.model.I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException; /** Column name M_Locator_ID */ public static final String COLUMNNAME_M_Locator_ID = "M_Locator_ID"; @@ -362,7 +362,7 @@ public interface I_PP_Order_BOMLine */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name M_Warehouse_ID */ public static final String COLUMNNAME_M_Warehouse_ID = "M_Warehouse_ID"; @@ -377,7 +377,7 @@ public interface I_PP_Order_BOMLine */ public int getM_Warehouse_ID(); - public I_M_Warehouse getM_Warehouse() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException; /** Column name PP_Order_BOM_ID */ public static final String COLUMNNAME_PP_Order_BOM_ID = "PP_Order_BOM_ID"; @@ -399,6 +399,15 @@ public interface I_PP_Order_BOMLine /** Get Manufacturing Order BOM Line */ public int getPP_Order_BOMLine_ID(); + /** Column name PP_Order_BOMLine_UU */ + public static final String COLUMNNAME_PP_Order_BOMLine_UU = "PP_Order_BOMLine_UU"; + + /** Set PP_Order_BOMLine_UU */ + public void setPP_Order_BOMLine_UU (String PP_Order_BOMLine_UU); + + /** Get PP_Order_BOMLine_UU */ + public String getPP_Order_BOMLine_UU(); + /** Column name PP_Order_ID */ public static final String COLUMNNAME_PP_Order_ID = "PP_Order_ID"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_PP_Order_Cost.java b/org.adempiere.base/src/org/eevolution/model/I_PP_Order_Cost.java index 0d20b911cc..cc52a26174 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_PP_Order_Cost.java +++ b/org.adempiere.base/src/org/eevolution/model/I_PP_Order_Cost.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for PP_Order_Cost - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PP_Order_Cost { @@ -32,7 +32,7 @@ public interface I_PP_Order_Cost public static final String Table_Name = "PP_Order_Cost"; /** AD_Table_ID=53024 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53024; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -76,7 +76,7 @@ public interface I_PP_Order_Cost */ public int getAD_Workflow_ID(); - public I_AD_Workflow getAD_Workflow() throws RuntimeException; + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException; /** Column name C_AcctSchema_ID */ public static final String COLUMNNAME_C_AcctSchema_ID = "C_AcctSchema_ID"; @@ -91,7 +91,7 @@ public interface I_PP_Order_Cost */ public int getC_AcctSchema_ID(); - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException; /** Column name CostingMethod */ public static final String COLUMNNAME_CostingMethod = "CostingMethod"; @@ -246,7 +246,7 @@ public interface I_PP_Order_Cost */ public int getM_CostElement_ID(); - public I_M_CostElement getM_CostElement() throws RuntimeException; + public org.compiere.model.I_M_CostElement getM_CostElement() throws RuntimeException; /** Column name M_CostType_ID */ public static final String COLUMNNAME_M_CostType_ID = "M_CostType_ID"; @@ -261,7 +261,7 @@ public interface I_PP_Order_Cost */ public int getM_CostType_ID(); - public I_M_CostType getM_CostType() throws RuntimeException; + public org.compiere.model.I_M_CostType getM_CostType() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -276,7 +276,7 @@ public interface I_PP_Order_Cost */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name PP_Order_Cost_ID */ public static final String COLUMNNAME_PP_Order_Cost_ID = "PP_Order_Cost_ID"; @@ -287,6 +287,15 @@ public interface I_PP_Order_Cost /** Get Manufacturing Order Cost */ public int getPP_Order_Cost_ID(); + /** Column name PP_Order_Cost_UU */ + public static final String COLUMNNAME_PP_Order_Cost_UU = "PP_Order_Cost_UU"; + + /** Set PP_Order_Cost_UU */ + public void setPP_Order_Cost_UU (String PP_Order_Cost_UU); + + /** Get PP_Order_Cost_UU */ + public String getPP_Order_Cost_UU(); + /** Column name PP_Order_ID */ public static final String COLUMNNAME_PP_Order_ID = "PP_Order_ID"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_PP_Order_Node.java b/org.adempiere.base/src/org/eevolution/model/I_PP_Order_Node.java index c8aab1eebb..fb6b21abd3 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_PP_Order_Node.java +++ b/org.adempiere.base/src/org/eevolution/model/I_PP_Order_Node.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for PP_Order_Node - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PP_Order_Node { @@ -32,7 +32,7 @@ public interface I_PP_Order_Node public static final String Table_Name = "PP_Order_Node"; /** AD_Table_ID=53022 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53022; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -76,7 +76,7 @@ public interface I_PP_Order_Node */ public int getAD_Column_ID(); - public I_AD_Column getAD_Column() throws RuntimeException; + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException; /** Column name AD_Form_ID */ public static final String COLUMNNAME_AD_Form_ID = "AD_Form_ID"; @@ -91,7 +91,7 @@ public interface I_PP_Order_Node */ public int getAD_Form_ID(); - public I_AD_Form getAD_Form() throws RuntimeException; + public org.compiere.model.I_AD_Form getAD_Form() throws RuntimeException; /** Column name AD_Image_ID */ public static final String COLUMNNAME_AD_Image_ID = "AD_Image_ID"; @@ -106,7 +106,7 @@ public interface I_PP_Order_Node */ public int getAD_Image_ID(); - public I_AD_Image getAD_Image() throws RuntimeException; + public org.compiere.model.I_AD_Image getAD_Image() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; @@ -134,7 +134,7 @@ public interface I_PP_Order_Node */ public int getAD_Process_ID(); - public I_AD_Process getAD_Process() throws RuntimeException; + public org.compiere.model.I_AD_Process getAD_Process() throws RuntimeException; /** Column name AD_Task_ID */ public static final String COLUMNNAME_AD_Task_ID = "AD_Task_ID"; @@ -149,7 +149,7 @@ public interface I_PP_Order_Node */ public int getAD_Task_ID(); - public I_AD_Task getAD_Task() throws RuntimeException; + public org.compiere.model.I_AD_Task getAD_Task() throws RuntimeException; /** Column name AD_WF_Block_ID */ public static final String COLUMNNAME_AD_WF_Block_ID = "AD_WF_Block_ID"; @@ -164,7 +164,7 @@ public interface I_PP_Order_Node */ public int getAD_WF_Block_ID(); - public I_AD_WF_Block getAD_WF_Block() throws RuntimeException; + public org.compiere.model.I_AD_WF_Block getAD_WF_Block() throws RuntimeException; /** Column name AD_WF_Node_ID */ public static final String COLUMNNAME_AD_WF_Node_ID = "AD_WF_Node_ID"; @@ -179,7 +179,7 @@ public interface I_PP_Order_Node */ public int getAD_WF_Node_ID(); - public I_AD_WF_Node getAD_WF_Node() throws RuntimeException; + public org.compiere.model.I_AD_WF_Node getAD_WF_Node() throws RuntimeException; /** Column name AD_WF_Responsible_ID */ public static final String COLUMNNAME_AD_WF_Responsible_ID = "AD_WF_Responsible_ID"; @@ -194,7 +194,7 @@ public interface I_PP_Order_Node */ public int getAD_WF_Responsible_ID(); - public I_AD_WF_Responsible getAD_WF_Responsible() throws RuntimeException; + public org.compiere.model.I_AD_WF_Responsible getAD_WF_Responsible() throws RuntimeException; /** Column name AD_Window_ID */ public static final String COLUMNNAME_AD_Window_ID = "AD_Window_ID"; @@ -209,7 +209,7 @@ public interface I_PP_Order_Node */ public int getAD_Window_ID(); - public I_AD_Window getAD_Window() throws RuntimeException; + public org.compiere.model.I_AD_Window getAD_Window() throws RuntimeException; /** Column name AD_Workflow_ID */ public static final String COLUMNNAME_AD_Workflow_ID = "AD_Workflow_ID"; @@ -224,7 +224,7 @@ public interface I_PP_Order_Node */ public int getAD_Workflow_ID(); - public I_AD_Workflow getAD_Workflow() throws RuntimeException; + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException; /** Column name AttributeName */ public static final String COLUMNNAME_AttributeName = "AttributeName"; @@ -265,7 +265,7 @@ public interface I_PP_Order_Node */ public int getC_BPartner_ID(); - public I_C_BPartner getC_BPartner() throws RuntimeException; + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name Cost */ public static final String COLUMNNAME_Cost = "Cost"; @@ -592,6 +592,15 @@ public interface I_PP_Order_Node */ public int getPP_Order_Node_ID(); + /** Column name PP_Order_Node_UU */ + public static final String COLUMNNAME_PP_Order_Node_UU = "PP_Order_Node_UU"; + + /** Set PP_Order_Node_UU */ + public void setPP_Order_Node_UU (String PP_Order_Node_UU); + + /** Get PP_Order_Node_UU */ + public String getPP_Order_Node_UU(); + /** Column name PP_Order_Workflow_ID */ public static final String COLUMNNAME_PP_Order_Workflow_ID = "PP_Order_Workflow_ID"; @@ -730,7 +739,7 @@ public interface I_PP_Order_Node */ public int getS_Resource_ID(); - public I_S_Resource getS_Resource() throws RuntimeException; + public org.compiere.model.I_S_Resource getS_Resource() throws RuntimeException; /** Column name StartMode */ public static final String COLUMNNAME_StartMode = "StartMode"; @@ -852,7 +861,7 @@ public interface I_PP_Order_Node */ public int getWorkflow_ID(); - public I_AD_Workflow getWorkflow() throws RuntimeException; + public org.compiere.model.I_AD_Workflow getWorkflow() throws RuntimeException; /** Column name WorkingTime */ public static final String COLUMNNAME_WorkingTime = "WorkingTime"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_PP_Order_NodeNext.java b/org.adempiere.base/src/org/eevolution/model/I_PP_Order_NodeNext.java index 7e3379eb8a..02660681c2 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_PP_Order_NodeNext.java +++ b/org.adempiere.base/src/org/eevolution/model/I_PP_Order_NodeNext.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for PP_Order_NodeNext - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PP_Order_NodeNext { @@ -32,7 +32,7 @@ public interface I_PP_Order_NodeNext public static final String Table_Name = "PP_Order_NodeNext"; /** AD_Table_ID=53023 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53023; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -76,7 +76,7 @@ public interface I_PP_Order_NodeNext */ public int getAD_WF_Next_ID(); - public I_AD_WF_Node getAD_WF_Next() throws RuntimeException; + public org.compiere.model.I_AD_WF_Node getAD_WF_Next() throws RuntimeException; /** Column name AD_WF_Node_ID */ public static final String COLUMNNAME_AD_WF_Node_ID = "AD_WF_Node_ID"; @@ -91,7 +91,7 @@ public interface I_PP_Order_NodeNext */ public int getAD_WF_Node_ID(); - public I_AD_WF_Node getAD_WF_Node() throws RuntimeException; + public org.compiere.model.I_AD_WF_Node getAD_WF_Node() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -213,6 +213,15 @@ public interface I_PP_Order_NodeNext /** Get Manufacturing Order Activity Next */ public int getPP_Order_NodeNext_ID(); + /** Column name PP_Order_NodeNext_UU */ + public static final String COLUMNNAME_PP_Order_NodeNext_UU = "PP_Order_NodeNext_UU"; + + /** Set PP_Order_NodeNext_UU */ + public void setPP_Order_NodeNext_UU (String PP_Order_NodeNext_UU); + + /** Get PP_Order_NodeNext_UU */ + public String getPP_Order_NodeNext_UU(); + /** Column name SeqNo */ public static final String COLUMNNAME_SeqNo = "SeqNo"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_PP_Order_Node_Asset.java b/org.adempiere.base/src/org/eevolution/model/I_PP_Order_Node_Asset.java index ee024b2002..addfeaafd1 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_PP_Order_Node_Asset.java +++ b/org.adempiere.base/src/org/eevolution/model/I_PP_Order_Node_Asset.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for PP_Order_Node_Asset - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PP_Order_Node_Asset { @@ -32,7 +32,7 @@ public interface I_PP_Order_Node_Asset public static final String Table_Name = "PP_Order_Node_Asset"; /** AD_Table_ID=53031 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53031; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -55,7 +55,7 @@ public interface I_PP_Order_Node_Asset */ public int getA_Asset_ID(); - public I_A_Asset getA_Asset() throws RuntimeException; + public org.compiere.model.I_A_Asset getA_Asset() throws RuntimeException; /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; @@ -131,6 +131,15 @@ public interface I_PP_Order_Node_Asset /** Get Manufacturing Order Activity Asset */ public int getPP_Order_Node_Asset_ID(); + /** Column name PP_Order_Node_Asset_UU */ + public static final String COLUMNNAME_PP_Order_Node_Asset_UU = "PP_Order_Node_Asset_UU"; + + /** Set PP_Order_Node_Asset_UU */ + public void setPP_Order_Node_Asset_UU (String PP_Order_Node_Asset_UU); + + /** Get PP_Order_Node_Asset_UU */ + public String getPP_Order_Node_Asset_UU(); + /** Column name PP_Order_Node_ID */ public static final String COLUMNNAME_PP_Order_Node_ID = "PP_Order_Node_ID"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_PP_Order_Node_Product.java b/org.adempiere.base/src/org/eevolution/model/I_PP_Order_Node_Product.java index cd55b4bb1d..a4375d594e 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_PP_Order_Node_Product.java +++ b/org.adempiere.base/src/org/eevolution/model/I_PP_Order_Node_Product.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for PP_Order_Node_Product - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PP_Order_Node_Product { @@ -32,7 +32,7 @@ public interface I_PP_Order_Node_Product public static final String Table_Name = "PP_Order_Node_Product"; /** AD_Table_ID=53030 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53030; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -114,7 +114,7 @@ public interface I_PP_Order_Node_Product */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name PP_Order_ID */ public static final String COLUMNNAME_PP_Order_ID = "PP_Order_ID"; @@ -155,6 +155,15 @@ public interface I_PP_Order_Node_Product /** Get Manufacturing Order Activity Product */ public int getPP_Order_Node_Product_ID(); + /** Column name PP_Order_Node_Product_UU */ + public static final String COLUMNNAME_PP_Order_Node_Product_UU = "PP_Order_Node_Product_UU"; + + /** Set PP_Order_Node_Product_UU */ + public void setPP_Order_Node_Product_UU (String PP_Order_Node_Product_UU); + + /** Get PP_Order_Node_Product_UU */ + public String getPP_Order_Node_Product_UU(); + /** Column name PP_Order_Workflow_ID */ public static final String COLUMNNAME_PP_Order_Workflow_ID = "PP_Order_Workflow_ID"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_PP_Order_Workflow.java b/org.adempiere.base/src/org/eevolution/model/I_PP_Order_Workflow.java index 0192722433..6563cda632 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_PP_Order_Workflow.java +++ b/org.adempiere.base/src/org/eevolution/model/I_PP_Order_Workflow.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for PP_Order_Workflow - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PP_Order_Workflow { @@ -32,7 +32,7 @@ public interface I_PP_Order_Workflow public static final String Table_Name = "PP_Order_Workflow"; /** AD_Table_ID=53029 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53029; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -89,7 +89,7 @@ public interface I_PP_Order_Workflow */ public int getAD_Table_ID(); - public I_AD_Table getAD_Table() throws RuntimeException; + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name AD_WF_Node_ID */ public static final String COLUMNNAME_AD_WF_Node_ID = "AD_WF_Node_ID"; @@ -104,7 +104,7 @@ public interface I_PP_Order_Workflow */ public int getAD_WF_Node_ID(); - public I_AD_WF_Node getAD_WF_Node() throws RuntimeException; + public org.compiere.model.I_AD_WF_Node getAD_WF_Node() throws RuntimeException; /** Column name AD_WF_Responsible_ID */ public static final String COLUMNNAME_AD_WF_Responsible_ID = "AD_WF_Responsible_ID"; @@ -119,7 +119,7 @@ public interface I_PP_Order_Workflow */ public int getAD_WF_Responsible_ID(); - public I_AD_WF_Responsible getAD_WF_Responsible() throws RuntimeException; + public org.compiere.model.I_AD_WF_Responsible getAD_WF_Responsible() throws RuntimeException; /** Column name AD_Workflow_ID */ public static final String COLUMNNAME_AD_Workflow_ID = "AD_Workflow_ID"; @@ -134,7 +134,7 @@ public interface I_PP_Order_Workflow */ public int getAD_Workflow_ID(); - public I_AD_Workflow getAD_Workflow() throws RuntimeException; + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException; /** Column name AD_WorkflowProcessor_ID */ public static final String COLUMNNAME_AD_WorkflowProcessor_ID = "AD_WorkflowProcessor_ID"; @@ -149,7 +149,7 @@ public interface I_PP_Order_Workflow */ public int getAD_WorkflowProcessor_ID(); - public I_AD_WorkflowProcessor getAD_WorkflowProcessor() throws RuntimeException; + public org.compiere.model.I_AD_WorkflowProcessor getAD_WorkflowProcessor() throws RuntimeException; /** Column name Author */ public static final String COLUMNNAME_Author = "Author"; @@ -386,6 +386,15 @@ public interface I_PP_Order_Workflow /** Get Manufacturing Order Workflow */ public int getPP_Order_Workflow_ID(); + /** Column name PP_Order_Workflow_UU */ + public static final String COLUMNNAME_PP_Order_Workflow_UU = "PP_Order_Workflow_UU"; + + /** Set PP_Order_Workflow_UU */ + public void setPP_Order_Workflow_UU (String PP_Order_Workflow_UU); + + /** Get PP_Order_Workflow_UU */ + public String getPP_Order_Workflow_UU(); + /** Column name Priority */ public static final String COLUMNNAME_Priority = "Priority"; @@ -469,7 +478,7 @@ public interface I_PP_Order_Workflow */ public int getS_Resource_ID(); - public I_S_Resource getS_Resource() throws RuntimeException; + public org.compiere.model.I_S_Resource getS_Resource() throws RuntimeException; /** Column name UnitsCycles */ public static final String COLUMNNAME_UnitsCycles = "UnitsCycles"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_PP_Product_BOM.java b/org.adempiere.base/src/org/eevolution/model/I_PP_Product_BOM.java index 04ef19cd02..562840009e 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_PP_Product_BOM.java +++ b/org.adempiere.base/src/org/eevolution/model/I_PP_Product_BOM.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for PP_Product_BOM - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PP_Product_BOM { @@ -32,7 +32,7 @@ public interface I_PP_Product_BOM public static final String Table_Name = "PP_Product_BOM"; /** AD_Table_ID=53018 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53018; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -131,7 +131,7 @@ public interface I_PP_Product_BOM */ public int getC_UOM_ID(); - public I_C_UOM getC_UOM() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException; /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; @@ -213,7 +213,7 @@ public interface I_PP_Product_BOM */ public int getM_ChangeNotice_ID(); - public I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException; + public org.compiere.model.I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -228,7 +228,7 @@ public interface I_PP_Product_BOM */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; @@ -256,6 +256,15 @@ public interface I_PP_Product_BOM */ public int getPP_Product_BOM_ID(); + /** Column name PP_Product_BOM_UU */ + public static final String COLUMNNAME_PP_Product_BOM_UU = "PP_Product_BOM_UU"; + + /** Set PP_Product_BOM_UU */ + public void setPP_Product_BOM_UU (String PP_Product_BOM_UU); + + /** Get PP_Product_BOM_UU */ + public String getPP_Product_BOM_UU(); + /** Column name Processing */ public static final String COLUMNNAME_Processing = "Processing"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_PP_Product_BOMLine.java b/org.adempiere.base/src/org/eevolution/model/I_PP_Product_BOMLine.java index 845fb660c7..2422bf2e9b 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_PP_Product_BOMLine.java +++ b/org.adempiere.base/src/org/eevolution/model/I_PP_Product_BOMLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for PP_Product_BOMLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PP_Product_BOMLine { @@ -32,7 +32,7 @@ public interface I_PP_Product_BOMLine public static final String Table_Name = "PP_Product_BOMLine"; /** AD_Table_ID=53019 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53019; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -144,7 +144,7 @@ public interface I_PP_Product_BOMLine */ public int getC_UOM_ID(); - public I_C_UOM getC_UOM() throws RuntimeException; + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException; /** Column name Description */ public static final String COLUMNNAME_Description = "Description"; @@ -304,7 +304,7 @@ public interface I_PP_Product_BOMLine */ public int getM_ChangeNotice_ID(); - public I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException; + public org.compiere.model.I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -319,7 +319,7 @@ public interface I_PP_Product_BOMLine */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name PP_Product_BOM_ID */ public static final String COLUMNNAME_PP_Product_BOM_ID = "PP_Product_BOM_ID"; @@ -349,6 +349,15 @@ public interface I_PP_Product_BOMLine */ public int getPP_Product_BOMLine_ID(); + /** Column name PP_Product_BOMLine_UU */ + public static final String COLUMNNAME_PP_Product_BOMLine_UU = "PP_Product_BOMLine_UU"; + + /** Set PP_Product_BOMLine_UU */ + public void setPP_Product_BOMLine_UU (String PP_Product_BOMLine_UU); + + /** Get PP_Product_BOMLine_UU */ + public String getPP_Product_BOMLine_UU(); + /** Column name QtyBatch */ public static final String COLUMNNAME_QtyBatch = "QtyBatch"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_PP_Product_Planning.java b/org.adempiere.base/src/org/eevolution/model/I_PP_Product_Planning.java index 9235e97373..c84433c8ab 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_PP_Product_Planning.java +++ b/org.adempiere.base/src/org/eevolution/model/I_PP_Product_Planning.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for PP_Product_Planning - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PP_Product_Planning { @@ -32,7 +32,7 @@ public interface I_PP_Product_Planning public static final String Table_Name = "PP_Product_Planning"; /** AD_Table_ID=53020 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53020; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -76,7 +76,7 @@ public interface I_PP_Product_Planning */ public int getAD_Workflow_ID(); - public I_AD_Workflow getAD_Workflow() throws RuntimeException; + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -147,14 +147,10 @@ public interface I_PP_Product_Planning /** Column name IsMPS */ public static final String COLUMNNAME_IsMPS = "IsMPS"; - /** Set Is MPS. - * Determines if this product is part of the master production schedule - */ + /** Set Is MPS */ public void setIsMPS (boolean IsMPS); - /** Get Is MPS. - * Determines if this product is part of the master production schedule - */ + /** Get Is MPS */ public boolean isMPS(); /** Column name IsPhantom */ @@ -201,7 +197,7 @@ public interface I_PP_Product_Planning */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name M_Warehouse_ID */ public static final String COLUMNNAME_M_Warehouse_ID = "M_Warehouse_ID"; @@ -216,7 +212,7 @@ public interface I_PP_Product_Planning */ public int getM_Warehouse_ID(); - public I_M_Warehouse getM_Warehouse() throws RuntimeException; + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException; /** Column name Order_Max */ public static final String COLUMNNAME_Order_Max = "Order_Max"; @@ -284,6 +280,17 @@ public interface I_PP_Product_Planning /** Get Order Qty */ public BigDecimal getOrder_Qty(); + /** Column name Planner_ID */ + public static final String COLUMNNAME_Planner_ID = "Planner_ID"; + + /** Set Planner */ + public void setPlanner_ID (int Planner_ID); + + /** Get Planner */ + public int getPlanner_ID(); + + public org.compiere.model.I_AD_User getPlanner() throws RuntimeException; + /** Column name PP_Product_BOM_ID */ public static final String COLUMNNAME_PP_Product_BOM_ID = "PP_Product_BOM_ID"; @@ -308,16 +315,27 @@ public interface I_PP_Product_Planning /** Get Product Planning */ public int getPP_Product_Planning_ID(); - /** Column name Planner_ID */ - public static final String COLUMNNAME_Planner_ID = "Planner_ID"; + /** Column name PP_Product_Planning_UU */ + public static final String COLUMNNAME_PP_Product_Planning_UU = "PP_Product_Planning_UU"; - /** Set Planner */ - public void setPlanner_ID (int Planner_ID); + /** Set PP_Product_Planning_UU */ + public void setPP_Product_Planning_UU (String PP_Product_Planning_UU); - /** Get Planner */ - public int getPlanner_ID(); + /** Get PP_Product_Planning_UU */ + public String getPP_Product_Planning_UU(); - public I_AD_User getPlanner() throws RuntimeException; + /** Column name SafetyStock */ + public static final String COLUMNNAME_SafetyStock = "SafetyStock"; + + /** Set Safety Stock Qty. + * Safety stock is a term used to describe a level of stock that is maintained below the cycle stock to buffer against stock-outs + */ + public void setSafetyStock (BigDecimal SafetyStock); + + /** Get Safety Stock Qty. + * Safety stock is a term used to describe a level of stock that is maintained below the cycle stock to buffer against stock-outs + */ + public BigDecimal getSafetyStock(); /** Column name S_Resource_ID */ public static final String COLUMNNAME_S_Resource_ID = "S_Resource_ID"; @@ -332,20 +350,7 @@ public interface I_PP_Product_Planning */ public int getS_Resource_ID(); - public I_S_Resource getS_Resource() throws RuntimeException; - - /** Column name SafetyStock */ - public static final String COLUMNNAME_SafetyStock = "SafetyStock"; - - /** Set Safety Stock Qty. - * Safety stock is a term used to describe a level of stock that is maintained below the cycle stock to buffer against stock-outs - */ - public void setSafetyStock (BigDecimal SafetyStock); - - /** Get Safety Stock Qty. - * Safety stock is a term used to describe a level of stock that is maintained below the cycle stock to buffer against stock-outs - */ - public BigDecimal getSafetyStock(); + public org.compiere.model.I_S_Resource getS_Resource() throws RuntimeException; /** Column name TimeFence */ public static final String COLUMNNAME_TimeFence = "TimeFence"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_PP_WF_Node_Asset.java b/org.adempiere.base/src/org/eevolution/model/I_PP_WF_Node_Asset.java index ff16b1a97f..869183c1f8 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_PP_WF_Node_Asset.java +++ b/org.adempiere.base/src/org/eevolution/model/I_PP_WF_Node_Asset.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for PP_WF_Node_Asset - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PP_WF_Node_Asset { @@ -32,7 +32,7 @@ public interface I_PP_WF_Node_Asset public static final String Table_Name = "PP_WF_Node_Asset"; /** AD_Table_ID=53017 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53017; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -55,7 +55,7 @@ public interface I_PP_WF_Node_Asset */ public int getA_Asset_ID(); - public I_A_Asset getA_Asset() throws RuntimeException; + public org.compiere.model.I_A_Asset getA_Asset() throws RuntimeException; /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; @@ -91,7 +91,7 @@ public interface I_PP_WF_Node_Asset */ public int getAD_WF_Node_ID(); - public I_AD_WF_Node getAD_WF_Node() throws RuntimeException; + public org.compiere.model.I_AD_WF_Node getAD_WF_Node() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -131,6 +131,15 @@ public interface I_PP_WF_Node_Asset /** Get Workflow Node Asset */ public int getPP_WF_Node_Asset_ID(); + /** Column name PP_WF_Node_Asset_UU */ + public static final String COLUMNNAME_PP_WF_Node_Asset_UU = "PP_WF_Node_Asset_UU"; + + /** Set PP_WF_Node_Asset_UU */ + public void setPP_WF_Node_Asset_UU (String PP_WF_Node_Asset_UU); + + /** Get PP_WF_Node_Asset_UU */ + public String getPP_WF_Node_Asset_UU(); + /** Column name SeqNo */ public static final String COLUMNNAME_SeqNo = "SeqNo"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_PP_WF_Node_Product.java b/org.adempiere.base/src/org/eevolution/model/I_PP_WF_Node_Product.java index 3e4bc7a98c..ba6ca0acd8 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_PP_WF_Node_Product.java +++ b/org.adempiere.base/src/org/eevolution/model/I_PP_WF_Node_Product.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for PP_WF_Node_Product - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_PP_WF_Node_Product { @@ -32,7 +32,7 @@ public interface I_PP_WF_Node_Product public static final String Table_Name = "PP_WF_Node_Product"; /** AD_Table_ID=53016 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53016; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -76,7 +76,7 @@ public interface I_PP_WF_Node_Product */ public int getAD_WF_Node_ID(); - public I_AD_WF_Node getAD_WF_Node() throws RuntimeException; + public org.compiere.model.I_AD_WF_Node getAD_WF_Node() throws RuntimeException; /** Column name ConfigurationLevel */ public static final String COLUMNNAME_ConfigurationLevel = "ConfigurationLevel"; @@ -157,7 +157,7 @@ public interface I_PP_WF_Node_Product */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name PP_WF_Node_Product_ID */ public static final String COLUMNNAME_PP_WF_Node_Product_ID = "PP_WF_Node_Product_ID"; @@ -168,6 +168,15 @@ public interface I_PP_WF_Node_Product /** Get Workflow Node Product */ public int getPP_WF_Node_Product_ID(); + /** Column name PP_WF_Node_Product_UU */ + public static final String COLUMNNAME_PP_WF_Node_Product_UU = "PP_WF_Node_Product_UU"; + + /** Set PP_WF_Node_Product_UU */ + public void setPP_WF_Node_Product_UU (String PP_WF_Node_Product_UU); + + /** Get PP_WF_Node_Product_UU */ + public String getPP_WF_Node_Product_UU(); + /** Column name Qty */ public static final String COLUMNNAME_Qty = "Qty"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_QM_Specification.java b/org.adempiere.base/src/org/eevolution/model/I_QM_Specification.java index f32d1db329..b02b308de3 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_QM_Specification.java +++ b/org.adempiere.base/src/org/eevolution/model/I_QM_Specification.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for QM_Specification - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_QM_Specification { @@ -32,7 +32,7 @@ public interface I_QM_Specification public static final String Table_Name = "QM_Specification"; /** AD_Table_ID=53040 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53040; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -76,7 +76,7 @@ public interface I_QM_Specification */ public int getAD_Workflow_ID(); - public I_AD_Workflow getAD_Workflow() throws RuntimeException; + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -133,7 +133,7 @@ public interface I_QM_Specification */ public int getM_AttributeSet_ID(); - public I_M_AttributeSet getM_AttributeSet() throws RuntimeException; + public org.compiere.model.I_M_AttributeSet getM_AttributeSet() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -148,7 +148,7 @@ public interface I_QM_Specification */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name Name */ public static final String COLUMNNAME_Name = "Name"; @@ -187,6 +187,15 @@ public interface I_QM_Specification /** Get Quality Specification */ public int getQM_Specification_ID(); + /** Column name QM_Specification_UU */ + public static final String COLUMNNAME_QM_Specification_UU = "QM_Specification_UU"; + + /** Set QM_Specification_UU */ + public void setQM_Specification_UU (String QM_Specification_UU); + + /** Get QM_Specification_UU */ + public String getQM_Specification_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_QM_SpecificationLine.java b/org.adempiere.base/src/org/eevolution/model/I_QM_SpecificationLine.java index 495254a9de..14f4338292 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_QM_SpecificationLine.java +++ b/org.adempiere.base/src/org/eevolution/model/I_QM_SpecificationLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for QM_SpecificationLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_QM_SpecificationLine { @@ -32,7 +32,7 @@ public interface I_QM_SpecificationLine public static final String Table_Name = "QM_SpecificationLine"; /** AD_Table_ID=53041 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53041; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -118,7 +118,7 @@ public interface I_QM_SpecificationLine */ public int getM_Attribute_ID(); - public I_M_Attribute getM_Attribute() throws RuntimeException; + public org.compiere.model.I_M_Attribute getM_Attribute() throws RuntimeException; /** Column name Operation */ public static final String COLUMNNAME_Operation = "Operation"; @@ -153,6 +153,15 @@ public interface I_QM_SpecificationLine /** Get QM Specification Line */ public int getQM_SpecificationLine_ID(); + /** Column name QM_SpecificationLine_UU */ + public static final String COLUMNNAME_QM_SpecificationLine_UU = "QM_SpecificationLine_UU"; + + /** Set QM_SpecificationLine_UU */ + public void setQM_SpecificationLine_UU (String QM_SpecificationLine_UU); + + /** Get QM_SpecificationLine_UU */ + public String getQM_SpecificationLine_UU(); + /** Column name SeqNo */ public static final String COLUMNNAME_SeqNo = "SeqNo"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_T_BOMLine.java b/org.adempiere.base/src/org/eevolution/model/I_T_BOMLine.java index 65cf4140e0..6c0ed8659e 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_T_BOMLine.java +++ b/org.adempiere.base/src/org/eevolution/model/I_T_BOMLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for T_BOMLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_T_BOMLine { @@ -32,7 +32,7 @@ public interface I_T_BOMLine public static final String Table_Name = "T_BOMLine"; /** AD_Table_ID=53045 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53045; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -76,7 +76,7 @@ public interface I_T_BOMLine */ public int getAD_PInstance_ID(); - public I_AD_PInstance getAD_PInstance() throws RuntimeException; + public org.compiere.model.I_AD_PInstance getAD_PInstance() throws RuntimeException; /** Column name C_AcctSchema_ID */ public static final String COLUMNNAME_C_AcctSchema_ID = "C_AcctSchema_ID"; @@ -91,7 +91,7 @@ public interface I_T_BOMLine */ public int getC_AcctSchema_ID(); - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException; + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException; /** Column name Cost */ public static final String COLUMNNAME_Cost = "Cost"; @@ -262,7 +262,7 @@ public interface I_T_BOMLine */ public int getM_CostElement_ID(); - public I_M_CostElement getM_CostElement() throws RuntimeException; + public org.compiere.model.I_M_CostElement getM_CostElement() throws RuntimeException; /** Column name M_CostType_ID */ public static final String COLUMNNAME_M_CostType_ID = "M_CostType_ID"; @@ -277,7 +277,7 @@ public interface I_T_BOMLine */ public int getM_CostType_ID(); - public I_M_CostType getM_CostType() throws RuntimeException; + public org.compiere.model.I_M_CostType getM_CostType() throws RuntimeException; /** Column name M_Product_ID */ public static final String COLUMNNAME_M_Product_ID = "M_Product_ID"; @@ -292,7 +292,7 @@ public interface I_T_BOMLine */ public int getM_Product_ID(); - public I_M_Product getM_Product() throws RuntimeException; + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException; /** Column name PP_Product_BOM_ID */ public static final String COLUMNNAME_PP_Product_BOM_ID = "PP_Product_BOM_ID"; @@ -370,6 +370,15 @@ public interface I_T_BOMLine /** Get Temporal BOM Line */ public int getT_BOMLine_ID(); + /** Column name T_BOMLine_UU */ + public static final String COLUMNNAME_T_BOMLine_UU = "T_BOMLine_UU"; + + /** Set T_BOMLine_UU */ + public void setT_BOMLine_UU (String T_BOMLine_UU); + + /** Get T_BOMLine_UU */ + public String getT_BOMLine_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/eevolution/model/I_T_MRP_CRP.java b/org.adempiere.base/src/org/eevolution/model/I_T_MRP_CRP.java index 8fe60040c2..809dbea865 100644 --- a/org.adempiere.base/src/org/eevolution/model/I_T_MRP_CRP.java +++ b/org.adempiere.base/src/org/eevolution/model/I_T_MRP_CRP.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,8 +22,8 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Interface for T_MRP_CRP - * @author Adempiere (generated) - * @version Release 3.6.0LTS + * @author iDempiere (generated) + * @version Release 1.0a */ public interface I_T_MRP_CRP { @@ -32,7 +32,7 @@ public interface I_T_MRP_CRP public static final String Table_Name = "T_MRP_CRP"; /** AD_Table_ID=53044 */ - public static final int Table_ID = MTable.getTable_ID(Table_Name); + public static final int Table_ID = 53044; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); @@ -76,7 +76,7 @@ public interface I_T_MRP_CRP */ public int getAD_PInstance_ID(); - public I_AD_PInstance getAD_PInstance() throws RuntimeException; + public org.compiere.model.I_AD_PInstance getAD_PInstance() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; @@ -144,6 +144,15 @@ public interface I_T_MRP_CRP /** Get Temporal MRP & CRP */ public int getT_MRP_CRP_ID(); + /** Column name T_MRP_CRP_UU */ + public static final String COLUMNNAME_T_MRP_CRP_UU = "T_MRP_CRP_UU"; + + /** Set T_MRP_CRP_UU */ + public void setT_MRP_CRP_UU (String T_MRP_CRP_UU); + + /** Get T_MRP_CRP_UU */ + public String getT_MRP_CRP_UU(); + /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; diff --git a/org.adempiere.base/src/org/eevolution/model/X_C_TaxBase.java b/org.adempiere.base/src/org/eevolution/model/X_C_TaxBase.java index edd24c70a7..e76726ca70 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_C_TaxBase.java +++ b/org.adempiere.base/src/org/eevolution/model/X_C_TaxBase.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Model for C_TaxBase - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_TaxBase extends PO implements I_C_TaxBase, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_TaxBase (Properties ctx, int C_TaxBase_ID, String trxName) @@ -121,6 +121,20 @@ public class X_C_TaxBase extends PO implements I_C_TaxBase, I_Persistent return ii.intValue(); } + /** Set C_TaxBase_UU. + @param C_TaxBase_UU C_TaxBase_UU */ + public void setC_TaxBase_UU (String C_TaxBase_UU) + { + set_Value (COLUMNNAME_C_TaxBase_UU, C_TaxBase_UU); + } + + /** Get C_TaxBase_UU. + @return C_TaxBase_UU */ + public String getC_TaxBase_UU () + { + return (String)get_Value(COLUMNNAME_C_TaxBase_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/eevolution/model/X_C_TaxDefinition.java b/org.adempiere.base/src/org/eevolution/model/X_C_TaxDefinition.java index 8422e586d2..c61e5302af 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_C_TaxDefinition.java +++ b/org.adempiere.base/src/org/eevolution/model/X_C_TaxDefinition.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Model for C_TaxDefinition - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_TaxDefinition extends PO implements I_C_TaxDefinition, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_TaxDefinition (Properties ctx, int C_TaxDefinition_ID, String trxName) @@ -74,9 +74,9 @@ public class X_C_TaxDefinition extends PO implements I_C_TaxDefinition, I_Persis return sb.toString(); } - public I_AD_OrgType getAD_OrgType() throws RuntimeException + public org.compiere.model.I_AD_OrgType getAD_OrgType() throws RuntimeException { - return (I_AD_OrgType)MTable.get(getCtx(), I_AD_OrgType.Table_Name) + return (org.compiere.model.I_AD_OrgType)MTable.get(getCtx(), org.compiere.model.I_AD_OrgType.Table_Name) .getPO(getAD_OrgType_ID(), get_TrxName()); } /** Set Organization Type. @@ -102,9 +102,9 @@ public class X_C_TaxDefinition extends PO implements I_C_TaxDefinition, I_Persis return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -130,9 +130,9 @@ public class X_C_TaxDefinition extends PO implements I_C_TaxDefinition, I_Persis return ii.intValue(); } - public I_C_BP_Group getC_BP_Group() throws RuntimeException + public org.compiere.model.I_C_BP_Group getC_BP_Group() throws RuntimeException { - return (I_C_BP_Group)MTable.get(getCtx(), I_C_BP_Group.Table_Name) + return (org.compiere.model.I_C_BP_Group)MTable.get(getCtx(), org.compiere.model.I_C_BP_Group.Table_Name) .getPO(getC_BP_Group_ID(), get_TrxName()); } /** Set Business Partner Group. @@ -183,9 +183,9 @@ public class X_C_TaxDefinition extends PO implements I_C_TaxDefinition, I_Persis return ii.intValue(); } - public I_C_TaxCategory getC_TaxCategory() throws RuntimeException + public org.compiere.model.I_C_TaxCategory getC_TaxCategory() throws RuntimeException { - return (I_C_TaxCategory)MTable.get(getCtx(), I_C_TaxCategory.Table_Name) + return (org.compiere.model.I_C_TaxCategory)MTable.get(getCtx(), org.compiere.model.I_C_TaxCategory.Table_Name) .getPO(getC_TaxCategory_ID(), get_TrxName()); } /** Set Tax Category. @@ -231,6 +231,20 @@ public class X_C_TaxDefinition extends PO implements I_C_TaxDefinition, I_Persis return ii.intValue(); } + /** Set C_TaxDefinition_UU. + @param C_TaxDefinition_UU C_TaxDefinition_UU */ + public void setC_TaxDefinition_UU (String C_TaxDefinition_UU) + { + set_Value (COLUMNNAME_C_TaxDefinition_UU, C_TaxDefinition_UU); + } + + /** Get C_TaxDefinition_UU. + @return C_TaxDefinition_UU */ + public String getC_TaxDefinition_UU () + { + return (String)get_Value(COLUMNNAME_C_TaxDefinition_UU); + } + public org.eevolution.model.I_C_TaxGroup getC_TaxGroup() throws RuntimeException { return (org.eevolution.model.I_C_TaxGroup)MTable.get(getCtx(), org.eevolution.model.I_C_TaxGroup.Table_Name) @@ -256,9 +270,9 @@ public class X_C_TaxDefinition extends PO implements I_C_TaxDefinition, I_Persis return ii.intValue(); } - public I_C_Tax getC_Tax() throws RuntimeException + public org.compiere.model.I_C_Tax getC_Tax() throws RuntimeException { - return (I_C_Tax)MTable.get(getCtx(), I_C_Tax.Table_Name) + return (org.compiere.model.I_C_Tax)MTable.get(getCtx(), org.compiere.model.I_C_Tax.Table_Name) .getPO(getC_Tax_ID(), get_TrxName()); } /** Set Tax. @@ -401,9 +415,9 @@ public class X_C_TaxDefinition extends PO implements I_C_TaxDefinition, I_Persis return ii.intValue(); } - public I_M_Product_Category getM_Product_Category() throws RuntimeException + public org.compiere.model.I_M_Product_Category getM_Product_Category() throws RuntimeException { - return (I_M_Product_Category)MTable.get(getCtx(), I_M_Product_Category.Table_Name) + return (org.compiere.model.I_M_Product_Category)MTable.get(getCtx(), org.compiere.model.I_M_Product_Category.Table_Name) .getPO(getM_Product_Category_ID(), get_TrxName()); } /** Set Product Category. @@ -429,9 +443,9 @@ public class X_C_TaxDefinition extends PO implements I_C_TaxDefinition, I_Persis return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. diff --git a/org.adempiere.base/src/org/eevolution/model/X_C_TaxGroup.java b/org.adempiere.base/src/org/eevolution/model/X_C_TaxGroup.java index db0c27d00c..0b39cca10c 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_C_TaxGroup.java +++ b/org.adempiere.base/src/org/eevolution/model/X_C_TaxGroup.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Model for C_TaxGroup - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_TaxGroup extends PO implements I_C_TaxGroup, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_TaxGroup (Properties ctx, int C_TaxGroup_ID, String trxName) @@ -93,6 +93,20 @@ public class X_C_TaxGroup extends PO implements I_C_TaxGroup, I_Persistent return ii.intValue(); } + /** Set C_TaxGroup_UU. + @param C_TaxGroup_UU C_TaxGroup_UU */ + public void setC_TaxGroup_UU (String C_TaxGroup_UU) + { + set_Value (COLUMNNAME_C_TaxGroup_UU, C_TaxGroup_UU); + } + + /** Get C_TaxGroup_UU. + @return C_TaxGroup_UU */ + public String getC_TaxGroup_UU () + { + return (String)get_Value(COLUMNNAME_C_TaxGroup_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/eevolution/model/X_C_TaxType.java b/org.adempiere.base/src/org/eevolution/model/X_C_TaxType.java index ca32975bed..d1d8abe1de 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_C_TaxType.java +++ b/org.adempiere.base/src/org/eevolution/model/X_C_TaxType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Model for C_TaxType - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_C_TaxType extends PO implements I_C_TaxType, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_C_TaxType (Properties ctx, int C_TaxType_ID, String trxName) @@ -93,6 +93,20 @@ public class X_C_TaxType extends PO implements I_C_TaxType, I_Persistent return ii.intValue(); } + /** Set C_TaxType_UU. + @param C_TaxType_UU C_TaxType_UU */ + public void setC_TaxType_UU (String C_TaxType_UU) + { + set_Value (COLUMNNAME_C_TaxType_UU, C_TaxType_UU); + } + + /** Get C_TaxType_UU. + @return C_TaxType_UU */ + public String getC_TaxType_UU () + { + return (String)get_Value(COLUMNNAME_C_TaxType_UU); + } + /** Set Description. @param Description Optional short description of the record diff --git a/org.adempiere.base/src/org/eevolution/model/X_DD_NetworkDistribution.java b/org.adempiere.base/src/org/eevolution/model/X_DD_NetworkDistribution.java index a9c0359a76..c59212d8c9 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_DD_NetworkDistribution.java +++ b/org.adempiere.base/src/org/eevolution/model/X_DD_NetworkDistribution.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Model for DD_NetworkDistribution - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_DD_NetworkDistribution extends PO implements I_DD_NetworkDistribution, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_DD_NetworkDistribution (Properties ctx, int DD_NetworkDistribution_ID, String trxName) @@ -111,6 +111,20 @@ public class X_DD_NetworkDistribution extends PO implements I_DD_NetworkDistribu return ii.intValue(); } + /** Set DD_NetworkDistribution_UU. + @param DD_NetworkDistribution_UU DD_NetworkDistribution_UU */ + public void setDD_NetworkDistribution_UU (String DD_NetworkDistribution_UU) + { + set_Value (COLUMNNAME_DD_NetworkDistribution_UU, DD_NetworkDistribution_UU); + } + + /** Get DD_NetworkDistribution_UU. + @return DD_NetworkDistribution_UU */ + public String getDD_NetworkDistribution_UU () + { + return (String)get_Value(COLUMNNAME_DD_NetworkDistribution_UU); + } + /** Set Description. @param Description Optional short description of the record @@ -162,9 +176,9 @@ public class X_DD_NetworkDistribution extends PO implements I_DD_NetworkDistribu return (String)get_Value(COLUMNNAME_Help); } - public I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException + public org.compiere.model.I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException { - return (I_M_ChangeNotice)MTable.get(getCtx(), I_M_ChangeNotice.Table_Name) + return (org.compiere.model.I_M_ChangeNotice)MTable.get(getCtx(), org.compiere.model.I_M_ChangeNotice.Table_Name) .getPO(getM_ChangeNotice_ID(), get_TrxName()); } /** Set Change Notice. diff --git a/org.adempiere.base/src/org/eevolution/model/X_DD_NetworkDistributionLine.java b/org.adempiere.base/src/org/eevolution/model/X_DD_NetworkDistributionLine.java index a729538ce9..6ca85521d7 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_DD_NetworkDistributionLine.java +++ b/org.adempiere.base/src/org/eevolution/model/X_DD_NetworkDistributionLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.model.*; import org.compiere.util.Env; /** Generated Model for DD_NetworkDistributionLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_DD_NetworkDistributionLine extends PO implements I_DD_NetworkDistributionLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_DD_NetworkDistributionLine (Properties ctx, int DD_NetworkDistributionLine_ID, String trxName) @@ -123,9 +123,23 @@ public class X_DD_NetworkDistributionLine extends PO implements I_DD_NetworkDist return ii.intValue(); } - public I_M_Shipper getM_Shipper() throws RuntimeException + /** Set DD_NetworkDistributionLine_UU. + @param DD_NetworkDistributionLine_UU DD_NetworkDistributionLine_UU */ + public void setDD_NetworkDistributionLine_UU (String DD_NetworkDistributionLine_UU) + { + set_Value (COLUMNNAME_DD_NetworkDistributionLine_UU, DD_NetworkDistributionLine_UU); + } + + /** Get DD_NetworkDistributionLine_UU. + @return DD_NetworkDistributionLine_UU */ + public String getDD_NetworkDistributionLine_UU () + { + return (String)get_Value(COLUMNNAME_DD_NetworkDistributionLine_UU); + } + + public org.compiere.model.I_M_Shipper getM_Shipper() throws RuntimeException { - return (I_M_Shipper)MTable.get(getCtx(), I_M_Shipper.Table_Name) + return (org.compiere.model.I_M_Shipper)MTable.get(getCtx(), org.compiere.model.I_M_Shipper.Table_Name) .getPO(getM_Shipper_ID(), get_TrxName()); } /** Set Shipper. @@ -151,9 +165,9 @@ public class X_DD_NetworkDistributionLine extends PO implements I_DD_NetworkDist return ii.intValue(); } - public I_M_Warehouse getM_Warehouse() throws RuntimeException + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_Warehouse_ID(), get_TrxName()); } /** Set Warehouse. @@ -179,9 +193,9 @@ public class X_DD_NetworkDistributionLine extends PO implements I_DD_NetworkDist return ii.intValue(); } - public I_M_Warehouse getM_WarehouseSource() throws RuntimeException + public org.compiere.model.I_M_Warehouse getM_WarehouseSource() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_WarehouseSource_ID(), get_TrxName()); } /** Set Source Warehouse. diff --git a/org.adempiere.base/src/org/eevolution/model/X_DD_Order.java b/org.adempiere.base/src/org/eevolution/model/X_DD_Order.java index 5c94784347..771eeb0e31 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_DD_Order.java +++ b/org.adempiere.base/src/org/eevolution/model/X_DD_Order.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -26,15 +26,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for DD_Order - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_DD_Order extends PO implements I_DD_Order, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_DD_Order (Properties ctx, int DD_Order_ID, String trxName) @@ -127,9 +127,9 @@ public class X_DD_Order extends PO implements I_DD_Order, I_Persistent return ii.intValue(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -155,9 +155,9 @@ public class X_DD_Order extends PO implements I_DD_Order, I_Persistent return ii.intValue(); } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -183,9 +183,9 @@ public class X_DD_Order extends PO implements I_DD_Order, I_Persistent return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -211,9 +211,9 @@ public class X_DD_Order extends PO implements I_DD_Order, I_Persistent return ii.intValue(); } - public I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException + public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException { - return (I_C_BPartner_Location)MTable.get(getCtx(), I_C_BPartner_Location.Table_Name) + return (org.compiere.model.I_C_BPartner_Location)MTable.get(getCtx(), org.compiere.model.I_C_BPartner_Location.Table_Name) .getPO(getC_BPartner_Location_ID(), get_TrxName()); } /** Set Partner Location. @@ -239,9 +239,9 @@ public class X_DD_Order extends PO implements I_DD_Order, I_Persistent return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -267,9 +267,9 @@ public class X_DD_Order extends PO implements I_DD_Order, I_Persistent return ii.intValue(); } - public I_C_Charge getC_Charge() throws RuntimeException + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException { - return (I_C_Charge)MTable.get(getCtx(), I_C_Charge.Table_Name) + return (org.compiere.model.I_C_Charge)MTable.get(getCtx(), org.compiere.model.I_C_Charge.Table_Name) .getPO(getC_Charge_ID(), get_TrxName()); } /** Set Charge. @@ -295,9 +295,9 @@ public class X_DD_Order extends PO implements I_DD_Order, I_Persistent return ii.intValue(); } - public I_C_DocType getC_DocType() throws RuntimeException + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocType_ID(), get_TrxName()); } /** Set Document Type. @@ -343,9 +343,9 @@ public class X_DD_Order extends PO implements I_DD_Order, I_Persistent return bd; } - public I_C_Invoice getC_Invoice() throws RuntimeException + public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException { - return (I_C_Invoice)MTable.get(getCtx(), I_C_Invoice.Table_Name) + return (org.compiere.model.I_C_Invoice)MTable.get(getCtx(), org.compiere.model.I_C_Invoice.Table_Name) .getPO(getC_Invoice_ID(), get_TrxName()); } /** Set Invoice. @@ -371,9 +371,9 @@ public class X_DD_Order extends PO implements I_DD_Order, I_Persistent return ii.intValue(); } - public I_C_Order getC_Order() throws RuntimeException + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException { - return (I_C_Order)MTable.get(getCtx(), I_C_Order.Table_Name) + return (org.compiere.model.I_C_Order)MTable.get(getCtx(), org.compiere.model.I_C_Order.Table_Name) .getPO(getC_Order_ID(), get_TrxName()); } /** Set Order. @@ -399,9 +399,9 @@ public class X_DD_Order extends PO implements I_DD_Order, I_Persistent return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -560,6 +560,20 @@ public class X_DD_Order extends PO implements I_DD_Order, I_Persistent return ii.intValue(); } + /** Set DD_Order_UU. + @param DD_Order_UU DD_Order_UU */ + public void setDD_Order_UU (String DD_Order_UU) + { + set_Value (COLUMNNAME_DD_Order_UU, DD_Order_UU); + } + + /** Get DD_Order_UU. + @return DD_Order_UU */ + public String getDD_Order_UU () + { + return (String)get_Value(COLUMNNAME_DD_Order_UU); + } + /** DeliveryRule AD_Reference_ID=151 */ public static final int DELIVERYRULE_AD_Reference_ID=151; /** After Receipt = R */ @@ -1003,9 +1017,9 @@ public class X_DD_Order extends PO implements I_DD_Order, I_Persistent return false; } - public I_M_Shipper getM_Shipper() throws RuntimeException + public org.compiere.model.I_M_Shipper getM_Shipper() throws RuntimeException { - return (I_M_Shipper)MTable.get(getCtx(), I_M_Shipper.Table_Name) + return (org.compiere.model.I_M_Shipper)MTable.get(getCtx(), org.compiere.model.I_M_Shipper.Table_Name) .getPO(getM_Shipper_ID(), get_TrxName()); } /** Set Shipper. @@ -1031,9 +1045,9 @@ public class X_DD_Order extends PO implements I_DD_Order, I_Persistent return ii.intValue(); } - public I_M_Warehouse getM_Warehouse() throws RuntimeException + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_Warehouse_ID(), get_TrxName()); } /** Set Warehouse. @@ -1255,9 +1269,9 @@ public class X_DD_Order extends PO implements I_DD_Order, I_Persistent return ii.intValue(); } - public I_AD_User getSalesRep() throws RuntimeException + public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getSalesRep_ID(), get_TrxName()); } /** Set Sales Representative. @@ -1341,9 +1355,9 @@ public class X_DD_Order extends PO implements I_DD_Order, I_Persistent return (String)get_Value(COLUMNNAME_TrackingNo); } - public I_C_ElementValue getUser1() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser1_ID(), get_TrxName()); } /** Set User List 1. @@ -1369,9 +1383,9 @@ public class X_DD_Order extends PO implements I_DD_Order, I_Persistent return ii.intValue(); } - public I_C_ElementValue getUser2() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser2_ID(), get_TrxName()); } /** Set User List 2. diff --git a/org.adempiere.base/src/org/eevolution/model/X_DD_OrderLine.java b/org.adempiere.base/src/org/eevolution/model/X_DD_OrderLine.java index 48011b4cb7..bbc330a02c 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_DD_OrderLine.java +++ b/org.adempiere.base/src/org/eevolution/model/X_DD_OrderLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -26,15 +26,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for DD_OrderLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_DD_OrderLine extends PO implements I_DD_OrderLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_DD_OrderLine (Properties ctx, int DD_OrderLine_ID, String trxName) @@ -111,9 +111,9 @@ public class X_DD_OrderLine extends PO implements I_DD_OrderLine, I_Persistent return ii.intValue(); } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -139,9 +139,9 @@ public class X_DD_OrderLine extends PO implements I_DD_OrderLine, I_Persistent return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -167,9 +167,9 @@ public class X_DD_OrderLine extends PO implements I_DD_OrderLine, I_Persistent return ii.intValue(); } - public I_C_Charge getC_Charge() throws RuntimeException + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException { - return (I_C_Charge)MTable.get(getCtx(), I_C_Charge.Table_Name) + return (org.compiere.model.I_C_Charge)MTable.get(getCtx(), org.compiere.model.I_C_Charge.Table_Name) .getPO(getC_Charge_ID(), get_TrxName()); } /** Set Charge. @@ -215,9 +215,9 @@ public class X_DD_OrderLine extends PO implements I_DD_OrderLine, I_Persistent return bd; } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -243,9 +243,9 @@ public class X_DD_OrderLine extends PO implements I_DD_OrderLine, I_Persistent return ii.intValue(); } - public I_C_UOM getC_UOM() throws RuntimeException + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_ID(), get_TrxName()); } /** Set UOM. @@ -367,6 +367,20 @@ public class X_DD_OrderLine extends PO implements I_DD_OrderLine, I_Persistent return ii.intValue(); } + /** Set DD_OrderLine_UU. + @param DD_OrderLine_UU DD_OrderLine_UU */ + public void setDD_OrderLine_UU (String DD_OrderLine_UU) + { + set_Value (COLUMNNAME_DD_OrderLine_UU, DD_OrderLine_UU); + } + + /** Get DD_OrderLine_UU. + @return DD_OrderLine_UU */ + public String getDD_OrderLine_UU () + { + return (String)get_Value(COLUMNNAME_DD_OrderLine_UU); + } + /** Set Description. @param Description Optional short description of the record @@ -556,9 +570,9 @@ public class X_DD_OrderLine extends PO implements I_DD_OrderLine, I_Persistent return ii.intValue(); } - public I_M_Locator getM_Locator() throws RuntimeException + public org.compiere.model.I_M_Locator getM_Locator() throws RuntimeException { - return (I_M_Locator)MTable.get(getCtx(), I_M_Locator.Table_Name) + return (org.compiere.model.I_M_Locator)MTable.get(getCtx(), org.compiere.model.I_M_Locator.Table_Name) .getPO(getM_Locator_ID(), get_TrxName()); } /** Set Locator. @@ -584,9 +598,9 @@ public class X_DD_OrderLine extends PO implements I_DD_OrderLine, I_Persistent return ii.intValue(); } - public I_M_Locator getM_LocatorTo() throws RuntimeException + public org.compiere.model.I_M_Locator getM_LocatorTo() throws RuntimeException { - return (I_M_Locator)MTable.get(getCtx(), I_M_Locator.Table_Name) + return (org.compiere.model.I_M_Locator)MTable.get(getCtx(), org.compiere.model.I_M_Locator.Table_Name) .getPO(getM_LocatorTo_ID(), get_TrxName()); } /** Set Locator To. @@ -612,9 +626,9 @@ public class X_DD_OrderLine extends PO implements I_DD_OrderLine, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -640,9 +654,9 @@ public class X_DD_OrderLine extends PO implements I_DD_OrderLine, I_Persistent return ii.intValue(); } - public I_M_Shipper getM_Shipper() throws RuntimeException + public org.compiere.model.I_M_Shipper getM_Shipper() throws RuntimeException { - return (I_M_Shipper)MTable.get(getCtx(), I_M_Shipper.Table_Name) + return (org.compiere.model.I_M_Shipper)MTable.get(getCtx(), org.compiere.model.I_M_Shipper.Table_Name) .getPO(getM_Shipper_ID(), get_TrxName()); } /** Set Shipper. @@ -846,9 +860,9 @@ public class X_DD_OrderLine extends PO implements I_DD_OrderLine, I_Persistent return bd; } - public I_C_ElementValue getUser1() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser1_ID(), get_TrxName()); } /** Set User List 1. @@ -874,9 +888,9 @@ public class X_DD_OrderLine extends PO implements I_DD_OrderLine, I_Persistent return ii.intValue(); } - public I_C_ElementValue getUser2() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser2_ID(), get_TrxName()); } /** Set User List 2. diff --git a/org.adempiere.base/src/org/eevolution/model/X_HR_Attribute.java b/org.adempiere.base/src/org/eevolution/model/X_HR_Attribute.java index 82c213f38d..d26266bfa1 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_HR_Attribute.java +++ b/org.adempiere.base/src/org/eevolution/model/X_HR_Attribute.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.model.*; import org.compiere.util.Env; /** Generated Model for HR_Attribute - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_HR_Attribute extends PO implements I_HR_Attribute, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_HR_Attribute (Properties ctx, int HR_Attribute_ID, String trxName) @@ -75,9 +75,9 @@ public class X_HR_Attribute extends PO implements I_HR_Attribute, I_Persistent return sb.toString(); } - public I_AD_Rule getAD_Rule() throws RuntimeException + public org.compiere.model.I_AD_Rule getAD_Rule() throws RuntimeException { - return (I_AD_Rule)MTable.get(getCtx(), I_AD_Rule.Table_Name) + return (org.compiere.model.I_AD_Rule)MTable.get(getCtx(), org.compiere.model.I_AD_Rule.Table_Name) .getPO(getAD_Rule_ID(), get_TrxName()); } /** Set Rule. @@ -120,9 +120,9 @@ public class X_HR_Attribute extends PO implements I_HR_Attribute, I_Persistent return bd; } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -232,6 +232,20 @@ public class X_HR_Attribute extends PO implements I_HR_Attribute, I_Persistent return ii.intValue(); } + /** Set HR_Attribute_UU. + @param HR_Attribute_UU HR_Attribute_UU */ + public void setHR_Attribute_UU (String HR_Attribute_UU) + { + set_Value (COLUMNNAME_HR_Attribute_UU, HR_Attribute_UU); + } + + /** Get HR_Attribute_UU. + @return HR_Attribute_UU */ + public String getHR_Attribute_UU () + { + return (String)get_Value(COLUMNNAME_HR_Attribute_UU); + } + public org.eevolution.model.I_HR_Concept getHR_Concept() throws RuntimeException { return (org.eevolution.model.I_HR_Concept)MTable.get(getCtx(), org.eevolution.model.I_HR_Concept.Table_Name) diff --git a/org.adempiere.base/src/org/eevolution/model/X_HR_Concept.java b/org.adempiere.base/src/org/eevolution/model/X_HR_Concept.java index 585ed14ba5..f595cd74d5 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_HR_Concept.java +++ b/org.adempiere.base/src/org/eevolution/model/X_HR_Concept.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Model for HR_Concept - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_HR_Concept extends PO implements I_HR_Concept, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_HR_Concept (Properties ctx, int HR_Concept_ID, String trxName) @@ -101,9 +101,9 @@ public class X_HR_Concept extends PO implements I_HR_Concept, I_Persistent return (String)get_Value(COLUMNNAME_AccountSign); } - public I_AD_Reference getAD_Reference() throws RuntimeException + public org.compiere.model.I_AD_Reference getAD_Reference() throws RuntimeException { - return (I_AD_Reference)MTable.get(getCtx(), I_AD_Reference.Table_Name) + return (org.compiere.model.I_AD_Reference)MTable.get(getCtx(), org.compiere.model.I_AD_Reference.Table_Name) .getPO(getAD_Reference_ID(), get_TrxName()); } /** Set Reference. @@ -181,9 +181,9 @@ public class X_HR_Concept extends PO implements I_HR_Concept, I_Persistent public void setHR_Concept_Category_ID (int HR_Concept_Category_ID) { if (HR_Concept_Category_ID < 1) - set_ValueNoCheck (COLUMNNAME_HR_Concept_Category_ID, null); + set_Value (COLUMNNAME_HR_Concept_Category_ID, null); else - set_ValueNoCheck (COLUMNNAME_HR_Concept_Category_ID, Integer.valueOf(HR_Concept_Category_ID)); + set_Value (COLUMNNAME_HR_Concept_Category_ID, Integer.valueOf(HR_Concept_Category_ID)); } /** Get Payroll Concept Category. @@ -216,6 +216,20 @@ public class X_HR_Concept extends PO implements I_HR_Concept, I_Persistent return ii.intValue(); } + /** Set HR_Concept_UU. + @param HR_Concept_UU HR_Concept_UU */ + public void setHR_Concept_UU (String HR_Concept_UU) + { + set_Value (COLUMNNAME_HR_Concept_UU, HR_Concept_UU); + } + + /** Get HR_Concept_UU. + @return HR_Concept_UU */ + public String getHR_Concept_UU () + { + return (String)get_Value(COLUMNNAME_HR_Concept_UU); + } + public org.eevolution.model.I_HR_Department getHR_Department() throws RuntimeException { return (org.eevolution.model.I_HR_Department)MTable.get(getCtx(), org.eevolution.model.I_HR_Department.Table_Name) diff --git a/org.adempiere.base/src/org/eevolution/model/X_HR_Concept_Acct.java b/org.adempiere.base/src/org/eevolution/model/X_HR_Concept_Acct.java index c592b6e430..0fb113b999 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_HR_Concept_Acct.java +++ b/org.adempiere.base/src/org/eevolution/model/X_HR_Concept_Acct.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.model.*; /** Generated Model for HR_Concept_Acct - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_HR_Concept_Acct extends PO implements I_HR_Concept_Acct, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_HR_Concept_Acct (Properties ctx, int HR_Concept_Acct_ID, String trxName) @@ -74,9 +74,9 @@ public class X_HR_Concept_Acct extends PO implements I_HR_Concept_Acct, I_Persis return sb.toString(); } - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException { - return (I_C_AcctSchema)MTable.get(getCtx(), I_C_AcctSchema.Table_Name) + return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_Name) .getPO(getC_AcctSchema_ID(), get_TrxName()); } /** Set Accounting Schema. @@ -102,9 +102,9 @@ public class X_HR_Concept_Acct extends PO implements I_HR_Concept_Acct, I_Persis return ii.intValue(); } - public I_C_BP_Group getC_BP_Group() throws RuntimeException + public org.compiere.model.I_C_BP_Group getC_BP_Group() throws RuntimeException { - return (I_C_BP_Group)MTable.get(getCtx(), I_C_BP_Group.Table_Name) + return (org.compiere.model.I_C_BP_Group)MTable.get(getCtx(), org.compiere.model.I_C_BP_Group.Table_Name) .getPO(getC_BP_Group_ID(), get_TrxName()); } /** Set Business Partner Group. @@ -150,6 +150,20 @@ public class X_HR_Concept_Acct extends PO implements I_HR_Concept_Acct, I_Persis return ii.intValue(); } + /** Set HR_Concept_Acct_UU. + @param HR_Concept_Acct_UU HR_Concept_Acct_UU */ + public void setHR_Concept_Acct_UU (String HR_Concept_Acct_UU) + { + set_Value (COLUMNNAME_HR_Concept_Acct_UU, HR_Concept_Acct_UU); + } + + /** Get HR_Concept_Acct_UU. + @return HR_Concept_Acct_UU */ + public String getHR_Concept_Acct_UU () + { + return (String)get_Value(COLUMNNAME_HR_Concept_Acct_UU); + } + public org.eevolution.model.I_HR_Concept getHR_Concept() throws RuntimeException { return (org.eevolution.model.I_HR_Concept)MTable.get(getCtx(), org.eevolution.model.I_HR_Concept.Table_Name) @@ -243,9 +257,9 @@ public class X_HR_Concept_Acct extends PO implements I_HR_Concept_Acct, I_Persis return false; } - public I_C_ElementValue getUser1() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser1_ID(), get_TrxName()); } /** Set User List 1. diff --git a/org.adempiere.base/src/org/eevolution/model/X_HR_Concept_Category.java b/org.adempiere.base/src/org/eevolution/model/X_HR_Concept_Category.java index 1667989e98..3e65bfe72c 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_HR_Concept_Category.java +++ b/org.adempiere.base/src/org/eevolution/model/X_HR_Concept_Category.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Model for HR_Concept_Category - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_HR_Concept_Category extends PO implements I_HR_Concept_Category, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_HR_Concept_Category (Properties ctx, int HR_Concept_Category_ID, String trxName) @@ -131,6 +131,20 @@ public class X_HR_Concept_Category extends PO implements I_HR_Concept_Category, return ii.intValue(); } + /** Set HR_Concept_Category_UU. + @param HR_Concept_Category_UU HR_Concept_Category_UU */ + public void setHR_Concept_Category_UU (String HR_Concept_Category_UU) + { + set_Value (COLUMNNAME_HR_Concept_Category_UU, HR_Concept_Category_UU); + } + + /** Get HR_Concept_Category_UU. + @return HR_Concept_Category_UU */ + public String getHR_Concept_Category_UU () + { + return (String)get_Value(COLUMNNAME_HR_Concept_Category_UU); + } + /** Set Default. @param IsDefault Default value diff --git a/org.adempiere.base/src/org/eevolution/model/X_HR_Contract.java b/org.adempiere.base/src/org/eevolution/model/X_HR_Contract.java index e513ab75d9..4a311f3daa 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_HR_Contract.java +++ b/org.adempiere.base/src/org/eevolution/model/X_HR_Contract.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Model for HR_Contract - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_HR_Contract extends PO implements I_HR_Contract, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_HR_Contract (Properties ctx, int HR_Contract_ID, String trxName) @@ -73,9 +73,9 @@ public class X_HR_Contract extends PO implements I_HR_Contract, I_Persistent return sb.toString(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -101,9 +101,9 @@ public class X_HR_Contract extends PO implements I_HR_Contract, I_Persistent return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -129,9 +129,9 @@ public class X_HR_Contract extends PO implements I_HR_Contract, I_Persistent return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -194,6 +194,20 @@ public class X_HR_Contract extends PO implements I_HR_Contract, I_Persistent return ii.intValue(); } + /** Set HR_Contract_UU. + @param HR_Contract_UU HR_Contract_UU */ + public void setHR_Contract_UU (String HR_Contract_UU) + { + set_Value (COLUMNNAME_HR_Contract_UU, HR_Contract_UU); + } + + /** Get HR_Contract_UU. + @return HR_Contract_UU */ + public String getHR_Contract_UU () + { + return (String)get_Value(COLUMNNAME_HR_Contract_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/eevolution/model/X_HR_Department.java b/org.adempiere.base/src/org/eevolution/model/X_HR_Department.java index 67259cefbf..b44fafbb82 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_HR_Department.java +++ b/org.adempiere.base/src/org/eevolution/model/X_HR_Department.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Model for HR_Department - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_HR_Department extends PO implements I_HR_Department, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_HR_Department (Properties ctx, int HR_Department_ID, String trxName) @@ -72,9 +72,9 @@ public class X_HR_Department extends PO implements I_HR_Department, I_Persistent return sb.toString(); } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -137,6 +137,20 @@ public class X_HR_Department extends PO implements I_HR_Department, I_Persistent return ii.intValue(); } + /** Set HR_Department_UU. + @param HR_Department_UU HR_Department_UU */ + public void setHR_Department_UU (String HR_Department_UU) + { + set_Value (COLUMNNAME_HR_Department_UU, HR_Department_UU); + } + + /** Get HR_Department_UU. + @return HR_Department_UU */ + public String getHR_Department_UU () + { + return (String)get_Value(COLUMNNAME_HR_Department_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/eevolution/model/X_HR_Employee.java b/org.adempiere.base/src/org/eevolution/model/X_HR_Employee.java index 7747301743..ade5d34696 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_HR_Employee.java +++ b/org.adempiere.base/src/org/eevolution/model/X_HR_Employee.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Model for HR_Employee - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_HR_Employee extends PO implements I_HR_Employee, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_HR_Employee (Properties ctx, int HR_Employee_ID, String trxName) @@ -76,9 +76,9 @@ public class X_HR_Employee extends PO implements I_HR_Employee, I_Persistent return sb.toString(); } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -104,9 +104,9 @@ public class X_HR_Employee extends PO implements I_HR_Employee, I_Persistent return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -211,6 +211,20 @@ public class X_HR_Employee extends PO implements I_HR_Employee, I_Persistent return ii.intValue(); } + /** Set HR_Employee_UU. + @param HR_Employee_UU HR_Employee_UU */ + public void setHR_Employee_UU (String HR_Employee_UU) + { + set_Value (COLUMNNAME_HR_Employee_UU, HR_Employee_UU); + } + + /** Get HR_Employee_UU. + @return HR_Employee_UU */ + public String getHR_Employee_UU () + { + return (String)get_Value(COLUMNNAME_HR_Employee_UU); + } + public org.eevolution.model.I_HR_Job getHR_Job() throws RuntimeException { return (org.eevolution.model.I_HR_Job)MTable.get(getCtx(), org.eevolution.model.I_HR_Job.Table_Name) diff --git a/org.adempiere.base/src/org/eevolution/model/X_HR_Job.java b/org.adempiere.base/src/org/eevolution/model/X_HR_Job.java index ee7cb69d84..4be6bca99a 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_HR_Job.java +++ b/org.adempiere.base/src/org/eevolution/model/X_HR_Job.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Model for HR_Job - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_HR_Job extends PO implements I_HR_Job, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_HR_Job (Properties ctx, int HR_Job_ID, String trxName) @@ -134,6 +134,20 @@ public class X_HR_Job extends PO implements I_HR_Job, I_Persistent return ii.intValue(); } + /** Set HR_Job_UU. + @param HR_Job_UU HR_Job_UU */ + public void setHR_Job_UU (String HR_Job_UU) + { + set_Value (COLUMNNAME_HR_Job_UU, HR_Job_UU); + } + + /** Get HR_Job_UU. + @return HR_Job_UU */ + public String getHR_Job_UU () + { + return (String)get_Value(COLUMNNAME_HR_Job_UU); + } + /** Set Parent link column. @param IsParent This column is a link to the parent table (e.g. header from lines) - incl. Association key columns @@ -225,9 +239,9 @@ public class X_HR_Job extends PO implements I_HR_Job, I_Persistent return ii.intValue(); } - public I_AD_User getSupervisor() throws RuntimeException + public org.compiere.model.I_AD_User getSupervisor() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getSupervisor_ID(), get_TrxName()); } /** Set Supervisor. diff --git a/org.adempiere.base/src/org/eevolution/model/X_HR_List.java b/org.adempiere.base/src/org/eevolution/model/X_HR_List.java index f913f9798f..d38f790314 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_HR_List.java +++ b/org.adempiere.base/src/org/eevolution/model/X_HR_List.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Model for HR_List - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_HR_List extends PO implements I_HR_List, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_HR_List (Properties ctx, int HR_List_ID, String trxName) @@ -185,6 +185,20 @@ public class X_HR_List extends PO implements I_HR_List, I_Persistent return ii.intValue(); } + /** Set HR_List_UU. + @param HR_List_UU HR_List_UU */ + public void setHR_List_UU (String HR_List_UU) + { + set_Value (COLUMNNAME_HR_List_UU, HR_List_UU); + } + + /** Get HR_List_UU. + @return HR_List_UU */ + public String getHR_List_UU () + { + return (String)get_Value(COLUMNNAME_HR_List_UU); + } + public org.eevolution.model.I_HR_Payroll getHR_Payroll() throws RuntimeException { return (org.eevolution.model.I_HR_Payroll)MTable.get(getCtx(), org.eevolution.model.I_HR_Payroll.Table_Name) diff --git a/org.adempiere.base/src/org/eevolution/model/X_HR_ListLine.java b/org.adempiere.base/src/org/eevolution/model/X_HR_ListLine.java index e43ea7848f..3cf2adc79c 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_HR_ListLine.java +++ b/org.adempiere.base/src/org/eevolution/model/X_HR_ListLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for HR_ListLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_HR_ListLine extends PO implements I_HR_ListLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_HR_ListLine (Properties ctx, int HR_ListLine_ID, String trxName) @@ -231,6 +231,20 @@ public class X_HR_ListLine extends PO implements I_HR_ListLine, I_Persistent return ii.intValue(); } + /** Set HR_ListLine_UU. + @param HR_ListLine_UU HR_ListLine_UU */ + public void setHR_ListLine_UU (String HR_ListLine_UU) + { + set_Value (COLUMNNAME_HR_ListLine_UU, HR_ListLine_UU); + } + + /** Get HR_ListLine_UU. + @return HR_ListLine_UU */ + public String getHR_ListLine_UU () + { + return (String)get_Value(COLUMNNAME_HR_ListLine_UU); + } + public org.eevolution.model.I_HR_ListVersion getHR_ListVersion() throws RuntimeException { return (org.eevolution.model.I_HR_ListVersion)MTable.get(getCtx(), org.eevolution.model.I_HR_ListVersion.Table_Name) diff --git a/org.adempiere.base/src/org/eevolution/model/X_HR_ListType.java b/org.adempiere.base/src/org/eevolution/model/X_HR_ListType.java index ff55d07421..fa29194f6c 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_HR_ListType.java +++ b/org.adempiere.base/src/org/eevolution/model/X_HR_ListType.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Model for HR_ListType - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_HR_ListType extends PO implements I_HR_ListType, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_HR_ListType (Properties ctx, int HR_ListType_ID, String trxName) @@ -109,6 +109,20 @@ public class X_HR_ListType extends PO implements I_HR_ListType, I_Persistent return ii.intValue(); } + /** Set HR_ListType_UU. + @param HR_ListType_UU HR_ListType_UU */ + public void setHR_ListType_UU (String HR_ListType_UU) + { + set_Value (COLUMNNAME_HR_ListType_UU, HR_ListType_UU); + } + + /** Get HR_ListType_UU. + @return HR_ListType_UU */ + public String getHR_ListType_UU () + { + return (String)get_Value(COLUMNNAME_HR_ListType_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/eevolution/model/X_HR_ListVersion.java b/org.adempiere.base/src/org/eevolution/model/X_HR_ListVersion.java index 45d262acb7..f8e7234b6a 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_HR_ListVersion.java +++ b/org.adempiere.base/src/org/eevolution/model/X_HR_ListVersion.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Model for HR_ListVersion - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_HR_ListVersion extends PO implements I_HR_ListVersion, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_HR_ListVersion (Properties ctx, int HR_ListVersion_ID, String trxName) @@ -163,6 +163,20 @@ public class X_HR_ListVersion extends PO implements I_HR_ListVersion, I_Persiste return ii.intValue(); } + /** Set HR_ListVersion_UU. + @param HR_ListVersion_UU HR_ListVersion_UU */ + public void setHR_ListVersion_UU (String HR_ListVersion_UU) + { + set_Value (COLUMNNAME_HR_ListVersion_UU, HR_ListVersion_UU); + } + + /** Get HR_ListVersion_UU. + @return HR_ListVersion_UU */ + public String getHR_ListVersion_UU () + { + return (String)get_Value(COLUMNNAME_HR_ListVersion_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/eevolution/model/X_HR_Movement.java b/org.adempiere.base/src/org/eevolution/model/X_HR_Movement.java index 74c2128329..6b1772560f 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_HR_Movement.java +++ b/org.adempiere.base/src/org/eevolution/model/X_HR_Movement.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -26,15 +26,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for HR_Movement - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_HR_Movement extends PO implements I_HR_Movement, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_HR_Movement (Properties ctx, int HR_Movement_ID, String trxName) @@ -126,9 +126,9 @@ public class X_HR_Movement extends PO implements I_HR_Movement, I_Persistent return ii.intValue(); } - public I_AD_Rule getAD_Rule() throws RuntimeException + public org.compiere.model.I_AD_Rule getAD_Rule() throws RuntimeException { - return (I_AD_Rule)MTable.get(getCtx(), I_AD_Rule.Table_Name) + return (org.compiere.model.I_AD_Rule)MTable.get(getCtx(), org.compiere.model.I_AD_Rule.Table_Name) .getPO(getAD_Rule_ID(), get_TrxName()); } /** Set Rule. @@ -171,9 +171,9 @@ public class X_HR_Movement extends PO implements I_HR_Movement, I_Persistent return bd; } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -199,9 +199,9 @@ public class X_HR_Movement extends PO implements I_HR_Movement, I_Persistent return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -227,9 +227,9 @@ public class X_HR_Movement extends PO implements I_HR_Movement, I_Persistent return ii.intValue(); } - public I_C_BP_BankAccount getC_BP_BankAccount() throws RuntimeException + public org.compiere.model.I_C_BP_BankAccount getC_BP_BankAccount() throws RuntimeException { - return (I_C_BP_BankAccount)MTable.get(getCtx(), I_C_BP_BankAccount.Table_Name) + return (org.compiere.model.I_C_BP_BankAccount)MTable.get(getCtx(), org.compiere.model.I_C_BP_BankAccount.Table_Name) .getPO(getC_BP_BankAccount_ID(), get_TrxName()); } /** Set Partner Bank Account. @@ -255,9 +255,9 @@ public class X_HR_Movement extends PO implements I_HR_Movement, I_Persistent return ii.intValue(); } - public I_C_BP_Group getC_BP_Group() throws RuntimeException + public org.compiere.model.I_C_BP_Group getC_BP_Group() throws RuntimeException { - return (I_C_BP_Group)MTable.get(getCtx(), I_C_BP_Group.Table_Name) + return (org.compiere.model.I_C_BP_Group)MTable.get(getCtx(), org.compiere.model.I_C_BP_Group.Table_Name) .getPO(getC_BP_Group_ID(), get_TrxName()); } /** Set Business Partner Group. @@ -283,9 +283,9 @@ public class X_HR_Movement extends PO implements I_HR_Movement, I_Persistent return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -336,9 +336,9 @@ public class X_HR_Movement extends PO implements I_HR_Movement, I_Persistent return (String)get_Value(COLUMNNAME_ColumnType); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -364,9 +364,9 @@ public class X_HR_Movement extends PO implements I_HR_Movement, I_Persistent return ii.intValue(); } - public I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException + public org.compiere.model.I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException { - return (I_C_ProjectPhase)MTable.get(getCtx(), I_C_ProjectPhase.Table_Name) + return (org.compiere.model.I_C_ProjectPhase)MTable.get(getCtx(), org.compiere.model.I_C_ProjectPhase.Table_Name) .getPO(getC_ProjectPhase_ID(), get_TrxName()); } /** Set Project Phase. @@ -392,9 +392,9 @@ public class X_HR_Movement extends PO implements I_HR_Movement, I_Persistent return ii.intValue(); } - public I_C_ProjectTask getC_ProjectTask() throws RuntimeException + public org.compiere.model.I_C_ProjectTask getC_ProjectTask() throws RuntimeException { - return (I_C_ProjectTask)MTable.get(getCtx(), I_C_ProjectTask.Table_Name) + return (org.compiere.model.I_C_ProjectTask)MTable.get(getCtx(), org.compiere.model.I_C_ProjectTask.Table_Name) .getPO(getC_ProjectTask_ID(), get_TrxName()); } /** Set Project Task. @@ -557,6 +557,20 @@ public class X_HR_Movement extends PO implements I_HR_Movement, I_Persistent return ii.intValue(); } + /** Set HR_Movement_UU. + @param HR_Movement_UU HR_Movement_UU */ + public void setHR_Movement_UU (String HR_Movement_UU) + { + set_Value (COLUMNNAME_HR_Movement_UU, HR_Movement_UU); + } + + /** Get HR_Movement_UU. + @return HR_Movement_UU */ + public String getHR_Movement_UU () + { + return (String)get_Value(COLUMNNAME_HR_Movement_UU); + } + public org.eevolution.model.I_HR_Process getHR_Process() throws RuntimeException { return (org.eevolution.model.I_HR_Process)MTable.get(getCtx(), org.eevolution.model.I_HR_Process.Table_Name) @@ -741,9 +755,9 @@ public class X_HR_Movement extends PO implements I_HR_Movement, I_Persistent return (String)get_Value(COLUMNNAME_TextMsg); } - public I_C_ElementValue getUser1() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser1_ID(), get_TrxName()); } /** Set User List 1. @@ -769,9 +783,9 @@ public class X_HR_Movement extends PO implements I_HR_Movement, I_Persistent return ii.intValue(); } - public I_C_ElementValue getUser2() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser2_ID(), get_TrxName()); } /** Set User List 2. diff --git a/org.adempiere.base/src/org/eevolution/model/X_HR_Payroll.java b/org.adempiere.base/src/org/eevolution/model/X_HR_Payroll.java index 165d1335bd..d14ad600bf 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_HR_Payroll.java +++ b/org.adempiere.base/src/org/eevolution/model/X_HR_Payroll.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Model for HR_Payroll - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_HR_Payroll extends PO implements I_HR_Payroll, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_HR_Payroll (Properties ctx, int HR_Payroll_ID, String trxName) @@ -74,9 +74,9 @@ public class X_HR_Payroll extends PO implements I_HR_Payroll, I_Persistent return sb.toString(); } - public I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException + public org.compiere.model.I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException { - return (I_AD_PrintFormat)MTable.get(getCtx(), I_AD_PrintFormat.Table_Name) + return (org.compiere.model.I_AD_PrintFormat)MTable.get(getCtx(), org.compiere.model.I_AD_PrintFormat.Table_Name) .getPO(getAD_PrintFormat_ID(), get_TrxName()); } /** Set Print Format. @@ -102,9 +102,9 @@ public class X_HR_Payroll extends PO implements I_HR_Payroll, I_Persistent return ii.intValue(); } - public I_C_Charge getC_Charge() throws RuntimeException + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException { - return (I_C_Charge)MTable.get(getCtx(), I_C_Charge.Table_Name) + return (org.compiere.model.I_C_Charge)MTable.get(getCtx(), org.compiere.model.I_C_Charge.Table_Name) .getPO(getC_Charge_ID(), get_TrxName()); } /** Set Charge. @@ -192,6 +192,20 @@ public class X_HR_Payroll extends PO implements I_HR_Payroll, I_Persistent return ii.intValue(); } + /** Set HR_Payroll_UU. + @param HR_Payroll_UU HR_Payroll_UU */ + public void setHR_Payroll_UU (String HR_Payroll_UU) + { + set_Value (COLUMNNAME_HR_Payroll_UU, HR_Payroll_UU); + } + + /** Get HR_Payroll_UU. + @return HR_Payroll_UU */ + public String getHR_Payroll_UU () + { + return (String)get_Value(COLUMNNAME_HR_Payroll_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/eevolution/model/X_HR_PayrollConcept.java b/org.adempiere.base/src/org/eevolution/model/X_HR_PayrollConcept.java index 222cbd731b..db5bb9339e 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_HR_PayrollConcept.java +++ b/org.adempiere.base/src/org/eevolution/model/X_HR_PayrollConcept.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Model for HR_PayrollConcept - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_HR_PayrollConcept extends PO implements I_HR_PayrollConcept, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_HR_PayrollConcept (Properties ctx, int HR_PayrollConcept_ID, String trxName) @@ -75,9 +75,9 @@ public class X_HR_PayrollConcept extends PO implements I_HR_PayrollConcept, I_Pe return sb.toString(); } - public I_AD_Rule getAD_Rule() throws RuntimeException + public org.compiere.model.I_AD_Rule getAD_Rule() throws RuntimeException { - return (I_AD_Rule)MTable.get(getCtx(), I_AD_Rule.Table_Name) + return (org.compiere.model.I_AD_Rule)MTable.get(getCtx(), org.compiere.model.I_AD_Rule.Table_Name) .getPO(getAD_Rule_ID(), get_TrxName()); } /** Set Rule. @@ -145,6 +145,20 @@ public class X_HR_PayrollConcept extends PO implements I_HR_PayrollConcept, I_Pe return ii.intValue(); } + /** Set HR_PayrollConcept_UU. + @param HR_PayrollConcept_UU HR_PayrollConcept_UU */ + public void setHR_PayrollConcept_UU (String HR_PayrollConcept_UU) + { + set_Value (COLUMNNAME_HR_PayrollConcept_UU, HR_PayrollConcept_UU); + } + + /** Get HR_PayrollConcept_UU. + @return HR_PayrollConcept_UU */ + public String getHR_PayrollConcept_UU () + { + return (String)get_Value(COLUMNNAME_HR_PayrollConcept_UU); + } + public org.eevolution.model.I_HR_Payroll getHR_Payroll() throws RuntimeException { return (org.eevolution.model.I_HR_Payroll)MTable.get(getCtx(), org.eevolution.model.I_HR_Payroll.Table_Name) diff --git a/org.adempiere.base/src/org/eevolution/model/X_HR_Period.java b/org.adempiere.base/src/org/eevolution/model/X_HR_Period.java index 0d64cefeb3..e1326a16e5 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_HR_Period.java +++ b/org.adempiere.base/src/org/eevolution/model/X_HR_Period.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Model for HR_Period - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_HR_Period extends PO implements I_HR_Period, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_HR_Period (Properties ctx, int HR_Period_ID, String trxName) @@ -79,9 +79,9 @@ public class X_HR_Period extends PO implements I_HR_Period, I_Persistent return sb.toString(); } - public I_C_Period getC_Period() throws RuntimeException + public org.compiere.model.I_C_Period getC_Period() throws RuntimeException { - return (I_C_Period)MTable.get(getCtx(), I_C_Period.Table_Name) + return (org.compiere.model.I_C_Period)MTable.get(getCtx(), org.compiere.model.I_C_Period.Table_Name) .getPO(getC_Period_ID(), get_TrxName()); } /** Set Period. @@ -107,9 +107,9 @@ public class X_HR_Period extends PO implements I_HR_Period, I_Persistent return ii.intValue(); } - public I_C_Year getC_Year() throws RuntimeException + public org.compiere.model.I_C_Year getC_Year() throws RuntimeException { - return (I_C_Year)MTable.get(getCtx(), I_C_Year.Table_Name) + return (org.compiere.model.I_C_Year)MTable.get(getCtx(), org.compiere.model.I_C_Year.Table_Name) .getPO(getC_Year_ID(), get_TrxName()); } /** Set Year. @@ -231,6 +231,20 @@ public class X_HR_Period extends PO implements I_HR_Period, I_Persistent return ii.intValue(); } + /** Set HR_Period_UU. + @param HR_Period_UU HR_Period_UU */ + public void setHR_Period_UU (String HR_Period_UU) + { + set_Value (COLUMNNAME_HR_Period_UU, HR_Period_UU); + } + + /** Get HR_Period_UU. + @return HR_Period_UU */ + public String getHR_Period_UU () + { + return (String)get_Value(COLUMNNAME_HR_Period_UU); + } + public org.eevolution.model.I_HR_Year getHR_Year() throws RuntimeException { return (org.eevolution.model.I_HR_Year)MTable.get(getCtx(), org.eevolution.model.I_HR_Year.Table_Name) diff --git a/org.adempiere.base/src/org/eevolution/model/X_HR_Process.java b/org.adempiere.base/src/org/eevolution/model/X_HR_Process.java index d4b7195f6d..84fdd2de44 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_HR_Process.java +++ b/org.adempiere.base/src/org/eevolution/model/X_HR_Process.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -26,15 +26,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for HR_Process - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_HR_Process extends PO implements I_HR_Process, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_HR_Process (Properties ctx, int HR_Process_ID, String trxName) @@ -84,9 +84,9 @@ public class X_HR_Process extends PO implements I_HR_Process, I_Persistent return sb.toString(); } - public I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException + public org.compiere.model.I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException { - return (I_AD_PrintFormat)MTable.get(getCtx(), I_AD_PrintFormat.Table_Name) + return (org.compiere.model.I_AD_PrintFormat)MTable.get(getCtx(), org.compiere.model.I_AD_PrintFormat.Table_Name) .getPO(getAD_PrintFormat_ID(), get_TrxName()); } /** Set Print Format. @@ -112,9 +112,9 @@ public class X_HR_Process extends PO implements I_HR_Process, I_Persistent return ii.intValue(); } - public I_AD_Workflow getAD_Workflow() throws RuntimeException + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException { - return (I_AD_Workflow)MTable.get(getCtx(), I_AD_Workflow.Table_Name) + return (org.compiere.model.I_AD_Workflow)MTable.get(getCtx(), org.compiere.model.I_AD_Workflow.Table_Name) .getPO(getAD_Workflow_ID(), get_TrxName()); } /** Set Workflow. @@ -140,9 +140,9 @@ public class X_HR_Process extends PO implements I_HR_Process, I_Persistent return ii.intValue(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -168,9 +168,9 @@ public class X_HR_Process extends PO implements I_HR_Process, I_Persistent return ii.intValue(); } - public I_C_Charge getC_Charge() throws RuntimeException + public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException { - return (I_C_Charge)MTable.get(getCtx(), I_C_Charge.Table_Name) + return (org.compiere.model.I_C_Charge)MTable.get(getCtx(), org.compiere.model.I_C_Charge.Table_Name) .getPO(getC_Charge_ID(), get_TrxName()); } /** Set Charge. @@ -196,9 +196,9 @@ public class X_HR_Process extends PO implements I_HR_Process, I_Persistent return ii.intValue(); } - public I_C_DocType getC_DocType() throws RuntimeException + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocType_ID(), get_TrxName()); } /** Set Document Type. @@ -224,9 +224,9 @@ public class X_HR_Process extends PO implements I_HR_Process, I_Persistent return ii.intValue(); } - public I_C_DocType getC_DocTypeTarget() throws RuntimeException + public org.compiere.model.I_C_DocType getC_DocTypeTarget() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocTypeTarget_ID(), get_TrxName()); } /** Set Target Document Type. @@ -269,9 +269,9 @@ public class X_HR_Process extends PO implements I_HR_Process, I_Persistent return (String)get_Value(COLUMNNAME_ColumnSQL); } - public I_C_PaySelection getC_PaySelection() throws RuntimeException + public org.compiere.model.I_C_PaySelection getC_PaySelection() throws RuntimeException { - return (I_C_PaySelection)MTable.get(getCtx(), I_C_PaySelection.Table_Name) + return (org.compiere.model.I_C_PaySelection)MTable.get(getCtx(), org.compiere.model.I_C_PaySelection.Table_Name) .getPO(getC_PaySelection_ID(), get_TrxName()); } /** Set Payment Selection. @@ -568,6 +568,20 @@ public class X_HR_Process extends PO implements I_HR_Process, I_Persistent return ii.intValue(); } + /** Set HR_Process_UU. + @param HR_Process_UU HR_Process_UU */ + public void setHR_Process_UU (String HR_Process_UU) + { + set_Value (COLUMNNAME_HR_Process_UU, HR_Process_UU); + } + + /** Get HR_Process_UU. + @return HR_Process_UU */ + public String getHR_Process_UU () + { + return (String)get_Value(COLUMNNAME_HR_Process_UU); + } + /** Set Name. @param Name Alphanumeric identifier of the entity diff --git a/org.adempiere.base/src/org/eevolution/model/X_HR_Year.java b/org.adempiere.base/src/org/eevolution/model/X_HR_Year.java index e32af3bad4..d38333127d 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_HR_Year.java +++ b/org.adempiere.base/src/org/eevolution/model/X_HR_Year.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.model.*; /** Generated Model for HR_Year - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_HR_Year extends PO implements I_HR_Year, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_HR_Year (Properties ctx, int HR_Year_ID, String trxName) @@ -76,9 +76,9 @@ public class X_HR_Year extends PO implements I_HR_Year, I_Persistent return sb.toString(); } - public I_C_Year getC_Year() throws RuntimeException + public org.compiere.model.I_C_Year getC_Year() throws RuntimeException { - return (I_C_Year)MTable.get(getCtx(), I_C_Year.Table_Name) + return (org.compiere.model.I_C_Year)MTable.get(getCtx(), org.compiere.model.I_C_Year.Table_Name) .getPO(getC_Year_ID(), get_TrxName()); } /** Set Year. @@ -149,6 +149,20 @@ public class X_HR_Year extends PO implements I_HR_Year, I_Persistent return ii.intValue(); } + /** Set HR_Year_UU. + @param HR_Year_UU HR_Year_UU */ + public void setHR_Year_UU (String HR_Year_UU) + { + set_Value (COLUMNNAME_HR_Year_UU, HR_Year_UU); + } + + /** Get HR_Year_UU. + @return HR_Year_UU */ + public String getHR_Year_UU () + { + return (String)get_Value(COLUMNNAME_HR_Year_UU); + } + /** Set Net Days. @param NetDays Net Days in which payment is due diff --git a/org.adempiere.base/src/org/eevolution/model/X_I_HR_Movement.java b/org.adempiere.base/src/org/eevolution/model/X_I_HR_Movement.java index 88c741fa0d..d368820dd6 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_I_HR_Movement.java +++ b/org.adempiere.base/src/org/eevolution/model/X_I_HR_Movement.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -26,15 +26,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for I_HR_Movement - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_I_HR_Movement extends PO implements I_I_HR_Movement, I_Persistent { /** * */ - private static final long serialVersionUID = 20101013L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_I_HR_Movement (Properties ctx, int I_HR_Movement_ID, String trxName) @@ -295,6 +295,20 @@ public class X_I_HR_Movement extends PO implements I_I_HR_Movement, I_Persistent return ii.intValue(); } + /** Set I_HR_Movement_UU. + @param I_HR_Movement_UU I_HR_Movement_UU */ + public void setI_HR_Movement_UU (String I_HR_Movement_UU) + { + set_Value (COLUMNNAME_I_HR_Movement_UU, I_HR_Movement_UU); + } + + /** Get I_HR_Movement_UU. + @return I_HR_Movement_UU */ + public String getI_HR_Movement_UU () + { + return (String)get_Value(COLUMNNAME_I_HR_Movement_UU); + } + /** Set Imported. @param I_IsImported Has this import been processed diff --git a/org.adempiere.base/src/org/eevolution/model/X_I_Movement.java b/org.adempiere.base/src/org/eevolution/model/X_I_Movement.java index c2d6a018f0..a0d1a47b78 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_I_Movement.java +++ b/org.adempiere.base/src/org/eevolution/model/X_I_Movement.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.model.*; import org.compiere.util.Env; /** Generated Model for I_Movement - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_I_Movement extends PO implements I_I_Movement, I_Persistent { /** * */ - private static final long serialVersionUID = 20100620L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_I_Movement (Properties ctx, int I_Movement_ID, String trxName) @@ -42,8 +42,10 @@ public class X_I_Movement extends PO implements I_I_Movement, I_Persistent /** if (I_Movement_ID == 0) { setI_IsImported (false); +// N setI_Movement_ID (0); setProcessed (false); +// N setProcessing (false); } */ } @@ -76,9 +78,9 @@ public class X_I_Movement extends PO implements I_I_Movement, I_Persistent return sb.toString(); } - public I_AD_Org getAD_OrgTrx() throws RuntimeException + public org.compiere.model.I_AD_Org getAD_OrgTrx() throws RuntimeException { - return (I_AD_Org)MTable.get(getCtx(), I_AD_Org.Table_Name) + return (org.compiere.model.I_AD_Org)MTable.get(getCtx(), org.compiere.model.I_AD_Org.Table_Name) .getPO(getAD_OrgTrx_ID(), get_TrxName()); } /** Set Trx Organization. @@ -104,12 +106,12 @@ public class X_I_Movement extends PO implements I_I_Movement, I_Persistent return ii.intValue(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } - /** Set Usuario. + /** Set User/Contact. @param AD_User_ID User within the system - Internal or Business Partner Contact */ @@ -121,7 +123,7 @@ public class X_I_Movement extends PO implements I_I_Movement, I_Persistent set_Value (COLUMNNAME_AD_User_ID, Integer.valueOf(AD_User_ID)); } - /** Get Usuario. + /** Get User/Contact. @return User within the system - Internal or Business Partner Contact */ public int getAD_User_ID () @@ -149,9 +151,23 @@ public class X_I_Movement extends PO implements I_I_Movement, I_Persistent return (String)get_Value(COLUMNNAME_BPartnerValue); } - public I_C_BPartner getC_BPartner() throws RuntimeException + /** Set CampaignValue. + @param CampaignValue CampaignValue */ + public void setCampaignValue (String CampaignValue) + { + set_Value (COLUMNNAME_CampaignValue, CampaignValue); + } + + /** Get CampaignValue. + @return CampaignValue */ + public String getCampaignValue () + { + return (String)get_Value(COLUMNNAME_CampaignValue); + } + + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -177,9 +193,9 @@ public class X_I_Movement extends PO implements I_I_Movement, I_Persistent return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -205,9 +221,9 @@ public class X_I_Movement extends PO implements I_I_Movement, I_Persistent return ii.intValue(); } - public I_C_DocType getC_DocType() throws RuntimeException + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocType_ID(), get_TrxName()); } /** Set Document Type. @@ -233,9 +249,9 @@ public class X_I_Movement extends PO implements I_I_Movement, I_Persistent return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -261,20 +277,6 @@ public class X_I_Movement extends PO implements I_I_Movement, I_Persistent return ii.intValue(); } - /** Set CampaignValue. - @param CampaignValue CampaignValue */ - public void setCampaignValue (String CampaignValue) - { - set_Value (COLUMNNAME_CampaignValue, CampaignValue); - } - - /** Get CampaignValue. - @return CampaignValue */ - public String getCampaignValue () - { - return (String)get_Value(COLUMNNAME_CampaignValue); - } - /** Set Delivery Rule. @param DeliveryRule Defines the timing of Delivery @@ -421,6 +423,20 @@ public class X_I_Movement extends PO implements I_I_Movement, I_Persistent return ii.intValue(); } + /** Set I_Movement_UU. + @param I_Movement_UU I_Movement_UU */ + public void setI_Movement_UU (String I_Movement_UU) + { + set_Value (COLUMNNAME_I_Movement_UU, I_Movement_UU); + } + + /** Get I_Movement_UU. + @return I_Movement_UU */ + public String getI_Movement_UU () + { + return (String)get_Value(COLUMNNAME_I_Movement_UU); + } + /** Set Locator To Key. @param LocatorToValue Locator To Key */ public void setLocatorToValue (String LocatorToValue) @@ -452,34 +468,6 @@ public class X_I_Movement extends PO implements I_I_Movement, I_Persistent return (String)get_Value(COLUMNNAME_LocatorValue); } - public I_M_Locator getM_LocatorTo() throws RuntimeException - { - return (I_M_Locator)MTable.get(getCtx(), I_M_Locator.Table_Name) - .getPO(getM_LocatorTo_ID(), get_TrxName()); } - - /** Set Locator To. - @param M_LocatorTo_ID - Location inventory is moved to - */ - public void setM_LocatorTo_ID (int M_LocatorTo_ID) - { - if (M_LocatorTo_ID < 1) - set_Value (COLUMNNAME_M_LocatorTo_ID, null); - else - set_Value (COLUMNNAME_M_LocatorTo_ID, Integer.valueOf(M_LocatorTo_ID)); - } - - /** Get Locator To. - @return Location inventory is moved to - */ - public int getM_LocatorTo_ID () - { - Integer ii = (Integer)get_Value(COLUMNNAME_M_LocatorTo_ID); - if (ii == null) - return 0; - return ii.intValue(); - } - public I_M_Locator getM_Locator() throws RuntimeException { return (I_M_Locator)MTable.get(getCtx(), I_M_Locator.Table_Name) @@ -508,37 +496,37 @@ public class X_I_Movement extends PO implements I_I_Movement, I_Persistent return ii.intValue(); } - public I_M_MovementLine getM_MovementLine() throws RuntimeException + public I_M_Locator getM_LocatorTo() throws RuntimeException { - return (I_M_MovementLine)MTable.get(getCtx(), I_M_MovementLine.Table_Name) - .getPO(getM_MovementLine_ID(), get_TrxName()); } + return (I_M_Locator)MTable.get(getCtx(), I_M_Locator.Table_Name) + .getPO(getM_LocatorTo_ID(), get_TrxName()); } - /** Set Move Line. - @param M_MovementLine_ID - Inventory Move document Line + /** Set Locator To. + @param M_LocatorTo_ID + Location inventory is moved to */ - public void setM_MovementLine_ID (int M_MovementLine_ID) + public void setM_LocatorTo_ID (int M_LocatorTo_ID) { - if (M_MovementLine_ID < 1) - set_Value (COLUMNNAME_M_MovementLine_ID, null); + if (M_LocatorTo_ID < 1) + set_Value (COLUMNNAME_M_LocatorTo_ID, null); else - set_Value (COLUMNNAME_M_MovementLine_ID, Integer.valueOf(M_MovementLine_ID)); + set_Value (COLUMNNAME_M_LocatorTo_ID, Integer.valueOf(M_LocatorTo_ID)); } - /** Get Move Line. - @return Inventory Move document Line + /** Get Locator To. + @return Location inventory is moved to */ - public int getM_MovementLine_ID () + public int getM_LocatorTo_ID () { - Integer ii = (Integer)get_Value(COLUMNNAME_M_MovementLine_ID); + Integer ii = (Integer)get_Value(COLUMNNAME_M_LocatorTo_ID); if (ii == null) return 0; return ii.intValue(); } - public I_M_Movement getM_Movement() throws RuntimeException + public org.compiere.model.I_M_Movement getM_Movement() throws RuntimeException { - return (I_M_Movement)MTable.get(getCtx(), I_M_Movement.Table_Name) + return (org.compiere.model.I_M_Movement)MTable.get(getCtx(), org.compiere.model.I_M_Movement.Table_Name) .getPO(getM_Movement_ID(), get_TrxName()); } /** Set Inventory Move. @@ -564,57 +552,29 @@ public class X_I_Movement extends PO implements I_I_Movement, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_MovementLine getM_MovementLine() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) - .getPO(getM_Product_ID(), get_TrxName()); } + return (org.compiere.model.I_M_MovementLine)MTable.get(getCtx(), org.compiere.model.I_M_MovementLine.Table_Name) + .getPO(getM_MovementLine_ID(), get_TrxName()); } - /** Set Product. - @param M_Product_ID - Product, Service, Item + /** Set Move Line. + @param M_MovementLine_ID + Inventory Move document Line */ - public void setM_Product_ID (int M_Product_ID) + public void setM_MovementLine_ID (int M_MovementLine_ID) { - if (M_Product_ID < 1) - set_Value (COLUMNNAME_M_Product_ID, null); + if (M_MovementLine_ID < 1) + set_Value (COLUMNNAME_M_MovementLine_ID, null); else - set_Value (COLUMNNAME_M_Product_ID, Integer.valueOf(M_Product_ID)); + set_Value (COLUMNNAME_M_MovementLine_ID, Integer.valueOf(M_MovementLine_ID)); } - /** Get Product. - @return Product, Service, Item + /** Get Move Line. + @return Inventory Move document Line */ - public int getM_Product_ID () + public int getM_MovementLine_ID () { - Integer ii = (Integer)get_Value(COLUMNNAME_M_Product_ID); - if (ii == null) - return 0; - return ii.intValue(); - } - - public I_M_Shipper getM_Shipper() throws RuntimeException - { - return (I_M_Shipper)MTable.get(getCtx(), I_M_Shipper.Table_Name) - .getPO(getM_Shipper_ID(), get_TrxName()); } - - /** Set Shipper. - @param M_Shipper_ID - Method or manner of product delivery - */ - public void setM_Shipper_ID (int M_Shipper_ID) - { - if (M_Shipper_ID < 1) - set_Value (COLUMNNAME_M_Shipper_ID, null); - else - set_Value (COLUMNNAME_M_Shipper_ID, Integer.valueOf(M_Shipper_ID)); - } - - /** Get Shipper. - @return Method or manner of product delivery - */ - public int getM_Shipper_ID () - { - Integer ii = (Integer)get_Value(COLUMNNAME_M_Shipper_ID); + Integer ii = (Integer)get_Value(COLUMNNAME_M_MovementLine_ID); if (ii == null) return 0; return ii.intValue(); @@ -657,6 +617,62 @@ public class X_I_Movement extends PO implements I_I_Movement, I_Persistent return bd; } + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException + { + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) + .getPO(getM_Product_ID(), get_TrxName()); } + + /** Set Product. + @param M_Product_ID + Product, Service, Item + */ + public void setM_Product_ID (int M_Product_ID) + { + if (M_Product_ID < 1) + set_Value (COLUMNNAME_M_Product_ID, null); + else + set_Value (COLUMNNAME_M_Product_ID, Integer.valueOf(M_Product_ID)); + } + + /** Get Product. + @return Product, Service, Item + */ + public int getM_Product_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_M_Product_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + + public org.compiere.model.I_M_Shipper getM_Shipper() throws RuntimeException + { + return (org.compiere.model.I_M_Shipper)MTable.get(getCtx(), org.compiere.model.I_M_Shipper.Table_Name) + .getPO(getM_Shipper_ID(), get_TrxName()); } + + /** Set Shipper. + @param M_Shipper_ID + Method or manner of product delivery + */ + public void setM_Shipper_ID (int M_Shipper_ID) + { + if (M_Shipper_ID < 1) + set_Value (COLUMNNAME_M_Shipper_ID, null); + else + set_Value (COLUMNNAME_M_Shipper_ID, Integer.valueOf(M_Shipper_ID)); + } + + /** Get Shipper. + @return Method or manner of product delivery + */ + public int getM_Shipper_ID () + { + Integer ii = (Integer)get_Value(COLUMNNAME_M_Shipper_ID); + if (ii == null) + return 0; + return ii.intValue(); + } + /** Set Trx Org Key. @param OrgTrxValue Key of the Transaction Organization diff --git a/org.adempiere.base/src/org/eevolution/model/X_I_ProductPlanning.java b/org.adempiere.base/src/org/eevolution/model/X_I_ProductPlanning.java index 65f858b11f..2031a23413 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_I_ProductPlanning.java +++ b/org.adempiere.base/src/org/eevolution/model/X_I_ProductPlanning.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.model.*; import org.compiere.util.Env; /** Generated Model for I_ProductPlanning - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_I_ProductPlanning extends PO implements I_I_ProductPlanning, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_I_ProductPlanning (Properties ctx, int I_ProductPlanning_ID, String trxName) @@ -117,9 +117,9 @@ public class X_I_ProductPlanning extends PO implements I_I_ProductPlanning, I_Pe return (String)get_Value(COLUMNNAME_BPartner_Value); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -280,6 +280,20 @@ public class X_I_ProductPlanning extends PO implements I_I_ProductPlanning, I_Pe return ii.intValue(); } + /** Set I_ProductPlanning_UU. + @param I_ProductPlanning_UU I_ProductPlanning_UU */ + public void setI_ProductPlanning_UU (String I_ProductPlanning_UU) + { + set_Value (COLUMNNAME_I_ProductPlanning_UU, I_ProductPlanning_UU); + } + + /** Get I_ProductPlanning_UU. + @return I_ProductPlanning_UU */ + public String getI_ProductPlanning_UU () + { + return (String)get_Value(COLUMNNAME_I_ProductPlanning_UU); + } + /** Set Create Plan. @param IsCreatePlan Indicates whether planned orders will be generated by MRP @@ -349,9 +363,9 @@ public class X_I_ProductPlanning extends PO implements I_I_ProductPlanning, I_Pe return false; } - public I_M_Forecast getM_Forecast() throws RuntimeException + public org.compiere.model.I_M_Forecast getM_Forecast() throws RuntimeException { - return (I_M_Forecast)MTable.get(getCtx(), I_M_Forecast.Table_Name) + return (org.compiere.model.I_M_Forecast)MTable.get(getCtx(), org.compiere.model.I_M_Forecast.Table_Name) .getPO(getM_Forecast_ID(), get_TrxName()); } /** Set Forecast. @@ -377,9 +391,9 @@ public class X_I_ProductPlanning extends PO implements I_I_ProductPlanning, I_Pe return ii.intValue(); } - public I_M_ForecastLine getM_ForecastLine() throws RuntimeException + public org.compiere.model.I_M_ForecastLine getM_ForecastLine() throws RuntimeException { - return (I_M_ForecastLine)MTable.get(getCtx(), I_M_ForecastLine.Table_Name) + return (org.compiere.model.I_M_ForecastLine)MTable.get(getCtx(), org.compiere.model.I_M_ForecastLine.Table_Name) .getPO(getM_ForecastLine_ID(), get_TrxName()); } /** Set Forecast Line. @@ -405,9 +419,9 @@ public class X_I_ProductPlanning extends PO implements I_I_ProductPlanning, I_Pe return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -433,9 +447,9 @@ public class X_I_ProductPlanning extends PO implements I_I_ProductPlanning, I_Pe return ii.intValue(); } - public I_M_Warehouse getM_Warehouse() throws RuntimeException + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_Warehouse_ID(), get_TrxName()); } /** Set Warehouse. @@ -612,9 +626,9 @@ public class X_I_ProductPlanning extends PO implements I_I_ProductPlanning, I_Pe return (String)get_Value(COLUMNNAME_OrgValue); } - public I_AD_User getPlanner() throws RuntimeException + public org.compiere.model.I_AD_User getPlanner() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getPlanner_ID(), get_TrxName()); } /** Set Planner. @@ -866,9 +880,9 @@ public class X_I_ProductPlanning extends PO implements I_I_ProductPlanning, I_Pe return ii.intValue(); } - public I_S_Resource getS_Resource() throws RuntimeException + public org.compiere.model.I_S_Resource getS_Resource() throws RuntimeException { - return (I_S_Resource)MTable.get(getCtx(), I_S_Resource.Table_Name) + return (org.compiere.model.I_S_Resource)MTable.get(getCtx(), org.compiere.model.I_S_Resource.Table_Name) .getPO(getS_Resource_ID(), get_TrxName()); } /** Set Resource. diff --git a/org.adempiere.base/src/org/eevolution/model/X_PP_Cost_Collector.java b/org.adempiere.base/src/org/eevolution/model/X_PP_Cost_Collector.java index 8f9f4d3d49..8f7754afb5 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_PP_Cost_Collector.java +++ b/org.adempiere.base/src/org/eevolution/model/X_PP_Cost_Collector.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -26,15 +26,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for PP_Cost_Collector - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PP_Cost_Collector extends PO implements I_PP_Cost_Collector, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PP_Cost_Collector (Properties ctx, int PP_Cost_Collector_ID, String trxName) @@ -114,9 +114,9 @@ public class X_PP_Cost_Collector extends PO implements I_PP_Cost_Collector, I_Pe return ii.intValue(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -142,9 +142,9 @@ public class X_PP_Cost_Collector extends PO implements I_PP_Cost_Collector, I_Pe return ii.intValue(); } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -170,9 +170,9 @@ public class X_PP_Cost_Collector extends PO implements I_PP_Cost_Collector, I_Pe return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -198,9 +198,9 @@ public class X_PP_Cost_Collector extends PO implements I_PP_Cost_Collector, I_Pe return ii.intValue(); } - public I_C_DocType getC_DocType() throws RuntimeException + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocType_ID(), get_TrxName()); } /** Set Document Type. @@ -226,9 +226,9 @@ public class X_PP_Cost_Collector extends PO implements I_PP_Cost_Collector, I_Pe return ii.intValue(); } - public I_C_DocType getC_DocTypeTarget() throws RuntimeException + public org.compiere.model.I_C_DocType getC_DocTypeTarget() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocTypeTarget_ID(), get_TrxName()); } /** Set Target Document Type. @@ -288,9 +288,9 @@ public class X_PP_Cost_Collector extends PO implements I_PP_Cost_Collector, I_Pe return (String)get_Value(COLUMNNAME_CostCollectorType); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -316,9 +316,9 @@ public class X_PP_Cost_Collector extends PO implements I_PP_Cost_Collector, I_Pe return ii.intValue(); } - public I_C_UOM getC_UOM() throws RuntimeException + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_ID(), get_TrxName()); } /** Set UOM. @@ -639,9 +639,9 @@ public class X_PP_Cost_Collector extends PO implements I_PP_Cost_Collector, I_Pe return bd; } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -675,9 +675,9 @@ public class X_PP_Cost_Collector extends PO implements I_PP_Cost_Collector, I_Pe return new KeyNamePair(get_ID(), String.valueOf(getM_Product_ID())); } - public I_M_Warehouse getM_Warehouse() throws RuntimeException + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_Warehouse_ID(), get_TrxName()); } /** Set Warehouse. @@ -747,6 +747,20 @@ public class X_PP_Cost_Collector extends PO implements I_PP_Cost_Collector, I_Pe return ii.intValue(); } + /** Set PP_Cost_Collector_UU. + @param PP_Cost_Collector_UU PP_Cost_Collector_UU */ + public void setPP_Cost_Collector_UU (String PP_Cost_Collector_UU) + { + set_Value (COLUMNNAME_PP_Cost_Collector_UU, PP_Cost_Collector_UU); + } + + /** Get PP_Cost_Collector_UU. + @return PP_Cost_Collector_UU */ + public String getPP_Cost_Collector_UU () + { + return (String)get_Value(COLUMNNAME_PP_Cost_Collector_UU); + } + public org.eevolution.model.I_PP_Order_BOMLine getPP_Order_BOMLine() throws RuntimeException { return (org.eevolution.model.I_PP_Order_BOMLine)MTable.get(getCtx(), org.eevolution.model.I_PP_Order_BOMLine.Table_Name) @@ -1000,9 +1014,9 @@ public class X_PP_Cost_Collector extends PO implements I_PP_Cost_Collector, I_Pe return bd; } - public I_S_Resource getS_Resource() throws RuntimeException + public org.compiere.model.I_S_Resource getS_Resource() throws RuntimeException { - return (I_S_Resource)MTable.get(getCtx(), I_S_Resource.Table_Name) + return (org.compiere.model.I_S_Resource)MTable.get(getCtx(), org.compiere.model.I_S_Resource.Table_Name) .getPO(getS_Resource_ID(), get_TrxName()); } /** Set Resource. @@ -1028,9 +1042,9 @@ public class X_PP_Cost_Collector extends PO implements I_PP_Cost_Collector, I_Pe return ii.intValue(); } - public I_AD_User getUser1() throws RuntimeException + public org.compiere.model.I_AD_User getUser1() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getUser1_ID(), get_TrxName()); } /** Set User List 1. @@ -1056,9 +1070,9 @@ public class X_PP_Cost_Collector extends PO implements I_PP_Cost_Collector, I_Pe return ii.intValue(); } - public I_AD_User getUser2() throws RuntimeException + public org.compiere.model.I_AD_User getUser2() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getUser2_ID(), get_TrxName()); } /** Set User List 2. diff --git a/org.adempiere.base/src/org/eevolution/model/X_PP_Cost_CollectorMA.java b/org.adempiere.base/src/org/eevolution/model/X_PP_Cost_CollectorMA.java index fa5731af55..edc3a9afad 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_PP_Cost_CollectorMA.java +++ b/org.adempiere.base/src/org/eevolution/model/X_PP_Cost_CollectorMA.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.model.*; import org.compiere.util.Env; /** Generated Model for PP_Cost_CollectorMA - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PP_Cost_CollectorMA extends PO implements I_PP_Cost_CollectorMA, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PP_Cost_CollectorMA (Properties ctx, int PP_Cost_CollectorMA_ID, String trxName) @@ -167,4 +167,18 @@ public class X_PP_Cost_CollectorMA extends PO implements I_PP_Cost_CollectorMA, return 0; return ii.intValue(); } + + /** Set PP_Cost_CollectorMA_UU. + @param PP_Cost_CollectorMA_UU PP_Cost_CollectorMA_UU */ + public void setPP_Cost_CollectorMA_UU (String PP_Cost_CollectorMA_UU) + { + set_Value (COLUMNNAME_PP_Cost_CollectorMA_UU, PP_Cost_CollectorMA_UU); + } + + /** Get PP_Cost_CollectorMA_UU. + @return PP_Cost_CollectorMA_UU */ + public String getPP_Cost_CollectorMA_UU () + { + return (String)get_Value(COLUMNNAME_PP_Cost_CollectorMA_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/eevolution/model/X_PP_MRP.java b/org.adempiere.base/src/org/eevolution/model/X_PP_MRP.java index 1b97435c76..461478e10a 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_PP_MRP.java +++ b/org.adempiere.base/src/org/eevolution/model/X_PP_MRP.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -26,15 +26,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for PP_MRP - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PP_MRP extends PO implements I_PP_MRP, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PP_MRP (Properties ctx, int PP_MRP_ID, String trxName) @@ -78,9 +78,9 @@ public class X_PP_MRP extends PO implements I_PP_MRP, I_Persistent return sb.toString(); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -106,9 +106,9 @@ public class X_PP_MRP extends PO implements I_PP_MRP, I_Persistent return ii.intValue(); } - public I_C_Order getC_Order() throws RuntimeException + public org.compiere.model.I_C_Order getC_Order() throws RuntimeException { - return (I_C_Order)MTable.get(getCtx(), I_C_Order.Table_Name) + return (org.compiere.model.I_C_Order)MTable.get(getCtx(), org.compiere.model.I_C_Order.Table_Name) .getPO(getC_Order_ID(), get_TrxName()); } /** Set Order. @@ -134,9 +134,9 @@ public class X_PP_MRP extends PO implements I_PP_MRP, I_Persistent return ii.intValue(); } - public I_C_OrderLine getC_OrderLine() throws RuntimeException + public org.compiere.model.I_C_OrderLine getC_OrderLine() throws RuntimeException { - return (I_C_OrderLine)MTable.get(getCtx(), I_C_OrderLine.Table_Name) + return (org.compiere.model.I_C_OrderLine)MTable.get(getCtx(), org.compiere.model.I_C_OrderLine.Table_Name) .getPO(getC_OrderLine_ID(), get_TrxName()); } /** Set Sales Order Line. @@ -416,9 +416,9 @@ public class X_PP_MRP extends PO implements I_PP_MRP, I_Persistent return false; } - public I_M_Forecast getM_Forecast() throws RuntimeException + public org.compiere.model.I_M_Forecast getM_Forecast() throws RuntimeException { - return (I_M_Forecast)MTable.get(getCtx(), I_M_Forecast.Table_Name) + return (org.compiere.model.I_M_Forecast)MTable.get(getCtx(), org.compiere.model.I_M_Forecast.Table_Name) .getPO(getM_Forecast_ID(), get_TrxName()); } /** Set Forecast. @@ -444,9 +444,9 @@ public class X_PP_MRP extends PO implements I_PP_MRP, I_Persistent return ii.intValue(); } - public I_M_ForecastLine getM_ForecastLine() throws RuntimeException + public org.compiere.model.I_M_ForecastLine getM_ForecastLine() throws RuntimeException { - return (I_M_ForecastLine)MTable.get(getCtx(), I_M_ForecastLine.Table_Name) + return (org.compiere.model.I_M_ForecastLine)MTable.get(getCtx(), org.compiere.model.I_M_ForecastLine.Table_Name) .getPO(getM_ForecastLine_ID(), get_TrxName()); } /** Set Forecast Line. @@ -472,9 +472,9 @@ public class X_PP_MRP extends PO implements I_PP_MRP, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -500,9 +500,9 @@ public class X_PP_MRP extends PO implements I_PP_MRP, I_Persistent return ii.intValue(); } - public I_M_Requisition getM_Requisition() throws RuntimeException + public org.compiere.model.I_M_Requisition getM_Requisition() throws RuntimeException { - return (I_M_Requisition)MTable.get(getCtx(), I_M_Requisition.Table_Name) + return (org.compiere.model.I_M_Requisition)MTable.get(getCtx(), org.compiere.model.I_M_Requisition.Table_Name) .getPO(getM_Requisition_ID(), get_TrxName()); } /** Set Requisition. @@ -528,9 +528,9 @@ public class X_PP_MRP extends PO implements I_PP_MRP, I_Persistent return ii.intValue(); } - public I_M_RequisitionLine getM_RequisitionLine() throws RuntimeException + public org.compiere.model.I_M_RequisitionLine getM_RequisitionLine() throws RuntimeException { - return (I_M_RequisitionLine)MTable.get(getCtx(), I_M_RequisitionLine.Table_Name) + return (org.compiere.model.I_M_RequisitionLine)MTable.get(getCtx(), org.compiere.model.I_M_RequisitionLine.Table_Name) .getPO(getM_RequisitionLine_ID(), get_TrxName()); } /** Set Requisition Line. @@ -556,9 +556,9 @@ public class X_PP_MRP extends PO implements I_PP_MRP, I_Persistent return ii.intValue(); } - public I_M_Warehouse getM_Warehouse() throws RuntimeException + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_Warehouse_ID(), get_TrxName()); } /** Set Warehouse. @@ -643,9 +643,9 @@ public class X_PP_MRP extends PO implements I_PP_MRP, I_Persistent return (String)get_Value(COLUMNNAME_OrderType); } - public I_AD_User getPlanner() throws RuntimeException + public org.compiere.model.I_AD_User getPlanner() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getPlanner_ID(), get_TrxName()); } /** Set Planner. @@ -691,6 +691,20 @@ public class X_PP_MRP extends PO implements I_PP_MRP, I_Persistent return ii.intValue(); } + /** Set PP_MRP_UU. + @param PP_MRP_UU PP_MRP_UU */ + public void setPP_MRP_UU (String PP_MRP_UU) + { + set_Value (COLUMNNAME_PP_MRP_UU, PP_MRP_UU); + } + + /** Get PP_MRP_UU. + @return PP_MRP_UU */ + public String getPP_MRP_UU () + { + return (String)get_Value(COLUMNNAME_PP_MRP_UU); + } + public org.eevolution.model.I_PP_Order_BOMLine getPP_Order_BOMLine() throws RuntimeException { return (org.eevolution.model.I_PP_Order_BOMLine)MTable.get(getCtx(), org.eevolution.model.I_PP_Order_BOMLine.Table_Name) @@ -781,9 +795,9 @@ public class X_PP_MRP extends PO implements I_PP_MRP, I_Persistent return bd; } - public I_S_Resource getS_Resource() throws RuntimeException + public org.compiere.model.I_S_Resource getS_Resource() throws RuntimeException { - return (I_S_Resource)MTable.get(getCtx(), I_S_Resource.Table_Name) + return (org.compiere.model.I_S_Resource)MTable.get(getCtx(), org.compiere.model.I_S_Resource.Table_Name) .getPO(getS_Resource_ID(), get_TrxName()); } /** Set Resource. diff --git a/org.adempiere.base/src/org/eevolution/model/X_PP_Order.java b/org.adempiere.base/src/org/eevolution/model/X_PP_Order.java index 0b0bcf7bce..2e72c77f59 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_PP_Order.java +++ b/org.adempiere.base/src/org/eevolution/model/X_PP_Order.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -26,15 +26,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for PP_Order - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PP_Order extends PO implements I_PP_Order, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PP_Order (Properties ctx, int PP_Order_ID, String trxName) @@ -138,9 +138,9 @@ public class X_PP_Order extends PO implements I_PP_Order, I_Persistent return ii.intValue(); } - public I_AD_Workflow getAD_Workflow() throws RuntimeException + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException { - return (I_AD_Workflow)MTable.get(getCtx(), I_AD_Workflow.Table_Name) + return (org.compiere.model.I_AD_Workflow)MTable.get(getCtx(), org.compiere.model.I_AD_Workflow.Table_Name) .getPO(getAD_Workflow_ID(), get_TrxName()); } /** Set Workflow. @@ -186,9 +186,9 @@ public class X_PP_Order extends PO implements I_PP_Order, I_Persistent return bd; } - public I_C_Activity getC_Activity() throws RuntimeException + public org.compiere.model.I_C_Activity getC_Activity() throws RuntimeException { - return (I_C_Activity)MTable.get(getCtx(), I_C_Activity.Table_Name) + return (org.compiere.model.I_C_Activity)MTable.get(getCtx(), org.compiere.model.I_C_Activity.Table_Name) .getPO(getC_Activity_ID(), get_TrxName()); } /** Set Activity. @@ -214,9 +214,9 @@ public class X_PP_Order extends PO implements I_PP_Order, I_Persistent return ii.intValue(); } - public I_C_Campaign getC_Campaign() throws RuntimeException + public org.compiere.model.I_C_Campaign getC_Campaign() throws RuntimeException { - return (I_C_Campaign)MTable.get(getCtx(), I_C_Campaign.Table_Name) + return (org.compiere.model.I_C_Campaign)MTable.get(getCtx(), org.compiere.model.I_C_Campaign.Table_Name) .getPO(getC_Campaign_ID(), get_TrxName()); } /** Set Campaign. @@ -242,9 +242,9 @@ public class X_PP_Order extends PO implements I_PP_Order, I_Persistent return ii.intValue(); } - public I_C_DocType getC_DocType() throws RuntimeException + public org.compiere.model.I_C_DocType getC_DocType() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocType_ID(), get_TrxName()); } /** Set Document Type. @@ -270,9 +270,9 @@ public class X_PP_Order extends PO implements I_PP_Order, I_Persistent return ii.intValue(); } - public I_C_DocType getC_DocTypeTarget() throws RuntimeException + public org.compiere.model.I_C_DocType getC_DocTypeTarget() throws RuntimeException { - return (I_C_DocType)MTable.get(getCtx(), I_C_DocType.Table_Name) + return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_Name) .getPO(getC_DocTypeTarget_ID(), get_TrxName()); } /** Set Target Document Type. @@ -315,9 +315,9 @@ public class X_PP_Order extends PO implements I_PP_Order, I_Persistent return (String)get_Value(COLUMNNAME_CopyFrom); } - public I_C_OrderLine getC_OrderLine() throws RuntimeException + public org.compiere.model.I_C_OrderLine getC_OrderLine() throws RuntimeException { - return (I_C_OrderLine)MTable.get(getCtx(), I_C_OrderLine.Table_Name) + return (org.compiere.model.I_C_OrderLine)MTable.get(getCtx(), org.compiere.model.I_C_OrderLine.Table_Name) .getPO(getC_OrderLine_ID(), get_TrxName()); } /** Set Sales Order Line. @@ -343,9 +343,9 @@ public class X_PP_Order extends PO implements I_PP_Order, I_Persistent return ii.intValue(); } - public I_C_Project getC_Project() throws RuntimeException + public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { - return (I_C_Project)MTable.get(getCtx(), I_C_Project.Table_Name) + return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_Name) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @@ -371,9 +371,9 @@ public class X_PP_Order extends PO implements I_PP_Order, I_Persistent return ii.intValue(); } - public I_C_UOM getC_UOM() throws RuntimeException + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_ID(), get_TrxName()); } /** Set UOM. @@ -885,9 +885,9 @@ public class X_PP_Order extends PO implements I_PP_Order, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -913,9 +913,9 @@ public class X_PP_Order extends PO implements I_PP_Order, I_Persistent return ii.intValue(); } - public I_M_Warehouse getM_Warehouse() throws RuntimeException + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_Warehouse_ID(), get_TrxName()); } /** Set Warehouse. @@ -958,9 +958,9 @@ public class X_PP_Order extends PO implements I_PP_Order, I_Persistent return (String)get_Value(COLUMNNAME_OrderType); } - public I_AD_User getPlanner() throws RuntimeException + public org.compiere.model.I_AD_User getPlanner() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getPlanner_ID(), get_TrxName()); } /** Set Planner. @@ -1030,6 +1030,20 @@ public class X_PP_Order extends PO implements I_PP_Order, I_Persistent return ii.intValue(); } + /** Set PP_Order_UU. + @param PP_Order_UU PP_Order_UU */ + public void setPP_Order_UU (String PP_Order_UU) + { + set_Value (COLUMNNAME_PP_Order_UU, PP_Order_UU); + } + + /** Get PP_Order_UU. + @return PP_Order_UU */ + public String getPP_Order_UU () + { + return (String)get_Value(COLUMNNAME_PP_Order_UU); + } + public org.eevolution.model.I_PP_Product_BOM getPP_Product_BOM() throws RuntimeException { return (org.eevolution.model.I_PP_Product_BOM)MTable.get(getCtx(), org.eevolution.model.I_PP_Product_BOM.Table_Name) @@ -1338,9 +1352,9 @@ public class X_PP_Order extends PO implements I_PP_Order, I_Persistent return (String)get_Value(COLUMNNAME_SerNo); } - public I_S_Resource getS_Resource() throws RuntimeException + public org.compiere.model.I_S_Resource getS_Resource() throws RuntimeException { - return (I_S_Resource)MTable.get(getCtx(), I_S_Resource.Table_Name) + return (org.compiere.model.I_S_Resource)MTable.get(getCtx(), org.compiere.model.I_S_Resource.Table_Name) .getPO(getS_Resource_ID(), get_TrxName()); } /** Set Resource. @@ -1366,9 +1380,9 @@ public class X_PP_Order extends PO implements I_PP_Order, I_Persistent return ii.intValue(); } - public I_C_ElementValue getUser1() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser1() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser1_ID(), get_TrxName()); } /** Set User List 1. @@ -1394,9 +1408,9 @@ public class X_PP_Order extends PO implements I_PP_Order, I_Persistent return ii.intValue(); } - public I_C_ElementValue getUser2() throws RuntimeException + public org.compiere.model.I_C_ElementValue getUser2() throws RuntimeException { - return (I_C_ElementValue)MTable.get(getCtx(), I_C_ElementValue.Table_Name) + return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_Name) .getPO(getUser2_ID(), get_TrxName()); } /** Set User List 2. diff --git a/org.adempiere.base/src/org/eevolution/model/X_PP_Order_BOM.java b/org.adempiere.base/src/org/eevolution/model/X_PP_Order_BOM.java index 5d37ebc20e..ba0da48b69 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_PP_Order_BOM.java +++ b/org.adempiere.base/src/org/eevolution/model/X_PP_Order_BOM.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Model for PP_Order_BOM - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PP_Order_BOM extends PO implements I_PP_Order_BOM, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PP_Order_BOM (Properties ctx, int PP_Order_BOM_ID, String trxName) @@ -163,9 +163,9 @@ public class X_PP_Order_BOM extends PO implements I_PP_Order_BOM, I_Persistent return (String)get_Value(COLUMNNAME_CopyFrom); } - public I_C_UOM getC_UOM() throws RuntimeException + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_ID(), get_TrxName()); } /** Set UOM. @@ -270,9 +270,9 @@ public class X_PP_Order_BOM extends PO implements I_PP_Order_BOM, I_Persistent return ii.intValue(); } - public I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException + public org.compiere.model.I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException { - return (I_M_ChangeNotice)MTable.get(getCtx(), I_M_ChangeNotice.Table_Name) + return (org.compiere.model.I_M_ChangeNotice)MTable.get(getCtx(), org.compiere.model.I_M_ChangeNotice.Table_Name) .getPO(getM_ChangeNotice_ID(), get_TrxName()); } /** Set Change Notice. @@ -298,9 +298,9 @@ public class X_PP_Order_BOM extends PO implements I_PP_Order_BOM, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -371,6 +371,20 @@ public class X_PP_Order_BOM extends PO implements I_PP_Order_BOM, I_Persistent return ii.intValue(); } + /** Set PP_Order_BOM_UU. + @param PP_Order_BOM_UU PP_Order_BOM_UU */ + public void setPP_Order_BOM_UU (String PP_Order_BOM_UU) + { + set_Value (COLUMNNAME_PP_Order_BOM_UU, PP_Order_BOM_UU); + } + + /** Get PP_Order_BOM_UU. + @return PP_Order_BOM_UU */ + public String getPP_Order_BOM_UU () + { + return (String)get_Value(COLUMNNAME_PP_Order_BOM_UU); + } + public org.eevolution.model.I_PP_Order getPP_Order() throws RuntimeException { return (org.eevolution.model.I_PP_Order)MTable.get(getCtx(), org.eevolution.model.I_PP_Order.Table_Name) diff --git a/org.adempiere.base/src/org/eevolution/model/X_PP_Order_BOMLine.java b/org.adempiere.base/src/org/eevolution/model/X_PP_Order_BOMLine.java index d952db8d68..74cba643c4 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_PP_Order_BOMLine.java +++ b/org.adempiere.base/src/org/eevolution/model/X_PP_Order_BOMLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -26,15 +26,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for PP_Order_BOMLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PP_Order_BOMLine extends PO implements I_PP_Order_BOMLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PP_Order_BOMLine (Properties ctx, int PP_Order_BOMLine_ID, String trxName) @@ -92,9 +92,9 @@ public class X_PP_Order_BOMLine extends PO implements I_PP_Order_BOMLine, I_Pers return sb.toString(); } - public I_AD_User getAD_User() throws RuntimeException + public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @@ -215,9 +215,9 @@ public class X_PP_Order_BOMLine extends PO implements I_PP_Order_BOMLine, I_Pers return bd; } - public I_C_UOM getC_UOM() throws RuntimeException + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_ID(), get_TrxName()); } /** Set UOM. @@ -473,9 +473,9 @@ public class X_PP_Order_BOMLine extends PO implements I_PP_Order_BOMLine, I_Pers return ii.intValue(); } - public I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException + public org.compiere.model.I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException { - return (I_M_ChangeNotice)MTable.get(getCtx(), I_M_ChangeNotice.Table_Name) + return (org.compiere.model.I_M_ChangeNotice)MTable.get(getCtx(), org.compiere.model.I_M_ChangeNotice.Table_Name) .getPO(getM_ChangeNotice_ID(), get_TrxName()); } /** Set Change Notice. @@ -529,9 +529,9 @@ public class X_PP_Order_BOMLine extends PO implements I_PP_Order_BOMLine, I_Pers return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -565,9 +565,9 @@ public class X_PP_Order_BOMLine extends PO implements I_PP_Order_BOMLine, I_Pers return new KeyNamePair(get_ID(), String.valueOf(getM_Product_ID())); } - public I_M_Warehouse getM_Warehouse() throws RuntimeException + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_Warehouse_ID(), get_TrxName()); } /** Set Warehouse. @@ -638,6 +638,20 @@ public class X_PP_Order_BOMLine extends PO implements I_PP_Order_BOMLine, I_Pers return ii.intValue(); } + /** Set PP_Order_BOMLine_UU. + @param PP_Order_BOMLine_UU PP_Order_BOMLine_UU */ + public void setPP_Order_BOMLine_UU (String PP_Order_BOMLine_UU) + { + set_Value (COLUMNNAME_PP_Order_BOMLine_UU, PP_Order_BOMLine_UU); + } + + /** Get PP_Order_BOMLine_UU. + @return PP_Order_BOMLine_UU */ + public String getPP_Order_BOMLine_UU () + { + return (String)get_Value(COLUMNNAME_PP_Order_BOMLine_UU); + } + public org.eevolution.model.I_PP_Order getPP_Order() throws RuntimeException { return (org.eevolution.model.I_PP_Order)MTable.get(getCtx(), org.eevolution.model.I_PP_Order.Table_Name) diff --git a/org.adempiere.base/src/org/eevolution/model/X_PP_Order_Cost.java b/org.adempiere.base/src/org/eevolution/model/X_PP_Order_Cost.java index 9a485044df..d3bf456baf 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_PP_Order_Cost.java +++ b/org.adempiere.base/src/org/eevolution/model/X_PP_Order_Cost.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.model.*; import org.compiere.util.Env; /** Generated Model for PP_Order_Cost - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PP_Order_Cost extends PO implements I_PP_Order_Cost, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PP_Order_Cost (Properties ctx, int PP_Order_Cost_ID, String trxName) @@ -76,9 +76,9 @@ public class X_PP_Order_Cost extends PO implements I_PP_Order_Cost, I_Persistent return sb.toString(); } - public I_AD_Workflow getAD_Workflow() throws RuntimeException + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException { - return (I_AD_Workflow)MTable.get(getCtx(), I_AD_Workflow.Table_Name) + return (org.compiere.model.I_AD_Workflow)MTable.get(getCtx(), org.compiere.model.I_AD_Workflow.Table_Name) .getPO(getAD_Workflow_ID(), get_TrxName()); } /** Set Workflow. @@ -104,9 +104,9 @@ public class X_PP_Order_Cost extends PO implements I_PP_Order_Cost, I_Persistent return ii.intValue(); } - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException { - return (I_C_AcctSchema)MTable.get(getCtx(), I_C_AcctSchema.Table_Name) + return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_Name) .getPO(getC_AcctSchema_ID(), get_TrxName()); } /** Set Accounting Schema. @@ -332,9 +332,9 @@ public class X_PP_Order_Cost extends PO implements I_PP_Order_Cost, I_Persistent return ii.intValue(); } - public I_M_CostElement getM_CostElement() throws RuntimeException + public org.compiere.model.I_M_CostElement getM_CostElement() throws RuntimeException { - return (I_M_CostElement)MTable.get(getCtx(), I_M_CostElement.Table_Name) + return (org.compiere.model.I_M_CostElement)MTable.get(getCtx(), org.compiere.model.I_M_CostElement.Table_Name) .getPO(getM_CostElement_ID(), get_TrxName()); } /** Set Cost Element. @@ -360,9 +360,9 @@ public class X_PP_Order_Cost extends PO implements I_PP_Order_Cost, I_Persistent return ii.intValue(); } - public I_M_CostType getM_CostType() throws RuntimeException + public org.compiere.model.I_M_CostType getM_CostType() throws RuntimeException { - return (I_M_CostType)MTable.get(getCtx(), I_M_CostType.Table_Name) + return (org.compiere.model.I_M_CostType)MTable.get(getCtx(), org.compiere.model.I_M_CostType.Table_Name) .getPO(getM_CostType_ID(), get_TrxName()); } /** Set Cost Type. @@ -388,9 +388,9 @@ public class X_PP_Order_Cost extends PO implements I_PP_Order_Cost, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -436,6 +436,20 @@ public class X_PP_Order_Cost extends PO implements I_PP_Order_Cost, I_Persistent return ii.intValue(); } + /** Set PP_Order_Cost_UU. + @param PP_Order_Cost_UU PP_Order_Cost_UU */ + public void setPP_Order_Cost_UU (String PP_Order_Cost_UU) + { + set_Value (COLUMNNAME_PP_Order_Cost_UU, PP_Order_Cost_UU); + } + + /** Get PP_Order_Cost_UU. + @return PP_Order_Cost_UU */ + public String getPP_Order_Cost_UU () + { + return (String)get_Value(COLUMNNAME_PP_Order_Cost_UU); + } + public org.eevolution.model.I_PP_Order getPP_Order() throws RuntimeException { return (org.eevolution.model.I_PP_Order)MTable.get(getCtx(), org.eevolution.model.I_PP_Order.Table_Name) diff --git a/org.adempiere.base/src/org/eevolution/model/X_PP_Order_Node.java b/org.adempiere.base/src/org/eevolution/model/X_PP_Order_Node.java index 600800be27..adff530255 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_PP_Order_Node.java +++ b/org.adempiere.base/src/org/eevolution/model/X_PP_Order_Node.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -26,15 +26,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for PP_Order_Node - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PP_Order_Node extends PO implements I_PP_Order_Node, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PP_Order_Node (Properties ctx, int PP_Order_Node_ID, String trxName) @@ -140,9 +140,9 @@ public class X_PP_Order_Node extends PO implements I_PP_Order_Node, I_Persistent return (String)get_Value(COLUMNNAME_Action); } - public I_AD_Column getAD_Column() throws RuntimeException + public org.compiere.model.I_AD_Column getAD_Column() throws RuntimeException { - return (I_AD_Column)MTable.get(getCtx(), I_AD_Column.Table_Name) + return (org.compiere.model.I_AD_Column)MTable.get(getCtx(), org.compiere.model.I_AD_Column.Table_Name) .getPO(getAD_Column_ID(), get_TrxName()); } /** Set Column. @@ -168,9 +168,9 @@ public class X_PP_Order_Node extends PO implements I_PP_Order_Node, I_Persistent return ii.intValue(); } - public I_AD_Form getAD_Form() throws RuntimeException + public org.compiere.model.I_AD_Form getAD_Form() throws RuntimeException { - return (I_AD_Form)MTable.get(getCtx(), I_AD_Form.Table_Name) + return (org.compiere.model.I_AD_Form)MTable.get(getCtx(), org.compiere.model.I_AD_Form.Table_Name) .getPO(getAD_Form_ID(), get_TrxName()); } /** Set Special Form. @@ -196,9 +196,9 @@ public class X_PP_Order_Node extends PO implements I_PP_Order_Node, I_Persistent return ii.intValue(); } - public I_AD_Image getAD_Image() throws RuntimeException + public org.compiere.model.I_AD_Image getAD_Image() throws RuntimeException { - return (I_AD_Image)MTable.get(getCtx(), I_AD_Image.Table_Name) + return (org.compiere.model.I_AD_Image)MTable.get(getCtx(), org.compiere.model.I_AD_Image.Table_Name) .getPO(getAD_Image_ID(), get_TrxName()); } /** Set Image. @@ -224,9 +224,9 @@ public class X_PP_Order_Node extends PO implements I_PP_Order_Node, I_Persistent return ii.intValue(); } - public I_AD_Process getAD_Process() throws RuntimeException + public org.compiere.model.I_AD_Process getAD_Process() throws RuntimeException { - return (I_AD_Process)MTable.get(getCtx(), I_AD_Process.Table_Name) + return (org.compiere.model.I_AD_Process)MTable.get(getCtx(), org.compiere.model.I_AD_Process.Table_Name) .getPO(getAD_Process_ID(), get_TrxName()); } /** Set Process. @@ -252,9 +252,9 @@ public class X_PP_Order_Node extends PO implements I_PP_Order_Node, I_Persistent return ii.intValue(); } - public I_AD_Task getAD_Task() throws RuntimeException + public org.compiere.model.I_AD_Task getAD_Task() throws RuntimeException { - return (I_AD_Task)MTable.get(getCtx(), I_AD_Task.Table_Name) + return (org.compiere.model.I_AD_Task)MTable.get(getCtx(), org.compiere.model.I_AD_Task.Table_Name) .getPO(getAD_Task_ID(), get_TrxName()); } /** Set OS Task. @@ -280,9 +280,9 @@ public class X_PP_Order_Node extends PO implements I_PP_Order_Node, I_Persistent return ii.intValue(); } - public I_AD_WF_Block getAD_WF_Block() throws RuntimeException + public org.compiere.model.I_AD_WF_Block getAD_WF_Block() throws RuntimeException { - return (I_AD_WF_Block)MTable.get(getCtx(), I_AD_WF_Block.Table_Name) + return (org.compiere.model.I_AD_WF_Block)MTable.get(getCtx(), org.compiere.model.I_AD_WF_Block.Table_Name) .getPO(getAD_WF_Block_ID(), get_TrxName()); } /** Set Workflow Block. @@ -308,9 +308,9 @@ public class X_PP_Order_Node extends PO implements I_PP_Order_Node, I_Persistent return ii.intValue(); } - public I_AD_WF_Node getAD_WF_Node() throws RuntimeException + public org.compiere.model.I_AD_WF_Node getAD_WF_Node() throws RuntimeException { - return (I_AD_WF_Node)MTable.get(getCtx(), I_AD_WF_Node.Table_Name) + return (org.compiere.model.I_AD_WF_Node)MTable.get(getCtx(), org.compiere.model.I_AD_WF_Node.Table_Name) .getPO(getAD_WF_Node_ID(), get_TrxName()); } /** Set Node. @@ -336,9 +336,9 @@ public class X_PP_Order_Node extends PO implements I_PP_Order_Node, I_Persistent return ii.intValue(); } - public I_AD_WF_Responsible getAD_WF_Responsible() throws RuntimeException + public org.compiere.model.I_AD_WF_Responsible getAD_WF_Responsible() throws RuntimeException { - return (I_AD_WF_Responsible)MTable.get(getCtx(), I_AD_WF_Responsible.Table_Name) + return (org.compiere.model.I_AD_WF_Responsible)MTable.get(getCtx(), org.compiere.model.I_AD_WF_Responsible.Table_Name) .getPO(getAD_WF_Responsible_ID(), get_TrxName()); } /** Set Workflow Responsible. @@ -364,9 +364,9 @@ public class X_PP_Order_Node extends PO implements I_PP_Order_Node, I_Persistent return ii.intValue(); } - public I_AD_Window getAD_Window() throws RuntimeException + public org.compiere.model.I_AD_Window getAD_Window() throws RuntimeException { - return (I_AD_Window)MTable.get(getCtx(), I_AD_Window.Table_Name) + return (org.compiere.model.I_AD_Window)MTable.get(getCtx(), org.compiere.model.I_AD_Window.Table_Name) .getPO(getAD_Window_ID(), get_TrxName()); } /** Set Window. @@ -392,9 +392,9 @@ public class X_PP_Order_Node extends PO implements I_PP_Order_Node, I_Persistent return ii.intValue(); } - public I_AD_Workflow getAD_Workflow() throws RuntimeException + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException { - return (I_AD_Workflow)MTable.get(getCtx(), I_AD_Workflow.Table_Name) + return (org.compiere.model.I_AD_Workflow)MTable.get(getCtx(), org.compiere.model.I_AD_Workflow.Table_Name) .getPO(getAD_Workflow_ID(), get_TrxName()); } /** Set Workflow. @@ -454,9 +454,9 @@ public class X_PP_Order_Node extends PO implements I_PP_Order_Node, I_Persistent return (String)get_Value(COLUMNNAME_AttributeValue); } - public I_C_BPartner getC_BPartner() throws RuntimeException + public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { - return (I_C_BPartner)MTable.get(getCtx(), I_C_BPartner.Table_Name) + return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_Name) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner . @@ -1017,6 +1017,20 @@ public class X_PP_Order_Node extends PO implements I_PP_Order_Node, I_Persistent return ii.intValue(); } + /** Set PP_Order_Node_UU. + @param PP_Order_Node_UU PP_Order_Node_UU */ + public void setPP_Order_Node_UU (String PP_Order_Node_UU) + { + set_Value (COLUMNNAME_PP_Order_Node_UU, PP_Order_Node_UU); + } + + /** Get PP_Order_Node_UU. + @return PP_Order_Node_UU */ + public String getPP_Order_Node_UU () + { + return (String)get_Value(COLUMNNAME_PP_Order_Node_UU); + } + public org.eevolution.model.I_PP_Order_Workflow getPP_Order_Workflow() throws RuntimeException { return (org.eevolution.model.I_PP_Order_Workflow)MTable.get(getCtx(), org.eevolution.model.I_PP_Order_Workflow.Table_Name) @@ -1234,9 +1248,9 @@ public class X_PP_Order_Node extends PO implements I_PP_Order_Node, I_Persistent return (String)get_Value(COLUMNNAME_SplitElement); } - public I_S_Resource getS_Resource() throws RuntimeException + public org.compiere.model.I_S_Resource getS_Resource() throws RuntimeException { - return (I_S_Resource)MTable.get(getCtx(), I_S_Resource.Table_Name) + return (org.compiere.model.I_S_Resource)MTable.get(getCtx(), org.compiere.model.I_S_Resource.Table_Name) .getPO(getS_Resource_ID(), get_TrxName()); } /** Set Resource. @@ -1401,9 +1415,9 @@ public class X_PP_Order_Node extends PO implements I_PP_Order_Node, I_Persistent return ii.intValue(); } - public I_AD_Workflow getWorkflow() throws RuntimeException + public org.compiere.model.I_AD_Workflow getWorkflow() throws RuntimeException { - return (I_AD_Workflow)MTable.get(getCtx(), I_AD_Workflow.Table_Name) + return (org.compiere.model.I_AD_Workflow)MTable.get(getCtx(), org.compiere.model.I_AD_Workflow.Table_Name) .getPO(getWorkflow_ID(), get_TrxName()); } /** Set Workflow. diff --git a/org.adempiere.base/src/org/eevolution/model/X_PP_Order_NodeNext.java b/org.adempiere.base/src/org/eevolution/model/X_PP_Order_NodeNext.java index c2d42e91c3..3374a686c3 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_PP_Order_NodeNext.java +++ b/org.adempiere.base/src/org/eevolution/model/X_PP_Order_NodeNext.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.model.*; /** Generated Model for PP_Order_NodeNext - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PP_Order_NodeNext extends PO implements I_PP_Order_NodeNext, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PP_Order_NodeNext (Properties ctx, int PP_Order_NodeNext_ID, String trxName) @@ -76,9 +76,9 @@ public class X_PP_Order_NodeNext extends PO implements I_PP_Order_NodeNext, I_Pe return sb.toString(); } - public I_AD_WF_Node getAD_WF_Next() throws RuntimeException + public org.compiere.model.I_AD_WF_Node getAD_WF_Next() throws RuntimeException { - return (I_AD_WF_Node)MTable.get(getCtx(), I_AD_WF_Node.Table_Name) + return (org.compiere.model.I_AD_WF_Node)MTable.get(getCtx(), org.compiere.model.I_AD_WF_Node.Table_Name) .getPO(getAD_WF_Next_ID(), get_TrxName()); } /** Set Next Node. @@ -104,9 +104,9 @@ public class X_PP_Order_NodeNext extends PO implements I_PP_Order_NodeNext, I_Pe return ii.intValue(); } - public I_AD_WF_Node getAD_WF_Node() throws RuntimeException + public org.compiere.model.I_AD_WF_Node getAD_WF_Node() throws RuntimeException { - return (I_AD_WF_Node)MTable.get(getCtx(), I_AD_WF_Node.Table_Name) + return (org.compiere.model.I_AD_WF_Node)MTable.get(getCtx(), org.compiere.model.I_AD_WF_Node.Table_Name) .getPO(getAD_WF_Node_ID(), get_TrxName()); } /** Set Node. @@ -294,6 +294,20 @@ public class X_PP_Order_NodeNext extends PO implements I_PP_Order_NodeNext, I_Pe return ii.intValue(); } + /** Set PP_Order_NodeNext_UU. + @param PP_Order_NodeNext_UU PP_Order_NodeNext_UU */ + public void setPP_Order_NodeNext_UU (String PP_Order_NodeNext_UU) + { + set_Value (COLUMNNAME_PP_Order_NodeNext_UU, PP_Order_NodeNext_UU); + } + + /** Get PP_Order_NodeNext_UU. + @return PP_Order_NodeNext_UU */ + public String getPP_Order_NodeNext_UU () + { + return (String)get_Value(COLUMNNAME_PP_Order_NodeNext_UU); + } + /** Set Sequence. @param SeqNo Method of ordering records; lowest number comes first diff --git a/org.adempiere.base/src/org/eevolution/model/X_PP_Order_Node_Asset.java b/org.adempiere.base/src/org/eevolution/model/X_PP_Order_Node_Asset.java index 11535fe002..4408a8954c 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_PP_Order_Node_Asset.java +++ b/org.adempiere.base/src/org/eevolution/model/X_PP_Order_Node_Asset.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.model.*; /** Generated Model for PP_Order_Node_Asset - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PP_Order_Node_Asset extends PO implements I_PP_Order_Node_Asset, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PP_Order_Node_Asset (Properties ctx, int PP_Order_Node_Asset_ID, String trxName) @@ -74,9 +74,9 @@ public class X_PP_Order_Node_Asset extends PO implements I_PP_Order_Node_Asset, return sb.toString(); } - public I_A_Asset getA_Asset() throws RuntimeException + public org.compiere.model.I_A_Asset getA_Asset() throws RuntimeException { - return (I_A_Asset)MTable.get(getCtx(), I_A_Asset.Table_Name) + return (org.compiere.model.I_A_Asset)MTable.get(getCtx(), org.compiere.model.I_A_Asset.Table_Name) .getPO(getA_Asset_ID(), get_TrxName()); } /** Set Asset. @@ -150,6 +150,20 @@ public class X_PP_Order_Node_Asset extends PO implements I_PP_Order_Node_Asset, return ii.intValue(); } + /** Set PP_Order_Node_Asset_UU. + @param PP_Order_Node_Asset_UU PP_Order_Node_Asset_UU */ + public void setPP_Order_Node_Asset_UU (String PP_Order_Node_Asset_UU) + { + set_Value (COLUMNNAME_PP_Order_Node_Asset_UU, PP_Order_Node_Asset_UU); + } + + /** Get PP_Order_Node_Asset_UU. + @return PP_Order_Node_Asset_UU */ + public String getPP_Order_Node_Asset_UU () + { + return (String)get_Value(COLUMNNAME_PP_Order_Node_Asset_UU); + } + public org.eevolution.model.I_PP_Order_Node getPP_Order_Node() throws RuntimeException { return (org.eevolution.model.I_PP_Order_Node)MTable.get(getCtx(), org.eevolution.model.I_PP_Order_Node.Table_Name) diff --git a/org.adempiere.base/src/org/eevolution/model/X_PP_Order_Node_Product.java b/org.adempiere.base/src/org/eevolution/model/X_PP_Order_Node_Product.java index d658f7deee..e45d687ae6 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_PP_Order_Node_Product.java +++ b/org.adempiere.base/src/org/eevolution/model/X_PP_Order_Node_Product.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.model.*; import org.compiere.util.Env; /** Generated Model for PP_Order_Node_Product - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PP_Order_Node_Product extends PO implements I_PP_Order_Node_Product, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PP_Order_Node_Product (Properties ctx, int PP_Order_Node_Product_ID, String trxName) @@ -97,9 +97,9 @@ public class X_PP_Order_Node_Product extends PO implements I_PP_Order_Node_Produ return false; } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -201,6 +201,20 @@ public class X_PP_Order_Node_Product extends PO implements I_PP_Order_Node_Produ return ii.intValue(); } + /** Set PP_Order_Node_Product_UU. + @param PP_Order_Node_Product_UU PP_Order_Node_Product_UU */ + public void setPP_Order_Node_Product_UU (String PP_Order_Node_Product_UU) + { + set_Value (COLUMNNAME_PP_Order_Node_Product_UU, PP_Order_Node_Product_UU); + } + + /** Get PP_Order_Node_Product_UU. + @return PP_Order_Node_Product_UU */ + public String getPP_Order_Node_Product_UU () + { + return (String)get_Value(COLUMNNAME_PP_Order_Node_Product_UU); + } + public org.eevolution.model.I_PP_Order_Workflow getPP_Order_Workflow() throws RuntimeException { return (org.eevolution.model.I_PP_Order_Workflow)MTable.get(getCtx(), org.eevolution.model.I_PP_Order_Workflow.Table_Name) diff --git a/org.adempiere.base/src/org/eevolution/model/X_PP_Order_Workflow.java b/org.adempiere.base/src/org/eevolution/model/X_PP_Order_Workflow.java index 3774b43f45..34245dbc90 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_PP_Order_Workflow.java +++ b/org.adempiere.base/src/org/eevolution/model/X_PP_Order_Workflow.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -26,15 +26,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for PP_Order_Workflow - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PP_Order_Workflow extends PO implements I_PP_Order_Workflow, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PP_Order_Workflow (Properties ctx, int PP_Order_Workflow_ID, String trxName) @@ -124,9 +124,9 @@ public class X_PP_Order_Workflow extends PO implements I_PP_Order_Workflow, I_Pe return (String)get_Value(COLUMNNAME_AccessLevel); } - public I_AD_Table getAD_Table() throws RuntimeException + public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { - return (I_AD_Table)MTable.get(getCtx(), I_AD_Table.Table_Name) + return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_Name) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @@ -152,9 +152,9 @@ public class X_PP_Order_Workflow extends PO implements I_PP_Order_Workflow, I_Pe return ii.intValue(); } - public I_AD_WF_Node getAD_WF_Node() throws RuntimeException + public org.compiere.model.I_AD_WF_Node getAD_WF_Node() throws RuntimeException { - return (I_AD_WF_Node)MTable.get(getCtx(), I_AD_WF_Node.Table_Name) + return (org.compiere.model.I_AD_WF_Node)MTable.get(getCtx(), org.compiere.model.I_AD_WF_Node.Table_Name) .getPO(getAD_WF_Node_ID(), get_TrxName()); } /** Set Node. @@ -180,9 +180,9 @@ public class X_PP_Order_Workflow extends PO implements I_PP_Order_Workflow, I_Pe return ii.intValue(); } - public I_AD_WF_Responsible getAD_WF_Responsible() throws RuntimeException + public org.compiere.model.I_AD_WF_Responsible getAD_WF_Responsible() throws RuntimeException { - return (I_AD_WF_Responsible)MTable.get(getCtx(), I_AD_WF_Responsible.Table_Name) + return (org.compiere.model.I_AD_WF_Responsible)MTable.get(getCtx(), org.compiere.model.I_AD_WF_Responsible.Table_Name) .getPO(getAD_WF_Responsible_ID(), get_TrxName()); } /** Set Workflow Responsible. @@ -208,9 +208,9 @@ public class X_PP_Order_Workflow extends PO implements I_PP_Order_Workflow, I_Pe return ii.intValue(); } - public I_AD_Workflow getAD_Workflow() throws RuntimeException + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException { - return (I_AD_Workflow)MTable.get(getCtx(), I_AD_Workflow.Table_Name) + return (org.compiere.model.I_AD_Workflow)MTable.get(getCtx(), org.compiere.model.I_AD_Workflow.Table_Name) .getPO(getAD_Workflow_ID(), get_TrxName()); } /** Set Workflow. @@ -236,9 +236,9 @@ public class X_PP_Order_Workflow extends PO implements I_PP_Order_Workflow, I_Pe return ii.intValue(); } - public I_AD_WorkflowProcessor getAD_WorkflowProcessor() throws RuntimeException + public org.compiere.model.I_AD_WorkflowProcessor getAD_WorkflowProcessor() throws RuntimeException { - return (I_AD_WorkflowProcessor)MTable.get(getCtx(), I_AD_WorkflowProcessor.Table_Name) + return (org.compiere.model.I_AD_WorkflowProcessor)MTable.get(getCtx(), org.compiere.model.I_AD_WorkflowProcessor.Table_Name) .getPO(getAD_WorkflowProcessor_ID(), get_TrxName()); } /** Set Workflow Processor. @@ -606,6 +606,20 @@ public class X_PP_Order_Workflow extends PO implements I_PP_Order_Workflow, I_Pe return ii.intValue(); } + /** Set PP_Order_Workflow_UU. + @param PP_Order_Workflow_UU PP_Order_Workflow_UU */ + public void setPP_Order_Workflow_UU (String PP_Order_Workflow_UU) + { + set_Value (COLUMNNAME_PP_Order_Workflow_UU, PP_Order_Workflow_UU); + } + + /** Get PP_Order_Workflow_UU. + @return PP_Order_Workflow_UU */ + public String getPP_Order_Workflow_UU () + { + return (String)get_Value(COLUMNNAME_PP_Order_Workflow_UU); + } + /** Set Priority. @param Priority Indicates if this request is of a high, medium or low priority. @@ -740,9 +754,9 @@ public class X_PP_Order_Workflow extends PO implements I_PP_Order_Workflow, I_Pe return ii.intValue(); } - public I_S_Resource getS_Resource() throws RuntimeException + public org.compiere.model.I_S_Resource getS_Resource() throws RuntimeException { - return (I_S_Resource)MTable.get(getCtx(), I_S_Resource.Table_Name) + return (org.compiere.model.I_S_Resource)MTable.get(getCtx(), org.compiere.model.I_S_Resource.Table_Name) .getPO(getS_Resource_ID(), get_TrxName()); } /** Set Resource. diff --git a/org.adempiere.base/src/org/eevolution/model/X_PP_Product_BOM.java b/org.adempiere.base/src/org/eevolution/model/X_PP_Product_BOM.java index ff5c3dfe6e..66cb16e34d 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_PP_Product_BOM.java +++ b/org.adempiere.base/src/org/eevolution/model/X_PP_Product_BOM.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Model for PP_Product_BOM - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PP_Product_BOM extends PO implements I_PP_Product_BOM, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PP_Product_BOM (Properties ctx, int PP_Product_BOM_ID, String trxName) @@ -162,9 +162,9 @@ public class X_PP_Product_BOM extends PO implements I_PP_Product_BOM, I_Persiste return (String)get_Value(COLUMNNAME_CopyFrom); } - public I_C_UOM getC_UOM() throws RuntimeException + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_ID(), get_TrxName()); } /** Set UOM. @@ -269,9 +269,9 @@ public class X_PP_Product_BOM extends PO implements I_PP_Product_BOM, I_Persiste return ii.intValue(); } - public I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException + public org.compiere.model.I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException { - return (I_M_ChangeNotice)MTable.get(getCtx(), I_M_ChangeNotice.Table_Name) + return (org.compiere.model.I_M_ChangeNotice)MTable.get(getCtx(), org.compiere.model.I_M_ChangeNotice.Table_Name) .getPO(getM_ChangeNotice_ID(), get_TrxName()); } /** Set Change Notice. @@ -297,9 +297,9 @@ public class X_PP_Product_BOM extends PO implements I_PP_Product_BOM, I_Persiste return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -365,6 +365,20 @@ public class X_PP_Product_BOM extends PO implements I_PP_Product_BOM, I_Persiste return ii.intValue(); } + /** Set PP_Product_BOM_UU. + @param PP_Product_BOM_UU PP_Product_BOM_UU */ + public void setPP_Product_BOM_UU (String PP_Product_BOM_UU) + { + set_Value (COLUMNNAME_PP_Product_BOM_UU, PP_Product_BOM_UU); + } + + /** Get PP_Product_BOM_UU. + @return PP_Product_BOM_UU */ + public String getPP_Product_BOM_UU () + { + return (String)get_Value(COLUMNNAME_PP_Product_BOM_UU); + } + /** Set Process Now. @param Processing Process Now */ public void setProcessing (boolean Processing) diff --git a/org.adempiere.base/src/org/eevolution/model/X_PP_Product_BOMLine.java b/org.adempiere.base/src/org/eevolution/model/X_PP_Product_BOMLine.java index 44758635df..9c9120061d 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_PP_Product_BOMLine.java +++ b/org.adempiere.base/src/org/eevolution/model/X_PP_Product_BOMLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -26,15 +26,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for PP_Product_BOMLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PP_Product_BOMLine extends PO implements I_PP_Product_BOMLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PP_Product_BOMLine (Properties ctx, int PP_Product_BOMLine_ID, String trxName) @@ -177,9 +177,9 @@ public class X_PP_Product_BOMLine extends PO implements I_PP_Product_BOMLine, I_ return bd; } - public I_C_UOM getC_UOM() throws RuntimeException + public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException { - return (I_C_UOM)MTable.get(getCtx(), I_C_UOM.Table_Name) + return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_Name) .getPO(getC_UOM_ID(), get_TrxName()); } /** Set UOM. @@ -418,9 +418,9 @@ public class X_PP_Product_BOMLine extends PO implements I_PP_Product_BOMLine, I_ return ii.intValue(); } - public I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException + public org.compiere.model.I_M_ChangeNotice getM_ChangeNotice() throws RuntimeException { - return (I_M_ChangeNotice)MTable.get(getCtx(), I_M_ChangeNotice.Table_Name) + return (org.compiere.model.I_M_ChangeNotice)MTable.get(getCtx(), org.compiere.model.I_M_ChangeNotice.Table_Name) .getPO(getM_ChangeNotice_ID(), get_TrxName()); } /** Set Change Notice. @@ -446,9 +446,9 @@ public class X_PP_Product_BOMLine extends PO implements I_PP_Product_BOMLine, I_ return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -533,6 +533,20 @@ public class X_PP_Product_BOMLine extends PO implements I_PP_Product_BOMLine, I_ return ii.intValue(); } + /** Set PP_Product_BOMLine_UU. + @param PP_Product_BOMLine_UU PP_Product_BOMLine_UU */ + public void setPP_Product_BOMLine_UU (String PP_Product_BOMLine_UU) + { + set_Value (COLUMNNAME_PP_Product_BOMLine_UU, PP_Product_BOMLine_UU); + } + + /** Get PP_Product_BOMLine_UU. + @return PP_Product_BOMLine_UU */ + public String getPP_Product_BOMLine_UU () + { + return (String)get_Value(COLUMNNAME_PP_Product_BOMLine_UU); + } + /** Set Quantity in %. @param QtyBatch Indicate the Quantity % use in this Formula diff --git a/org.adempiere.base/src/org/eevolution/model/X_PP_Product_Planning.java b/org.adempiere.base/src/org/eevolution/model/X_PP_Product_Planning.java index 054b87188c..17adb60de7 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_PP_Product_Planning.java +++ b/org.adempiere.base/src/org/eevolution/model/X_PP_Product_Planning.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -25,15 +25,15 @@ import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for PP_Product_Planning - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PP_Product_Planning extends PO implements I_PP_Product_Planning, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PP_Product_Planning (Properties ctx, int PP_Product_Planning_ID, String trxName) @@ -79,9 +79,9 @@ public class X_PP_Product_Planning extends PO implements I_PP_Product_Planning, return sb.toString(); } - public I_AD_Workflow getAD_Workflow() throws RuntimeException + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException { - return (I_AD_Workflow)MTable.get(getCtx(), I_AD_Workflow.Table_Name) + return (org.compiere.model.I_AD_Workflow)MTable.get(getCtx(), org.compiere.model.I_AD_Workflow.Table_Name) .getPO(getAD_Workflow_ID(), get_TrxName()); } /** Set Workflow. @@ -263,9 +263,9 @@ public class X_PP_Product_Planning extends PO implements I_PP_Product_Planning, return false; } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -299,9 +299,9 @@ public class X_PP_Product_Planning extends PO implements I_PP_Product_Planning, return new KeyNamePair(get_ID(), String.valueOf(getM_Product_ID())); } - public I_M_Warehouse getM_Warehouse() throws RuntimeException + public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException { - return (I_M_Warehouse)MTable.get(getCtx(), I_M_Warehouse.Table_Name) + return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_Name) .getPO(getM_Warehouse_ID(), get_TrxName()); } /** Set Warehouse. @@ -444,9 +444,9 @@ public class X_PP_Product_Planning extends PO implements I_PP_Product_Planning, return bd; } - public I_AD_User getPlanner() throws RuntimeException + public org.compiere.model.I_AD_User getPlanner() throws RuntimeException { - return (I_AD_User)MTable.get(getCtx(), I_AD_User.Table_Name) + return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_Name) .getPO(getPlanner_ID(), get_TrxName()); } /** Set Planner. @@ -517,6 +517,20 @@ public class X_PP_Product_Planning extends PO implements I_PP_Product_Planning, return ii.intValue(); } + /** Set PP_Product_Planning_UU. + @param PP_Product_Planning_UU PP_Product_Planning_UU */ + public void setPP_Product_Planning_UU (String PP_Product_Planning_UU) + { + set_Value (COLUMNNAME_PP_Product_Planning_UU, PP_Product_Planning_UU); + } + + /** Get PP_Product_Planning_UU. + @return PP_Product_Planning_UU */ + public String getPP_Product_Planning_UU () + { + return (String)get_Value(COLUMNNAME_PP_Product_Planning_UU); + } + /** Set Safety Stock Qty. @param SafetyStock Safety stock is a term used to describe a level of stock that is maintained below the cycle stock to buffer against stock-outs @@ -537,9 +551,9 @@ public class X_PP_Product_Planning extends PO implements I_PP_Product_Planning, return bd; } - public I_S_Resource getS_Resource() throws RuntimeException + public org.compiere.model.I_S_Resource getS_Resource() throws RuntimeException { - return (I_S_Resource)MTable.get(getCtx(), I_S_Resource.Table_Name) + return (org.compiere.model.I_S_Resource)MTable.get(getCtx(), org.compiere.model.I_S_Resource.Table_Name) .getPO(getS_Resource_ID(), get_TrxName()); } /** Set Resource. diff --git a/org.adempiere.base/src/org/eevolution/model/X_PP_WF_Node_Asset.java b/org.adempiere.base/src/org/eevolution/model/X_PP_WF_Node_Asset.java index 4a31382f30..d64f02b476 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_PP_WF_Node_Asset.java +++ b/org.adempiere.base/src/org/eevolution/model/X_PP_WF_Node_Asset.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.model.*; /** Generated Model for PP_WF_Node_Asset - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PP_WF_Node_Asset extends PO implements I_PP_WF_Node_Asset, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PP_WF_Node_Asset (Properties ctx, int PP_WF_Node_Asset_ID, String trxName) @@ -73,9 +73,9 @@ public class X_PP_WF_Node_Asset extends PO implements I_PP_WF_Node_Asset, I_Pers return sb.toString(); } - public I_A_Asset getA_Asset() throws RuntimeException + public org.compiere.model.I_A_Asset getA_Asset() throws RuntimeException { - return (I_A_Asset)MTable.get(getCtx(), I_A_Asset.Table_Name) + return (org.compiere.model.I_A_Asset)MTable.get(getCtx(), org.compiere.model.I_A_Asset.Table_Name) .getPO(getA_Asset_ID(), get_TrxName()); } /** Set Asset. @@ -101,9 +101,9 @@ public class X_PP_WF_Node_Asset extends PO implements I_PP_WF_Node_Asset, I_Pers return ii.intValue(); } - public I_AD_WF_Node getAD_WF_Node() throws RuntimeException + public org.compiere.model.I_AD_WF_Node getAD_WF_Node() throws RuntimeException { - return (I_AD_WF_Node)MTable.get(getCtx(), I_AD_WF_Node.Table_Name) + return (org.compiere.model.I_AD_WF_Node)MTable.get(getCtx(), org.compiere.model.I_AD_WF_Node.Table_Name) .getPO(getAD_WF_Node_ID(), get_TrxName()); } /** Set Node. @@ -149,6 +149,20 @@ public class X_PP_WF_Node_Asset extends PO implements I_PP_WF_Node_Asset, I_Pers return ii.intValue(); } + /** Set PP_WF_Node_Asset_UU. + @param PP_WF_Node_Asset_UU PP_WF_Node_Asset_UU */ + public void setPP_WF_Node_Asset_UU (String PP_WF_Node_Asset_UU) + { + set_Value (COLUMNNAME_PP_WF_Node_Asset_UU, PP_WF_Node_Asset_UU); + } + + /** Get PP_WF_Node_Asset_UU. + @return PP_WF_Node_Asset_UU */ + public String getPP_WF_Node_Asset_UU () + { + return (String)get_Value(COLUMNNAME_PP_WF_Node_Asset_UU); + } + /** Set Sequence. @param SeqNo Method of ordering records; lowest number comes first diff --git a/org.adempiere.base/src/org/eevolution/model/X_PP_WF_Node_Product.java b/org.adempiere.base/src/org/eevolution/model/X_PP_WF_Node_Product.java index ebba2fb2df..e6fa0bc933 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_PP_WF_Node_Product.java +++ b/org.adempiere.base/src/org/eevolution/model/X_PP_WF_Node_Product.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.model.*; import org.compiere.util.Env; /** Generated Model for PP_WF_Node_Product - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_PP_WF_Node_Product extends PO implements I_PP_WF_Node_Product, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_PP_WF_Node_Product (Properties ctx, int PP_WF_Node_Product_ID, String trxName) @@ -76,9 +76,9 @@ public class X_PP_WF_Node_Product extends PO implements I_PP_WF_Node_Product, I_ return sb.toString(); } - public I_AD_WF_Node getAD_WF_Node() throws RuntimeException + public org.compiere.model.I_AD_WF_Node getAD_WF_Node() throws RuntimeException { - return (I_AD_WF_Node)MTable.get(getCtx(), I_AD_WF_Node.Table_Name) + return (org.compiere.model.I_AD_WF_Node)MTable.get(getCtx(), org.compiere.model.I_AD_WF_Node.Table_Name) .getPO(getAD_WF_Node_ID(), get_TrxName()); } /** Set Node. @@ -171,9 +171,9 @@ public class X_PP_WF_Node_Product extends PO implements I_PP_WF_Node_Product, I_ return false; } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -219,6 +219,20 @@ public class X_PP_WF_Node_Product extends PO implements I_PP_WF_Node_Product, I_ return ii.intValue(); } + /** Set PP_WF_Node_Product_UU. + @param PP_WF_Node_Product_UU PP_WF_Node_Product_UU */ + public void setPP_WF_Node_Product_UU (String PP_WF_Node_Product_UU) + { + set_Value (COLUMNNAME_PP_WF_Node_Product_UU, PP_WF_Node_Product_UU); + } + + /** Get PP_WF_Node_Product_UU. + @return PP_WF_Node_Product_UU */ + public String getPP_WF_Node_Product_UU () + { + return (String)get_Value(COLUMNNAME_PP_WF_Node_Product_UU); + } + /** Set Quantity. @param Qty Quantity diff --git a/org.adempiere.base/src/org/eevolution/model/X_QM_Specification.java b/org.adempiere.base/src/org/eevolution/model/X_QM_Specification.java index 13304f0616..57680780c1 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_QM_Specification.java +++ b/org.adempiere.base/src/org/eevolution/model/X_QM_Specification.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.model.*; /** Generated Model for QM_Specification - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_QM_Specification extends PO implements I_QM_Specification, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_QM_Specification (Properties ctx, int QM_Specification_ID, String trxName) @@ -73,9 +73,9 @@ public class X_QM_Specification extends PO implements I_QM_Specification, I_Pers return sb.toString(); } - public I_AD_Workflow getAD_Workflow() throws RuntimeException + public org.compiere.model.I_AD_Workflow getAD_Workflow() throws RuntimeException { - return (I_AD_Workflow)MTable.get(getCtx(), I_AD_Workflow.Table_Name) + return (org.compiere.model.I_AD_Workflow)MTable.get(getCtx(), org.compiere.model.I_AD_Workflow.Table_Name) .getPO(getAD_Workflow_ID(), get_TrxName()); } /** Set Workflow. @@ -118,9 +118,9 @@ public class X_QM_Specification extends PO implements I_QM_Specification, I_Pers return (String)get_Value(COLUMNNAME_Description); } - public I_M_AttributeSet getM_AttributeSet() throws RuntimeException + public org.compiere.model.I_M_AttributeSet getM_AttributeSet() throws RuntimeException { - return (I_M_AttributeSet)MTable.get(getCtx(), I_M_AttributeSet.Table_Name) + return (org.compiere.model.I_M_AttributeSet)MTable.get(getCtx(), org.compiere.model.I_M_AttributeSet.Table_Name) .getPO(getM_AttributeSet_ID(), get_TrxName()); } /** Set Attribute Set. @@ -146,9 +146,9 @@ public class X_QM_Specification extends PO implements I_QM_Specification, I_Pers return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -239,6 +239,20 @@ public class X_QM_Specification extends PO implements I_QM_Specification, I_Pers return ii.intValue(); } + /** Set QM_Specification_UU. + @param QM_Specification_UU QM_Specification_UU */ + public void setQM_Specification_UU (String QM_Specification_UU) + { + set_Value (COLUMNNAME_QM_Specification_UU, QM_Specification_UU); + } + + /** Get QM_Specification_UU. + @return QM_Specification_UU */ + public String getQM_Specification_UU () + { + return (String)get_Value(COLUMNNAME_QM_Specification_UU); + } + /** Set Valid from. @param ValidFrom Valid from including this date (first day) diff --git a/org.adempiere.base/src/org/eevolution/model/X_QM_SpecificationLine.java b/org.adempiere.base/src/org/eevolution/model/X_QM_SpecificationLine.java index 70d58043d9..031d48d31f 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_QM_SpecificationLine.java +++ b/org.adempiere.base/src/org/eevolution/model/X_QM_SpecificationLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -23,15 +23,15 @@ import java.util.Properties; import org.compiere.model.*; /** Generated Model for QM_SpecificationLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_QM_SpecificationLine extends PO implements I_QM_SpecificationLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_QM_SpecificationLine (Properties ctx, int QM_SpecificationLine_ID, String trxName) @@ -98,9 +98,9 @@ public class X_QM_SpecificationLine extends PO implements I_QM_SpecificationLine return (String)get_Value(COLUMNNAME_AndOr); } - public I_M_Attribute getM_Attribute() throws RuntimeException + public org.compiere.model.I_M_Attribute getM_Attribute() throws RuntimeException { - return (I_M_Attribute)MTable.get(getCtx(), I_M_Attribute.Table_Name) + return (org.compiere.model.I_M_Attribute)MTable.get(getCtx(), org.compiere.model.I_M_Attribute.Table_Name) .getPO(getM_Attribute_ID(), get_TrxName()); } /** Set Attribute. @@ -209,6 +209,20 @@ public class X_QM_SpecificationLine extends PO implements I_QM_SpecificationLine return ii.intValue(); } + /** Set QM_SpecificationLine_UU. + @param QM_SpecificationLine_UU QM_SpecificationLine_UU */ + public void setQM_SpecificationLine_UU (String QM_SpecificationLine_UU) + { + set_Value (COLUMNNAME_QM_SpecificationLine_UU, QM_SpecificationLine_UU); + } + + /** Get QM_SpecificationLine_UU. + @return QM_SpecificationLine_UU */ + public String getQM_SpecificationLine_UU () + { + return (String)get_Value(COLUMNNAME_QM_SpecificationLine_UU); + } + /** Set Sequence. @param SeqNo Method of ordering records; lowest number comes first diff --git a/org.adempiere.base/src/org/eevolution/model/X_T_BOMLine.java b/org.adempiere.base/src/org/eevolution/model/X_T_BOMLine.java index eb9db393e8..9cf5f0897c 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_T_BOMLine.java +++ b/org.adempiere.base/src/org/eevolution/model/X_T_BOMLine.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -24,15 +24,15 @@ import org.compiere.model.*; import org.compiere.util.Env; /** Generated Model for T_BOMLine - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_T_BOMLine extends PO implements I_T_BOMLine, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_T_BOMLine (Properties ctx, int T_BOMLine_ID, String trxName) @@ -73,9 +73,9 @@ public class X_T_BOMLine extends PO implements I_T_BOMLine, I_Persistent return sb.toString(); } - public I_AD_PInstance getAD_PInstance() throws RuntimeException + public org.compiere.model.I_AD_PInstance getAD_PInstance() throws RuntimeException { - return (I_AD_PInstance)MTable.get(getCtx(), I_AD_PInstance.Table_Name) + return (org.compiere.model.I_AD_PInstance)MTable.get(getCtx(), org.compiere.model.I_AD_PInstance.Table_Name) .getPO(getAD_PInstance_ID(), get_TrxName()); } /** Set Process Instance. @@ -101,9 +101,9 @@ public class X_T_BOMLine extends PO implements I_T_BOMLine, I_Persistent return ii.intValue(); } - public I_C_AcctSchema getC_AcctSchema() throws RuntimeException + public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException { - return (I_C_AcctSchema)MTable.get(getCtx(), I_C_AcctSchema.Table_Name) + return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_Name) .getPO(getC_AcctSchema_ID(), get_TrxName()); } /** Set Accounting Schema. @@ -360,9 +360,9 @@ public class X_T_BOMLine extends PO implements I_T_BOMLine, I_Persistent return (String)get_Value(COLUMNNAME_Levels); } - public I_M_CostElement getM_CostElement() throws RuntimeException + public org.compiere.model.I_M_CostElement getM_CostElement() throws RuntimeException { - return (I_M_CostElement)MTable.get(getCtx(), I_M_CostElement.Table_Name) + return (org.compiere.model.I_M_CostElement)MTable.get(getCtx(), org.compiere.model.I_M_CostElement.Table_Name) .getPO(getM_CostElement_ID(), get_TrxName()); } /** Set Cost Element. @@ -388,9 +388,9 @@ public class X_T_BOMLine extends PO implements I_T_BOMLine, I_Persistent return ii.intValue(); } - public I_M_CostType getM_CostType() throws RuntimeException + public org.compiere.model.I_M_CostType getM_CostType() throws RuntimeException { - return (I_M_CostType)MTable.get(getCtx(), I_M_CostType.Table_Name) + return (org.compiere.model.I_M_CostType)MTable.get(getCtx(), org.compiere.model.I_M_CostType.Table_Name) .getPO(getM_CostType_ID(), get_TrxName()); } /** Set Cost Type. @@ -416,9 +416,9 @@ public class X_T_BOMLine extends PO implements I_T_BOMLine, I_Persistent return ii.intValue(); } - public I_M_Product getM_Product() throws RuntimeException + public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { - return (I_M_Product)MTable.get(getCtx(), I_M_Product.Table_Name) + return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_Name) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @@ -579,4 +579,18 @@ public class X_T_BOMLine extends PO implements I_T_BOMLine, I_Persistent return 0; return ii.intValue(); } + + /** Set T_BOMLine_UU. + @param T_BOMLine_UU T_BOMLine_UU */ + public void setT_BOMLine_UU (String T_BOMLine_UU) + { + set_Value (COLUMNNAME_T_BOMLine_UU, T_BOMLine_UU); + } + + /** Get T_BOMLine_UU. + @return T_BOMLine_UU */ + public String getT_BOMLine_UU () + { + return (String)get_Value(COLUMNNAME_T_BOMLine_UU); + } } \ No newline at end of file diff --git a/org.adempiere.base/src/org/eevolution/model/X_T_MRP_CRP.java b/org.adempiere.base/src/org/eevolution/model/X_T_MRP_CRP.java index 66e2cddd10..befdc81a54 100644 --- a/org.adempiere.base/src/org/eevolution/model/X_T_MRP_CRP.java +++ b/org.adempiere.base/src/org/eevolution/model/X_T_MRP_CRP.java @@ -1,6 +1,6 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * - * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. * + * Product: iDempiere ERP & CRM Smart Business Solution * + * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * @@ -22,15 +22,15 @@ import java.util.Properties; import org.compiere.model.*; /** Generated Model for T_MRP_CRP - * @author Adempiere (generated) - * @version Release 3.6.0LTS - $Id$ */ + * @author iDempiere (generated) + * @version Release 1.0a - $Id$ */ public class X_T_MRP_CRP extends PO implements I_T_MRP_CRP, I_Persistent { /** * */ - private static final long serialVersionUID = 20100614L; + private static final long serialVersionUID = 20121031L; /** Standard Constructor */ public X_T_MRP_CRP (Properties ctx, int T_MRP_CRP_ID, String trxName) @@ -70,9 +70,9 @@ public class X_T_MRP_CRP extends PO implements I_T_MRP_CRP, I_Persistent return sb.toString(); } - public I_AD_PInstance getAD_PInstance() throws RuntimeException + public org.compiere.model.I_AD_PInstance getAD_PInstance() throws RuntimeException { - return (I_AD_PInstance)MTable.get(getCtx(), I_AD_PInstance.Table_Name) + return (org.compiere.model.I_AD_PInstance)MTable.get(getCtx(), org.compiere.model.I_AD_PInstance.Table_Name) .getPO(getAD_PInstance_ID(), get_TrxName()); } /** Set Process Instance. @@ -154,4 +154,18 @@ public class X_T_MRP_CRP extends PO implements I_T_MRP_CRP, I_Persistent return 0; return ii.intValue(); } + + /** Set T_MRP_CRP_UU. + @param T_MRP_CRP_UU T_MRP_CRP_UU */ + public void setT_MRP_CRP_UU (String T_MRP_CRP_UU) + { + set_Value (COLUMNNAME_T_MRP_CRP_UU, T_MRP_CRP_UU); + } + + /** Get T_MRP_CRP_UU. + @return T_MRP_CRP_UU */ + public String getT_MRP_CRP_UU () + { + return (String)get_Value(COLUMNNAME_T_MRP_CRP_UU); + } } \ No newline at end of file From a198c32c5982520f55d0d7f078f61ef127b363e2 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Wed, 31 Oct 2012 19:11:02 -0500 Subject: [PATCH 18/22] Remove obsolete duplicate files --- migration/.classpath | 11 +- migration/All320-340/oracle/320-340_or.sql | 17604 ---------------- .../All320-340/postgresql/320-340_pg.sql | 15984 -------------- 3 files changed, 5 insertions(+), 33594 deletions(-) delete mode 100644 migration/All320-340/oracle/320-340_or.sql delete mode 100644 migration/All320-340/postgresql/320-340_pg.sql diff --git a/migration/.classpath b/migration/.classpath index db60f60b3f..cd340092c2 100644 --- a/migration/.classpath +++ b/migration/.classpath @@ -1,6 +1,5 @@ - - - - - - + + + + + diff --git a/migration/All320-340/oracle/320-340_or.sql b/migration/All320-340/oracle/320-340_or.sql deleted file mode 100644 index cf5d75a56e..0000000000 --- a/migration/All320-340/oracle/320-340_or.sql +++ /dev/null @@ -1,17604 +0,0 @@ -SET SQLBLANKLINES ON -SET DEFINE OFF -SPOOL 320-330 -SELECT '001_add_brazilian_states.sql' AS Filename FROM dual; ---Enable Brazil in country Table -UPDATE C_COUNTRY SET hasregion = 'Y', regionname = 'Estado' WHERE c_country_id = 139; - - - ---Add Brazilian States -INSERT INTO C_REGION VALUES (441, 0, 0, 'Y', TO_DATE ('2007-04-30 16:40:42', 'YYYY-MM-DD HH24:MI:SS'), 0, TO_DATE ('2007-04-30 16:40:42', 'YYYY-MM-DD HH24:MI:SS'), 0, 'AC', 'Acre', 139, 'N'); -INSERT INTO C_REGION VALUES (442, 0, 0, 'Y', TO_DATE ('2007-04-30 16:40:57', 'YYYY-MM-DD HH24:MI:SS'), 0, TO_DATE ('2007-04-30 16:40:57', 'YYYY-MM-DD HH24:MI:SS'), 0, 'AL', 'Alagoas', 139, 'N'); -INSERT INTO C_REGION VALUES (443, 0, 0, 'Y', TO_DATE ('2007-04-30 16:41:06', 'YYYY-MM-DD HH24:MI:SS'), 0, TO_DATE ('2007-04-30 16:41:06', 'YYYY-MM-DD HH24:MI:SS'), 0, 'AP', 'Amapá', 139, 'N'); -INSERT INTO C_REGION VALUES (444, 0, 0, 'Y', TO_DATE ('2007-04-30 16:41:19', 'YYYY-MM-DD HH24:MI:SS'), 0, TO_DATE ('2007-04-30 16:41:19', 'YYYY-MM-DD HH24:MI:SS'), 0, 'AM', 'Amazonas', 139, 'N'); -INSERT INTO C_REGION VALUES (445, 0, 0, 'Y', TO_DATE ('2007-04-30 16:41:29', 'YYYY-MM-DD HH24:MI:SS'), 0, TO_DATE ('2007-04-30 16:41:29', 'YYYY-MM-DD HH24:MI:SS'), 0, 'BA', 'Bahia', 139, 'N'); -INSERT INTO C_REGION VALUES (446, 0, 0, 'Y', TO_DATE ('2007-04-30 16:41:49', 'YYYY-MM-DD HH24:MI:SS'), 0, TO_DATE ('2007-04-30 16:41:49', 'YYYY-MM-DD HH24:MI:SS'), 0, 'CE', 'Ceará°', 139, 'N'); -INSERT INTO C_REGION VALUES (447, 0, 0, 'Y', TO_DATE ('2007-04-30 16:42:04', 'YYYY-MM-DD HH24:MI:SS'), 0, TO_DATE ('2007-04-30 16:42:04', 'YYYY-MM-DD HH24:MI:SS'), 0, 'DF', 'Distrito Federal', 139, 'N'); -INSERT INTO C_REGION VALUES (448, 0, 0, 'Y', TO_DATE ('2007-04-30 16:42:19', 'YYYY-MM-DD HH24:MI:SS'), 0, TO_DATE ('2007-04-30 16:42:19', 'YYYY-MM-DD HH24:MI:SS'), 0, 'ES', 'Espírito Santo', 139, 'N'); -INSERT INTO C_REGION VALUES (449, 0, 0, 'Y', TO_DATE ('2007-04-30 16:42:34', 'YYYY-MM-DD HH24:MI:SS'), 0, TO_DATE ('2007-04-30 16:42:34', 'YYYY-MM-DD HH24:MI:SS'), 0, 'GO', 'Goiás', 139, 'N'); -INSERT INTO C_REGION VALUES (450, 0, 0, 'Y', TO_DATE ('2007-04-30 16:42:40', 'YYYY-MM-DD HH24:MI:SS'), 0, TO_DATE ('2007-04-30 16:42:40', 'YYYY-MM-DD HH24:MI:SS'), 0, 'MA', 'Maranhão', 139, 'N'); -INSERT INTO C_REGION VALUES (451, 0, 0, 'Y', TO_DATE ('2007-04-30 16:42:49', 'YYYY-MM-DD HH24:MI:SS'), 0, TO_DATE ('2007-04-30 16:42:49', 'YYYY-MM-DD HH24:MI:SS'), 0, 'MT', 'Mato Grosso', 139, 'N'); -INSERT INTO C_REGION VALUES (452, 0, 0, 'Y', TO_DATE ('2007-04-30 16:43:00', 'YYYY-MM-DD HH24:MI:SS'), 0, TO_DATE ('2007-04-30 16:43:00', 'YYYY-MM-DD HH24:MI:SS'), 0, 'MS', 'Mato Grosso do Sul', 139, 'N'); -INSERT INTO C_REGION VALUES (453, 0, 0, 'Y', TO_DATE ('2007-04-30 16:43:11', 'YYYY-MM-DD HH24:MI:SS'), 0, TO_DATE ('2007-04-30 16:43:11', 'YYYY-MM-DD HH24:MI:SS'), 0, 'MG', 'Minas Gerais', 139, 'N'); -INSERT INTO C_REGION VALUES (454, 0, 0, 'Y', TO_DATE ('2007-04-30 16:43:21', 'YYYY-MM-DD HH24:MI:SS'), 0, TO_DATE ('2007-04-30 16:43:21', 'YYYY-MM-DD HH24:MI:SS'), 0, 'PA', 'Pará', 139, 'N'); -INSERT INTO C_REGION VALUES (455, 0, 0, 'Y', TO_DATE ('2007-04-30 16:43:31', 'YYYY-MM-DD HH24:MI:SS'), 0, TO_DATE ('2007-04-30 16:43:31', 'YYYY-MM-DD HH24:MI:SS'), 0, 'PB', 'Paraíba', 139, 'N'); -INSERT INTO C_REGION VALUES (456, 0, 0, 'Y', TO_DATE ('2007-04-30 16:43:40', 'YYYY-MM-DD HH24:MI:SS'), 0, TO_DATE ('2007-04-30 16:43:40', 'YYYY-MM-DD HH24:MI:SS'), 0, 'PR', 'Paraná', 139, 'N'); -INSERT INTO C_REGION VALUES (457, 0, 0, 'Y', TO_DATE ('2007-04-30 16:43:53', 'YYYY-MM-DD HH24:MI:SS'), 0, TO_DATE ('2007-04-30 16:43:53', 'YYYY-MM-DD HH24:MI:SS'), 0, 'PE', 'Pernambuco', 139, 'N'); -INSERT INTO C_REGION VALUES (458, 0, 0, 'Y', TO_DATE ('2007-04-30 16:44:03', 'YYYY-MM-DD HH24:MI:SS'), 0, TO_DATE ('2007-04-30 16:44:03', 'YYYY-MM-DD HH24:MI:SS'), 0, 'PI', 'Piauí', 139, 'N'); -INSERT INTO C_REGION VALUES (459, 0, 0, 'Y', TO_DATE ('2007-04-30 16:44:30', 'YYYY-MM-DD HH24:MI:SS'), 0, TO_DATE ('2007-04-30 16:44:30', 'YYYY-MM-DD HH24:MI:SS'), 0, 'RJ', 'Rio de Janeiro', 139, 'N'); -INSERT INTO C_REGION VALUES (460, 0, 0, 'Y', TO_DATE ('2007-04-30 16:44:43', 'YYYY-MM-DD HH24:MI:SS'), 0, TO_DATE ('2007-04-30 16:44:43', 'YYYY-MM-DD HH24:MI:SS'), 0, 'RN', 'Rio Grande do Norte', 139, 'N'); -INSERT INTO C_REGION VALUES (461, 0, 0, 'Y', TO_DATE ('2007-04-30 16:44:59', 'YYYY-MM-DD HH24:MI:SS'), 0, TO_DATE ('2007-04-30 16:44:59', 'YYYY-MM-DD HH24:MI:SS'), 0, 'RS', 'Rio Grande do Sul', 139, 'N'); -INSERT INTO C_REGION VALUES (462, 0, 0, 'Y', TO_DATE ('2007-04-30 16:45:07', 'YYYY-MM-DD HH24:MI:SS'), 0, TO_DATE ('2007-04-30 16:45:07', 'YYYY-MM-DD HH24:MI:SS'), 0, 'RO', 'Rondônia', 139, 'N'); -INSERT INTO C_REGION VALUES (463, 0, 0, 'Y', TO_DATE ('2007-04-30 16:45:20', 'YYYY-MM-DD HH24:MI:SS'), 0, TO_DATE ('2007-04-30 16:45:20', 'YYYY-MM-DD HH24:MI:SS'), 0, 'RR', 'Roraima', 139, 'N'); -INSERT INTO C_REGION VALUES (464, 0, 0, 'Y', TO_DATE ('2007-04-30 16:45:30', 'YYYY-MM-DD HH24:MI:SS'), 0, TO_DATE ('2007-04-30 16:45:30', 'YYYY-MM-DD HH24:MI:SS'), 0, 'SC', 'Santa Catarina', 139, 'N'); -INSERT INTO C_REGION VALUES (465, 0, 0, 'Y', TO_DATE ('2007-04-30 16:45:40', 'YYYY-MM-DD HH24:MI:SS'), 0, TO_DATE ('2007-04-30 16:45:40', 'YYYY-MM-DD HH24:MI:SS'), 0, 'SP', 'Sõo Paulo', 139, 'N'); -INSERT INTO C_REGION VALUES (466, 0, 0, 'Y', TO_DATE ('2007-04-30 16:45:53', 'YYYY-MM-DD HH24:MI:SS'), 0, TO_DATE ('2007-04-30 16:45:53', 'YYYY-MM-DD HH24:MI:SS'), 0, 'SE', 'Sergipe', 139, 'N'); -INSERT INTO C_REGION VALUES (467, 0, 0, 'Y', TO_DATE ('2007-04-30 16:46:03', 'YYYY-MM-DD HH24:MI:SS'), 0, TO_DATE ('2007-04-30 16:46:03', 'YYYY-MM-DD HH24:MI:SS'), 0, 'TO', 'Tocantins', 139, 'N'); - - - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (c_region_id) + 1 - FROM C_REGION - WHERE c_region_id < 1000000) - WHERE NAME = 'C_Region'; - - - -SELECT '002_add_feature_1714090.sql' AS Filename FROM dual; --- Feature Request --- juddm - add the ability to specific a shipment date (instead of current date) to the shipment generation process --- http://sourceforge.net/tracker/index.php?func=detail&aid=1714090&group_id=176962&atid=879335 - -INSERT INTO AD_PROCESS_PARA - (ad_process_para_id, ad_client_id, ad_org_id, isactive, created, - createdby, updated, updatedby, NAME, - description, - HELP, - ad_process_id, seqno, ad_reference_id, ad_reference_value_id, - ad_val_rule_id, columnname, iscentrallymaintained, fieldlength, - ismandatory, isrange, ad_element_id, entitytype - ) - VALUES (50019, 0, 0, 'Y', TO_DATE ('2007-03-03', 'YYYY-MM-DD'), - 100, TO_DATE ('2007-03-03', 'YYYY-MM-DD'), 100, 'Shipment Date', - 'Date printed on shipment', - 'The Shipment Date indicates the date printed on the shipment.', - 118, 15, 15, NULL, - NULL, 'MovementDate', 'N', 0, - 'Y', 'N', 1037, 'D' - ); - - - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_process_para_id) + 1 - FROM AD_PROCESS_PARA - WHERE ad_process_para_id < 1000000) - WHERE NAME = 'AD_Process_Para'; - - - -SELECT '003_make_feature_1714090_optional.sql' AS Filename FROM dual; -UPDATE AD_PROCESS_PARA - SET defaultvalue = NULL, - ismandatory = 'N', - updated = TO_DATE ('2007-05-07 20:55:59', 'YYYY-MM-DD HH24:MI:SS'), - updatedby = 100 - WHERE ad_process_para_id = 50019; - - - -SELECT '004_java_process_official.sql' AS Filename FROM dual; --- only needed for oracle - -UPDATE AD_PROCESS - SET classname = 'org.compiere.process.SynchronizeTerminology', - procedurename = NULL, - updated = TO_DATE ('2007-05-07 21:20:30', 'YYYY-MM-DD HH24:MI:SS'), - updatedby = 100 - WHERE ad_process_id = 172; - - - -DROP PROCEDURE Ad_Synchronize; - -SELECT '005_2pack_enhancements_message.sql' AS Filename FROM dual; -ALTER TABLE AD_PACKAGE_EXP_DETAIL ADD ad_message_id NUMBER(10); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, VERSION, entitytype, columnname, - ad_table_id, ad_reference_id, fieldlength, iskey, isparent, - ismandatory, isupdateable, isidentifier, seqno, istranslated, - isencrypted, isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (50213, 0, 0, 'Y', - TO_DATE ('05/14/2007 19:48:41', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('05/14/2007 19:48:41', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Message', 'System Message', - 'Information and Error messages', 0, 'D', 'AD_Message_ID', - 50006, 19, 22, 'N', 'N', - 'N', 'Y', 'N', 0, 'N', - 'N', 'N', 1752, 'N', - 'N' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, HELP, - iscentrallymaintained, ad_tab_id, ad_column_id, isdisplayed, - displaylogic, displaylength, isreadonly, seqno, issameline, - isheading, isfieldonly, isencrypted, entitytype - ) - VALUES (50183, 0, 0, 'Y', - TO_DATE ('05/14/2007 19:51:35', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('05/14/2007 19:52:28', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Message', 'System Message', 'Information and Error messages', - 'Y', 50006, 50213, 'Y', - '@Type@=''MSG''', 22, 'N', 246, 'N', - 'N', 'N', 'N', 'D' - ); - -INSERT INTO AD_REF_LIST - (ad_ref_list_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - VALUE, NAME, ad_reference_id, entitytype - ) - VALUES (50043, 0, 0, 'Y', - TO_DATE ('05/14/2007 19:54:20', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('05/14/2007 19:54:20', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'MSG', 'Message', 50004, 'D' - ); - - - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_column_id) + 1 - FROM AD_COLUMN - WHERE ad_column_id < 1000000) - WHERE NAME = 'AD_Column'; - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_field_id) + 1 - FROM AD_FIELD - WHERE ad_field_id < 1000000) - WHERE NAME = 'AD_Field'; - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_ref_list_id) + 1 - FROM AD_REF_LIST - WHERE ad_ref_list_id < 1000000) - WHERE NAME = 'AD_Ref_List'; - - -SELECT '006_BF_1721252_xe.sql' AS Filename FROM dual; --- --- [ 1721252 ] XE: paymentTermDiscount not using C_NonBusinessDay --- http://sourceforge.net/tracker/?func=detail&atid=879332&aid=1721252&group_id=176962 --- --- Run *ONLY* if you are using Oracle XE --- - -CREATE OR REPLACE -FUNCTION nextBusinessDay -( - p_Date IN DATE, - p_AD_Client_ID IN NUMBER -) -RETURN DATE -/** -*This file is part of Adempiere ERP Bazaar -*http://www.adempiere.org -* -*Copyright (C) 2007 Teo Sarca -* -*This program is free software; you can redistribute it and/or -*modify it under the terms of the GNU General Public License -*as published by the Free Software Foundation; either version 2 -*of the License, or (at your option) any later version. -* -*This program is distributed in the hope that it will be useful, -*but WITHOUT ANY WARRANTY; without even the implied warranty of -*MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -*GNU General Public License for more details. -* -*You should have received a copy of the GNU General Public License -*along with this program; if not, write to the Free Software -*Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.of -*/ -AS - v_nextDate DATE := TRUNC(p_Date); - v_offset NUMBER := 0; - v_Saturday NUMBER := TO_CHAR(TO_DATE('2000-01-01', 'YYYY-MM-DD'), 'D'); - v_Sunday NUMBER := (CASE WHEN v_Saturday = 7 THEN 1 ELSE v_Saturday + 1 END); - v_isHoliday BOOLEAN := TRUE; - - CURSOR nonBusinessDays(pp_Date DATE) IS - SELECT nbd.Date1 FROM C_NONBUSINESSDAY nbd - WHERE AD_Client_ID=p_AD_Client_ID AND IsActive ='Y' AND Date1>=pp_Date - ORDER BY Date1; -BEGIN - v_isHoliday := TRUE; - LOOP - SELECT DECODE(TO_CHAR(v_nextDate,'D'), v_Saturday, 2, v_Sunday, 1, 0) INTO v_offset FROM DUAL; - v_nextDate := TRUNC(v_nextDate + v_offset); - v_isHoliday := FALSE; - FOR nbd IN nonBusinessDays(v_nextDate) LOOP - EXIT WHEN v_nextDate <> TRUNC(nbd.Date1); - v_nextDate := v_nextDate + 1; - v_isHoliday := TRUE; - END LOOP; - EXIT WHEN v_isHoliday=FALSE; - END LOOP; - -- - RETURN v_nextDate; -END nextBusinessDay; -/ - -CREATE OR REPLACE FUNCTION Paymenttermdiscount -( - Amount IN NUMBER, - Currency_ID IN NUMBER, - PaymentTerm_ID IN NUMBER, - DocDate IN DATE, - PayDate IN DATE -) -RETURN NUMBER -/************************************************************************* - * The contents of this file are subject to the Compiere License. You may - * obtain a copy of the License at http://www.compiere.org/license.html - * Software is on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either - * express or implied. See the License for details. Code: Compiere ERP+CRM - * Copyright (C) 1999-2001 Jorg Janke, ComPiere, Inc. All Rights Reserved. - ************************************************************************* - * $Id: C_PaymentTerm_Discount.sql,v 1.1 2006/04/21 17:51:58 jjanke Exp $ - *** - * Title: Calculate Discount - * Description: - * Calculate the allowable Discount Amount of the Payment Term - * - * Test: SELECT C_PaymentTerm_Discount(17777, 103, '10-DEC-1999') FROM DUAL - ************************************************************************/ - -AS - Discount NUMBER := 0; - CURSOR Cur_PT IS - SELECT * - FROM C_PAYMENTTERM - WHERE C_PaymentTerm_ID = PaymentTerm_ID; - Discount1Date DATE; - Discount2Date DATE; - Add1Date NUMBER := 0; - Add2Date NUMBER := 0; -BEGIN - -- No Data - No Discount - IF (Amount IS NULL OR PaymentTerm_ID IS NULL OR DocDate IS NULL) THEN - RETURN 0; - END IF; - - FOR p IN Cur_PT LOOP -- for convineance only --- DBMS_OUTPUT.PUT_LINE(p.Name || ' - Doc = ' || TO_CHAR(DocDate)); - Discount1Date := TRUNC(DocDate + p.DiscountDays + p.GraceDays); - Discount2Date := TRUNC(DocDate + p.DiscountDays2 + p.GraceDays); - - -- Next Business Day - IF (p.IsNextBusinessDay='Y') THEN - Discount1Date := nextBusinessDay(Discount1Date, p.AD_Client_ID); - Discount2Date := nextBusinessDay(Discount2Date, p.AD_Client_ID); - END IF; - - -- Discount 1 - IF (Discount1Date >= TRUNC(PayDate)) THEN --- DBMS_OUTPUT.PUT_LINE('Discount 1 ' || TO_CHAR(Discount1Date) || ' ' || p.Discount); - Discount := Amount * p.Discount / 100; - -- Discount 2 - ELSIF (Discount2Date >= TRUNC(PayDate)) THEN --- DBMS_OUTPUT.PUT_LINE('Discount 2 ' || TO_CHAR(Discount2Date) || ' ' || p.Discount2); - Discount := Amount * p.Discount2 / 100; - END IF; - END LOOP; - -- - RETURN ROUND(NVL(Discount,0), 2); -- fixed rounding -END Paymenttermdiscount; -/ - - -SELECT '007_add_StoreArchiveOnFilesystem.sql' AS Filename FROM dual; -INSERT INTO AD_ELEMENT - (ad_element_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - columnname, entitytype, NAME, - printname - ) - VALUES (50071, 0, 0, 'Y', - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'StoreArchiveOnFileSystem', 'D', 'Store Archive On File System', - 'Store Archive On File System' - ); - - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, VERSION, - entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, seqno, istranslated, isencrypted, - isselectioncolumn, ad_element_id, callout, issyncdatabase, - isalwaysupdateable - ) - VALUES (50214, 0, 0, 'Y', - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Store Archive On File System', 'Store Archive On File System', 1, - 'D', 'StoreArchiveOnFileSystem', 112, 20, - 1, 'N', 'N', 'Y', 'Y', - 'N', 0, 'N', 'N', - 'N', 50071, 'org.compiere.model.CalloutClient.storeArchiveOnFileSystem', 'N', - 'N' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, iscentrallymaintained, seqno, ad_tab_id, - ad_column_id, isdisplayed, displaylength, isreadonly, - issameline, isheading, isfieldonly, isencrypted, entitytype - ) - VALUES (50184, 0, 0, 'Y', - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Store Archive On File System', 'Store Archive On File System', 'Y', 250, 145, - 50214, 'Y', 1, 'N', - 'N', 'N', 'N', 'N', 'D' - ); - - - -INSERT INTO AD_ELEMENT - (ad_element_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - columnname, entitytype, NAME, - printname - ) - VALUES (50072, 0, 0, 'Y', - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'WindowsArchivePath', 'D', 'Windows Archive Path', - 'Windows Archive Path' - ); - - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - help, VERSION, - entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, seqno, istranslated, isencrypted, - isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (50215, 0, 0, 'Y', - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Windows Archive Path', 'Windows Archive Path - If you change this value make sure to copy the archive entries to the new path!', - 'Path of the adempiere archive entries in the file system. If you change this value make sure to copy the archive entries to the new path!', 1, - 'D', 'WindowsArchivePath', 112, 10, - 255, 'N', 'N', 'N', 'Y', - 'N', 0, 'N', 'N', - 'N', 50072, 'N', - 'N' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - help, - iscentrallymaintained, seqno, ad_tab_id, - ad_column_id, isdisplayed, displaylength, isreadonly, - issameline, isheading, isfieldonly, isencrypted, entitytype, displaylogic - ) - VALUES (50185, 0, 0, 'Y', - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Windows Archive Path', 'Windows Archive Path', - 'If you change this value make sure to copy the archive entries to the new path!', - 'Y', 260, 145, - 50215, 'Y', 1, 'N', - 'N', 'N', 'N', 'N', 'D','@StoreArchiveOnFileSystem@=''Y''' - ); - - -INSERT INTO AD_ELEMENT - (ad_element_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - columnname, entitytype, NAME, - printname - ) - VALUES (50073, 0, 0, 'Y', - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'UnixArchivePath', 'D', 'Unix Archive Path', - 'Unix Archive Path' - ); - - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - help, VERSION, - entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, seqno, istranslated, isencrypted, - isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (50216, 0, 0, 'Y', - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Unix Archive Path', 'Unix Archive Path - If you change this value make sure to copy the archive entries to the new path!', - 'Path of the adempiere archive entries in the file system. If you change this value make sure to copy the archive entries to the new path!', 1, - 'D', 'UnixArchivePath', 112, 10, - 255, 'N', 'N', 'N', 'Y', - 'N', 0, 'N', 'N', - 'N', 50073, 'N', - 'N' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - help, - iscentrallymaintained, seqno, ad_tab_id, - ad_column_id, isdisplayed, displaylength, isreadonly, - issameline, isheading, isfieldonly, isencrypted, entitytype, displaylogic - ) - VALUES (50186, 0, 0, 'Y', - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Unix Archive Path', 'Unix Archive Path', - 'If you change this value make sure to copy the archive entries to the new path!', - 'Y', 270 ,145, - 50216, 'Y', 1, 'N', - 'Y', 'N', 'N', 'N', 'D','@StoreArchiveOnFileSystem@=''Y''' - ); - -INSERT INTO AD_MESSAGE - (ad_message_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - VALUE, msgtext, msgtype - ) - VALUES (50015, 0, 0, 'Y', - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'StoreArchiveWarning', - 'If you change the archive storage method, the old archive entries are no longer available to your client.','I' - ); - -INSERT INTO AD_MESSAGE - (ad_message_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - VALUE, msgtext, msgtype - ) - VALUES (50016, 0, 0, 'Y', - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'ArchivePathWarning','Make sure to copy the archive entries to the new path!','I' - ); - -INSERT INTO AD_MESSAGE_TRL - (ad_message_id, AD_LANGUAGE, ad_client_id, ad_org_id, isactive, - created, createdby, updated, updatedby, msgtext, msgtip, - istranslated) - SELECT m.ad_message_id, lang.AD_LANGUAGE, m.ad_client_id, m.ad_org_id, 'Y', - m.created, m.createdby, m.updated, m.updatedby, m.msgtext, m.msgtip, - 'N' - FROM AD_MESSAGE m, AD_LANGUAGE lang - WHERE m.ad_message_id IN (50015, 50016) - AND lang.issystemlanguage = 'Y' - AND lang.isbaselanguage = 'N' - AND NOT EXISTS ( - SELECT * - FROM AD_MESSAGE_TRL m2 - WHERE m2.ad_message_id = m.ad_message_id - AND m2.AD_LANGUAGE = lang.AD_LANGUAGE); - - - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_element_id) + 1 - FROM AD_ELEMENT - WHERE ad_element_id < 1000000) - WHERE NAME = 'AD_Element'; - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_column_id) + 1 - FROM AD_COLUMN - WHERE ad_column_id < 1000000) - WHERE NAME = 'AD_Column'; - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_field_id) + 1 - FROM AD_FIELD - WHERE ad_field_id < 1000000) - WHERE NAME = 'AD_Field'; - - UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_message_id) + 1 - FROM AD_MESSAGE - WHERE ad_message_id < 1000000) - WHERE NAME = 'AD_Message'; - - -ALTER TABLE AD_CLIENT ADD StoreArchiveOnFilesystem CHAR(1 BYTE) DEFAULT 'N' NOT NULL; -ALTER TABLE AD_CLIENT ADD WindowsArchivePath NVARCHAR2(255); -ALTER TABLE AD_CLIENT ADD UnixArchivePath NVARCHAR2(255); - - - -SELECT '008_2pack_enhancements_printformat.sql' AS Filename FROM dual; -ALTER TABLE AD_PACKAGE_EXP_DETAIL ADD ad_printformat_id NUMERIC(10,0); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, VERSION, entitytype, columnname, - ad_table_id, ad_reference_id, fieldlength, iskey, isparent, - ismandatory, isupdateable, isidentifier, seqno, istranslated, - isencrypted, isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (50217, 0, 0, 'Y', - TO_DATE ('05/25/2007 19:48:41', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('05/25/2007 19:48:41', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Print Format', 'Data Print Format', - 'The print format determines how data is rendered for print.', 0, 'D', 'AD_PrintFormat_ID', - 50006, 19, 22, 'N', 'N', - 'N', 'Y', 'N', 0, 'N', - 'N', 'N', 1790, 'N', - 'N' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, HELP, - iscentrallymaintained, ad_tab_id, ad_column_id, isdisplayed, - displaylogic, displaylength, isreadonly, seqno, issameline, - isheading, isfieldonly, isencrypted, entitytype - ) - VALUES (50187, 0, 0, 'Y', - TO_DATE ('05/25/2007 19:51:35', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('05/25/2007 19:52:28', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'PrintFormat', 'Print Format', 'Print Format', - 'Y', 50006, 50217, 'Y', - '@Type@=''PFT''', 22, 'N', 246, 'N', - 'N', 'N', 'N', 'D' - ); - -INSERT INTO AD_REF_LIST - (ad_ref_list_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - VALUE, NAME, ad_reference_id, entitytype - ) - VALUES (50044, 0, 0, 'Y', - TO_DATE ('05/14/2007 19:54:20', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('05/14/2007 19:54:20', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'PFT', 'PrintFormat', 50004, 'D' - ); - - - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_column_id) + 1 - FROM AD_COLUMN - WHERE ad_column_id < 1000000) - WHERE NAME = 'AD_Column'; - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_field_id) + 1 - FROM AD_FIELD - WHERE ad_field_id < 1000000) - WHERE NAME = 'AD_Field'; - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_ref_list_id) + 1 - FROM AD_REF_LIST - WHERE ad_ref_list_id < 1000000) - WHERE NAME = 'AD_Ref_List'; - - - -SELECT '009_add_MandatoryLogic.sql' AS Filename FROM dual; -SET DEFINE OFF; - -INSERT INTO AD_ELEMENT - (ad_element_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - columnname, entitytype, NAME, - printname - ) - VALUES (50074, 0, 0, 'Y', - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'MandatoryLogic', 'D', 'Mandatory Logic', - 'Mandatory Logic' - ); - - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - help, VERSION, - entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, seqno, istranslated, isencrypted, - isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (50218, 0, 0, 'Y', - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Mandatory Logic', 'Logic to determine if field is mandatory (applies only when field is not mandatory in general)', - 'Logic to determine if field is mandatory (applies only when field is not mandatory in general). -format := {expression} [{logic} {expression}]
-expression := @{CONTEXT}@{operand}{VALUE} OR @{CONTEXT}@{operand}{VALUE}
-logic := {|}|{&}
-CONTEXT := ANY GLOBAL OR window CONTEXT
-VALUE := strings OR numbers
-logic operators := AND OR OR WITH THE PREVIOUS result FROM LEFT TO RIGHT
-operand := eq{=}, gt{>}, le{<}, NOT{~^!}
-Examples:
-'|| -'@AD_Table_ID@=14 | @LANGUAGE@!GERGER
-'|| -'@PriceLimit@>10 | @PriceList@>@PriceActual@
-'|| -'@NAME@>J
-Strings may be IN SINGLE quotes (optional)', 1, - 'D', 'MandatoryLogic', 101, 14, - 2000, 'N', 'N', 'N', 'Y', - 'N', 0, 'N', 'N', - 'N', 50074, 'N', - 'N' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - help, - iscentrallymaintained, seqno, ad_tab_id, - ad_column_id, isdisplayed, displaylength, isreadonly, - issameline, isheading, isfieldonly, isencrypted, entitytype - ) - VALUES (50188, 0, 0, 'Y', - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Mandatory Logic', 'Logic to determine if field is mandatory (applies only when field is not mandatory in general)', - 'Logic to determine if field is mandatory (applies only when field is not mandatory in general). -format := {expression} [{logic} {expression}]
-expression := @{CONTEXT}@{operand}{VALUE} OR @{CONTEXT}@{operand}{VALUE}
-logic := {|}|{&}
-CONTEXT := ANY GLOBAL OR window CONTEXT
-VALUE := strings OR numbers
-logic operators := AND OR OR WITH THE PREVIOUS result FROM LEFT TO RIGHT
-operand := eq{=}, gt{>}, le{<}, NOT{~^!}
-Examples:
-'|| -'@AD_Table_ID@=14 | @LANGUAGE@!GERGER
-'|| -'@PriceLimit@>10 | @PriceList@>@PriceActual@
-'|| -'@NAME@>J
-Strings may be IN SINGLE quotes (optional)', - 'Y', 275 ,101, - 50218, 'Y', 60, 'N', - 'N', 'N', 'N', 'N', 'D' - ); - - - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_element_id) + 1 - FROM AD_ELEMENT - WHERE ad_element_id < 1000000) - WHERE NAME = 'AD_Element'; - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_column_id) + 1 - FROM AD_COLUMN - WHERE ad_column_id < 1000000) - WHERE NAME = 'AD_Column'; - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_field_id) + 1 - FROM AD_FIELD - WHERE ad_field_id < 1000000) - WHERE NAME = 'AD_Field'; - - - -ALTER TABLE AD_COLUMN ADD MandatoryLogic NVARCHAR2(2000); - - - - CREATE OR REPLACE FORCE VIEW AD_FIELD_V AS - SELECT t.AD_Window_ID, f.AD_Tab_ID, f.AD_Field_ID, tbl.AD_Table_ID, f.AD_Column_ID, - f.NAME, f.Description, f.Help, f.IsDisplayed, f.DisplayLogic, f.DisplayLength, - f.SeqNo, f.SortNo, f.IsSameLine, f.IsHeading, f.IsFieldOnly, f.IsReadOnly, - f.IsEncrypted AS IsEncryptedField, f.ObscureType, - c.ColumnName, c.ColumnSQL, c.FieldLength, c.VFormat, c.DefaultValue, c.IsKey, c.IsParent, - COALESCE(f.IsMandatory, c.IsMandatory) AS IsMandatory, - c.IsIdentifier, c.IsTranslated, c.AD_Reference_Value_ID, - c.Callout, COALESCE(f.AD_Reference_ID, c.AD_Reference_ID) AS AD_Reference_ID, - c.AD_Val_Rule_ID, c.AD_Process_ID, c.IsAlwaysUpdateable, - c.ReadOnlyLogic, c.MandatoryLogic, c.IsUpdateable, c.IsEncrypted AS IsEncryptedColumn, - c.IsSelectionColumn, - tbl.TableName, c.ValueMin, c.ValueMax, - fg.NAME AS FieldGroup, vr.Code AS ValidationCode -FROM AD_FIELD f - INNER JOIN AD_TAB t ON (f.AD_Tab_ID = t.AD_Tab_ID) - LEFT OUTER JOIN AD_FIELDGROUP fg ON (f.AD_FieldGroup_ID = fg.AD_FieldGroup_ID) - LEFT OUTER JOIN AD_COLUMN c ON (f.AD_Column_ID = c.AD_Column_ID) - INNER JOIN AD_TABLE tbl ON (c.AD_Table_ID = tbl.AD_Table_ID) - INNER JOIN AD_REFERENCE r ON (c.AD_Reference_ID = r.AD_Reference_ID) - LEFT OUTER JOIN AD_VAL_RULE vr ON (c.AD_Val_Rule_ID=vr.AD_Val_Rule_ID) -WHERE f.IsActive = 'Y' - AND c.IsActive = 'Y'; - - - CREATE OR REPLACE FORCE VIEW AD_FIELD_VT AS - SELECT trl.AD_LANGUAGE, t.AD_Window_ID, f.AD_Tab_ID, f.AD_Field_ID, tbl.AD_Table_ID, f.AD_Column_ID, - trl.NAME, trl.Description, trl.Help, f.IsDisplayed, f.DisplayLogic, f.DisplayLength, - f.SeqNo, f.SortNo, f.IsSameLine, f.IsHeading, f.IsFieldOnly, f.IsReadOnly, - f.IsEncrypted AS IsEncryptedField, f.ObscureType, - c.ColumnName, c.ColumnSQL, c.FieldLength, c.VFormat, c.DefaultValue, c.IsKey, c.IsParent, - COALESCE(f.IsMandatory, c.IsMandatory) AS IsMandatory, - c.IsIdentifier, c.IsTranslated, c.AD_Reference_Value_ID, - c.Callout, COALESCE(f.AD_Reference_ID, c.AD_Reference_ID) AS AD_Reference_ID, - c.AD_Val_Rule_ID, c.AD_Process_ID, c.IsAlwaysUpdateable, - c.ReadOnlyLogic, c.MandatoryLogic, c.IsUpdateable, c.IsEncrypted AS IsEncryptedColumn, c.IsSelectionColumn, - tbl.TableName, c.ValueMin, c.ValueMax, - fgt.NAME AS FieldGroup, vr.Code AS ValidationCode - FROM AD_FIELD f - INNER JOIN AD_FIELD_TRL trl ON (f.AD_Field_ID = trl.AD_Field_ID) - INNER JOIN AD_TAB t ON (f.AD_Tab_ID = t.AD_Tab_ID) - LEFT OUTER JOIN AD_FIELDGROUP_TRL fgt ON - (f.AD_FieldGroup_ID = fgt.AD_FieldGroup_ID AND trl.AD_LANGUAGE=fgt.AD_LANGUAGE) - LEFT OUTER JOIN AD_COLUMN c ON (f.AD_Column_ID = c.AD_Column_ID) - INNER JOIN AD_TABLE tbl ON (c.AD_Table_ID = tbl.AD_Table_ID) - INNER JOIN AD_REFERENCE r ON (c.AD_Reference_ID = r.AD_Reference_ID) - LEFT OUTER JOIN AD_VAL_RULE vr ON (c.AD_Val_Rule_ID=vr.AD_Val_Rule_ID) - WHERE f.IsActive = 'Y' - AND c.IsActive = 'Y'; - - - -SELECT '010_add_printpreview_button.sql' AS Filename FROM dual; -INSERT INTO AD_MESSAGE - (ad_message_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - VALUE, msgtext, msgtype - ) - VALUES (50017, 0, 0, 'Y', - TO_DATE ('06/12/2007 18:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('06/12/2007 18:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'PrintPreview','Print preview','I' - ); - - - - UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_message_id) + 1 - FROM AD_MESSAGE - WHERE ad_message_id < 1000000) - WHERE NAME = 'AD_Message'; - - - -SELECT '013_fix_istranslated.sql' AS Filename FROM dual; -UPDATE AD_COLUMN - SET istranslated = 'N' - WHERE ad_column_id = 7604; - -UPDATE AD_COLUMN - SET istranslated = 'Y' - WHERE ad_column_id = 6256; - - - -SELECT '014_postcode_lookup.sql' AS Filename FROM dual; ---- --- Feature 1741222 - Add Post code lookup infrastructure --- http://sourceforge.net/tracker/index.php?func=detail&aid=1741222&group_id=176962&atid=879335 --- - ---- Modify C_COUNTRY Table -ALTER TABLE C_COUNTRY ADD - IsPostcodeLookup CHAR(1) DEFAULT 'N' NOT NULL; -ALTER TABLE C_COUNTRY ADD - LookupClassname VARCHAR(255) DEFAULT NULL NULL; -ALTER TABLE C_COUNTRY ADD - LookupClientID VARCHAR(50) DEFAULT NULL NULL; -ALTER TABLE C_COUNTRY ADD - LookupPassword VARCHAR(50) DEFAULT NULL NULL; -ALTER TABLE C_COUNTRY ADD - LookupUrl VARCHAR(100) DEFAULT NULL NULL; - --- Add Postcode Constraint -ALTER TABLE C_COUNTRY ADD CHECK (IsPostcodeLookup IN ('Y','N')); - --- Insert Element Definitions - -INSERT INTO AD_ELEMENT - (AD_ELEMENT_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, COLUMNNAME, ENTITYTYPE, NAME, PRINTNAME, DESCRIPTION, HELP, PO_NAME, PO_PRINTNAME, PO_DESCRIPTION, PO_HELP) - VALUES (51000, 0, 0, 'Y', TO_DATE('2007-06-19 22:43:07','YYYY-MM-DD HH24:MI:SS'), 100, TO_DATE('2007-06-19 23:09:22','YYYY-MM-DD HH24:MI:SS'), 100, 'IsPostcodeLookup', 'D', 'IsPostcodeLookup', 'IsPostcodeLookup', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT - (AD_ELEMENT_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, COLUMNNAME, ENTITYTYPE, NAME, PRINTNAME, DESCRIPTION, HELP, PO_NAME, PO_PRINTNAME, PO_DESCRIPTION, PO_HELP) - VALUES (51001, 0, 0, 'Y', TO_DATE('2007-06-19 22:43:07','YYYY-MM-DD HH24:MI:SS'), 100, TO_DATE('2007-06-19 23:09:54','YYYY-MM-DD HH24:MI:SS'), 100, 'LookupClassName', 'D', 'LookupClassName', 'LookupClassName', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT - (AD_ELEMENT_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, COLUMNNAME, ENTITYTYPE, NAME, PRINTNAME, DESCRIPTION, HELP, PO_NAME, PO_PRINTNAME, PO_DESCRIPTION, PO_HELP) - VALUES (51002, 0, 0, 'Y', TO_DATE('2007-06-19 22:43:07','YYYY-MM-DD HH24:MI:SS'), 100, TO_DATE('2007-06-19 23:10:06','YYYY-MM-DD HH24:MI:SS'), 100, 'LookupClientID', 'D', 'LookupClientID', 'LookupClientID', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT - (AD_ELEMENT_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, COLUMNNAME, ENTITYTYPE, NAME, PRINTNAME, DESCRIPTION, HELP, PO_NAME, PO_PRINTNAME, PO_DESCRIPTION, PO_HELP) - VALUES (51003, 0, 0, 'Y', TO_DATE('2007-06-19 22:43:07','YYYY-MM-DD HH24:MI:SS'), 100, TO_DATE('2007-06-19 23:10:19','YYYY-MM-DD HH24:MI:SS'), 100, 'LookupUrl', 'D', 'LookupUrl', 'LookupUrl', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT - (AD_ELEMENT_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, COLUMNNAME, ENTITYTYPE, NAME, PRINTNAME, DESCRIPTION, HELP, PO_NAME, PO_PRINTNAME, PO_DESCRIPTION, PO_HELP) - VALUES (51004, 0, 0, 'Y', TO_DATE('2007-06-22 02:03:37','YYYY-MM-DD HH24:MI:SS'), 100, TO_DATE('2007-06-22 02:04:31','YYYY-MM-DD HH24:MI:SS'), 100, 'LookupPassword', 'D', 'LookupPassword', 'LookupPassword', NULL, NULL, NULL, NULL, NULL, NULL); - --- Insert Column Definitions -INSERT INTO AD_COLUMN - (AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, ISALWAYSUPDATEABLE, COLUMNSQL, MANDATORYLOGIC) - VALUES (51000, 0, 0, 'Y', TO_DATE('2007-06-19 22:43:07','YYYY-MM-DD HH24:MI:SS'), TO_DATE('2007-06-19 23:14:47','YYYY-MM-DD HH24:MI:SS'), 100, 100, 'IsPostcodeLookup', NULL, NULL, 0, 'D', 'IsPostcodeLookup', 170, 20, NULL, NULL, 1, 'N', 'N', 'N', 'N', 'Y', NULL, 'N', NULL, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 51000, NULL, 'N', 'N', NULL, NULL); -INSERT INTO AD_COLUMN - (AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, ISALWAYSUPDATEABLE, COLUMNSQL, MANDATORYLOGIC) - VALUES (51001, 0, 0, 'Y', TO_DATE('2007-06-19 22:43:07','YYYY-MM-DD HH24:MI:SS'), TO_DATE('2007-06-19 23:04:48','YYYY-MM-DD HH24:MI:SS'), 100, 100, 'LookupClassName', NULL, NULL, 0, 'D', 'LookupClassName', 170, 10, NULL, NULL, 255, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', NULL, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 51001, NULL, 'N', 'N', NULL, NULL); -INSERT INTO AD_COLUMN - (AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, ISALWAYSUPDATEABLE, COLUMNSQL, MANDATORYLOGIC) - VALUES (51002, 0, 0, 'Y', TO_DATE('2007-06-19 22:43:07','YYYY-MM-DD HH24:MI:SS'), TO_DATE('2007-06-19 23:04:48','YYYY-MM-DD HH24:MI:SS'), 100, 100, 'LookupClientID', NULL, NULL, 0, 'D', 'LookupClientID', 170, 10, NULL, NULL, 50, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', NULL, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 51002, NULL, 'N', 'N', NULL, NULL); -INSERT INTO AD_COLUMN - (AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, ISALWAYSUPDATEABLE, COLUMNSQL, MANDATORYLOGIC) - VALUES (51003, 0, 0, 'Y', TO_DATE('2007-06-19 22:43:07','YYYY-MM-DD HH24:MI:SS'), TO_DATE('2007-06-19 23:04:48','YYYY-MM-DD HH24:MI:SS'), 100, 100, 'LookupUrl', NULL, NULL, 0, 'D', 'LookupUrl', 170, 10, NULL, NULL, 100, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', NULL, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 51003, NULL, 'N', 'N', NULL, NULL); -INSERT INTO AD_COLUMN - (AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, ISALWAYSUPDATEABLE, COLUMNSQL, MANDATORYLOGIC) - VALUES (51004, 0, 0, 'Y', TO_DATE('2007-06-22 02:03:37','YYYY-MM-DD HH24:MI:SS'), TO_DATE('2007-06-22 02:05:17','YYYY-MM-DD HH24:MI:SS'), 100, 100, 'LookupPassword', NULL, NULL, 0, 'D', 'LookupPassword', 170, 10, NULL, NULL, 50, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', NULL, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 51004, NULL, 'N', 'N', NULL, NULL); - --- Insert Field Definitions -INSERT INTO AD_FIELD - (AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES (51000, 0, 0, 'Y', TO_DATE('2007-06-19 23:17:05','YYYY-MM-DD HH24:MI:SS'), 100, TO_DATE('2007-06-19 23:17:05','YYYY-MM-DD HH24:MI:SS'), 100, 'IsPostcodeLookup', NULL, NULL, 'Y', 135, 51000, NULL, 'Y', NULL, 1, 'N', 220, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD - (AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES (51001, 0, 0, 'Y', TO_DATE('2007-06-19 23:17:06','YYYY-MM-DD HH24:MI:SS'), 100, TO_DATE('2007-06-20 09:10:31','YYYY-MM-DD HH24:MI:SS'), 100, 'LookupClassName', NULL, NULL, 'Y', 135, 51001, NULL, 'Y', '@IsPostcodeLookup@ = ''Y''', 255, 'N', 260, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD - (AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES (51002, 0, 0, 'Y', TO_DATE('2007-06-19 23:17:06','YYYY-MM-DD HH24:MI:SS'), 100, TO_DATE('2007-06-20 09:10:17','YYYY-MM-DD HH24:MI:SS'), 100, 'LookupClientID', NULL, NULL, 'Y', 135, 51002, NULL, 'Y', '@IsPostcodeLookup@ = ''Y''', 50, 'N', 240, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD - (AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES (51003, 0, 0, 'Y', TO_DATE('2007-06-19 23:17:06','YYYY-MM-DD HH24:MI:SS'), 100, TO_DATE('2007-06-20 09:10:12','YYYY-MM-DD HH24:MI:SS'), 100, 'LookupUrl', NULL, NULL, 'Y', 135, 51003, NULL, 'Y', '@IsPostcodeLookup@ = ''Y''', 100, 'N', 230, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD - (AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES (51004, 0, 0, 'Y', TO_DATE('2007-06-19 23:17:06','YYYY-MM-DD HH24:MI:SS'), 100, TO_DATE('2007-06-22 02:07:11','YYYY-MM-DD HH24:MI:SS'), 100, 'LookupPassword', NULL, NULL, 'Y', 135, 51004, NULL, 'Y', '@IsPostcodeLookup@ = ''Y''', 50, 'N', 250, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); - --- Update Sequences -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_element_id) + 1 - FROM AD_ELEMENT - WHERE ad_element_id < 1000000) - WHERE NAME = 'AD_Element'; - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_column_id) + 1 - FROM AD_COLUMN - WHERE ad_column_id < 1000000) - WHERE NAME = 'AD_Column'; - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_field_id) + 1 - FROM AD_FIELD - WHERE ad_field_id < 1000000) - WHERE NAME = 'AD_Field'; - - -SELECT '015_postcode_lookup2.sql' AS Filename FROM dual; - ---- --- FEATURE: 1741222 - Add Post code lookup infrastructure --- http://sourceforge.net/tracker/index.php?func=detail&aid=1741222&group_id=176962&atid=879335 --- Update additional fields per Carlos request - --- Update Element Definitions -UPDATE AD_ELEMENT SET description = 'Does this country have a post code web service', help = 'Enable the IsPostcodeLookup if you wish to configure a post code lookup web service' WHERE ad_element_id = 51000; -UPDATE AD_ELEMENT SET description = 'The class name of the postcode lookup plugin', help = 'Enter the class name of the post code lookup plugin for your postcode web service provider' WHERE ad_element_id = 51001; -UPDATE AD_ELEMENT SET description = 'The ClientID or Login submitted to the Lookup URL', help ='Enter the ClientID or Login for your account provided by the post code web service provider' WHERE ad_element_id = 51002; -UPDATE AD_ELEMENT SET description = 'The password submitted to the Lookup URL', help = 'Enter the password for your account provided by the post code web service provider' WHERE ad_element_id = 51004; -UPDATE AD_ELEMENT SET description = 'The URL of the web service that the plugin connects to in order to retrieve postcode data', help = 'Enter the URL of the web service that the plugin connects to in order to retrieve postcode data' WHERE ad_element_id = 51003; - --- Update Column Definitions -UPDATE AD_COLUMN SET description = 'Does this country have a post code web service', help = 'Enable the IsPostcodeLookup if you wish to configure a post code lookup web service' WHERE ad_column_id = 51000; -UPDATE AD_COLUMN SET description = 'The class name of the postcode lookup plugin', help = 'Enter the class name of the post code lookup plugin for your postcode web service provider' WHERE ad_column_id = 51001; -UPDATE AD_COLUMN SET description = 'The ClientID or Login submitted to the Lookup URL', help = 'Enter the ClientID or Login for your account provided by the post code web service provider' WHERE ad_column_id = 51002; -UPDATE AD_COLUMN SET description = 'The password submitted to the Lookup URL', help = 'Enter the password for your account provided by the post code web service provider' WHERE ad_column_id = 51004; -UPDATE AD_COLUMN SET description = 'The URL of the web service that the plugin connects to in order to retrieve postcode data', help = 'Enter the URL of the web service that the plugin connects to in order to retrieve postcode data' WHERE ad_column_id = 51003; - --- Update Field Definitions -UPDATE AD_FIELD SET seqno = 225 WHERE ad_field_id = 51000; - - - -SELECT '016_new_dashboard.sql' AS Filename FROM dual; -SET DEFINE OFF; -SET SQLBLANKLINES OFF; - --- create new table - -CREATE TABLE PA_DASHBOARDCONTENT -( - pa_dashboardcontent_id NUMBER(10) NOT NULL, - ad_client_id NUMBER(10) NOT NULL, - ad_org_id NUMBER(10) NOT NULL, - created DATE NOT NULL, - createdby NUMBER(10) NOT NULL, - updated DATE NOT NULL, - updatedby NUMBER(10) NOT NULL, - isactive CHAR(1 BYTE) NOT NULL, - NAME NVARCHAR2(120) NOT NULL, - ad_window_id NUMBER(10), - description NVARCHAR2(255), - html CLOB, - line NUMBER, - pa_goal_id NUMBER(10), - CHECK (isactive IN ('Y','N')), - CONSTRAINT pa_dashboardcontent_key - PRIMARY KEY - (pa_dashboardcontent_id) -); - --- dictionary additions - --- new table - -INSERT INTO AD_TABLE - (ad_table_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, tablename, isview, accesslevel, entitytype, - issecurityenabled, isdeleteable, ishighvolume, importtable, - ischangelog, replicationtype - ) - VALUES (50010, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:22:49', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:22:49', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Dashboard Content', 'PA_DashboardContent', 'N', '1', 'D', - 'N', 'Y', 'N', 'N', - 'N', 'L' - ); - --- new sequence - -INSERT INTO AD_SEQUENCE - (ad_sequence_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, isautosequence, incrementno, - startno, currentnext, currentnextsys, isaudited, istableid, - startnewyear - ) - VALUES (50015, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:22:49', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:22:49', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'PA_DashboardContent', 'Table PA_DashboardContent', 'Y', 1, - 1000000, 1000000, 50000, 'N', 'Y', - 'N' - ); - --- new elements - -INSERT INTO AD_ELEMENT - (ad_element_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - columnname, entitytype, NAME, printname - ) - VALUES (51005, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:01', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:01', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'HTML', 'D', 'HTML', 'HTML' - ); - -INSERT INTO AD_ELEMENT - (ad_element_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - columnname, entitytype, NAME, - printname - ) - VALUES (51006, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:07', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:07', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'PA_DashboardContent_ID', 'D', 'PA_DashboardContent_ID', - 'PA_DashboardContent_ID' - ); - --- new columns - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, - VERSION, entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, seqno, istranslated, isencrypted, - isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (51005, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:22:51', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/09/2007 14:22:51', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Name', 'Alphanumeric identifier of the entity', - 'The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.', - 0, 'D', 'Name', 50010, 10, - 120, 'N', 'N', 'Y', 'Y', - 'Y', 1, 'N', 'N', - 'N', 469, 'Y', - 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, - VERSION, entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, istranslated, isencrypted, isselectioncolumn, - ad_element_id, issyncdatabase, isalwaysupdateable - ) - VALUES (51006, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:22:53', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/09/2007 14:22:53', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Organization', 'Organizational entity within client', - 'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.', - 0, 'D', 'AD_Org_ID', 50010, 19, - 10, 'N', 'N', 'Y', 'N', - 'N', 'N', 'N', 'N', - 113, 'Y', 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, VERSION, - entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, istranslated, isencrypted, isselectioncolumn, - ad_element_id, issyncdatabase, isalwaysupdateable - ) - VALUES (51007, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:22:54', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/09/2007 14:22:54', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Window', 'Data entry or display window', - 'The Window field identifies a unique Window in the system.', 0, - 'D', 'AD_Window_ID', 50010, 19, - 22, 'N', 'N', 'N', 'Y', - 'N', 'N', 'N', 'N', - 143, 'Y', 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, - VERSION, entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, istranslated, isencrypted, isselectioncolumn, - ad_element_id, issyncdatabase, isalwaysupdateable - ) - VALUES (51008, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:22:55', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/09/2007 14:22:55', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Created', 'Date this record was created', - 'The Created field indicates the date that this record was created.', - 0, 'D', 'Created', 50010, 16, - 7, 'N', 'N', 'Y', 'N', - 'N', 'N', 'N', 'N', - 245, 'Y', 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, - VERSION, entitytype, columnname, ad_table_id, ad_reference_id, - ad_reference_value_id, fieldlength, iskey, isparent, - ismandatory, isupdateable, isidentifier, istranslated, - isencrypted, isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (51009, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:22:57', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/09/2007 14:22:57', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Created By', 'User who created this records', - 'The Created By field indicates the user who created this record.', - 0, 'D', 'CreatedBy', 50010, 18, - 110, 10, 'N', 'N', - 'Y', 'N', 'N', 'N', - 'N', 'N', 246, 'Y', - 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, VERSION, entitytype, - columnname, ad_table_id, ad_reference_id, fieldlength, iskey, - isparent, ismandatory, isupdateable, isidentifier, istranslated, - isencrypted, isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (51010, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:22:59', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/09/2007 14:22:59', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Description', 'Optional short description of the record', - 'A description is limited to 255 characters.', 0, 'D', - 'Description', 50010, 10, 255, 'N', - 'N', 'N', 'Y', 'N', 'N', - 'N', 'N', 275, 'Y', - 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, - VERSION, entitytype, columnname, ad_table_id, ad_reference_id, - ad_reference_value_id, fieldlength, iskey, isparent, - ismandatory, isupdateable, isidentifier, istranslated, - isencrypted, isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (51011, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:00', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/09/2007 14:23:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Updated By', 'User who updated this records', - 'The Updated By field indicates the user who updated this record.', - 0, 'D', 'UpdatedBy', 50010, 18, - 110, 10, 'N', 'N', - 'Y', 'N', 'N', 'N', - 'N', 'N', 608, 'Y', - 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, VERSION, entitytype, columnname, ad_table_id, - ad_reference_id, iskey, isparent, ismandatory, isupdateable, - isidentifier, istranslated, isencrypted, isselectioncolumn, - ad_element_id, issyncdatabase, isalwaysupdateable - ) - VALUES (51012, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:01', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/09/2007 14:23:01', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'HTML', 0, 'D', 'HTML', 50010, - 36, 'N', 'N', 'N', 'Y', - 'N', 'N', 'N', 'N', - 51005, 'Y', 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, - VERSION, entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, istranslated, isencrypted, isselectioncolumn, - ad_element_id, issyncdatabase, isalwaysupdateable - ) - VALUES (51013, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:03', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/09/2007 14:23:03', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Active', 'The record is active in the system', - 'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.', - 0, 'D', 'IsActive', 50010, 20, - 1, 'N', 'N', 'Y', 'Y', - 'N', 'N', 'N', 'N', - 348, 'Y', 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, - VERSION, entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, istranslated, isencrypted, isselectioncolumn, - ad_element_id, issyncdatabase, isalwaysupdateable - ) - VALUES (51014, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:04', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/09/2007 14:23:04', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Line No', 'Unique line for this document', - 'Indicates the unique line for a document. It will also control the display order of the lines within a document.', - 0, 'D', 'Line', 50010, 22, - 22, 'N', 'N', 'N', 'Y', - 'N', 'N', 'N', 'N', - 439, 'Y', 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, - VERSION, entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, istranslated, isencrypted, isselectioncolumn, - ad_element_id, issyncdatabase, isalwaysupdateable - ) - VALUES (51015, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:05', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/09/2007 14:23:05', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Goal', 'Performance Goal', - 'The Performance Goal indicates what this users performance will be measured against.', - 0, 'D', 'PA_Goal_ID', 50010, 19, - 22, 'N', 'N', 'N', 'Y', - 'N', 'N', 'N', 'N', - 1594, 'Y', 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, - VERSION, entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, istranslated, isencrypted, isselectioncolumn, - ad_element_id, issyncdatabase, isalwaysupdateable - ) - VALUES (51016, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:06', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/09/2007 14:23:06', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Updated', 'Date this record was updated', - 'The Updated field indicates the date that this record was updated.', - 0, 'D', 'Updated', 50010, 16, - 7, 'N', 'N', 'Y', 'N', - 'N', 'N', 'N', 'N', - 607, 'Y', 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, - VERSION, entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, istranslated, isencrypted, isselectioncolumn, - ad_element_id, issyncdatabase, isalwaysupdateable - ) - VALUES (51017, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:07', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/09/2007 14:23:07', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Client', 'Client/Tenant for this installation.', - 'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.', - 0, 'D', 'AD_Client_ID', 50010, 19, - 10, 'N', 'N', 'Y', 'N', - 'N', 'N', 'N', 'N', - 102, 'Y', 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, VERSION, entitytype, columnname, - ad_table_id, ad_reference_id, fieldlength, iskey, isparent, - ismandatory, isupdateable, isidentifier, istranslated, - isencrypted, isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (51018, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:07', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/09/2007 14:23:07', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'PA_DashboardContent_ID', 0, 'D', 'PA_DashboardContent_ID', - 50010, 13, 10, 'Y', 'N', - 'Y', 'N', 'N', 'N', - 'N', 'N', 51006, 'Y', - 'N' - ); - --- new window - -INSERT INTO AD_WINDOW - (ad_window_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, windowtype, issotrx, entitytype, processing, isdefault, - isbetafunctionality - ) - VALUES (50007, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:08', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:12', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Dashboard Content Edit', 'M', 'Y', 'D', 'N', 'N', - 'N' - ); - --- new menu - -INSERT INTO AD_MENU - (ad_menu_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, - NAME, updatedby, issummary, issotrx, isreadonly, action, - ad_window_id, entitytype - ) - VALUES (50010, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:30', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:30', 'MM/DD/YYYY HH24:MI:SS'), - 'Dashboard Content Edit', 100, 'N', 'N', 'N', 'W', - 50007, 'D' - ); - --- new menu in tree - -INSERT INTO AD_TREENODEMM - (ad_tree_id, node_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - parent_id, seqno - ) - VALUES (10, 50010, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:35', 'MM/DD/YYYY HH24:MI:SS'), 0, - TO_DATE ('07/09/2007 14:23:35', 'MM/DD/YYYY HH24:MI:SS'), 0, - 175, 0 - ); - --- access to new window - -INSERT INTO AD_WINDOW_ACCESS - (ad_window_id, ad_role_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - isreadwrite - ) - VALUES (50007, 0, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:08', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:08', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Y' - ); - -INSERT INTO AD_WINDOW_ACCESS - (ad_window_id, ad_role_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - isreadwrite - ) - VALUES (50007, 102, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:08', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:08', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Y' - ); - -INSERT INTO AD_WINDOW_ACCESS - (ad_window_id, ad_role_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - isreadwrite - ) - VALUES (50007, 103, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:08', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:08', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Y' - ); - -INSERT INTO AD_WINDOW_ACCESS - (ad_window_id, ad_role_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - isreadwrite - ) - VALUES (50007, 50001, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:08', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:08', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Y' - ); - --- new tab - -INSERT INTO AD_TAB - (ad_tab_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, ad_table_id, ad_window_id, seqno, tablevel, issinglerow, - isinfotab, istranslationtab, isreadonly, hastree, processing, - issorttab, entitytype, isinsertrecord, isadvancedtab - ) - VALUES (50010, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:08', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:15', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Edit', 50010, 50007, 10, 0, 'Y', - 'N', 'N', 'N', 'N', 'N', - 'N', 'D', 'Y', 'N' - ); - --- new fields - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - HELP, - iscentrallymaintained, ad_tab_id, ad_column_id, isdisplayed, - displaylength, isreadonly, seqno, sortno, issameline, isheading, - isfieldonly, isencrypted, entitytype - ) - VALUES (51005, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:09', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:17', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Client', 'Client/Tenant for this installation.', - 'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.', - 'Y', 50010, 51017, 'Y', - 10, 'N', 10, 0, 'N', 'N', - 'N', 'N', 'D' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - HELP, - iscentrallymaintained, ad_tab_id, ad_column_id, isdisplayed, - displaylength, isreadonly, seqno, sortno, issameline, isheading, - isfieldonly, isencrypted, entitytype - ) - VALUES (51006, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:10', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:18', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Organization', 'Organizational entity within client', - 'An organization is a unit of your client or legal entity - examples are store department. You can share data between organizations.', - 'Y', 50010, 51006, 'Y', - 10, 'N', 20, 0, 'Y', 'N', - 'N', 'N', 'D' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - HELP, - iscentrallymaintained, ad_tab_id, ad_column_id, isdisplayed, - displaylength, isreadonly, seqno, sortno, issameline, isheading, - isfieldonly, isencrypted, entitytype - ) - VALUES (51007, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:10', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:20', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Name', 'Alphanumeric identifier of the entity', - 'The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.', - 'Y', 50010, 51005, 'Y', - 120, 'N', 30, 0, 'N', 'N', - 'N', 'N', 'D' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - HELP, - iscentrallymaintained, ad_tab_id, ad_column_id, isdisplayed, - displaylength, isreadonly, seqno, sortno, issameline, isheading, - isfieldonly, isencrypted, entitytype - ) - VALUES (51008, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:10', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:22', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Active', 'The record is active in the system', - 'There are two methods of making records unavailable in the system: One is to delete the record the other is to de-activate the record. A de-activated record is not available for selection but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g. you cannot DELETE a Business Partner IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.', - 'Y', 50010, 51013, 'Y', - 1, 'N', 40, 0, 'N', 'N', - 'N', 'N', 'D' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - HELP, - iscentrallymaintained, ad_tab_id, ad_column_id, isdisplayed, - displaylength, isreadonly, seqno, sortno, issameline, isheading, - isfieldonly, isencrypted, entitytype - ) - VALUES (51009, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:10', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:23', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Line No', 'Unique line for this document', - 'Indicates the unique line for a document. It will also control the display order of the lines within a document.', - 'Y', 50010, 51014, 'Y', - 22, 'N', 50, 0, 'Y', 'N', - 'N', 'N', 'D' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - HELP, iscentrallymaintained, ad_tab_id, - ad_column_id, isdisplayed, displaylength, isreadonly, seqno, - sortno, issameline, isheading, isfieldonly, isencrypted, - entitytype - ) - VALUES (51010, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:11', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:24', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Description', 'Optional short description of the record', - 'A description is limited to 255 characters.', 'Y', 50010, - 51010, 'Y', 255, 'N', 60, - 0, 'N', 'N', 'N', 'N', - 'D' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, iscentrallymaintained, ad_tab_id, ad_column_id, - isdisplayed, displaylength, isreadonly, seqno, sortno, - issameline, isheading, isfieldonly, isencrypted, entitytype - ) - VALUES (51011, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:11', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:26', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'HTML', 'Y', 50010, 51012, - 'Y', 0, 'N', 70, 0, - 'N', 'N', 'N', 'N', 'D' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - HELP, - iscentrallymaintained, ad_tab_id, ad_column_id, isdisplayed, - displaylength, isreadonly, seqno, sortno, issameline, isheading, - isfieldonly, isencrypted, entitytype - ) - VALUES (51012, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:11', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:27', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Goal', 'Performance Goal', - 'The Performance Goal indicates what this users performance will be measured against.', - 'Y', 50010, 51015, 'Y', - 22, 'N', 80, 0, 'N', 'N', - 'N', 'N', 'D' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - HELP, - iscentrallymaintained, ad_tab_id, ad_column_id, isdisplayed, - displaylength, isreadonly, seqno, sortno, issameline, isheading, - isfieldonly, isencrypted, entitytype - ) - VALUES (51013, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:11', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:29', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Window', 'Data entry or display window', - 'The Window field identifies a unique Window in the system.', - 'Y', 50010, 51007, 'Y', - 22, 'N', 90, 0, 'Y', 'N', - 'N', 'N', 'D' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, iscentrallymaintained, ad_tab_id, ad_column_id, - isdisplayed, displaylength, isreadonly, seqno, sortno, - issameline, isheading, isfieldonly, isencrypted, entitytype - ) - VALUES (51014, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:11', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:30', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Dashboard Content', 'Y', 50010, 51018, - 'N', 10, 'N', 0, 0, - 'N', 'N', 'N', 'N', 'D' - ); - --- assign window to new table - -UPDATE AD_TABLE - SET ad_window_id = 50007 - WHERE ad_table_id = 50010; - - --- NOTE: Don't forget to run the three processes: --- 1 - Add missing translations --- 2 - Synchronize terminology --- 3 - Check sequences - -SELECT '017_update_non_encrypted.sql' AS Filename FROM dual; --- Please review before apply --- if you have any of this columns REALLY encrypted you must not apply this patch: --- AD_USER.EMailUserPW --- AD_USER.Password --- C_PAYMENTPROCESSOR.Password --- C_PAYMENTPROCESSOR.ProxyPassword - --- defining columns non encrypted by default as discussed here --- [ 1722235 ] ENCRYPTION FOR PASSWORD wrongly MANAGED --- https://sourceforge.net/tracker/?func=detail&atid=879332&aid=1722235&group_id=176962 - -UPDATE AD_COLUMN - SET isencrypted = 'N', - updated = TO_DATE ('07/10/2007 00:00:01', 'MM/DD/YYYY HH24:MI:SS') - WHERE ad_column_id IN (417, 5059, 5065, 7794); - - -SELECT '018_version330.sql' AS Filename FROM dual; -UPDATE AD_SYSTEM - SET releaseno = '330', - VERSION = '2007-07-13' - WHERE ad_system_id = 0 AND ad_client_id = 0; - - - -SELECT '019_RMA_dml.sql' AS Filename FROM dual; --- Element change - -INSERT INTO AD_ELEMENT - (AD_ELEMENT_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY,COLUMNNAME, ENTITYTYPE, NAME, PRINTNAME, DESCRIPTION, HELP, PO_NAME, PO_PRINTNAME, PO_DESCRIPTION, PO_HELP) -VALUES - (52000,0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'InOut_ID', 'D', 'Shipment/Receipt', 'Shipment/Receipt', 'MaterialShipment Document', 'The Material Shipment / Receipt ', 'Receipt', 'Receipt', 'Material Receipt Document', 'The Material Shipment / Receipt '); - - --- Rule - -INSERT INTO AD_VAL_RULE - (AD_VAL_RULE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, TYPE, CODE, ENTITYTYPE) -VALUES - (52000, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'M_InOutShipment/Receipt', NULL, 'S', 'M_InOut.MovementType IN (''C-'', ''V+'') AND M_InOut.DocStatus IN (''CO'', ''CL'')', 'D'); - -INSERT INTO AD_VAL_RULE - (AD_VAL_RULE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, TYPE, CODE, ENTITYTYPE) -VALUES - (52001, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'M_InOutShipment/Receipt (RMA)', NULL, 'S', 'M_InOutLine.M_InOut_ID=@InOut_ID@', 'D'); - - --- Processes - -INSERT INTO AD_PROCESS - (AD_PROCESS_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, VALUE, NAME, DESCRIPTION, HELP, ACCESSLEVEL, ENTITYTYPE, PROCEDURENAME, ISREPORT, ISDIRECTPRINT, AD_REPORTVIEW_ID, CLASSNAME, STATISTIC_COUNT,STATISTIC_SECONDS, AD_PRINTFORMAT_ID, WORKFLOWVALUE, AD_WORKFLOW_ID, ISBETAFUNCTIONALITY, ISSERVERPROCESS, SHOWHELP, JASPERREPORT) -VALUES - (52000, 0,0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'M_RMA_CreateOrder', 'Create Order From RMA', 'Creates an order based on this RMA Document. The RMA should be correct and completed.', 'Generate Order from RMA will create an order based on this RMA document.', '3', 'D', NULL, 'N', 'N', NULL, 'org.adempiere.process.RMACreateOrder', 0, 0, NULL, NULL, NULL, 'N', 'N', 'Y', NULL); - -INSERT INTO AD_PROCESS_ACCESS - (AD_PROCESS_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) -VALUES - (52000, 0, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Y'); - -INSERT INTO AD_PROCESS_ACCESS - (AD_PROCESS_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) -VALUES - (52000, 102, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Y'); - -INSERT INTO AD_PROCESS_ACCESS - (AD_PROCESS_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) -VALUES - (52000, 103, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Y'); - -INSERT INTO AD_PROCESS - (AD_PROCESS_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, VALUE, NAME, DESCRIPTION, HELP, ACCESSLEVEL, ENTITYTYPE, PROCEDURENAME, ISREPORT, ISDIRECTPRINT, AD_REPORTVIEW_ID, CLASSNAME, STATISTIC_COUNT,STATISTIC_SECONDS, AD_PRINTFORMAT_ID, WORKFLOWVALUE, AD_WORKFLOW_ID, ISBETAFUNCTIONALITY, ISSERVERPROCESS, SHOWHELP, JASPERREPORT) -VALUES - (52001, 0,0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'M_InOut_GenerateRMA (Manual)', 'Generate Shipments for Vendor RMA', 'Generate Shipments from open vendor RMA based on selection.', NULL, '3', 'D', NULL, 'N', 'N', NULL, 'org.adempiere.process.InOutGenerateRMA', 0, 0, NULL, NULL, NULL, 'N', 'N', 'Y', NULL); - -INSERT INTO AD_PROCESS_ACCESS - (AD_PROCESS_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) -VALUES - (52001, 0, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Y'); - -INSERT INTO AD_PROCESS_ACCESS - (AD_PROCESS_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) -VALUES - (52001, 102, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Y'); - -INSERT INTO AD_PROCESS_ACCESS - (AD_PROCESS_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) -VALUES - (52001, 103, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Y'); - - -INSERT INTO AD_PROCESS - (AD_PROCESS_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, VALUE, NAME, DESCRIPTION, HELP, ACCESSLEVEL, ENTITYTYPE, PROCEDURENAME, ISREPORT, ISDIRECTPRINT, AD_REPORTVIEW_ID, CLASSNAME, STATISTIC_COUNT,STATISTIC_SECONDS, AD_PRINTFORMAT_ID, WORKFLOWVALUE, AD_WORKFLOW_ID, ISBETAFUNCTIONALITY, ISSERVERPROCESS, SHOWHELP, JASPERREPORT) -VALUES - (52002, 0,0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'C_Invoice_GenerateRMA (Manual)', 'Generate Invoices for Vendor RMA', 'Generate Invoices from open vendor RMA based on selection.', NULL, '3', 'D', NULL, 'N', 'N', NULL, 'org.adempiere.process.InvoiceGenerateRMA', 0, 0, NULL, NULL, NULL, 'N', 'N', 'Y', NULL); - -INSERT INTO AD_PROCESS_ACCESS - (AD_PROCESS_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) -VALUES - (52002, 0, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Y'); - -INSERT INTO AD_PROCESS_ACCESS - (AD_PROCESS_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) -VALUES - (52002, 102, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Y'); - -INSERT INTO AD_PROCESS_ACCESS - (AD_PROCESS_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) -VALUES - (52002, 103, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Y'); - - --- Column Addition - -INSERT INTO AD_COLUMN - (AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, ISALWAYSUPDATEABLE, COLUMNSQL) -VALUES - (52000, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 100, 'Sales Transaction', 'This is a Sales Transaction', 'The Sales Transaction checkbox indicates if this item is a Sales Transaction.', 1, 'D', 'IsSOTrx', 661, 20, NULL, NULL, 1, '@IsSOTrx@', 'N', 'N', 'Y', 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 1106, NULL, 'N', 'N', NULL); - -INSERT INTO AD_COLUMN - (AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, ISALWAYSUPDATEABLE, COLUMNSQL) -VALUES - (52001, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 100, 'Amount', 'Amount', 'Amount', 1, 'D', 'Amt', 660, 12, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'Y', '@M_InOutLine_ID@!0', 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 160, NULL, 'N', 'N', NULL); - - -INSERT INTO AD_COLUMN - (AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, ISALWAYSUPDATEABLE, COLUMNSQL) -VALUES - (52002, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 100, 'Charge', 'Additional document charges', 'The Charge indicates a type of Charge (Handling, Shipping, Restocking)', 1, 'D', 'C_Charge_ID', 660, 19, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 968, NULL, 'N', 'N', NULL); - -INSERT INTO AD_COLUMN - (AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, ISALWAYSUPDATEABLE, COLUMNSQL) -VALUES - (52003, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 100, 'Line Amount', 'Line Extended Amount (Quantity * Actual Price) without Freight and Charges','Indicates the extended line amount based on the quantity and the actual price. Any additional charges or freight are not included. The Amount may or may not include tax. If the price list is inclusive tax, the line amount is the same as the line total.', 1, 'D', 'LineNetAmt', 660, 12, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 441, NULL, 'N', 'N', NULL); - -INSERT INTO AD_COLUMN - (AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, ISALWAYSUPDATEABLE, COLUMNSQL) -VALUES - (52004, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 100, 'Line No', 'Unique line for this document', 'Indicates the unique line for a document. It will also control the display order of the lines within a document.', 1, 'D', 'Line', 660, 11, NULL, NULL, 22, '@SQL=SELECT NVL(MAX(Line),0)+10 AS DefaultValue FROM M_RMALine WHERE M_RMA_ID=@M_RMA_ID@', 'N', 'N', 'N', 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 439, NULL, 'N', 'N', NULL); - -INSERT INTO AD_COLUMN - (AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, ISALWAYSUPDATEABLE, COLUMNSQL) -VALUES - (52005, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 100, 'Delivered Quantity', 'Delivered Quantity', 'The Delivered Quantity indicates the quantity of a product that has been delivered.', 1, 'D', 'QtyDelivered', 660, 29, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 528, NULL, 'N', 'N', NULL); - -INSERT INTO AD_COLUMN - (AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, ISALWAYSUPDATEABLE, COLUMNSQL) -VALUES - (52006, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 100, 'Generate To', 'Generate To', NULL, 0, 'D', 'GenerateTo', 661, 28, NULL, NULL, 1, NULL, 'N','N', 'N', 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 1491, 52000, 'N', 'N', NULL); - -INSERT INTO AD_COLUMN - (AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, ISALWAYSUPDATEABLE, COLUMNSQL) -VALUES - (52007, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 100, 'RMA', 'Return Material Authorization', 'A Return Material Authorization may be required to accept returns and to create Credit Memos', 1, 'D', 'M_RMA_ID', 318, 19, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 2412, NULL, 'N', 'N', NULL); - -INSERT INTO AD_COLUMN - (AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, ISALWAYSUPDATEABLE, COLUMNSQL) -VALUES - (52008, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 100, 'RMA Line', 'Return Material Authorization Line', 'Detail information about the returned goods', 1, 'D', 'M_RMALine_ID', 333, 19, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 2413, NULL, 'N', 'N', NULL); - -INSERT INTO AD_COLUMN - (AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, ISALWAYSUPDATEABLE, COLUMNSQL) -VALUES - (52009, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 100, 'RMA', 'Return Material Authorization', 'A Return Material Authorization may be required to accept returns and to create Credit Memos', 1, 'D', 'M_RMA_ID', 319, 19, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 2412, NULL, 'N', 'N', NULL); - -INSERT INTO AD_COLUMN - (AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, ISALWAYSUPDATEABLE, COLUMNSQL) -VALUES - (52010, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 100, 'RMA Line', 'Return Material Authorization Line', 'Detail information about the returned goods', 0, 'D', 'M_RMALine_ID', 320, 19, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 2413, NULL, 'N', 'N', NULL); - - --- Field addition - -INSERT INTO AD_FIELD - (AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) -VALUES - (52000, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Create Order From RMA', 'Creates an order based on the RMA document', NULL, 'Y', 628, 52006, NULL, 'Y', '@Processed@=''Y'' & @C_Order_ID@=0 & @DocStatus@=''CO''', 1, 'N', 160, NULL, 'Y', 'N', 'N', 'N', 'D', NULL, NULL, NULL); - -INSERT INTO AD_FIELD - (AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) -VALUES - (52001, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Amount', 'Amount', 'Amount', 'Y', 629, 52001, NULL, 'Y', NULL, 22, 'N', 100, NULL, 'Y', 'N', 'N', 'N', 'D', NULL, NULL, NULL); - -INSERT INTO AD_FIELD - (AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) -VALUES - (52002, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Charge', 'Additional document charges', 'The Charge indicates a type of Charge (Handling, Shipping, Restocking)', 'Y', 629, 52002, NULL, 'Y', NULL, 22, 'N', 80, NULL, 'Y', 'N', 'N', 'N', 'D', NULL, NULL, NULL); - -INSERT INTO AD_FIELD - (AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) -VALUES - (52003, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Delivered Quantity', 'Delivered Quantity', 'The Delivered Quantity indicates the quantity of a product that has been delivered.', 'Y', 629, 52005, NULL, 'N', NULL, 22, 'N', 0, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); - -INSERT INTO AD_FIELD - (AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) -VALUES - (52004, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Line Amount', 'Line Extended Amount (Quantity * Actual Price) without Freight and Charges', 'Indicates the extended line amount based on the quantity and the actual price. Any additional charges or freight are not included. The Amount may or may not include tax. If the price list is inclusive tax, the line amount is the same as the line total.', 'Y', 629, 52003, NULL, 'Y', NULL, 22, 'Y', 110, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); - -INSERT INTO AD_FIELD - (AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) -VALUES - (52005, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Line No', 'Unique line for this document', 'Indicates the unique line for a document. It will also control the display order of the lines within a document.', 'Y', 629, 52004, NULL, 'Y', NULL, 22, 'N', 40, NULL, 'Y', 'N', 'N', 'N', 'D', NULL, NULL, NULL); - -INSERT INTO AD_FIELD(ad_field_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, help, iscentrallymaintained, ad_tab_id, ad_column_id, ad_fieldgroup_id, isdisplayed, displaylogic, displaylength, isreadonly, seqno, sortno, issameline, isheading, isfieldonly, isencrypted, entitytype, obscuretype, ad_reference_id, ismandatory) - VALUES(52007, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Sales Transaction', 'This is a Sales Transaction', 'The Sales Transaction checkbox indicates if this item is a Sales Transaction.', 'Y', 628, 52000, NULL, 'N', NULL, 1, 'N', NULL, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); - --- Update Field - -UPDATE AD_FIELD SET SeqNo=(SeqNo + 10) WHERE AD_Tab_ID=296 AND SeqNo > 40; - -INSERT INTO AD_FIELD -(ad_field_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, help, iscentrallymaintained, ad_tab_id, ad_column_id, ad_fieldgroup_id, isdisplayed, displaylogic, displaylength, isreadonly, seqno, sortno, issameline, isheading, isfieldonly, isencrypted, entitytype, obscuretype, ad_reference_id, ismandatory) - VALUES(52006, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'RMA', 'Return Material Authorization', 'A Return Material Authorization may be required to accept returns and to create Credit Memos', 'Y', 296, 52009, NULL, 'Y', '@M_RMA_ID@!0', 26, 'Y', 50, 0, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); - - --- Garden World RMA Fix - -INSERT INTO AD_SEQUENCE(ad_sequence_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, vformat, isautosequence, incrementno, startno, currentnext, currentnextsys, isaudited, istableid, prefix, suffix, startnewyear) - VALUES(52000, 11, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 0, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 0, 'Vendor Return Material', NULL, NULL, 'Y', 1, 990000, 990000, 900, 'N', 'N', NULL, NULL, 'N'); - -INSERT INTO AD_SEQUENCE(ad_sequence_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, vformat, isautosequence, incrementno, startno, currentnext, currentnextsys, isaudited, istableid, prefix, suffix, startnewyear) - VALUES(52001, 11, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 0, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 0, 'MM Vendor Return', 'MM Vendor Return', NULL, 'Y', 1, 590000, 590000, 59000, 'N', 'N', NULL, NULL, 'N'); - -INSERT INTO C_DOCTYPE(c_doctype_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, printname, description, docbasetype, issotrx, docsubtypeso, hasproforma, c_doctypeproforma_id, c_doctypeshipment_id, c_doctypeinvoice_id, isdocnocontrolled, docnosequence_id, gl_category_id, hascharges, documentnote, isdefault, documentcopies, ad_printformat_id, isdefaultcounterdoc, isshipconfirm, ispickqaconfirm, isintransit, issplitwhendifference, c_doctypedifference_id, iscreatecounter, isindexed) - VALUES(151, 11, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'MM Vendor Return', 'Vendor Return Material', NULL, 'MMS', 'Y', NULL, 'N', NULL, NULL, NULL, 'Y', 52001, 111, 'N', NULL, 'Y', 1, NULL, 'N', 'N', 'N', 'N', 'N', NULL, 'Y', 'Y'); - -INSERT INTO C_DOCTYPE(c_doctype_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, printname, description, docbasetype, issotrx, docsubtypeso, hasproforma, c_doctypeproforma_id, c_doctypeshipment_id, c_doctypeinvoice_id, isdocnocontrolled, docnosequence_id, gl_category_id, hascharges, documentnote, isdefault, documentcopies, ad_printformat_id, isdefaultcounterdoc, isshipconfirm, ispickqaconfirm, isintransit, issplitwhendifference, c_doctypedifference_id, iscreatecounter, isindexed) - VALUES(150, 11, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Vendor Return Material', 'Vendor Return Material Authorization', NULL, 'POO', 'N', 'RM', 'N', NULL, 151, 124, 'Y', 52000, 111, 'N', NULL, 'N', 1, NULL, 'N', 'N', 'N', 'N', 'N', NULL, 'Y', 'Y'); - --- Message Addition - -INSERT INTO AD_MESSAGE -(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52000, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'OrderOrRMA', 'Either Order or RMA can be process on this document.', NULL, 'E', 'D'); - -INSERT INTO AD_MESSAGE -(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52001, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'VendorRMA', 'Vendor RMA', NULL, 'I', 'D'); - --- Misc AD Updates - -UPDATE AD_COLUMN SET ColumnName='InOut_ID' WHERE AD_Column_ID=10842; - -UPDATE AD_COLUMN SET AD_Element_ID=52000 WHERE AD_Column_ID=10842; - -UPDATE AD_COLUMN SET AD_Reference_Value_ID=337 WHERE AD_Column_ID=10842; - -UPDATE AD_COLUMN SET AD_Val_Rule_ID=52000 WHERE AD_Column_ID=10842; - -UPDATE AD_TAB SET WhereClause='MovementType IN (''C+'', ''V+'')' WHERE AD_Tab_ID=296; - -UPDATE AD_TAB SET WhereClause='MovementType IN (''C-'', ''V-'')' WHERE AD_Tab_ID=257; - -UPDATE AD_COLUMN SET IsMandatory='N' WHERE AD_Column_ID=10829; - -UPDATE AD_COLUMN SET AD_Val_Rule_ID=52001 WHERE AD_Column_ID=10829; - -UPDATE AD_FIELD SET SeqNo=60, IsSameLine='N' WHERE AD_Field_ID=9310; - -UPDATE AD_FIELD SET SeqNo=20, IsSameLine='Y' WHERE AD_Field_ID=9311; - -UPDATE AD_FIELD SET SeqNo=70, IsSameLine='N' WHERE AD_Field_ID=9312; - -UPDATE AD_FIELD SET SeqNo=0, IsSameLine='N' WHERE AD_Field_ID=9313; - -UPDATE AD_FIELD SET SeqNo=30, IsSameLine='N' WHERE AD_Field_ID=9314; - -UPDATE AD_FIELD SET SeqNo=50, IsSameLine='N' WHERE AD_Field_ID=9315; - -UPDATE AD_FIELD SET SeqNo=90, IsSameLine='N' WHERE AD_Field_ID=9316; - -UPDATE AD_FIELD SET SeqNo=10, IsSameLine='N' WHERE AD_Field_ID=9317; - -UPDATE AD_FIELD SET SeqNo=0, IsSameLine='N' WHERE AD_Field_ID=10401; - -UPDATE AD_FIELD SET SeqNo=100, IsSameLine='Y' WHERE AD_Field_ID=52001; - -UPDATE AD_FIELD SET SeqNo=80, IsSameLine='Y' WHERE AD_Field_ID=52002; - -UPDATE AD_FIELD SET SeqNo=0, IsSameLine='N' WHERE AD_Field_ID=52003; - -UPDATE AD_FIELD SET SeqNo=110, IsSameLine='N' WHERE AD_Field_ID=52004; - -UPDATE AD_FIELD SET SeqNo=40, IsSameLine='Y' WHERE AD_Field_ID=52005; - -UPDATE AD_TAB SET IsSingleRow='Y' WHERE AD_Tab_ID=628; - -UPDATE AD_TAB SET IsSingleRow='Y' WHERE AD_Tab_ID=629; - -UPDATE C_DOCTYPE SET IsActive='Y' WHERE C_DocType_ID=149; - - -UPDATE AD_COLUMN SET Callout='org.adempiere.model.CalloutRMA.docType' WHERE AD_Column_ID=12118; - -UPDATE AD_COLUMN SET ReadOnlyLogic='@IsSOTrx@=''N''' WHERE AD_Column_ID=52006; - -UPDATE AD_FIELD SET DisplayLogic='@Processed@=''Y'' & @C_Order_ID@=0 & @DocStatus@=''CO'' & @IsSOTrx@=''Y''' -WHERE AD_Field_ID=52000; - -UPDATE AD_REF_TABLE SET WhereClause='C_DocType.DocBaseType IN (''SOO'', ''POO'') AND C_DocType.DocSubTypeSO=''RM'' AND C_DocType.AD_Client_ID=@#AD_Client_ID@' -WHERE AD_Reference_ID=321; - -UPDATE AD_VAL_RULE SET Code='M_InOutLine.M_InOut_ID=@InOut_ID@ AND NOT EXISTS (SELECT * FROM M_RMALine rl WHERE rl.M_InOutLine_ID=M_InOutLine.M_InOutLine_ID AND rl.M_RMA_ID=@M_RMA_ID@)' -WHERE AD_Val_Rule_ID=52001; - -UPDATE C_DOCTYPE SET NAME='MM Returns', IsSOTrx='N' WHERE C_DocType_ID=149; - - - - --- NOTE: Don't forget to run the three processes: --- 1 - Add missing translations --- 2 - Synchronize terminology --- 3 - Check sequences - -SELECT '020_RMA_Oracle_ddl.sql' AS Filename FROM dual; --- Oracle Changes - -ALTER TABLE C_INVOICE ADD M_RMA_ID NUMBER(10, 0) DEFAULT NULL; - -ALTER TABLE C_INVOICELINE ADD M_RMALine_ID NUMBER(10,0) DEFAULT NULL; - -ALTER TABLE M_INOUT ADD M_RMA_ID NUMBER(10,0) DEFAULT NULL; - -ALTER TABLE M_INOUTLINE ADD M_RMALine_ID NUMBER(10,0) DEFAULT NULL; - -ALTER TABLE M_RMA ADD IsSOTrx CHAR(1) DEFAULT 'Y' CHECK (IsSOTrx IN ('Y', 'N')) NOT NULL; - -ALTER TABLE M_RMA RENAME COLUMN M_InOut_ID TO InOut_ID; - -ALTER TABLE M_RMA ADD GenerateTo CHAR(1) DEFAULT NULL; - -ALTER TABLE M_RMALINE ADD Amt NUMBER(22,2); - -ALTER TABLE M_RMALINE ADD C_Charge_ID NUMBER(10,0); - -ALTER TABLE M_RMALINE ADD Line NUMBER(10,0) DEFAULT 0 NOT NULL; - -ALTER TABLE M_RMALINE ADD LineNetAmt NUMBER(22,2); - -ALTER TABLE M_RMALINE ADD QtyDelivered NUMBER(22,2); - -ALTER TABLE M_RMALINE MODIFY M_InOutLine_ID NUMBER(10,0) NULL; - - --- Constraints - -ALTER TABLE C_INVOICE ADD CONSTRAINT mrma_cinvoice FOREIGN KEY (M_RMA_ID) REFERENCES M_RMA (M_RMA_ID); - -ALTER TABLE C_INVOICELINE ADD CONSTRAINT mrmaline_cinvoiceline FOREIGN KEY (M_RMALine_ID) REFERENCES M_RMALINE (M_RMALine_ID); - -ALTER TABLE M_INOUT ADD CONSTRAINT mrma_minout FOREIGN KEY (M_RMA_ID) REFERENCES M_RMA (M_RMA_ID); - -ALTER TABLE M_INOUTLINE ADD CONSTRAINT mrmaline_minoutline FOREIGN KEY (M_RMALine_ID) REFERENCES M_RMALINE (M_RMALine_ID); - -SELECT '021_BF_1754751.sql' AS Filename FROM dual; -UPDATE AD_WINDOW - SET windowtype = 'M' - WHERE ad_window_id = 319 AND windowtype = 'T'; - - -SELECT '022_BF_1746900.sql' AS Filename FROM dual; --- Update help for "C_AcctSchema_Default_Copy" process - UPDATE AD_PROCESS - SET classname = 'org.compiere.process.AcctSchemaDefaultCopy', - help = 'Either add missing accounts - or copy and overwrite all default accounts. If you copy and overwrite the current default values, you may have to repeat previous updates (e.g. set the bank account asset accounts, ...). If no Accounting Schema is selected all Accounting Schemas will be updated / inserted.' - WHERE AD_Process_ID=108; - --- Update Accounting Schema parameter for "C_AcctSchema_Default_Copy" process -UPDATE AD_PROCESS_PARA - SET ismandatory = 'Y' - WHERE ad_process_para_id= 669; - --- Update help for "M_Product_Category_Acct_Copy" process -UPDATE AD_PROCESS - SET classname = 'org.compiere.process.ProductCategoryAcctCopy', - help = 'If you copy and overwrite the current default values, you may have to repeat previous updates (e.g. set the revenue account, ...). If no Accounting Schema is selected all Accounting Schemas will be updated / inserted for products of this category.' - WHERE AD_Process_ID=140; - --- Update help for "M_Product_Category_Acct_Copy" process (SPANISH translation) -UPDATE AD_PROCESS_TRL - SET help ='El proceso de copiar cuentas tomará las cuentas definidas para una categoría de producto y las copiará a cualquier producto que que haga referencia a esta categoría. Si una cuenta existe a nivel de producto sera sobreescrita. Si no selecciona un Esquema Contable serán actualizados para todos los que estén definidos.' - WHERE AD_Process_ID=140 - AND AD_LANGUAGE LIKE 'es_%'; - --- Update Accounting Schema parameter for "M_Product_Category_Acct_Copy" process. -UPDATE AD_PROCESS_PARA - SET ismandatory = 'Y' - WHERE AD_Process_Para_ID=668; - - UPDATE AD_PROCESS - SET classname = 'org.compiere.process.BPGroupAcctCopy' - WHERE AD_Process_ID=112; - - -SELECT '023_Reverse_BF_1740254.sql' AS Filename FROM dual; --- --- [ 1740254 ] PriceList Version is empty in Product-Price tab --- http://sourceforge.net/tracker/index.php?func=detail&aid=1740254&group_id=176962&atid=879332 --- --- Column M_ProductPrice.M_PriceList_Version_ID: - --- Original File 012_BF_1740254.sql was deleted - the original file put the IsParent='N' --- restoring past value from IsParent because somebody could apply this patch into their system - -UPDATE AD_COLUMN SET IsParent='Y' WHERE AD_Column_ID=2760; - - - -SELECT '024_BF_1564496.sql' AS Filename FROM dual; -UPDATE AD_COLUMN - SET callout = 'org.compiere.model.CalloutMovement.qty' - WHERE ad_column_id = 3594; - - -SELECT '025_Reverse_BF_1739541.sql' AS Filename FROM dual; --- --- [ 1739541 ] Organization in Window "Role" problem --- http://sourceforge.net/tracker/index.php?func=detail&aid=1739541&group_id=176962&atid=879332 --- --- Original File 011_BF_1739541.sql was deleted - the original file put the IsParent='N' --- restoring past value from IsParent because somebody could apply this patch into their system --- --- Column AD_Role_OrgAccess.AD_Org_ID: -UPDATE AD_COLUMN SET IsParent='Y' WHERE AD_Column_ID=5508 AND IsParent='N'; --- - - -SELECT '026_BF_1759181.sql' AS Filename FROM dual; -/* - Fix bug in Application Dictionary - [ 1759181 ] AD_Color.ColorType is defined as Color and must be List -*/ - -UPDATE AD_COLUMN - SET ad_reference_id = 17 - WHERE ad_column_id = 6232 AND ad_reference_id = 27; - - -SELECT '001_BF_1760922.sql' AS Filename FROM dual; -UPDATE AD_ELEMENT -SET NAME = 'Package Version', -PrintName = 'Package Version' -WHERE AD_Element_ID = '50003'; - -UPDATE AD_COLUMN -SET NAME = 'Package Version' -WHERE AD_Column_ID IN (50008, 50047, 50094); - -UPDATE AD_FIELD -SET NAME = 'Package Version' -WHERE AD_Column_ID IN (50008, 50047, 50094); - -UPDATE AD_ELEMENT -SET NAME = 'Update System Maintained Application Dictionary' -WHERE AD_Element_ID = 50032; - -UPDATE AD_COLUMN -SET NAME = 'Update System Maintained Application Dictionary', -DefaultValue = 'Y' -WHERE AD_Column_ID = 50169; - -UPDATE AD_FIELD -SET NAME = 'Update System Maintained Application Dictionary' -WHERE AD_Column_ID = 50169; - -UPDATE AD_ELEMENT -SET NAME = 'Package Directory', -Description = 'Package directory, default to AdempiereHome/packages' -WHERE AD_Element_ID = 50033; - -UPDATE AD_COLUMN -SET NAME = 'Package Directory', -Description = 'Package directory, default to AdempiereHome/packages' -WHERE AD_Column_ID = 50170; - -UPDATE AD_FIELD -SET NAME = 'Package Directory', -Description = 'Package directory, default to AdempiereHome/packages' -WHERE AD_Column_ID = 50170; - -UPDATE AD_ELEMENT -SET NAME = 'Package Source', -PrintName = 'Package Source', -Description = 'Fully qualified package source file name' -WHERE AD_Element_ID = 50035; - -UPDATE AD_COLUMN -SET NAME = 'Package Source', -IsMandatory = 'Y', -AD_Reference_ID = 39, -Description = 'Fully qualified package source file name' -WHERE AD_Column_ID = 50172; - -UPDATE AD_FIELD -SET NAME = 'Package Source', -Description = 'Fully qualified package source file name' -WHERE AD_Column_ID = 50172; - -UPDATE AD_ELEMENT -SET NAME = 'Package Source Type', -Description = 'Type of package source - file, ftp, webservice etc' -WHERE AD_Element_ID = 50036; - -UPDATE AD_COLUMN -SET NAME = 'Package Source Type', -Description = 'Type of package source - file, ftp, webservice etc' -WHERE AD_Column_ID = 50173; - -UPDATE AD_FIELD -SET NAME = 'Package Source Type', -Description = 'Type of package source - file, ftp, webservice etc' -WHERE AD_Column_ID = 50173; - - - -SELECT '002_FR_1757535.sql' AS Filename FROM dual; --- --- [ 1757535 ] "Item is already on Bar" should be translated --- http://sourceforge.net/tracker/index.php?func=detail&aid=1757535&group_id=176962&atid=879335 --- -INSERT INTO AD_MESSAGE ( - AD_MESSAGE_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY, - VALUE,MSGTEXT,MSGTIP, - MSGTYPE,ENTITYTYPE -) -VALUES ( - 53002,0,0,'Y',TO_DATE('2007-07-13 17:33:55', 'yyyy-mm-dd hh24.mi.ss'),0,TO_DATE('2007-07-13 17:36:55', 'yyyy-mm-dd hh24.mi.ss'),0, - 'BookmarkExist','This Bookmark already exist','Selected Menu Item is already registered on Bookmarks Bar', - 'E','A' -); - --- --- NOTE: Don't forget to run: check sequence, add missing translations !!! --- - - -SELECT '003_BF_1763523.sql' AS Filename FROM dual; --- --- BF [ 1763523 ] Translate errors from Cash Line --- http://sourceforge.net/tracker/index.php?func=detail&aid=1763523&group_id=176962&atid=879332 --- -INSERT INTO AD_MESSAGE ( - AD_MESSAGE_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY, - VALUE,MSGTEXT,MSGTIP,MSGTYPE,ENTITYTYPE) -VALUES ( - 53003,0,0,'Y',TO_DATE('30-07-2007','DD-MM-RRRR'),0,TO_DATE('30-07-2007','DD-MM-RRRR'),0, - 'CannotDeleteCashGenInvoice','Cannot delete line with generated Invoice',NULL,'E','D' -); --- -INSERT INTO AD_MESSAGE ( - AD_MESSAGE_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY, - VALUE,MSGTEXT,MSGTIP,MSGTYPE,ENTITYTYPE) -VALUES ( - 53004,0,0,'Y',TO_DATE('30-07-2007','DD-MM-RRRR'),0,TO_DATE('30-07-2007','DD-MM-RRRR'),0, - 'CannotChangeCashGenInvoice','Cannot change line with generated Invoice',NULL,'E','D' -); --- - --- --- NOTE: don't forget to run add missing translations and sequence check - -SELECT '004_BF_1746366.sql' AS Filename FROM dual; -DELETE FROM AD_REF_LIST - WHERE AD_Ref_List_ID=638; - -UPDATE AD_REF_LIST - SET IsActive='N' - WHERE AD_Ref_List_ID IN (634,611); - - -SELECT '005_FR_1754879.sql' AS Filename FROM dual; -INSERT INTO AD_MESSAGE - (ad_message_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - VALUE, msgtext, msgtype, entitytype - ) - VALUES (50018, 0, 0, 'Y', - TO_DATE ('08/02/2007 00:15:12', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('08/02/2007 00:15:12', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'CC', 'CC', 'M', 'D' - ); - - - -SELECT '006_C1648920_EnhancedDocNum.sql' AS Filename FROM dual; -/* AD_Sequence_No */ - -/* Day */ -ALTER TABLE AD_SEQUENCE_NO ADD DAY NVARCHAR2(2) DEFAULT '00' NOT NULL; - -INSERT INTO AD_ELEMENT ( AD_ELEMENT_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, -UPDATED, UPDATEDBY, COLUMNNAME, ENTITYTYPE, NAME, PRINTNAME, DESCRIPTION, HELP, PO_NAME, -PO_PRINTNAME, PO_DESCRIPTION, PO_HELP ) VALUES ( -53200, 0, 0, 'Y', TO_DATE( '02/08/2007 10:49:28', 'MM/DD/YYYY HH:MI:SS') -, 0, TO_DATE( '02/08/2007 10:49:28', 'MM/DD/YYYY HH:MI:SS'), 0, 'Day', 'D' -, 'Day', 'Day', NULL, NULL, NULL, NULL, NULL, NULL); - -INSERT INTO AD_COLUMN ( AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, -CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, -AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, -ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, -VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, -ISALWAYSUPDATEABLE, COLUMNSQL ) VALUES ( -53200, 0, 0, 'Y', TO_DATE( '02/08/2007 10:50:10', 'MM/DD/YYYY HH:MI:SS') -, TO_DATE( '02/08/2007 06:10:47', 'MM/DD/YYYY HH:MI:SS'), 0, 0, 'Day', NULL -, NULL, 0, 'D', 'Day', 122, 10, NULL, NULL, 2, NULL, 'N', 'Y', 'Y', 'N', NULL, 'N' -, 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 53200 -, NULL, 'N', 'N', NULL); - - -/* Month */ -ALTER TABLE AD_SEQUENCE_NO ADD MONTH NVARCHAR2(2) DEFAULT '00' NOT NULL; - -INSERT INTO AD_ELEMENT ( AD_ELEMENT_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, -UPDATED, UPDATEDBY, COLUMNNAME, ENTITYTYPE, NAME, PRINTNAME, DESCRIPTION, HELP, PO_NAME, -PO_PRINTNAME, PO_DESCRIPTION, PO_HELP ) VALUES ( -53201, 0, 0, 'Y', TO_DATE( '02/08/2007 10:50:55', 'MM/DD/YYYY HH:MI:SS') -, 0, TO_DATE( '02/08/2007 10:50:55', 'MM/DD/YYYY HH:MI:SS'), 0, 'Month', 'D' -, 'Month', 'Month', NULL, NULL, NULL, NULL, NULL, NULL); - -INSERT INTO AD_COLUMN ( AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, -CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, -AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, -ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, -VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, -ISALWAYSUPDATEABLE, COLUMNSQL ) VALUES ( -53201, 0, 0, 'Y', TO_DATE( '02/08/2007 10:51:12', 'MM/DD/YYYY HH:MI:SS') -, TO_DATE( '02/08/2007 06:10:53', 'MM/DD/YYYY HH:MI:SS'), 0, 0, 'Month', NULL -, NULL, 0, 'D', 'Month', 122, 10, NULL, NULL, 2, NULL, 'N', 'Y', 'Y', 'N', NULL, 'N' -, 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 53201 -, NULL, 'N', 'N', NULL); - - -ALTER TABLE AD_SEQUENCE_NO DROP CONSTRAINT AD_SEQUENCE_NO_KEY; - -DROP INDEX AD_SEQUENCE_NO_KEY; - -CREATE UNIQUE INDEX AD_SEQUENCE_NO_KEY ON AD_SEQUENCE_NO -(AD_SEQUENCE_ID, CALENDARYEAR, MONTH, DAY); - -ALTER TABLE AD_SEQUENCE_NO MODIFY ( - CONSTRAINT AD_SEQUENCE_NO_KEY PRIMARY KEY (AD_SEQUENCE_ID, CALENDARYEAR, MONTH, DAY)); - -/* ================================================================================================= */ -/* AD_Sequence */ - -/* DateTrx */ -ALTER TABLE AD_SEQUENCE ADD DateTrx DATE; - -INSERT INTO AD_COLUMN ( AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, -CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, -AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, -ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, -VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, -ISALWAYSUPDATEABLE, COLUMNSQL ) VALUES ( -53202, 0, 0, 'Y', TO_DATE( '02/08/2007 10:35:41', 'MM/DD/YYYY HH:MI:SS') -, TO_DATE( '02/08/2007 10:40:27', 'MM/DD/YYYY HH:MI:SS'), 0, 0, 'Transaction Date' -, 'Transaction Date', 'The Transaction Date indicates the date of the transaction.' -, 1, 'D', 'DateTrx', 115, 15, NULL, NULL, 7, '@#DATE@', 'N', 'N', 'N', 'Y', NULL, 'N' -, 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 1297, NULL, 'N', 'N', NULL); - - -/* IsAddDate */ -ALTER TABLE AD_SEQUENCE ADD IsAddDate CHAR(1) DEFAULT 'N' CHECK (IsAddDate IN ('Y','N')); - -INSERT INTO AD_ELEMENT ( AD_ELEMENT_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, -UPDATED, UPDATEDBY, COLUMNNAME, ENTITYTYPE, NAME, PRINTNAME, DESCRIPTION, HELP, PO_NAME, -PO_PRINTNAME, PO_DESCRIPTION, PO_HELP ) VALUES ( -53203, 0, 0, 'Y', TO_DATE( '02/08/2007 02:11:37', 'MM/DD/YYYY HH:MI:SS') -, 0, TO_DATE( '02/08/2007 02:15:05', 'MM/DD/YYYY HH:MI:SS'), 0, 'IsAddDate' -, 'D', 'Add Date', 'Add Date', NULL, NULL, NULL, NULL, NULL, NULL); - -INSERT INTO AD_COLUMN ( AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, -CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, -AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, -ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, -VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, -ISALWAYSUPDATEABLE, COLUMNSQL ) VALUES ( -53203, 0, 0, 'Y', TO_DATE( '02/08/2007 02:12:10', 'MM/DD/YYYY HH:MI:SS') -, TO_DATE( '02/08/2007 02:15:09', 'MM/DD/YYYY HH:MI:SS'), 0, 0, 'Add Date' -, NULL, NULL, 1, 'D', 'IsAddDate', 115, 20, NULL, NULL, 1, '''N''', 'N', 'N', 'N' -, 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 53203 -, NULL, 'N', 'N', NULL); - - -/* IsAddMonth */ -ALTER TABLE AD_SEQUENCE ADD IsAddMonth CHAR(1) DEFAULT 'N' CHECK (IsAddMonth IN ('Y','N')); - -INSERT INTO AD_ELEMENT ( AD_ELEMENT_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, -UPDATED, UPDATEDBY, COLUMNNAME, ENTITYTYPE, NAME, PRINTNAME, DESCRIPTION, HELP, PO_NAME, -PO_PRINTNAME, PO_DESCRIPTION, PO_HELP ) VALUES ( -53204, 0, 0, 'Y', TO_DATE( '02/08/2007 02:13:51', 'MM/DD/YYYY HH:MI:SS') -, 0, TO_DATE( '02/08/2007 02:14:08', 'MM/DD/YYYY HH:MI:SS'), 0, 'IsAddMonth' -, 'D', 'Add Month', 'Add Month', NULL, NULL, NULL, NULL, NULL, NULL); - -INSERT INTO AD_COLUMN ( AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, -CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, -AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, -ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, -VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, -ISALWAYSUPDATEABLE, COLUMNSQL ) VALUES ( -53204, 0, 0, 'Y', TO_DATE( '02/08/2007 02:14:36', 'MM/DD/YYYY HH:MI:SS') -, TO_DATE( '02/08/2007 02:14:36', 'MM/DD/YYYY HH:MI:SS'), 0, 0, 'Add Month' -, NULL, NULL, 1, 'D', 'IsAddMonth', 115, 20, NULL, NULL, 1, '''N''', 'N', 'N', 'N' -, 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 53204 -, NULL, 'N', 'N', NULL); - - -/* IsAddYear */ -ALTER TABLE AD_SEQUENCE ADD IsAddYear CHAR(1) DEFAULT 'N' CHECK (IsAddYear IN ('Y','N')); - -INSERT INTO AD_ELEMENT ( AD_ELEMENT_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, -UPDATED, UPDATEDBY, COLUMNNAME, ENTITYTYPE, NAME, PRINTNAME, DESCRIPTION, HELP, PO_NAME, -PO_PRINTNAME, PO_DESCRIPTION, PO_HELP ) VALUES ( -53205, 0, 0, 'Y', TO_DATE( '02/08/2007 02:16:03', 'MM/DD/YYYY HH:MI:SS') -, 0, TO_DATE( '02/08/2007 02:16:03', 'MM/DD/YYYY HH:MI:SS'), 0, 'IsAddYear' -, 'D', 'Add Year', 'Add Year', NULL, NULL, NULL, NULL, NULL, NULL); - -INSERT INTO AD_COLUMN ( AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, -CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, -AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, -ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, -VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, -ISALWAYSUPDATEABLE, COLUMNSQL ) VALUES ( -53205, 0, 0, 'Y', TO_DATE( '02/08/2007 02:16:26', 'MM/DD/YYYY HH:MI:SS') -, TO_DATE( '02/08/2007 02:16:26', 'MM/DD/YYYY HH:MI:SS'), 0, 0, 'Add Year' -, NULL, NULL, 1, 'D', 'IsAddYear', 115, 20, NULL, NULL, 1, '''N''', 'N', 'N', 'N' -, 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 53205 -, NULL, 'N', 'N', NULL); - - -/* IsRomanCharacter */ -ALTER TABLE AD_SEQUENCE ADD IsRomanCharacter CHAR(1) DEFAULT 'N' CHECK (IsRomanCharacter IN ('Y','N')); - -INSERT INTO AD_ELEMENT ( AD_ELEMENT_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, -UPDATED, UPDATEDBY, COLUMNNAME, ENTITYTYPE, NAME, PRINTNAME, DESCRIPTION, HELP, PO_NAME, -PO_PRINTNAME, PO_DESCRIPTION, PO_HELP ) VALUES ( -53206, 0, 0, 'Y', TO_DATE( '02/08/2007 02:17:42', 'MM/DD/YYYY HH:MI:SS') -, 0, TO_DATE( '02/08/2007 02:17:42', 'MM/DD/YYYY HH:MI:SS'), 0, 'IsRomanCharacter' -, 'D', 'Use Roman Character', 'Use Roman Character', NULL, NULL, NULL, NULL, NULL -, NULL); - -INSERT INTO AD_COLUMN ( AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, -CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, -AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, -ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, -VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, -ISALWAYSUPDATEABLE, COLUMNSQL ) VALUES ( -53206, 0, 0, 'Y', TO_DATE( '02/08/2007 02:18:01', 'MM/DD/YYYY HH:MI:SS') -, TO_DATE( '02/08/2007 02:18:01', 'MM/DD/YYYY HH:MI:SS'), 0, 0, 'Use Roman Character' -, NULL, NULL, 1, 'D', 'IsRomanCharacter', 115, 20, NULL, NULL, 1, '''N''', 'N', 'N' -, 'N', 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 53206 -, NULL, 'N', 'N', NULL); - - -/* Separator */ -ALTER TABLE AD_SEQUENCE ADD Separator CHAR(1); - -INSERT INTO AD_COLUMN ( AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, -CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, -AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, -ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, -VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, -ISALWAYSUPDATEABLE, COLUMNSQL ) VALUES ( -53207, 0, 0, 'Y', TO_DATE( '02/08/2007 02:21:12', 'MM/DD/YYYY HH:MI:SS') -, TO_DATE( '02/08/2007 02:21:12', 'MM/DD/YYYY HH:MI:SS'), 0, 0, 'Separator' -, NULL, NULL, 1, 'D', 'Separator', 115, 10, NULL, NULL, 1, NULL, 'N', 'N', 'N', 'Y' -, NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 565, NULL, 'N', 'N', NULL); - - -/* DatePosition */ -ALTER TABLE AD_SEQUENCE ADD DatePosition CHAR(2); - -INSERT INTO AD_ELEMENT ( AD_ELEMENT_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, -UPDATED, UPDATEDBY, COLUMNNAME, ENTITYTYPE, NAME, PRINTNAME, DESCRIPTION, HELP, PO_NAME, -PO_PRINTNAME, PO_DESCRIPTION, PO_HELP ) VALUES ( -53208, 0, 0, 'Y', TO_DATE( '02/08/2007 02:21:58', 'MM/DD/YYYY HH:MI:SS') -, 0, TO_DATE( '02/08/2007 02:27:55', 'MM/DD/YYYY HH:MI:SS'), 0, 'DatePosition' -, 'D', 'Date Position', 'Date Position', NULL, NULL, NULL, NULL, NULL, NULL); - -/* ------------------------------------------------------------------------------------------- */ -/* Reference = SP Date Position */ -INSERT INTO AD_REFERENCE ( AD_REFERENCE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, -UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, VALIDATIONTYPE, VFORMAT, -ENTITYTYPE ) VALUES ( -53200, 0, 0, 'Y', TO_DATE( '02/08/2007 02:23:19', 'MM/DD/YYYY HH:MI:SS') -, 0, TO_DATE( '02/08/2007 02:25:54', 'MM/DD/YYYY HH:MI:SS'), 0, 'SP Date Position' -, NULL, NULL, 'L', NULL, 'D'); - -/* Reference List = After Prefix */ -INSERT INTO AD_REF_LIST ( AD_REF_LIST_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, -UPDATED, UPDATEDBY, VALUE, NAME, DESCRIPTION, AD_REFERENCE_ID, VALIDFROM, VALIDTO, -ENTITYTYPE ) VALUES ( -53200, 0, 0, 'Y', TO_DATE( '02/08/2007 02:26:24', 'MM/DD/YYYY HH:MI:SS') -, 0, TO_DATE( '02/08/2007 02:26:24', 'MM/DD/YYYY HH:MI:SS'), 0, 'AP', 'After Prefix' -, NULL, 53200, NULL, NULL, 'D'); - -/* Reference List = After Suffix */ -INSERT INTO AD_REF_LIST ( AD_REF_LIST_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, -UPDATED, UPDATEDBY, VALUE, NAME, DESCRIPTION, AD_REFERENCE_ID, VALIDFROM, VALIDTO, -ENTITYTYPE ) VALUES ( -53201, 0, 0, 'Y', TO_DATE( '02/08/2007 02:26:38', 'MM/DD/YYYY HH:MI:SS') -, 0, TO_DATE( '02/08/2007 02:26:38', 'MM/DD/YYYY HH:MI:SS'), 0, 'AS', 'After Suffix' -, NULL, 53200, NULL, NULL, 'D'); - -/* Reference List = Before Prefix */ -INSERT INTO AD_REF_LIST ( AD_REF_LIST_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, -UPDATED, UPDATEDBY, VALUE, NAME, DESCRIPTION, AD_REFERENCE_ID, VALIDFROM, VALIDTO, -ENTITYTYPE ) VALUES ( -53202, 0, 0, 'Y', TO_DATE( '02/08/2007 02:27:04', 'MM/DD/YYYY HH:MI:SS') -, 0, TO_DATE( '02/08/2007 02:27:04', 'MM/DD/YYYY HH:MI:SS'), 0, 'BP', 'Before Prefix' -, NULL, 53200, NULL, NULL, 'D'); - -/* Reference List = Before Suffix */ -INSERT INTO AD_REF_LIST ( AD_REF_LIST_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, -UPDATED, UPDATEDBY, VALUE, NAME, DESCRIPTION, AD_REFERENCE_ID, VALIDFROM, VALIDTO, -ENTITYTYPE ) VALUES ( -53203, 0, 0, 'Y', TO_DATE( '02/08/2007 02:27:16', 'MM/DD/YYYY HH:MI:SS') -, 0, TO_DATE( '02/08/2007 02:27:16', 'MM/DD/YYYY HH:MI:SS'), 0, 'BS', 'Before Suffix' -, NULL, 53200, NULL, NULL, 'D'); -/* ------------------------------------------------------------------------------------------- */ - -INSERT INTO AD_COLUMN ( AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, -CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, -AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, -ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, -VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, -ISALWAYSUPDATEABLE, COLUMNSQL ) VALUES ( -53208, 0, 0, 'Y', TO_DATE( '02/08/2007 02:27:36', 'MM/DD/YYYY HH:MI:SS') -, TO_DATE( '02/08/2007 02:28:21', 'MM/DD/YYYY HH:MI:SS'), 0, 0, 'Date Position' -, NULL, NULL, 1, 'D', 'DatePosition', 115, 17, 53200 -, NULL, 2, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N' -, 53208 -, NULL, 'N', 'N', NULL); - - -/* DateFormat */ -ALTER TABLE AD_SEQUENCE ADD DateFormat CHAR(6); - -/* ------------------------------------------------------------------------------------------- */ -/* Reference = SP Date Format */ -INSERT INTO AD_REFERENCE ( AD_REFERENCE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, -UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, VALIDATIONTYPE, VFORMAT, -ENTITYTYPE ) VALUES ( -53201, 0, 0, 'Y', TO_DATE( '02/08/2007 02:31:48', 'MM/DD/YYYY HH:MI:SS') -, 0, TO_DATE( '02/08/2007 02:31:48', 'MM/DD/YYYY HH:MI:SS'), 0, 'SP Date Format' -, NULL, NULL, 'L', NULL, 'D'); - -/* Reference List = MMddyy */ -INSERT INTO AD_REF_LIST ( AD_REF_LIST_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, -UPDATED, UPDATEDBY, VALUE, NAME, DESCRIPTION, AD_REFERENCE_ID, VALIDFROM, VALIDTO, -ENTITYTYPE ) VALUES ( -53204, 0, 0, 'Y', TO_DATE( '02/08/2007 02:32:15', 'MM/DD/YYYY HH:MI:SS') -, 0, TO_DATE( '02/08/2007 02:32:15', 'MM/DD/YYYY HH:MI:SS'), 0, 'MMddyy', 'MMddyy' -, NULL, 53201, NULL, NULL, 'D'); - -/* Reference List = ddMMyy */ -INSERT INTO AD_REF_LIST ( AD_REF_LIST_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, -UPDATED, UPDATEDBY, VALUE, NAME, DESCRIPTION, AD_REFERENCE_ID, VALIDFROM, VALIDTO, -ENTITYTYPE ) VALUES ( -53205, 0, 0, 'Y', TO_DATE( '02/08/2007 02:32:22', 'MM/DD/YYYY HH:MI:SS') -, 0, TO_DATE( '02/08/2007 02:32:22', 'MM/DD/YYYY HH:MI:SS'), 0, 'ddMMyy', 'ddMMyy' -, NULL, 53201, NULL, NULL, 'D'); - -/* Reference List = yyMMdd */ -INSERT INTO AD_REF_LIST ( AD_REF_LIST_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, -UPDATED, UPDATEDBY, VALUE, NAME, DESCRIPTION, AD_REFERENCE_ID, VALIDFROM, VALIDTO, -ENTITYTYPE ) VALUES ( -53206, 0, 0, 'Y', TO_DATE( '02/08/2007 02:32:32', 'MM/DD/YYYY HH:MI:SS') -, 0, TO_DATE( '02/08/2007 02:32:32', 'MM/DD/YYYY HH:MI:SS'), 0, 'yyMMdd', 'yyMMdd' -, NULL, 53201, NULL, NULL, 'D'); -/* ------------------------------------------------------------------------------------------- */ - -INSERT INTO AD_COLUMN ( AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, -CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, -AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, -ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, -VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, -ISALWAYSUPDATEABLE, COLUMNSQL ) VALUES ( -53209, 0, 0, 'Y', TO_DATE( '02/08/2007 02:33:06', 'MM/DD/YYYY HH:MI:SS') -, TO_DATE( '02/08/2007 02:33:06', 'MM/DD/YYYY HH:MI:SS'), 0, 0, 'Date Format' -, NULL, NULL, 1, 'D', 'DateFormat', 115, 17, 53201 -, NULL, 6, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 2286, NULL, 'N', 'N', NULL); - - -/* Reset */ -ALTER TABLE AD_SEQUENCE ADD RESET CHAR(1); - -INSERT INTO AD_ELEMENT ( AD_ELEMENT_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, -UPDATED, UPDATEDBY, COLUMNNAME, ENTITYTYPE, NAME, PRINTNAME, DESCRIPTION, HELP, PO_NAME, -PO_PRINTNAME, PO_DESCRIPTION, PO_HELP ) VALUES ( -53210, 0, 0, 'Y', TO_DATE( '02/08/2007 02:45:18', 'MM/DD/YYYY HH:MI:SS') -, 0, TO_DATE( '02/08/2007 02:45:18', 'MM/DD/YYYY HH:MI:SS'), 0, 'Reset', 'D' -, 'Reset', 'Reset', NULL, NULL, NULL, NULL, NULL, NULL); - -/* ------------------------------------------------------------------------------------------- */ -/* Reference = SP Reset */ -INSERT INTO AD_REFERENCE ( AD_REFERENCE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, -UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, VALIDATIONTYPE, VFORMAT, -ENTITYTYPE ) VALUES ( -53202, 0, 0, 'Y', TO_DATE( '02/08/2007 02:46:01', 'MM/DD/YYYY HH:MI:SS') -, 0, TO_DATE( '02/08/2007 02:46:01', 'MM/DD/YYYY HH:MI:SS'), 0, 'SP Reset' -, NULL, NULL, 'L', NULL, 'D'); - -/* Reference List = Every Day */ -INSERT INTO AD_REF_LIST ( AD_REF_LIST_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, -UPDATED, UPDATEDBY, VALUE, NAME, DESCRIPTION, AD_REFERENCE_ID, VALIDFROM, VALIDTO, -ENTITYTYPE ) VALUES ( -53207, 0, 0, 'Y', TO_DATE( '02/08/2007 02:46:20', 'MM/DD/YYYY HH:MI:SS') -, 0, TO_DATE( '02/08/2007 02:46:20', 'MM/DD/YYYY HH:MI:SS'), 0, 'd', 'Every Day' -, NULL, 53202, NULL, NULL, 'D'); - -/* Reference List = Every Month */ -INSERT INTO AD_REF_LIST ( AD_REF_LIST_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, -UPDATED, UPDATEDBY, VALUE, NAME, DESCRIPTION, AD_REFERENCE_ID, VALIDFROM, VALIDTO, -ENTITYTYPE ) VALUES ( -53208, 0, 0, 'Y', TO_DATE( '02/08/2007 02:46:33', 'MM/DD/YYYY HH:MI:SS') -, 0, TO_DATE( '02/08/2007 02:46:33', 'MM/DD/YYYY HH:MI:SS'), 0, 'M', 'Every Month' -, NULL, 53202, NULL, NULL, 'D'); - -/* Reference List = Every Year */ -INSERT INTO AD_REF_LIST ( AD_REF_LIST_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, -UPDATED, UPDATEDBY, VALUE, NAME, DESCRIPTION, AD_REFERENCE_ID, VALIDFROM, VALIDTO, -ENTITYTYPE ) VALUES ( -53209, 0, 0, 'Y', TO_DATE( '02/08/2007 02:46:40', 'MM/DD/YYYY HH:MI:SS') -, 0, TO_DATE( '02/08/2007 02:46:40', 'MM/DD/YYYY HH:MI:SS'), 0, 'y', 'Every Year' -, NULL, 53202, NULL, NULL, 'D'); -/* ------------------------------------------------------------------------------------------- */ - -INSERT INTO AD_COLUMN ( AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, -CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, -AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, -ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, -VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, -ISALWAYSUPDATEABLE, COLUMNSQL ) VALUES ( -53210, 0, 0, 'Y', TO_DATE( '02/08/2007 02:47:04', 'MM/DD/YYYY HH:MI:SS') -, TO_DATE( '02/08/2007 02:47:04', 'MM/DD/YYYY HH:MI:SS'), 0, 0, 'Reset', NULL -, NULL, 1, 'D', 'Reset', 115, 17, 53202 -, NULL, 1, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N' -, 53210 -, NULL, 'N', 'N', NULL); - - --- --- NOTE: don't forget to run add missing translations and sequence check -SELECT '007_BF_1774758.sql' AS Filename FROM dual; --- --- BF [ 1774758 ] No default Sales Representant in request window --- - -UPDATE AD_COLUMN - SET DefaultValue = '@#AD_User_ID@' - WHERE DefaultValue = '@AD_User_ID@' AND AD_Column_ID = 5432; - - - -SELECT '008_BF_1672847.sql' AS Filename FROM dual; -UPDATE AD_COLUMN -SET isparent = 'N' -WHERE AD_Column_ID IN (13467, 13468); - -UPDATE AD_TAB -SET ad_column_id = NULL -WHERE AD_Tab_ID=701; -SELECT '009_FR_1788114.sql' AS Filename FROM dual; -UPDATE AD_VAL_RULE - SET code = - '(C_Order.DocStatus=''WP'' OR (C_Order.DocStatus=''CO'' AND EXISTS (SELECT * FROM C_DocType dt WHERE C_Order.C_DocType_ID=dt.C_DocType_ID AND (dt.DocSubTypeSO=''SO'' OR dt.DocBaseType=''POO'')) AND EXISTS (SELECT * FROM C_OrderLine ol WHERE C_Order.C_Order_ID=ol.C_Order_ID AND ol.QtyInvoiced<>ol.QtyOrdered)))' - WHERE ad_val_rule_id = 218; - - -SELECT '010_BF1788185.sql' AS Filename FROM dual; -ALTER TABLE I_INVOICE MODIFY(taxindicator NVARCHAR2(10)); - -ALTER TABLE I_ORDER MODIFY(taxindicator NVARCHAR2(10)); - -UPDATE AD_COLUMN - SET fieldlength = 10 - WHERE ad_column_id IN (8991, 9186); - - -SELECT '011_FR_1789836.sql' AS Filename FROM dual; --- [ 1789836 ] Add fields to Import Invoice - allow import charges --- http://sourceforge.net/tracker/index.php?func=detail&aid=1789836&group_id=176962&atid=879335 - -ALTER TABLE I_INVOICE ADD (projectvalue NVARCHAR2(40)); - -ALTER TABLE I_INVOICE ADD (activityvalue NVARCHAR2(40)); - -ALTER TABLE I_INVOICE ADD (chargename NVARCHAR2(60)); - -ALTER TABLE I_INVOICE ADD (c_charge_id NUMBER(10)); - -INSERT INTO AD_ELEMENT - (ad_element_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - columnname, entitytype, NAME, printname - ) - VALUES (53222, 0, 0, 'Y', - TO_DATE ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'ActivityValue', 'U', 'ActivityValue', 'ActivityValue' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, VERSION, entitytype, - columnname, ad_table_id, ad_reference_id, fieldlength, iskey, - isparent, ismandatory, isupdateable, isidentifier, istranslated, - isencrypted, isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (53241, 0, 0, 'Y', - TO_DATE ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Project Key', 'Key of the Project', 0, 'U', - 'ProjectValue', 598, 10, 40, 'N', - 'N', 'N', 'Y', 'N', 'N', - 'N', 'N', 2118, 'Y', - 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, - VERSION, entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, istranslated, isencrypted, isselectioncolumn, - ad_element_id, issyncdatabase, isalwaysupdateable - ) - VALUES (53242, 0, 0, 'Y', - TO_DATE ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Charge', 'Additional document charges', - 'The Charge indicates a type of Charge (Handling, Shipping, Restocking)', - 0, 'U', 'C_Charge_ID', 598, 19, - 10, 'N', 'N', 'N', 'Y', - 'N', 'N', 'N', 'N', - 968, 'Y', 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, VERSION, entitytype, columnname, ad_table_id, - ad_reference_id, fieldlength, iskey, isparent, ismandatory, - isupdateable, isidentifier, istranslated, isencrypted, - isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (53243, 0, 0, 'Y', - TO_DATE ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'ActivityValue', 0, 'U', 'ActivityValue', 598, - 10, 40, 'N', 'N', 'N', - 'Y', 'N', 'N', 'N', - 'N', 53222, 'Y', - 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, VERSION, entitytype, columnname, - ad_table_id, ad_reference_id, fieldlength, iskey, isparent, - ismandatory, isupdateable, isidentifier, istranslated, - isencrypted, isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (53244, 0, 0, 'Y', - TO_DATE ('09/04/2007 22:54:46', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('09/04/2007 22:54:46', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Charge Name', 'Name of the Charge', 0, 'U', 'ChargeName', - 598, 10, 60, 'N', 'N', - 'N', 'Y', 'N', 'N', - 'N', 'N', 2096, 'Y', - 'N' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, iscentrallymaintained, ad_tab_id, ad_column_id, - isdisplayed, displaylength, isreadonly, seqno, sortno, - issameline, isheading, isfieldonly, isencrypted, entitytype - ) - VALUES (53251, 0, 0, 'Y', - TO_DATE ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'ActivityValue', 'Y', 510, 53243, - 'Y', 40, 'N', 498, 0, - 'N', 'N', 'N', 'N', 'U' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, iscentrallymaintained, ad_tab_id, - ad_column_id, ad_fieldgroup_id, isdisplayed, displaylength, - isreadonly, seqno, sortno, issameline, isheading, isfieldonly, - isencrypted, entitytype - ) - VALUES (53252, 0, 0, 'Y', - TO_DATE ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Project Key', 'Key of the Project', 'Y', 510, - 53241, 104, 'Y', 40, - 'N', 478, 0, 'N', 'N', 'N', - 'N', 'U' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - HELP, - iscentrallymaintained, ad_tab_id, ad_column_id, isdisplayed, - displaylength, isreadonly, seqno, sortno, issameline, isheading, - isfieldonly, isencrypted, entitytype - ) - VALUES (53253, 0, 0, 'Y', - TO_DATE ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Charge', 'Additional document charges', - 'The Charge indicates a type of Charge (Handling, Shipping, Restocking)', - 'Y', 510, 53242, 'Y', - 10, 'N', 392, 0, 'N', 'N', - 'N', 'N', 'U' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, iscentrallymaintained, ad_tab_id, - ad_column_id, isdisplayed, displaylength, isreadonly, seqno, - sortno, issameline, isheading, isfieldonly, isencrypted, - entitytype - ) - VALUES (53254, 0, 0, 'Y', - TO_DATE ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('09/04/2007 22:57:16', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Charge Name', 'Name of the Charge', 'Y', 510, - 53244, 'Y', 40, 'N', 394, - 0, 'Y', 'N', 'N', 'N', - 'U' - ); - - - -SELECT '012_BR_1794352.sql' AS Filename FROM dual; -UPDATE AD_COLUMN - SET ad_val_rule_id = 220 - WHERE ad_column_id = 5354; - - -SELECT '013_PosteritaDLL_ORA.sql' AS Filename FROM dual; --- Migration Scripts for Posterita -------------------------------------- --- SCRIPT STARTS HERE! -------------------------------------- - ---- Table: U_WEB_PROPERTIES --------- - -CREATE TABLE U_WEB_PROPERTIES - ( - U_Web_Properties_ID NUMBER(10,0) NOT NULL , - AD_Client_ID NUMBER(10,0) NOT NULL , - AD_Org_ID NUMBER(10,0) NOT NULL , - IsActive CHAR(1) DEFAULT 'Y' NOT NULL , - Created DATE DEFAULT SYSDATE NOT NULL , - CreatedBy INTEGER NOT NULL , - Updated DATE DEFAULT SYSDATE NOT NULL , - UpdatedBy INTEGER NOT NULL , - U_Key NVARCHAR2(240) NOT NULL , - U_Value NVARCHAR2(240) NOT NULL , - PRIMARY KEY(U_Web_Properties_ID), - CHECK(IsActive IN ('Y', 'N')) - ); - - ---- Table: U_RoleMenu ------------------------------------------------------- - -CREATE TABLE U_RoleMenu - ( - U_RoleMenu_ID NUMBER(10,0) NOT NULL , - AD_Client_ID NUMBER(10,0) NOT NULL , - AD_Org_ID NUMBER(10,0) NOT NULL , - IsActive CHAR(1) DEFAULT 'Y' NOT NULL, - Created DATE DEFAULT SYSDATE NOT NULL, - CreatedBy INTEGER NOT NULL, - Updated DATE DEFAULT SYSDATE NOT NULL, - UpdatedBy INTEGER NOT NULL, - AD_Role_ID NUMBER(10,0) NOT NULL, - U_WebMenu_ID NUMBER(10,0) NOT NULL, - PRIMARY KEY(U_RoleMenu_ID), - CHECK(IsActive IN ('Y', 'N')) - ); - ---- Table: U_WebMenu ------------------------------------------------------- - -CREATE TABLE U_WebMenu - ( - U_WEBMENU_ID NUMBER(10,0) NOT NULL , - AD_Client_ID NUMBER(10,0) NOT NULL , - AD_Org_ID NUMBER(10,0) NOT NULL , - IsActive CHAR(1) DEFAULT 'Y' NOT NULL , - Created DATE DEFAULT SYSDATE NOT NULL, - CreatedBy NUMBER(10,0) NOT NULL , - Updated DATE DEFAULT SYSDATE NOT NULL , - UpdatedBy NUMBER(10,0) NOT NULL , - NAME NVARCHAR2(120) NOT NULL , - MenuLink NVARCHAR2(510) NOT NULL , - Module NVARCHAR2(120) NOT NULL , - ParentMenu_ID NUMBER(10,0) , - HasSubMenu CHAR(1) DEFAULT 'N' NOT NULL, - Description NVARCHAR2(200) , - ImageLink NVARCHAR2(510) , - Position VARCHAR(10) , - Help NVARCHAR2(2000) , - PRIMARY KEY(U_WEBMENU_ID), - CHECK(IsActive IN ('Y', 'N')), - CHECK(HasSubMenu IN ('Y', 'N')) - ); ---- Table: U_BlackListCheque------------------------------------------------------- -CREATE TABLE U_BlackListCheque - ( - U_BlackListCheque_ID NUMBER(10,0) NOT NULL , - AD_Client_ID NUMBER(10,0) NOT NULL , - AD_Org_ID NUMBER(10,0) NOT NULL , - IsActive CHAR(1) DEFAULT 'Y' NOT NULL, - Created DATE DEFAULT SYSDATE NOT NULL , - CreatedBy NUMBER(10,0) NOT NULL , - Updated DATE DEFAULT SYSDATE NOT NULL , - UpdatedBy NUMBER(10,0) NOT NULL , - BankName NVARCHAR2(120) NOT NULL , - ChequeNo NVARCHAR2(120) NOT NULL , - PRIMARY KEY(U_BlackListCheque_ID), - CHECK(IsActive IN ('Y', 'N')) - ); - ---- Table: AD_PrintFormat -------------- - -ALTER TABLE AD_PRINTFORMAT -ADD ClassName VARCHAR(240); - -ALTER TABLE AD_PRINTFORMAT -ADD Args VARCHAR(480); - - ---- Table: AD_User ------------------------ -ALTER TABLE AD_USER -ADD UserPIN NVARCHAR2(20); - -ALTER TABLE AD_USER -MODIFY UserPIN NVARCHAR2(20); - ---- Table: AD_Role -------------------------- -ALTER TABLE AD_ROLE -ADD UserDiscount NUMBER(22,2); - -ALTER TABLE AD_ROLE -MODIFY UserDiscount NUMBER(22,2); - ---- Table: C_Order -------------------------- - -ALTER TABLE C_ORDER -ADD OrderType NVARCHAR2(510); - -ALTER TABLE C_ORDER -MODIFY OrderType NVARCHAR2(510); - -ALTER TABLE C_ORDER -ADD C_POS_ID NUMBER(10,0); - -ALTER TABLE C_ORDER -MODIFY C_POS_ID NUMBER(10,0); - -ALTER TABLE C_ORDER -ADD AmountTendered NUMBER(22,2); - -ALTER TABLE C_ORDER -MODIFY AmountTendered NUMBER(22,2); - -ALTER TABLE C_ORDER -ADD AmountRefunded NUMBER(22,2); - -ALTER TABLE C_ORDER -MODIFY AmountRefunded NUMBER(22,2); - ---- Table: M_Product ------------------------- -ALTER TABLE M_PRODUCT -MODIFY VALUE NVARCHAR2(510); - -ALTER TABLE M_PRODUCT -MODIFY NAME NVARCHAR2(510); - -ALTER TABLE M_PRODUCT -ADD Group1 NVARCHAR2(255); - -ALTER TABLE M_PRODUCT -MODIFY Group1 NVARCHAR2(255); - -ALTER TABLE M_PRODUCT -ADD Group2 NVARCHAR2(255); - -ALTER TABLE M_PRODUCT -MODIFY Group2 NVARCHAR2(255); - ---- Table: U_WebMenu -------------------------- -ALTER TABLE U_WebMenu -ADD CATEGORY NVARCHAR2(120); - -ALTER TABLE U_WebMenu -MODIFY CATEGORY NVARCHAR2(120); - -ALTER TABLE U_WebMenu -ADD SEQUENCE NUMBER(10,0); - -ALTER TABLE U_WebMenu -MODIFY SEQUENCE NUMBER(10,0); - ---- Table: C_POS --------------------------- - -ALTER TABLE C_POS -ADD CashDrawer VARCHAR(120); - -ALTER TABLE C_POS -MODIFY CashDrawer NVARCHAR2(120); - -SELECT '014_PosteritaDML_ORA.sql' AS Filename FROM dual; --- Sequence Changes -- -INSERT INTO AD_SEQUENCE(ad_sequence_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, vformat, isautosequence, incrementno, startno, currentnext, currentnextsys, isaudited, istableid, prefix, suffix, startnewyear) - VALUES(52002, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'U_BlackListCheque', 'Table U_BlackListCheque', NULL, 'Y', 1, 1000000, 1000000, 100, 'N', 'Y', NULL, NULL, 'N'); -INSERT INTO AD_SEQUENCE(ad_sequence_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, vformat, isautosequence, incrementno, startno, currentnext, currentnextsys, isaudited, istableid, prefix, suffix, startnewyear) - VALUES(52003, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'U_Web_Properties', 'Table U_Web_Properties', NULL, 'Y', 1, 1000000, 1000000, 100, 'N', 'Y', NULL, NULL, 'N'); -INSERT INTO AD_SEQUENCE(ad_sequence_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, vformat, isautosequence, incrementno, startno, currentnext, currentnextsys, isaudited, istableid, prefix, suffix, startnewyear) - VALUES(52004, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'U_RoleMenu', 'Table U_RoleMenu', NULL, 'Y', 1, 1000000, 1000000, 100, 'N', 'Y', NULL, NULL, 'N'); -INSERT INTO AD_SEQUENCE(ad_sequence_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, vformat, isautosequence, incrementno, startno, currentnext, currentnextsys, isaudited, istableid, prefix, suffix, startnewyear) - VALUES(52005, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'U_WebMenu', 'Table U_WebMenu', NULL, 'Y', 1, 1000000, 1000000, 100, 'N', 'Y', NULL, NULL, 'N'); - --- Element Changes -- -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52001, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'U_BlackListCheque_ID', 'D', 'U_BlackListCheque_ID', 'U_BlackListCheque_ID', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52002, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'BankName', 'D', 'BankName', 'BankName', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52003, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'ChequeNo', 'D', 'ChequeNo', 'ChequeNo', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52004, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'U_Web_Properties_ID', 'D', 'U_Web_Properties_ID', 'U_Web_Properties_ID', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52005, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'U_Key', 'D', 'U_Key', 'U_Key', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52006, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'U_Value', 'D', 'U_Value', 'U_Value', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52007, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'U_RoleMenu_ID', 'D', 'U_RoleMenu_ID', 'U_RoleMenu_ID', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52008, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'U_WebMenu_ID', 'D', 'U_WebMenu_ID', 'U_WebMenu_ID', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52009, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'MenuLink', 'D', 'MenuLink', 'MenuLink', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52010, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'Module', 'D', 'Module', 'Module', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52011, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'ParentMenu_ID', 'D', 'ParentMenu_ID', 'ParentMenu_ID', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52012, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'HasSubMenu', 'D', 'HasSubMenu', 'HasSubMenu', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52013, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'ImageLink', 'D', 'ImageLink', 'ImageLink', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52014, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'Position', 'D', 'Position', 'Position', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52015, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'CashDrawer', 'D', 'CashDrawer', 'CashDrawer', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52016, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'Sequence', 'D', 'Sequence', 'Sequence', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52017, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'Category', 'D', 'Category', 'Category', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52018, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'Group1', 'D', 'Group1', 'Group1', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52019, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'Group2', 'D', 'Group2', 'Group2', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52020, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'OrderType', 'D', 'OrderType', 'OrderType', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52021, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'AmountTendered', 'D', 'AmountTendered', 'AmountTendered', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52022, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'AmountRefunded', 'D', 'AmountRefunded', 'AmountRefunded', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52023, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'UserPIN', 'D', 'UserPIN', 'UserPIN', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52024, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'UserDiscount', 'D', 'UserDiscount', 'UserDiscount', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52025, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'ClassName', 'D', 'ClassName', 'ClassName', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52026, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'Args', 'D', 'Args', 'Args', NULL, NULL, NULL, NULL, NULL, NULL); - --- Table Changes -- -INSERT INTO AD_TABLE(ad_table_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, help, tablename, isview, accesslevel, entitytype, ad_window_id, ad_val_rule_id, loadseq, issecurityenabled, isdeleteable, ishighvolume, importtable, ischangelog, replicationtype, po_window_id, copycolumnsfromtable) - VALUES(52000, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'U_BlackListCheque', NULL, NULL, 'U_BlackListCheque', 'N', '3', 'D', NULL, NULL, NULL, 'N', 'Y', 'N', NULL, 'N', 'L', NULL, NULL); -INSERT INTO AD_TABLE(ad_table_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, help, tablename, isview, accesslevel, entitytype, ad_window_id, ad_val_rule_id, loadseq, issecurityenabled, isdeleteable, ishighvolume, importtable, ischangelog, replicationtype, po_window_id, copycolumnsfromtable) - VALUES(52001, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'U_Web_Properties', NULL, NULL, 'U_Web_Properties', 'N', '3', 'D', NULL, NULL, NULL, 'N', 'Y', 'N', NULL, 'N', 'L', NULL, NULL); -INSERT INTO AD_TABLE(ad_table_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, help, tablename, isview, accesslevel, entitytype, ad_window_id, ad_val_rule_id, loadseq, issecurityenabled, isdeleteable, ishighvolume, importtable, ischangelog, replicationtype, po_window_id, copycolumnsfromtable) - VALUES(52002, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'U_RoleMenu', NULL, NULL, 'U_RoleMenu', 'N', '3', 'D', NULL, NULL, NULL, 'N', 'Y', 'N', NULL, 'N', 'L', NULL, NULL); -INSERT INTO AD_TABLE(ad_table_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, help, tablename, isview, accesslevel, entitytype, ad_window_id, ad_val_rule_id, loadseq, issecurityenabled, isdeleteable, ishighvolume, importtable, ischangelog, replicationtype, po_window_id, copycolumnsfromtable) - VALUES(52003, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'U_WebMenu', NULL, NULL, 'U_WebMenu', 'N', '4', 'D', NULL, NULL, NULL, 'N', 'Y', 'N', NULL, 'N', 'L', NULL, NULL); - --- Reference changes -- -INSERT INTO AD_REFERENCE(AD_REFERENCE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, VALIDATIONTYPE, VFORMAT, ENTITYTYPE) - VALUES(52000, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'U_WebMenu_ID', NULL, NULL, 'T', NULL, 'D'); - --- Column Changes -- -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52011, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'U_BlackListCheque_ID', NULL, NULL, 0, 'D', 'U_BlackListCheque_ID', 52000, 13, NULL, NULL, 22, NULL, 'Y', 'N', 'Y', 'N', NULL, 'N', 10, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52001, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52012, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'AD_Client_ID', NULL, NULL, 0, 'D', 'AD_Client_ID', 52000, 19, NULL, 129, 22, '@AD_Client_ID@', 'N', 'N', 'Y', 'N', NULL, 'N', 20, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 102, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52013, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'AD_Org_ID', NULL, NULL, 0, 'D', 'AD_Org_ID', 52000, 19, NULL, 104, 22, '@AD_Org_ID@', 'N', 'N', 'Y', 'N', NULL, 'N', 30, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 113, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52014, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'IsActive', NULL, NULL, 0, 'D', 'IsActive', 52000, 20, NULL, NULL, 1, '''Y'' ', 'N', 'N', 'Y', 'Y', NULL, 'N', 40, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 348, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52015, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'Created', NULL, NULL, 0, 'D', 'Created', 52000, 16, NULL, NULL, 7, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 50, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 245, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52016, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'CreatedBy', NULL, NULL, 0, 'D', 'CreatedBy', 52000, 18, 110, NULL, 10, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 60, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 246, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52017, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'Updated', NULL, NULL, 0, 'D', 'Updated', 52000, 16, NULL, NULL, 7, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 70, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 607, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52018, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'UpdatedBy', NULL, NULL, 0, 'D', 'UpdatedBy', 52000, 18, 110, NULL, 10, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 80, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 608, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52019, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'BankName', NULL, NULL, 0, 'D', 'BankName', 52000, 10, NULL, NULL, 120, NULL, 'N', 'N', 'Y', 'Y', NULL, 'N', 90, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52002, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52020, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'ChequeNo', NULL, NULL, 0, 'D', 'ChequeNo', 52000, 10, NULL, NULL, 120, NULL, 'N', 'N', 'Y', 'Y', NULL, 'N', 100, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52003, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52021, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'U_Web_Properties_ID', NULL, NULL, 0, 'D', 'U_Web_Properties_ID', 52001, 13, NULL, NULL, 22, NULL, 'Y', 'N', 'Y', 'N', NULL, 'N', 10, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52004, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52022, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'AD_Client_ID', NULL, NULL, 0, 'D', 'AD_Client_ID', 52001, 19, NULL, 129, 22, '@AD_Client_ID@', 'N', 'N', 'Y', 'N', NULL, 'N', 20, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 102, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52023, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'AD_Org_ID', NULL, NULL, 0, 'D', 'AD_Org_ID', 52001, 19, NULL, 104, 22, '@AD_Org_ID@', 'N', 'N', 'Y', 'N', NULL, 'N', 30, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 113, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52024, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'IsActive', NULL, NULL, 0, 'D', 'IsActive', 52001, 20, NULL, NULL, 1, '''Y'' ', 'N', 'N', 'Y', 'Y', NULL, 'N', 40, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 348, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52025, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'Created', NULL, NULL, 0, 'D', 'Created', 52001, 16, NULL, NULL, 7, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 50, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 245, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52026, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'CreatedBy', NULL, NULL, 0, 'D', 'CreatedBy', 52001, 18, 110, NULL, NULL, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 60, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 246, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52027, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'Updated', NULL, NULL, 0, 'D', 'Updated', 52001, 16, NULL, NULL, 7, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 70, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 607, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52028, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'UpdatedBy', NULL, NULL, 0, 'D', 'UpdatedBy', 52001, 18, 110, NULL, NULL, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 80, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 608, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52029, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'U_Key', NULL, NULL, 0, 'D', 'U_Key', 52001, 10, NULL, NULL, 240, NULL, 'N', 'N', 'Y', 'Y', NULL, 'N', 90, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52005, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52030, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'U_Value', NULL, NULL, 0, 'D', 'U_Value', 52001, 10, NULL, NULL, 240, NULL, 'N', 'N', 'Y', 'Y', NULL, 'N', 100, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52006, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52031, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'U_RoleMenu_ID', NULL, NULL, 0, 'D', 'U_RoleMenu_ID', 52002, 13, NULL, NULL, 22, NULL, 'Y', 'N', 'Y', 'N', NULL, 'N', 10, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52007, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52032, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'AD_Client_ID', NULL, NULL, 0, 'D', 'AD_Client_ID', 52002, 19, NULL, 129, 22, '@AD_Client_ID@', 'N', 'N', 'Y', 'N', NULL, 'N', 20, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 102, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52033, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'AD_Org_ID', NULL, NULL, 0, 'D', 'AD_Org_ID', 52002, 19, NULL, 104, 22, '@AD_Org_ID@', 'N', 'N', 'Y', 'N', NULL, 'N', 30, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 113, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52034, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'IsActive', NULL, NULL, 0, 'D', 'IsActive', 52002, 20, NULL, NULL, 1, '''Y'' ', 'N', 'N', 'Y', 'Y', NULL, 'N', 40, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 348, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52035, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'Created', NULL, NULL, 0, 'D', 'Created', 52002, 16, NULL, NULL, 7, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 50, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 245, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52036, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'CreatedBy', NULL, NULL, 0, 'D', 'CreatedBy', 52002, 18, 110, NULL, NULL, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 60, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 246, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52037, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'Updated', NULL, NULL, 0, 'D', 'Updated', 52002, 16, NULL, NULL, 7, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 70, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 607, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52038, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'UpdatedBy', NULL, NULL, 0, 'D', 'UpdatedBy', 52002, 18, 110, NULL, NULL, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 80, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 608, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52039, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'AD_Role_ID', NULL, NULL, 0, 'D', 'AD_Role_ID', 52002, 19, NULL, NULL, 10, NULL, 'N', 'N', 'Y', 'Y', NULL, 'N', 90, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 123, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52040, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'U_WebMenu_ID', NULL, NULL, 0, 'D', 'U_WebMenu_ID', 52002, 19, NULL, NULL, 10, NULL, 'N', 'N', 'Y', 'Y', NULL, 'N', 100, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52008, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52041, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'U_WebMenu_ID', NULL, NULL, 0, 'D', 'U_WebMenu_ID', 52003, 13, NULL, NULL, 22, NULL, 'Y', 'N', 'Y', 'N', NULL, 'N', 10, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52008, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52042, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'AD_Client_ID', NULL, NULL, 0, 'D', 'AD_Client_ID', 52003, 19, NULL, 129, 22, '@AD_Client_ID@', 'N', 'N', 'Y', 'N', NULL, 'N', 20, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 102, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52043, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'AD_Org_ID', NULL, NULL, 0, 'D', 'AD_Org_ID', 52003, 19, NULL, 104, 22, '@AD_Org_ID@', 'N', 'N', 'Y', 'N', NULL, 'N', 30, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 113, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52044, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'IsActive', NULL, NULL, 0, 'D', 'IsActive', 52003, 20, NULL, NULL, 1, '''Y'' ', 'N', 'N', 'Y', 'Y', NULL, 'N', 40, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 348, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52045, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'Created', NULL, NULL, 0, 'D', 'Created', 52003, 16, NULL, NULL, 7, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 50, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 245, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52046, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'CreatedBy', NULL, NULL, 0, 'D', 'CreatedBy', 52003, 18, 110, NULL, 10, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 60, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 246, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52047, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'Updated', NULL, NULL, 0, 'D', 'Updated', 52003, 16, NULL, NULL, 7, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 70, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 607, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52048, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'UpdatedBy', NULL, NULL, 0, 'D', 'UpdatedBy', 52003, 18, 110, NULL, 10, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 80, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 608, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52049, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'Name', NULL, NULL, 0, 'D', 'Name', 52003, 10, NULL, NULL, 120, NULL, 'N', 'N', 'Y', 'Y', NULL, 'Y', 90, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 469, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52050, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'MenuLink', NULL, NULL, 0, 'D', 'MenuLink', 52003, 10, NULL, NULL, 510, NULL, 'N', 'N', 'Y', 'Y', NULL, 'N', 100, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52009, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52051, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'Module', NULL, NULL, 0, 'D', 'Module', 52003, 10, NULL, NULL, 120, NULL, 'N', 'N', 'Y', 'Y', NULL, 'N', 110, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52010, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52052, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'ParentMenu_ID', NULL, NULL, 0, 'D', 'ParentMenu_ID', 52003, 18, 52000, NULL, 10, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 120, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52011, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52053, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'HasSubMenu', NULL, NULL, 0, 'D', 'HasSubMenu', 52003, 20, NULL, NULL, 1, '''N''', 'N', 'N', 'Y', 'Y', NULL, 'N', 130, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52012, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52054, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'Description', NULL, NULL, 0, 'D', 'Description', 52003, 10, NULL, NULL, 200, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 140, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 275, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52055, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'ImageLink', NULL, NULL, 0, 'D', 'ImageLink', 52003, 10, NULL, NULL, 510, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 150, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52013, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52056, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'Position', NULL, NULL, 0, 'D', 'Position', 52003, 10, NULL, NULL, 10, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 160, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52014, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52057, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'Help', NULL, NULL, 0, 'D', 'Help', 52003, 10, NULL, NULL, 2000, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 170, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 326, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52058, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'CashDrawer', NULL, NULL, 0, 'D', 'CashDrawer', 748, 10, NULL, NULL, 120, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 10, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52015, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52059, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'Sequence', NULL, NULL, 0, 'D', 'Sequence', 52003, 22, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 10, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52016, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52060, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'Category', NULL, NULL, 0, 'D', 'Category', 52003, 10, NULL, NULL, 120, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 20, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52017, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52061, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'Group1', NULL, NULL, 0, 'D', 'Group1', 208, 10, NULL, NULL, 255, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 50, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52018, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52062, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'Group2', NULL, NULL, 0, 'D', 'Group2', 208, 10, NULL, NULL, 255, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 60, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52019, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52063, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'OrderType', NULL, NULL, 0, 'D', 'OrderType', 259, 10, NULL, NULL, 510, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 10, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52020, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52064, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'AmountTendered', NULL, NULL, 0, 'D', 'AmountTendered', 259, 22, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 30, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52021, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52065, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'AmountRefunded', NULL, NULL, 0, 'D', 'AmountRefunded', 259, 22, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 40, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52022, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52066, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'UserPIN', NULL, NULL, 0, 'D', 'UserPIN', 114, 10, NULL, NULL, 20, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 10, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52023, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52067, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'UserDiscount', NULL, NULL, 0, 'D', 'UserDiscount', 156, 22, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 20, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52024, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52068, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'ClassName', NULL, NULL, 0, 'D', 'ClassName', 493, 10, NULL, NULL, 240, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 10, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52025, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52069, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'Args', NULL, NULL, 0, 'D', 'Args', 493, 10, NULL, NULL, 510, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 20, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52026, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52070, 0, 0, 'Y', SYSDATE, SYSDATE, 0, 0, 'C_POS_ID', NULL, NULL, 0, 'D', 'C_POS_ID', 259, 19, NULL, NULL, 10, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 20, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 2581, NULL, 'N', 'N', NULL); - --- AD_Ref_table Changes -- - -INSERT INTO AD_REF_TABLE(AD_REFERENCE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, AD_TABLE_ID, AD_KEY, AD_DISPLAY, ISVALUEDISPLAYED, WHERECLAUSE, ORDERBYCLAUSE, ENTITYTYPE) - VALUES(52000, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 52003, 52041, 52049, 'N', NULL, NULL, 'D'); - --- Process Changes -- -INSERT INTO AD_PROCESS(ad_process_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, NAME, description, help, accesslevel, entitytype, procedurename, isreport, isdirectprint, ad_reportview_id, classname, statistic_count, statistic_seconds, ad_printformat_id, workflowvalue, ad_workflow_id, isbetafunctionality, isserverprocess, showhelp, jasperreport) - VALUES(52003, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'U_RoleMenu_Update', 'Update Role Menu', NULL, NULL, '3', 'D', NULL, 'N', 'N', NULL, 'org.adempiere.process.UpdateRoleMenu', 0, 0, NULL, NULL, NULL, 'N', 'N', 'Y', NULL); - -INSERT INTO AD_PROCESS_PARA(ad_process_para_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, help, ad_process_id, seqno, ad_reference_id, ad_reference_value_id, ad_val_rule_id, columnname, iscentrallymaintained, fieldlength, ismandatory, isrange, defaultvalue, defaultvalue2, vformat, valuemin, valuemax, ad_element_id, entitytype) - VALUES(52000, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Role', NULL, NULL, 52003, 10, 30, NULL, NULL, 'AD_Role_ID', 'Y', 0, 'Y', 'N', NULL, NULL, NULL, NULL, NULL, 123, 'D'); - --- Process Access -- -INSERT INTO AD_PROCESS_ACCESS(ad_process_id, ad_role_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, isreadwrite) - VALUES(52003, 0, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Y'); -INSERT INTO AD_PROCESS_ACCESS(ad_process_id, ad_role_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, isreadwrite) - VALUES(52003, 102, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Y'); -INSERT INTO AD_PROCESS_ACCESS(ad_process_id, ad_role_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, isreadwrite) - VALUES(52003, 103, 0, 0, 'Y',SYSDATE, 100, SYSDATE, 100, 'Y'); - --- Menu Changes -- -INSERT INTO AD_MENU(ad_menu_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, NAME, updatedby, description, issummary, issotrx, isreadonly, action, ad_window_id, ad_workflow_id, ad_task_id, ad_process_id, ad_form_id, ad_workbench_id, entitytype) - VALUES(52000, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 'Update Role Menu', 100, NULL, 'N', 'N', 'N', 'P', NULL, NULL, NULL, 52003, NULL, NULL, 'D'); -INSERT INTO AD_MENU(ad_menu_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, NAME, updatedby, description, issummary, issotrx, isreadonly, action, ad_window_id, ad_workflow_id, ad_task_id, ad_process_id, ad_form_id, ad_workbench_id, entitytype) - VALUES(52001, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 'Posterita', 100, NULL, 'Y', 'N', 'N', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'D'); -INSERT INTO AD_TREENODEMM(ad_tree_id, node_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, parent_id, seqno) - VALUES(10, 52000, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 52001, 0); -INSERT INTO AD_TREENODEMM(ad_tree_id, node_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, parent_id, seqno) - VALUES(10, 52001, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 0, 10); - - - - --- Message Changes -- -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52003, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, '1000_rupees', '1000 Rupees', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52004, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, '100_dollars', '100 dollars', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52005, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, '100_rupees', '100 Rupees', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52006, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, '10_dollars', '10 dollars', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52007, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, '10_rupees', '10 Rupees', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52008, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, '1_cent', '1 cent', '1 cent', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52009, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, '1_dollar', '1 dollar', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(520010, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, '1_rupee', '1 Rupee', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52011, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, '2000_rupees', '2000 Rupees', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52012, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, '200_rupees', '200 Rupees', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52013, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, '20_cents', '20 cents', '20 cents', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52014, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, '20_dollars', '20 dollars', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52015, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, '25_rupees', '25 Rupees', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52016, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, '500_rupees', '500 Rupees', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52017, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, '50_cents', '50 cents', '50 cents', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52018, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, '50_dollars', '50 dollars', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52019, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, '50_rupees', '50 Rupees', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52020, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, '5_cents', '5 cents', '5 cents', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52021, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, '5_dollars', '5 dollars', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52022, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, '5_rupees', '5 Rupees', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52023, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Due0', 'Due 0', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52024, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Due0_30', 'Due 0-30', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52025, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'account.type', 'Account Type', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52026, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'accounts.receivable', 'Accounts Receivable-Trade', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52027, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'activate', 'Activate', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52028, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'activate.vendor', 'Activate Vendor', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52029, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'actual.price', 'Actual Price', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52030, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'add', 'Add', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52031, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'add.black.listed.cheque', 'Add Black Listed Cheque', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52032, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'add.customer.fidelity.card', 'Add Customer for fidelity card', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52033, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'add.customer.for.fidelity.card', 'Add Customer for fidelity card', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52034, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'add.record', 'Add Record', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52035, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'add.to.cart', 'Add To Cart', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52036, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'address', 'Address', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52037, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'adjust.cash.book', 'Adjust Cash Book', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52038, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'advanced', 'Advanced', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52039, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'aging', 'Aging', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52040, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'ajax.error', 'Some error occured while communicating with the server. Please try again.', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52041, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'all', 'All', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52042, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'all.products', 'All products', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52043, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'amount.difference', 'Difference', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52044, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'amount.expense', 'Expense', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52045, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'amount.receipt', 'Receipt', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52046, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'amount.refunded', 'Amount refunded', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52047, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'amount.tendered', 'Amount Tendered', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52048, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'amount.transfer', 'Transfer', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52049, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'application.name', 'Application Name', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52050, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'application.version', 'Application Version', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52051, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'asset', 'Assets', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52052, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'at.least.one', 'At least one', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52053, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'attach.image', 'Attach Image', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52054, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'attribute', 'Attribute', 'Attribute', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52055, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'attribute.set', 'Attribute Set', 'Attribute Set', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52056, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'available.menu', 'Available Menus', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52057, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'back', 'Back', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52058, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'barcode', 'Barcode', 'Barcode', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52059, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'barcode.already.exists', 'Barcode already exists!', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52060, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'black.listed.cheques', 'Black Listed Cheques', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52061, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'bpartner.info', 'Business Partner Info', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52062, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'bpartner.trx.details', 'Business Partner Trx Details', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52063, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'brand', 'Brand', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52064, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'cal.period.curr', 'Calculation Period And Curr.', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52065, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'card', 'Card', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52066, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'card.amount', 'Card Amount', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52067, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'card.amt.entered', 'Card Amount Entered', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52068, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'card.amt.tendered', 'Card amount tendered', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52069, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'card.amt.total', 'Card Amount Total', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52070, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'card.is.empty', 'The Cart is Empty !', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52071, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'card.no', 'Card No', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52072, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'card.total', 'Card Total', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52073, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'cart.addmore', 'Add More', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52074, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'cart.empty', 'Cart is empty!', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52075, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'cart.has', 'Cart has', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52076, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'cart.items', ' items', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52077, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'cart.remove', 'Remove', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52078, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'cash', 'Cash', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52079, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'cash.amount', 'Cash Amount', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52080, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'cash.book', 'Cash Book', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52081, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'cash.book.adjust', 'The Cash Book has been adjusted.', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52082, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'cash.book.adjusted', 'The Cash Book has been adjusted', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52083, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'cash.book.history', 'Cash Book History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52084, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'cash.line.detail', 'Cash Line Details', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52085, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'cash.payment', 'Cash Payment', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52086, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'cash.receipt', 'Cash Receipt', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52087, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'cash.refunded', 'Cash refunded', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52088, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'cash.tendered', 'Cash tendered', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52089, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'cash.to.transfer', 'Cash to transfer', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52090, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'cash.total', 'Cash Total', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52091, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'cellphone', 'Cellphone', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52092, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'checkout', 'Checkout', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52093, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'cheque', 'Cheque', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52094, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'cheque.amount', 'Cheque Amount', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52095, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'cheque.amt.entered', 'Cheque Amount Entered', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52096, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'cheque.amt.tendered', 'Cheque amount tendered', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52097, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'cheque.amt.total', 'Cheque Amount Total', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52098, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'cheque.no', 'Cheque No', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52099, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'cheque.total', 'Cheque Total', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52100, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'choose.attribute', 'Choose Attribute', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52101, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'choose.your.till', 'Please choose your till number', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52102, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'clear', 'Clear', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52103, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'close', 'Close', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52104, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'close.till', 'Close Till', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52105, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'closed', 'Closed', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52106, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'closing.balance', 'Closing Balance', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52107, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'cogs', 'CoGS', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52108, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'colour', 'Colour', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52109, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'commission.details', 'Commission Details', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52110, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'completed', 'Completed', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52111, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'continue', 'Continue', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52112, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'create.bpartner', 'Create Business Partner', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52113, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'create.garment', 'Create Garment', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52114, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'create.payment', 'Create Payment', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52115, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'credit.check', 'Credit Check', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52116, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'credit.details', 'Credit Details', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52117, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'credit.hold', 'Credit Hold', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52118, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'credit.memo', 'Credit Memo', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52119, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'credit.ok', 'Credit OK', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52120, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'credit.order', 'Credit Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52121, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'credit.order.discount', 'Credit Order Discount', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52122, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'credit.stop', 'Credit Stop', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52123, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'credit.watch', 'Credit Watch', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52124, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'current.month', 'Current Month', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52125, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'current.till.amount', 'Current Till Amount', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52126, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'current.week', 'Current Week', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52127, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'current.year', 'Current Year', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52128, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'custom', 'Custom', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52129, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'custom.sales.reports', 'Custom Sales Report', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52130, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'customer', 'Customer', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52131, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'customer.id', 'Customer ID', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52132, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'customer.info', 'Customer Info', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52133, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'customer.returned.order', 'Customer Returned Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52134, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'customervendor', 'Customer/Vendor', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52135, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'date.created', 'Date Created', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52136, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'date.from', 'From', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52137, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'date.ordered', 'Date Ordered', 'Date Ordered', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52138, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'date.range', 'Date Range', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52139, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'date.to', 'to', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52140, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'deactivate', 'De-activate', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52141, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'deactivate.vendor', 'Deactivate Vendor', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52142, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'dealer.name', 'Dealer Name', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52143, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'default', 'Default', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52144, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'delete', 'Delete', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52145, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'delete.selected', 'Delete Selected', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52146, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'design', 'Design', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52147, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'discount.amt', 'Discount', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52148, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'discounted.price', 'Discounted Price', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52149, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'display', 'Display', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52150, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'display.all.records', 'Do you want to display all records?', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52151, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'doc.basis.type', 'Doc Basis Type', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52152, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'download.csv', 'Download CSV', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52153, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'drafted', 'Drafted', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52154, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'dunning.letters.printed.successfully', 'Dunning letters have been printed successfully', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52155, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'edit', 'Edit', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52156, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'edit.attribute', 'Edit Attribute', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52157, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'edit.black.listed.cheque', 'Edit Black Listed Cheque', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52158, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'edit.customer', 'Edit Customer', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52159, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'edit.price', 'Edit Price', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52160, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'edit.price.list', 'Edit Price List', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52161, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'edit.product', 'Edit Product', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52162, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'edit.related.products', 'Edit related products details', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52163, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'edit.role', 'Edit Role', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52164, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'edit.user', 'Edit User', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52165, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'edit.vendor', 'Edit Vendor', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52166, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'enable.printing', 'Enable printing', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52167, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'enter', 'ENTER', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52168, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'excl.vat', '(excl. VAT)', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52169, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'fast.moving.item', 'Fast Moving Items Report', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52170, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'fast.moving.item.current.month', 'Fast Moving Items Report (Current Month)', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52171, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'fast.moving.item.today', 'Fast Moving Items Report (Today)', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52172, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'filter.by', 'Filter By', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52173, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'filter.type', 'Choose the type of filter', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52174, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'first', 'First', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52175, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'fixed', 'Fixed', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52176, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'float.amt.change', 'This is the float amount for today. Please Enter float amount for the next day if needs to be changed.', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52177, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'footer.copyright', 'All Contents ©', '2006 Tamak ICT', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52178, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'found.none', 'Found None', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52179, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'from', 'From', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52180, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'garment.template', 'Garment Template', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52181, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'generate.commission', 'Generate Commission', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52182, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'goods.received.note', 'Goods Received Note', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52183, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'goods.returned.note', 'Goods Returned Note', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52184, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'hide.details', 'Hide Details', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52185, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'import.black.listed', 'Import Black Listed Cheques', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52186, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'import.blacklisted.message1', 'This utility is to import the a list of Black Listed Cheques from a csv file into the system,
The csv file should look like the one shown below including the header:', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52187, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'import.list', 'Import List', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52188, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'import.product.message', 'This utility is to import the products and Stock in Hand from a csv file into the system,
For importing the garment products, the CSV file name should containg the word ''Garment''
The csv file should look like the one shown below including the header', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52189, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'incl.vat', '(incl. VAT)', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52190, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'inprogress', 'InProgress', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52191, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'invalid', 'Invalid', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52192, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'invoice.no', 'Invoice No', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52193, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'invoke', 'Invoke', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52194, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'invoke.customer.returned.order', 'Invoke', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52195, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'invoke.partial', 'Invoke Partial POS Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52196, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'items', 'Items', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52197, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'last', 'Last', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52198, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'last.2.months', 'Last 2 Months', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52199, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'last.2.weeks', 'Last 2 Weeks', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52200, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'last.3.months', 'Last 3 Months', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52201, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'last.3.weeks', 'Last 3 Weeks', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52202, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'last.6.month', 'Last 6 Months', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52203, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'license.name', 'License Name', 'License Name', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52204, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'license.valid', 'License Valid', 'License Valid', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52205, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'licensed.distribution', 'Licensed Distribution', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52206, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'licensed.module', 'Licensed Modules', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52207, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'licensing.info', 'Licensing Information', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52208, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'list', 'List', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52209, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'login.home.all.contents', 'All content', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52210, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'login.home.loginForgot', 'Forgot password?', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52211, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'login.home.message1', 'Please enter your username and password', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52212, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'login.home.message2', 'Please enter PIN', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52213, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'login.home.password', 'Password', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52214, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'login.home.username', 'Username', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52215, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'login.password.backToLogin', ' ', ' Click Here to go back to the Login Screen', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52216, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'login.password.passwordSent', 'Your password has been sent you should receive it in a few minutes', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52217, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'marked.price', 'Marked Price', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52218, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'max.active.users', 'Max Active Users', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52219, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'max.sold.item', 'Max sold Item', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52220, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'menus', 'Menus', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52221, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'min.item.sold', 'Min Item Sold', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52222, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'mixed', 'Mixed', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52223, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'mobile', 'Moblie No', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52224, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'model', 'Model', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52225, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'month', 'Month', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52226, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'net.amt', 'Net Amount', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52227, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'net.cash.trx', 'Net Cash Trx', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52228, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'net.transaction', 'Net Transaction', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52229, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'new.attribute.value', 'New Attribute Value', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52230, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'new.credit.order', 'New Credit Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52231, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'new.customer', 'New Customer', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52232, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'new.customer.return.order', 'New Customer Return Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52233, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'new.goods.received.note', 'New Goods Receive Note', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52234, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'new.goods.returned.note', 'New Goods Returned Note', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52235, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'new.order', 'New Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52236, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'new.price', 'New Price', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52237, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'no', 'No', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52238, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'no.customer.was.found.for', 'No customer was found for', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52239, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'no.shipment', 'No Shipment', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52240, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'no.vendor.was.found.for', 'No vendor was found for', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52241, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'normal.template', 'Normal Template', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52242, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'not.authorised.to.give.discount', 'It seems that you are not authorised to give discounts', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52243, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'not.found', 'Not Found', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52244, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'notes', 'Notes', 'Notes', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52245, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'num.active.users', 'No of Active Users', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52246, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'num.operations', 'Number of Operations', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52247, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'old.attribute.value', 'Old Attribute Value', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52248, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'open.invoices', 'Open Invoices', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52249, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'opening.balance', 'Opening Balance', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52250, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'order.no', 'Order No', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52251, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'order.type', 'Order Type', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52252, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'organisation.name', 'Organisations', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52253, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'partial.pos.order', 'Partial POS Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52254, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'partial.pos.order.history', 'Partial POS Order History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52255, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'payment.allocation', 'Payment Allocation', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52256, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'payment.by', 'Payment By', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52257, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'payment.details', 'Payment Details', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52258, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'payment.num', 'Payment No', 'Payment No', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52259, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'payment.status', 'Payment Status', 'Payment Status', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52260, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'payment.terms', 'Payment Terms', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52261, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'payment.type', 'Payment Type', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52262, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'periodic.cash.details', 'Periodic Cash Book Details', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52263, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'please.enter.pin', 'Please enter PIN', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52264, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'pmenu.administration', 'Administration', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52265, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'pmenu.cash.sales', 'Cash Sales', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52266, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'pmenu.credit.sales', 'Credit Sales', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52267, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'pmenu.performance.analysis', 'Performance Analysis', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52268, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'pmenu.purchases', 'Purchases', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52269, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'pmenu.stock', 'Stock', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52270, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'pos.info', 'POS Info', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52271, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'pos.info.current.month', 'POS Info (Current Month)', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52272, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'pos.info.custom', 'POS Info (Custom)', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52273, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'pos.info.today', 'POS Info (Today)', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52274, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'pos.name', 'POS Name', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52275, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'pos.order', 'POS Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52276, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'pos.order.history', 'POS Order History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52277, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'posPassowrd.welcome', 'Welcome to Posterita POS', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52278, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'postalAddr', 'Postal Address', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52279, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'preference.themes', 'Themes', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52280, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'preferences', 'Preferences', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52281, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'prepared.order', 'Prepared Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52282, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'prev', 'Prev', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52283, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'print.barcode', 'Print Barcode', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52284, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'print.dunning.letters', 'Print Dunning Letters', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52285, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'print.fidelity.card', 'Print Fidelity Card', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52286, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'print.order', 'Print Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52287, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'print.pdf', 'Print PDF', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52288, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'printer.enabled', 'Printer enabled', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52289, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'printer.name', 'Printer name', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52290, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'product.already.exists', 'Product name already exists!', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52291, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'product.id', 'Product ID', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52292, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'product.info', 'Product Info', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52293, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'product.type.item', 'Item', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52294, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'product.type.services', 'Services', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52295, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'product.updated', 'The Products have been updated', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52296, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'profit.margin', 'Profit Margin', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52297, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'purchase.price', 'Purchase Price', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52298, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'qty.received', 'Qty Received', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52299, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'qty.returned.by.customer', 'Qty Returned By Customer', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52300, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'qty.returned.to.supplier', 'Qty Returned to Supplier', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52301, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'qty.sold', 'Qty Sold', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52302, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'reason.message', 'Reason', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52303, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'record.found', 'Records found', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52304, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'records.per.page', 'records per page', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52305, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'remote.printing', 'Remote printing', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52306, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'remove.customer.fidelity.card', 'Remove Customer for fidelity card', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52307, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'report.filter.settings', 'Report Filter Settings', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52308, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'reprint', 'Reprint', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52309, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'returned.order', 'Returned Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52310, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'revenue', 'Revenue', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52311, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'sales.details', 'Sales Details', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52312, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'sales.order', 'Sales Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52313, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'sales.price', 'Sales Price', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52314, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'sales.reports', 'Sales Reports', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52315, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'save', 'Save', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52316, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'save.as.csv', 'Save as CSV', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52317, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'search', 'Search', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52318, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'search.customer', 'Search Customer', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52319, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'search.customer.notfound', 'No customers were found for', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52320, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'search.product', 'Search Product', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52321, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'search.product.notfound', 'No products were found for:', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52322, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'search.result.displaying', 'Displaying', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52323, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'search.result.of', 'of', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52324, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'search.result.to', 'to', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52325, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'search.results', 'Search Results', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52326, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'select', 'Select', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52327, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'select.all', 'Select All', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52328, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'select.bpartner.type', 'Select partner type', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52329, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'select.range', 'Select Range', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52330, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'selected.customers', 'Selected Customers', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52331, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'settle.payment', 'Settle Payment', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52332, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'settle.payment.message', 'NOTE:-The Cash Payments would have effect only when the cash book is closed', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52333, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'shipment.no', 'Shipment No', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52334, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'shipment.required', 'Shipment Required', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52335, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'shipment.status', 'Shipment Status', 'Shipment Status', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52336, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'show.details', 'Show Details', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52337, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'size', 'Size', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52338, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'slow.moving.item', 'Slow Moving Items', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52339, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.adjust.cashbook', 'Adjust Cash Book', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52340, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.adjust.inventory.id', 'Adjust Inventory', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52341, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.adjust.stock.id', 'Stock Adjustment', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52342, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.bpartner.sales.details', 'Business Partner Sales Details', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52343, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.bpartners', 'Business Partners', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52344, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.cash.sales', 'Cash Sales', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52345, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.cash.sales.customer.complusory', 'Cash Sales (Customer Compulsory)', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52346, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.cash.sales.history', 'Cash Sales History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52347, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.cash.sales.multiple.payments', 'Cash Sales (Discount/Multiple Payments)', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52348, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.cashbook.history', 'Cash Book History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52349, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.cashbook.report', 'Cash Book Report', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52350, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.check.repair.database.integrity', 'Check/Repair Database Integrity', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52351, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.close.till', 'Close Till', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52352, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.complete.prepared.order', 'Complete Prepared Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52353, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.create.unallocated.payment.id', 'Create General Payments', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52354, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.credit.memo.history.id', 'Credit Memo History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52355, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.credit.sales', 'Credit Sales', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52356, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.credit.sales.history', 'Credit Sales History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52357, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.creditmemo.from.creditorder.id', 'Invoke Credit Memo', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52358, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.current.money.in.terminal', 'Current Money in Terminal', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52359, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.customer.return.history.id', 'Customer Return History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52360, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.customer.returned.order', 'Customer Returned Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52361, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.customers', 'Customers', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52362, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.document.history', 'Document History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52363, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.dunning.letters', 'Dunning Letters', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52364, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.edit.product.attribute.value', 'Edit Product Attribute Value', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52365, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.fast.moving.items', 'Fast Moving Items', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52366, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.generate.commission', 'Generate Commission', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52367, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.goods.received.note', 'Goods Received Note', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52368, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.goods.received.note.history', 'Goods Received Note History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52369, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.goods.returned.note', 'Goods Returned Note', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52370, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.goods.returned.note.history', 'Goods Returned Note History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52371, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.inventory.history.id', 'Inventory History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52372, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.invoke.customer.returned.order', 'Invoke Customer Returned Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52373, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.logout', 'Logout', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52374, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.open.cashdrawer', 'Open Cash Drawer', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52375, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.order.history', 'Order History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52376, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.payment.allocation.history', 'Payment Allocations History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52377, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.payment.term', 'Payment Term', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52378, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.performance.analysis.report', 'Performance Analysis Report', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52379, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.preferences', 'Preferences', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52380, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.prepare.order', 'Prepare Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52381, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.prepared.order.history', 'Prepared Order History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52382, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.products', 'Products', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52383, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.quick.cash.sales', 'Quick Cash Sales', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52384, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.role', 'Role', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52385, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.sales.report.per.terminal', 'Sales Report per Terminal', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52386, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.settle.payment.credit.sales', 'Settle Payment on a Credit Sales', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(523847, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.slow.moving.items', 'Slow Moving Items', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52388, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.stock', 'Stock', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52389, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.stock.movement', 'Stock Movement', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52390, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.tax', 'Tax', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52391, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.users', 'Users', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52392, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.vendors', 'Vendors', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52393, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.view.last.generated.commission', 'Last Generated Commission', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52394, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.view.licensing', 'Licensing', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52395, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'status', 'Status', 'Status', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52396, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'stock.in.hand', 'Stock in Hand', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52397, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'stock.inquiry', 'Stock Inquiry', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52398, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'stock.movement', 'Stock Movement', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52399, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'stock.movement.report', 'Stock Movement Report', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52400, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'submit', 'Submit', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52401, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'summary.by.periods', 'Summary By Period', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52402, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'switch.to.paging', 'Switch to Paging', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52403, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'tamak.pos', 'Posterita POS', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52404, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'tax.credit', 'Tax Credit', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52405, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'tax.due', 'Tax Due', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52406, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'texttile.products.only', 'Textile Products Only', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52407, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'the.cart.has', 'The Cart has', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52408, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'till.balance.entered', 'Till Balance Entered', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52409, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'till.management', 'Till Mgt', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52410, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'till.no', 'Till No', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52411, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'time.hour', 'h', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52412, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'time.minute', 'm', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52413, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'to', 'To', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52414, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'today', 'Today', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52415, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'total', 'Total', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52416, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'total.price', 'Total Price', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52417, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'trade.revenue', 'Trade Revenue', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52418, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'unallocated.payments', 'Unallocated Payments', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52419, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'update.details', 'Update Details', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52420, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'user', 'User', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52421, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'user.details', 'User''s Details', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52422, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'user.info', 'Information', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52423, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'vat', 'VAT', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52424, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'vendor.details', 'Vendor Details', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52425, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'vendor.ref', 'Vendor Ref', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52426, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'vendors', 'Vendors', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52427, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'view', 'View', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52428, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'view.attributes', 'View Attributes', 'View Attributes', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52429, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'view.by', 'View By', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52430, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'view.info', 'View Info', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52431, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'view.product.cart', 'View Product Cart', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52432, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'view.report', 'View Report', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52433, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'view.role', 'View Role', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52434, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'view.vendor', 'View Vendor', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52435, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'year', 'Year', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52436, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'yes', 'Yes', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52437, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'price.x', 'Price(excl. VAT)', 'Prix(excl. TVA)', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52438, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'LogOut', 'Log Out', 'Sortir', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52439, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'smenu.price.check', 'Price Check', 'Verifier Prix', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52440, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'next', 'Next', 'Suivant', 'I', 'D'); - - -SELECT '015_PosteritaDML2_ORA.sql' AS Filename FROM dual; --- ad_Window Changes -- - -INSERT INTO AD_WINDOW(AD_WINDOW_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, WINDOWTYPE, ISSOTRX, ENTITYTYPE, PROCESSING, AD_IMAGE_ID, AD_COLOR_ID, ISDEFAULT, WINHEIGHT, WINWIDTH, ISBETAFUNCTIONALITY) - VALUES(52000, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Posterita Web Menu', 'To dynamically generate the menu links in posterita', NULL, 'M', 'Y', 'D', 'N', NULL, NULL, 'N', 0, 0, 'N'); -INSERT INTO AD_WINDOW(AD_WINDOW_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, WINDOWTYPE, ISSOTRX, ENTITYTYPE, PROCESSING, AD_IMAGE_ID, AD_COLOR_ID, ISDEFAULT, WINHEIGHT, WINWIDTH, ISBETAFUNCTIONALITY) - VALUES(52001, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Posterita Role Menu', 'Depending on Which Role, Different set of Menus are generated and made available.', NULL, 'M', 'Y', 'D', 'N', NULL, NULL, 'N', 0, 0, 'N'); -INSERT INTO AD_WINDOW(AD_WINDOW_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, WINDOWTYPE, ISSOTRX, ENTITYTYPE, PROCESSING, AD_IMAGE_ID, AD_COLOR_ID, ISDEFAULT, WINHEIGHT, WINWIDTH, ISBETAFUNCTIONALITY) - VALUES(52002, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Posterita Web Properties', 'Stores the message tags to be picked up from AD_MESSAGE ', NULL, 'M', 'Y', 'D', 'N', NULL, NULL, 'N', 0, 0, 'N'); -INSERT INTO AD_WINDOW(AD_WINDOW_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, WINDOWTYPE, ISSOTRX, ENTITYTYPE, PROCESSING, AD_IMAGE_ID, AD_COLOR_ID, ISDEFAULT, WINHEIGHT, WINWIDTH, ISBETAFUNCTIONALITY) - VALUES(52003, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Posterita BlackListCheque', 'Black Listed Cheque', NULL, 'M', 'Y', 'D', 'N', NULL, NULL, 'N', 0, 0, 'N'); - ---- ad_Tab Changes --- -INSERT INTO AD_TAB(AD_TAB_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, AD_TABLE_ID, AD_WINDOW_ID, SEQNO, TABLEVEL, ISSINGLEROW, ISINFOTAB, ISTRANSLATIONTAB, ISREADONLY, AD_COLUMN_ID, HASTREE, WHERECLAUSE, ORDERBYCLAUSE, COMMITWARNING, AD_PROCESS_ID, PROCESSING, AD_IMAGE_ID, IMPORTFIELDS, AD_COLUMNSORTORDER_ID, AD_COLUMNSORTYESNO_ID, ISSORTTAB, ENTITYTYPE, INCLUDED_TAB_ID, READONLYLOGIC, DISPLAYLOGIC, ISINSERTRECORD, ISADVANCEDTAB) - VALUES(52000, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Web Menu', 'To dynamically generate the menu links in posterita', NULL, 52003, 52000, 10, 0, 'N', 'N', 'N', 'N', NULL, 'N', NULL, NULL, NULL, NULL, 'N', NULL, 'N', NULL, NULL, 'N', 'D', NULL, NULL, NULL, 'Y', 'N'); -INSERT INTO AD_TAB(AD_TAB_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, AD_TABLE_ID, AD_WINDOW_ID, SEQNO, TABLEVEL, ISSINGLEROW, ISINFOTAB, ISTRANSLATIONTAB, ISREADONLY, AD_COLUMN_ID, HASTREE, WHERECLAUSE, ORDERBYCLAUSE, COMMITWARNING, AD_PROCESS_ID, PROCESSING, AD_IMAGE_ID, IMPORTFIELDS, AD_COLUMNSORTORDER_ID, AD_COLUMNSORTYESNO_ID, ISSORTTAB, ENTITYTYPE, INCLUDED_TAB_ID, READONLYLOGIC, DISPLAYLOGIC, ISINSERTRECORD, ISADVANCEDTAB) - VALUES(52001, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Role Menu', 'Depending on Which Role, Different set of Menus are generated and made available.', NULL, 52002, 52001, 10, 0, 'N', 'N', 'N', 'N', NULL, 'N', NULL, NULL, NULL, NULL, 'N', NULL, 'N', NULL, NULL, 'N', 'D', NULL, NULL, NULL, 'Y', 'N'); -INSERT INTO AD_TAB(AD_TAB_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, AD_TABLE_ID, AD_WINDOW_ID, SEQNO, TABLEVEL, ISSINGLEROW, ISINFOTAB, ISTRANSLATIONTAB, ISREADONLY, AD_COLUMN_ID, HASTREE, WHERECLAUSE, ORDERBYCLAUSE, COMMITWARNING, AD_PROCESS_ID, PROCESSING, AD_IMAGE_ID, IMPORTFIELDS, AD_COLUMNSORTORDER_ID, AD_COLUMNSORTYESNO_ID, ISSORTTAB, ENTITYTYPE, INCLUDED_TAB_ID, READONLYLOGIC, DISPLAYLOGIC, ISINSERTRECORD, ISADVANCEDTAB) - VALUES(52002, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Web Properties', 'Stores the message tags to be picked up from AD_MESSAGE ', NULL, 52001, 52002, 10, 0, 'N', 'N', 'N', 'Y', NULL, 'N', NULL, NULL, NULL, NULL, 'N', NULL, 'N', NULL, NULL, 'N', 'D', NULL, NULL, NULL, 'N', 'N'); -INSERT INTO AD_TAB(AD_TAB_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, AD_TABLE_ID, AD_WINDOW_ID, SEQNO, TABLEVEL, ISSINGLEROW, ISINFOTAB, ISTRANSLATIONTAB, ISREADONLY, AD_COLUMN_ID, HASTREE, WHERECLAUSE, ORDERBYCLAUSE, COMMITWARNING, AD_PROCESS_ID, PROCESSING, AD_IMAGE_ID, IMPORTFIELDS, AD_COLUMNSORTORDER_ID, AD_COLUMNSORTYESNO_ID, ISSORTTAB, ENTITYTYPE, INCLUDED_TAB_ID, READONLYLOGIC, DISPLAYLOGIC, ISINSERTRECORD, ISADVANCEDTAB) - VALUES(52003, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'BlackListCheque', 'Black Listed Cheque', NULL, 52000, 52003, 10, 0, 'N', 'N', 'N', 'N', NULL, 'N', NULL, NULL, NULL, NULL, 'N', NULL, 'N', NULL, NULL, 'N', 'D', NULL, NULL, NULL, 'Y', 'N'); - --- AD_Field Changes -- - -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52008, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Args', NULL, NULL, 'Y', 425, 52069, NULL, 'Y', NULL, 60, 'N', 210, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52009, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'ClassName', NULL, NULL, 'Y', 425, 52068, NULL, 'Y', NULL, 60, 'N', 200, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52010, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'UserPIN', NULL, NULL, 'Y', 118, 52066, NULL, 'Y', NULL, 20, 'N', 120, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52011, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'AmountRefunded', NULL, NULL, 'Y', 186, 52065, NULL, 'N', NULL, 22, 'N', NULL, NULL, 'Y', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52012, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'AmountTendered', NULL, NULL, 'Y', 186, 52064, NULL, 'N', NULL, 22, 'N', NULL, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52013, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Terminal', NULL, NULL, 'Y', 186, 52070, NULL, 'N', NULL, 10, 'N', NULL, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52014, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'OrderType', NULL, NULL, 'Y', 186, 52063, NULL, 'Y', NULL, 510, 'N', NULL, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52015, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Group1', NULL, NULL, 'Y', 180, 52061, NULL, 'Y', NULL, 50, 'N', NULL, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52016, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Group2', NULL, NULL, 'Y', 180, 52062, NULL, 'Y', NULL, 50, 'N', NULL, NULL, 'Y', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52017, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'CashDrawer', NULL, NULL, 'Y', 676, 52058, NULL, 'Y', NULL, 20, 'N', NULL, NULL, 'Y', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52018, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'UserDiscount', NULL, NULL, 'Y', 119, 52067, NULL, 'Y', NULL, 22, 'N', 100, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52019, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Client', 'Client/Tenant for this installation.', 'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.', 'Y', 52000, 52042, NULL, 'Y', NULL, 22, 'N', 10, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52020, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Organization', 'Organizational entity within client', 'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.', 'Y', 52000, 52043, NULL, 'Y', NULL, 22, 'N', 20, NULL, 'Y', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52021, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Category', NULL, NULL, 'Y', 52000, 52060, NULL, 'Y', NULL, 120, 'N', 60, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52022, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Description', 'Optional short description of the record', 'A description is limited to 255 characters.', 'Y', 52000, 52054, NULL, 'Y', NULL, 200, 'N', 40, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52023, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'HasSubMenu', NULL, NULL, 'Y', 52000, 52053, NULL, 'Y', NULL, 1, 'N', 70, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52024, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Comment/Help', 'Comment or Hint', 'The Help field contains a hint, comment or help about the use of this item.', 'Y', 52000, 52057, NULL, 'Y', NULL, 2000, 'N', 50, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52025, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'ImageLink', NULL, NULL, 'Y', 52000, 52055, NULL, 'Y', NULL, 510, 'N', 90, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52026, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Active', 'The record is active in the system', 'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.', 'Y', 52000, 52044, NULL, 'Y', NULL, 1, 'N', 80, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52027, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'MenuLink', NULL, NULL, 'Y', 52000, 52050, NULL, 'Y', NULL, 510, 'N', 100, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52028, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Module', NULL, NULL, 'Y', 52000, 52051, NULL, 'Y', NULL, 120, 'N', 110, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52029, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Name', 'Alphanumeric identifier of the entity', 'The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.', 'Y', 52000, 52049, NULL, 'Y', NULL, 120, 'N', 30, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52030, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'ParentMenu_ID', NULL, NULL, 'Y', 52000, 52052, NULL, 'Y', NULL, 10, 'N', 120, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52031, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Position', NULL, NULL, 'Y', 52000, 52056, NULL, 'Y', NULL, 10, 'N', 130, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52032, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Sequence', NULL, NULL, 'Y', 52000, 52059, NULL, 'Y', NULL, 22, 'N', 140, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52033, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'U_WebMenu_ID', NULL, NULL, 'Y', 52000, 52041, NULL, 'N', NULL, 22, 'N', NULL, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52034, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Client', 'Client/Tenant for this installation.', 'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.', 'Y', 52001, 52032, NULL, 'Y', NULL, 22, 'N', 10, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52035, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Organization', 'Organizational entity within client', 'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.', 'Y', 52001, 52033, NULL, 'Y', NULL, 22, 'N', 20, NULL, 'Y', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52036, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Role', 'Responsibility Role', 'The Role determines security and access a user who has this Role will have in the System.', 'Y', 52001, 52039, NULL, 'Y', NULL, 10, 'N', 40, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52037, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Active', 'The record is active in the system', 'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.', 'Y', 52001, 52034, NULL, 'Y', NULL, 1, 'N', 50, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52038, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'U_RoleMenu_ID', NULL, NULL, 'Y', 52001, 52031, NULL, 'N', NULL, 22, 'N', NULL, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52039, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'U_WebMenu_ID', NULL, NULL, 'Y', 52001, 52040, NULL, 'Y', NULL, 10, 'N', 30, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52040, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Client', 'Client/Tenant for this installation.', 'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.', 'Y', 52002, 52022, NULL, 'Y', NULL, 22, 'N', 30, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52041, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Organization', 'Organizational entity within client', 'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.', 'Y', 52002, 52023, NULL, 'Y', NULL, 22, 'N', 20, NULL, 'Y', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52042, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Active', 'The record is active in the system', 'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.', 'Y', 52002, 52024, NULL, 'Y', NULL, 1, 'N', 10, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52043, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'U_Key', NULL, NULL, 'Y', 52002, 52029, NULL, 'Y', NULL, 240, 'N', 40, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52044, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'U_Value', NULL, NULL, 'Y', 52002, 52030, NULL, 'Y', NULL, 240, 'N', 50, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52045, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'U_Web_Properties_ID', NULL, NULL, 'Y', 52002, 52021, NULL, 'N', NULL, 22, 'N', NULL, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52046, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Client', 'Client/Tenant for this installation.', 'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.', 'Y', 52003, 52012, NULL, 'Y', NULL, 22, 'N', 10, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52047, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Organization', 'Organizational entity within client', 'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.', 'Y', 52003, 52013, NULL, 'Y', NULL, 22, 'N', 20, NULL, 'Y', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52048, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'BankName', NULL, NULL, 'Y', 52003, 52019, NULL, 'Y', NULL, 120, 'N', 30, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52049, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'ChequeNo', NULL, NULL, 'Y', 52003, 52020, NULL, 'Y', NULL, 120, 'N', 40, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52050, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Active', 'The record is active in the system', 'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.', 'Y', 52003, 52014, NULL, 'Y', NULL, 1, 'N', 50, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52051, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'U_BlackListCheque_ID', NULL, NULL, 'Y', 52003, 52011, NULL, 'N', NULL, 22, 'N', NULL, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); - --- AD_WindowAccess Changes -- -INSERT INTO AD_WINDOW_ACCESS(AD_WINDOW_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) - VALUES(52000, 0, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'Y'); -INSERT INTO AD_WINDOW_ACCESS(AD_WINDOW_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) - VALUES(52001, 50001, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'Y'); -INSERT INTO AD_WINDOW_ACCESS(AD_WINDOW_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) - VALUES(52001, 103, 11, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Y'); -INSERT INTO AD_WINDOW_ACCESS(AD_WINDOW_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) - VALUES(52001, 102, 11, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Y'); -INSERT INTO AD_WINDOW_ACCESS(AD_WINDOW_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) - VALUES(52002, 103, 11, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Y'); -INSERT INTO AD_WINDOW_ACCESS(AD_WINDOW_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) - VALUES(52002, 50001, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'Y'); -INSERT INTO AD_WINDOW_ACCESS(AD_WINDOW_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) - VALUES(52002, 102, 11, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Y'); -INSERT INTO AD_WINDOW_ACCESS(AD_WINDOW_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) - VALUES(52003, 50001, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 'Y'); -INSERT INTO AD_WINDOW_ACCESS(AD_WINDOW_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) - VALUES(52003, 103, 11, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Y'); -INSERT INTO AD_WINDOW_ACCESS(AD_WINDOW_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) - VALUES(52003, 102, 11, 0, 'Y', SYSDATE, 100, SYSDATE, 100, 'Y'); - - --- AD_Menu Changes -- -INSERT INTO AD_MENU(AD_MENU_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, NAME, UPDATEDBY, DESCRIPTION, ISSUMMARY, ISSOTRX, ISREADONLY, ACTION, AD_WINDOW_ID, AD_WORKFLOW_ID, AD_TASK_ID, AD_PROCESS_ID, AD_FORM_ID, AD_WORKBENCH_ID, ENTITYTYPE) - VALUES(52002, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 'Web Menu', 100, 'To dynamically generate the menu links in posterita', 'N', 'N', 'N', 'W', 52000, NULL, NULL, NULL, NULL, NULL, 'D'); -INSERT INTO AD_MENU(AD_MENU_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, NAME, UPDATEDBY, DESCRIPTION, ISSUMMARY, ISSOTRX, ISREADONLY, ACTION, AD_WINDOW_ID, AD_WORKFLOW_ID, AD_TASK_ID, AD_PROCESS_ID, AD_FORM_ID, AD_WORKBENCH_ID, ENTITYTYPE) - VALUES(52003, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 'Role Menu', 100, NULL, 'N', 'N', 'N', 'W', 52001, NULL, NULL, NULL, NULL, NULL, 'D'); -INSERT INTO AD_MENU(AD_MENU_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, NAME, UPDATEDBY, DESCRIPTION, ISSUMMARY, ISSOTRX, ISREADONLY, ACTION, AD_WINDOW_ID, AD_WORKFLOW_ID, AD_TASK_ID, AD_PROCESS_ID, AD_FORM_ID, AD_WORKBENCH_ID, ENTITYTYPE) - VALUES(52004, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 'Web Properties', 100, NULL, 'N', 'N', 'N', 'W', 52002, NULL, NULL, NULL, NULL, NULL, 'D'); -INSERT INTO AD_MENU(AD_MENU_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, NAME, UPDATEDBY, DESCRIPTION, ISSUMMARY, ISSOTRX, ISREADONLY, ACTION, AD_WINDOW_ID, AD_WORKFLOW_ID, AD_TASK_ID, AD_PROCESS_ID, AD_FORM_ID, AD_WORKBENCH_ID, ENTITYTYPE) - VALUES(52005, 0, 0, 'Y', SYSDATE, 100, SYSDATE, 'Black Listed Cheque', 100, NULL, 'N', 'N', 'N', 'W', 52003, NULL, NULL, NULL, NULL, NULL, 'D'); - --- AD_TREENODEMM Changes -- -INSERT INTO AD_TREENODEMM(AD_TREE_ID, NODE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, PARENT_ID, SEQNO) - VALUES(10, 52002, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 52001, 3); -INSERT INTO AD_TREENODEMM(AD_TREE_ID, NODE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, PARENT_ID, SEQNO) - VALUES(10, 52003, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 52001, 2); -INSERT INTO AD_TREENODEMM(AD_TREE_ID, NODE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, PARENT_ID, SEQNO) - VALUES(10, 52004, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 52001, 1); -INSERT INTO AD_TREENODEMM(AD_TREE_ID, NODE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, PARENT_ID, SEQNO) - VALUES(10, 52005, 0, 0, 'Y', SYSDATE, 0, SYSDATE, 0, 52001, 0); - -SELECT '016_GridCollapseDetail.sql' AS Filename FROM dual; ---@author - fer_luck @ centuryono ---Add Detail column ---The fields are already in the databse. Just needs to update them --- BEGIN; - -UPDATE AD_FIELD SET seqno = seqno + 10 WHERE ad_tab_id = 107 AND seqno > 70; - -UPDATE AD_FIELD -SET ad_tab_id = 107, isdisplayed = 'Y', seqno = 80 -WHERE ad_column_id = 8547; - ---It's not physically in the database, so here we create it -ALTER TABLE AD_FIELD ADD included_tab_id NUMERIC(10); - ---Modify the views --- DROP VIEW ad_field_v; - -CREATE OR REPLACE VIEW AD_FIELD_V -AS -SELECT t.AD_Window_ID, f.AD_Tab_ID, f.AD_Field_ID, tbl.AD_Table_ID, f.AD_Column_ID, - f.NAME, f.Description, f.Help, f.IsDisplayed, f.DisplayLogic, f.DisplayLength, - f.SeqNo, f.SortNo, f.IsSameLine, f.IsHeading, f.IsFieldOnly, f.IsReadOnly, - f.IsEncrypted AS IsEncryptedField, f.ObscureType, - c.ColumnName, c.ColumnSQL, c.FieldLength, c.VFormat, c.DefaultValue, c.IsKey, c.IsParent, - COALESCE(f.IsMandatory, c.IsMandatory) AS IsMandatory, - c.IsIdentifier, c.IsTranslated, c.AD_Reference_Value_ID, - c.Callout, COALESCE(f.AD_Reference_ID, c.AD_Reference_ID) AS AD_Reference_ID, - c.AD_Val_Rule_ID, c.AD_Process_ID, c.IsAlwaysUpdateable, - c.ReadOnlyLogic, c.MandatoryLogic, c.IsUpdateable, c.IsEncrypted AS IsEncryptedColumn, - c.IsSelectionColumn, - tbl.TableName, c.ValueMin, c.ValueMax, - fg.NAME AS FieldGroup, vr.Code AS ValidationCode, f.included_tab_id -FROM AD_FIELD f - INNER JOIN AD_TAB t ON (f.AD_Tab_ID = t.AD_Tab_ID) - LEFT OUTER JOIN AD_FIELDGROUP fg ON (f.AD_FieldGroup_ID = fg.AD_FieldGroup_ID) - LEFT OUTER JOIN AD_COLUMN c ON (f.AD_Column_ID = c.AD_Column_ID) - INNER JOIN AD_TABLE tbl ON (c.AD_Table_ID = tbl.AD_Table_ID) - INNER JOIN AD_REFERENCE r ON (c.AD_Reference_ID = r.AD_Reference_ID) - LEFT OUTER JOIN AD_VAL_RULE vr ON (c.AD_Val_Rule_ID=vr.AD_Val_Rule_ID) -WHERE f.IsActive = 'Y' - AND c.IsActive = 'Y'; - --- DROP VIEW ad_field_vt; - -CREATE OR REPLACE VIEW AD_FIELD_VT -AS -SELECT trl.AD_LANGUAGE, t.AD_Window_ID, f.AD_Tab_ID, f.AD_Field_ID, tbl.AD_Table_ID, f.AD_Column_ID, - trl.NAME, trl.Description, trl.Help, f.IsDisplayed, f.DisplayLogic, f.DisplayLength, - f.SeqNo, f.SortNo, f.IsSameLine, f.IsHeading, f.IsFieldOnly, f.IsReadOnly, - f.IsEncrypted AS IsEncryptedField, f.ObscureType, - c.ColumnName, c.ColumnSQL, c.FieldLength, c.VFormat, c.DefaultValue, c.IsKey, c.IsParent, - COALESCE(f.IsMandatory, c.IsMandatory) AS IsMandatory, - c.IsIdentifier, c.IsTranslated, c.AD_Reference_Value_ID, - c.Callout, COALESCE(f.AD_Reference_ID, c.AD_Reference_ID) AS AD_Reference_ID, - c.AD_Val_Rule_ID, c.AD_Process_ID, c.IsAlwaysUpdateable, - c.ReadOnlyLogic, c.MandatoryLogic, c.IsUpdateable, c.IsEncrypted AS IsEncryptedColumn, c.IsSelectionColumn, - tbl.TableName, c.ValueMin, c.ValueMax, - fgt.NAME AS FieldGroup, vr.Code AS ValidationCode, f.included_tab_id -FROM AD_FIELD f - INNER JOIN AD_FIELD_TRL trl ON (f.AD_Field_ID = trl.AD_Field_ID) - INNER JOIN AD_TAB t ON (f.AD_Tab_ID = t.AD_Tab_ID) - LEFT OUTER JOIN AD_FIELDGROUP_TRL fgt ON - (f.AD_FieldGroup_ID = fgt.AD_FieldGroup_ID AND trl.AD_LANGUAGE=fgt.AD_LANGUAGE) - LEFT OUTER JOIN AD_COLUMN c ON (f.AD_Column_ID = c.AD_Column_ID) - INNER JOIN AD_TABLE tbl ON (c.AD_Table_ID = tbl.AD_Table_ID) - INNER JOIN AD_REFERENCE r ON (c.AD_Reference_ID = r.AD_Reference_ID) - LEFT OUTER JOIN AD_VAL_RULE vr ON (c.AD_Val_Rule_ID=vr.AD_Val_Rule_ID) -WHERE f.IsActive = 'Y' - AND c.IsActive = 'Y'; - ---Add the Grid Collapse and Tabbed item navigation -INSERT INTO AD_ELEMENT - (ad_element_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - columnname, entitytype, NAME, printname - ) - VALUES (53002, 0, 0, 'Y', - TO_DATE ('07/18/2007 14:23:01', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/18/2007 14:23:01', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'FieldGroupType', 'D', 'Field Group Type', 'Field Group Type' - ); - -INSERT INTO AD_REFERENCE - (ad_reference_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, - NAME, description, help, - validationtype, entitytype) - VALUES (53000, 0, 0, 'Y', - TO_DATE ('07/18/2007 14:22:51', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/18/2007 14:22:51', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'AD_FieldGroup', 'Field Group Type', '', - 'L', 'D'); - -INSERT INTO AD_REF_LIST - (ad_ref_list_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, - VALUE, NAME, - ad_reference_id, entitytype) -VALUES(53000, 0, 0, 'Y', - TO_DATE ('07/18/2007 14:22:51', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/18/2007 14:22:51', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, - 'T', 'Tab', - 53000, 'D'); - -INSERT INTO AD_REF_LIST - (ad_ref_list_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, - VALUE, NAME, - ad_reference_id, entitytype) -VALUES(53001, 0, 0, 'Y', - TO_DATE ('07/18/2007 14:22:51', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/18/2007 14:22:51', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, - 'L', 'Label', - 53000, 'D'); - -INSERT INTO AD_REF_LIST - (ad_ref_list_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, - VALUE, NAME, - ad_reference_id, entitytype) -VALUES(53002, 0, 0, 'Y', - TO_DATE ('07/18/2007 14:22:51', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/18/2007 14:22:51', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, - 'C', 'Collapse', - 53000, 'D'); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, - VERSION, entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, seqno, istranslated, isencrypted, - isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable, ad_reference_value_id - ) - VALUES (53002, 0, 0, 'Y', - TO_DATE ('07/18/2007 14:22:51', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/18/2007 14:22:51', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Field Group Type', 'Field Group', - 'Field Group.', - 0, 'D', 'FieldGroupType', 414, 17, - 10, 'N', 'N', 'N', 'Y', - 'N', NULL, 'N', 'N', - 'N', 53002, 'Y', - 'N', 53000 - ); - -ALTER TABLE AD_FIELDGROUP ADD fieldgrouptype CHAR(1); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - HELP, - iscentrallymaintained, ad_tab_id, ad_column_id, isdisplayed, - displaylength, isreadonly, seqno, sortno, issameline, isheading, - isfieldonly, isencrypted, entitytype - ) - VALUES (53002, 0, 0, 'Y', - TO_DATE ('07/18/2007 14:23:09', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/18/2007 14:23:17', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Field Group Type', 'Field Group Type', - 'The Field Group type', - 'Y', 342, 53002, 'Y', - 10, 'N', 60, 0, 'N', 'N', - 'N', 'N', 'D' - ); - - - --- NOTE: Don't forget to run the three processes: --- 1 - Add missing translations in the language screen --- 2 - Synchronize terminology --- 3 - Check sequences - -SELECT '017_SaveUserQuery.sql' AS Filename FROM dual; -ALTER TABLE AD_USERQUERY -ADD AD_Tab_ID NUMBER(10); - -INSERT INTO AD_COLUMN -(AD_Column_ID, AD_Client_ID, AD_Org_ID, IsActive, -Created, -Updated, CreatedBy, -UpdatedBy, NAME, Description, VERSION, -EntityType, ColumnName, AD_Table_ID, AD_Reference_ID, -FieldLength, IsKey, IsParent, IsMandatory, IsUpdateable, -IsIdentifier, SeqNo, IsTranslated, IsEncrypted, -isselectioncolumn, ad_element_id, callout, issyncdatabase, -isalwaysupdateable -) -VALUES (53251, 0, 0, 'Y', -TO_DATE ('10/10/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), -TO_DATE ('10/10/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, -100, 'Tab', 'Tab within a Window', 1, -'D', 'AD_Tab_ID', 814, 19, -10, 'N', 'N', 'Y', 'Y', -'N', 0, 'N', 'N', -'N', 125, NULL, 'N', -'N' -); - -SELECT '018_SaveUserQueryMessage.sql' AS Filename FROM dual; -INSERT INTO AD_MESSAGE -(AD_Message_ID, AD_Client_ID, AD_Org_ID, IsActive, -Created, CreatedBy, -Updated, UpdatedBy, -VALUE, MsgText, MsgType -) -VALUES (53005, 0, 0, 'Y', -TO_DATE ('10/10/2007 14:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, -TO_DATE ('10/10/2007 14:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, -'QueryName','Query Name','I' -); - -UPDATE AD_SEQUENCE -SET CurrentNextSys = (SELECT MAX (AD_Message_ID) + 1 -FROM AD_MESSAGE -WHERE AD_message_ID < 1000000) -WHERE NAME = 'AD_Message'; - - - -SELECT '019_EntityTypeLength.sql' AS Filename FROM dual; -ALTER TABLE AD_REF_LIST MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_WF_NEXTCONDITION MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_VAL_RULE MODIFY entitytype VARCHAR2(40); - -ALTER TABLE PA_MEASURECALC MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_MENU MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_INFOCOLUMN MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_WF_NODENEXT MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_WF_NODE_PARA MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_ELEMENT MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_TASK MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_WORKBENCH MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_ENTITYTYPE MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_REF_TABLE MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_TAB MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_FIELD MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_PROCESS_PARA MODIFY entitytype VARCHAR2(40); - -ALTER TABLE PA_COLORSCHEMA MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_MODIFICATION MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_REPLICATIONSTRATEGY MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_REPLICATIONTABLE MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_IMAGE MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_FIELDGROUP MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_INFOWINDOW MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_TABLE MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_WF_NODE MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_WF_RESPONSIBLE MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_FORM MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_WINDOW MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_COLUMN MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_WORKBENCHWINDOW MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_PROCESS MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_REPORTVIEW MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_REFERENCE MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_MESSAGE MODIFY entitytype VARCHAR2(40); - -ALTER TABLE AD_WORKFLOW MODIFY entitytype VARCHAR2(40); - -UPDATE AD_COLUMN - SET fieldlength = 40 - WHERE columnname = 'EntityType' - AND ad_table_id IN ( - SELECT ad_table_id - FROM AD_TABLE - WHERE tablename IN - ('AD_Ref_List', - 'AD_WF_NextCondition', - 'AD_Val_Rule', - 'PA_MeasureCalc', - 'AD_Menu', - 'AD_InfoColumn', - 'AD_WF_NodeNext', - 'AD_WF_Node_Para', - 'AD_Element', - 'AD_Task', - 'AD_Workbench', - 'AD_EntityType', - 'AD_Ref_Table', - 'AD_Tab', - 'AD_Field', - 'AD_Process_Para', - 'PA_ColorSchema', - 'AD_Modification', - 'AD_ReplicationStrategy', - 'AD_ReplicationTable', - 'AD_Image', - 'AD_FieldGroup', - 'AD_InfoWindow', - 'AD_Table', - 'AD_WF_Node', - 'AD_WF_Responsible', - 'AD_Form', - 'AD_Window', - 'AD_Column', - 'AD_WorkbenchWindow', - 'AD_Process', - 'AD_ReportView', - 'AD_Reference', - 'AD_Message', - 'AD_Workflow' - )); - -UPDATE AD_FIELD - SET displaylength = 20 - WHERE ad_column_id IN ( - SELECT ad_column_id - FROM AD_COLUMN - WHERE columnname = 'EntityType' - AND ad_table_id IN ( - SELECT ad_table_id - FROM AD_TABLE - WHERE tablename IN - ('AD_Ref_List', - 'AD_WF_NextCondition', - 'AD_Val_Rule', - 'PA_MeasureCalc', - 'AD_Menu', - 'AD_InfoColumn', - 'AD_WF_NodeNext', - 'AD_WF_Node_Para', - 'AD_Element', - 'AD_Task', - 'AD_Workbench', - 'AD_EntityType', - 'AD_Ref_Table', - 'AD_Tab', - 'AD_Field', - 'AD_Process_Para', - 'PA_ColorSchema', - 'AD_Modification', - 'AD_ReplicationStrategy', - 'AD_ReplicationTable', - 'AD_Image', - 'AD_FieldGroup', - 'AD_InfoWindow', - 'AD_Table', - 'AD_WF_Node', - 'AD_WF_Responsible', - 'AD_Form', - 'AD_Window', - 'AD_Column', - 'AD_WorkbenchWindow', - 'AD_Process', - 'AD_ReportView', - 'AD_Reference', - 'AD_Message', - 'AD_Workflow' - ))); - --- hide classpath field that is not implemented -UPDATE AD_FIELD - SET isdisplayed = 'N', - isactive = 'N' - WHERE ad_field_id = 13498; - --- hide the register extension button that is not implemented -UPDATE AD_FIELD - SET isdisplayed = 'N', - isactive = 'N' - WHERE ad_field_id = 13507; - - - -SELECT '020_AD_ModelValidator.sql' AS Filename FROM dual; -CREATE TABLE AD_MODELVALIDATOR -( AD_CLIENT_ID NUMBER(10,0) DEFAULT 0 NOT NULL , - AD_MODELVALIDATOR_ID NUMBER(10,0) NOT NULL , - AD_ORG_ID NUMBER(10,0) DEFAULT 0 NOT NULL , - CREATED DATE NOT NULL , - CREATEDBY NUMBER(10,0) NOT NULL , - UPDATED DATE NOT NULL , - UPDATEDBY NUMBER(10,0) NOT NULL , - ISACTIVE CHAR(1) NOT NULL , - NAME NVARCHAR2(60) NOT NULL , - DESCRIPTION NVARCHAR2(255), - HELP NVARCHAR2(2000), - ENTITYTYPE VARCHAR2(40 BYTE) NOT NULL , - MODELVALIDATIONCLASS NVARCHAR2(255) NOT NULL , - CHECK (IsActive IN ('Y','N')) , - CONSTRAINT AD_MODELVALIDATOR_KEY PRIMARY KEY (AD_MODELVALIDATOR_ID) -); - -INSERT INTO AD_ELEMENT -(AD_Element_ID, AD_Client_ID, AD_Org_ID, IsActive, -Created, CreatedBy, -Updated, UpdatedBy, -ColumnName, EntityType, NAME, -PrintName -) -VALUES (53225, 0, 0, 'Y', -TO_DATE ('10/21/2007 18:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, -TO_DATE ('10/21/2007 18:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, -'AD_ModelValidator_ID', 'D', 'Model Validator', -'Model Validator' -); - -INSERT INTO AD_ELEMENT -(AD_Element_ID, AD_Client_ID, AD_Org_ID, IsActive, -Created, CreatedBy, -Updated, UpdatedBy, -ColumnName, EntityType, NAME, -PrintName -) -VALUES (53226, 0, 0, 'Y', -TO_DATE ('10/21/2007 18:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, -TO_DATE ('10/21/2007 18:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, -'ModelValidationClass', 'D', 'Model Validation Class', -'Model Validation Class' -); - --- INSERTING into AD_Table -INSERT INTO AD_TABLE -(AD_TABLE_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY,NAME,DESCRIPTION,HELP,TABLENAME,ISVIEW,ACCESSLEVEL,ENTITYTYPE,AD_WINDOW_ID,AD_VAL_RULE_ID,LOADSEQ,ISSECURITYENABLED,ISDELETEABLE,ISHIGHVOLUME,IMPORTTABLE,ISCHANGELOG,REPLICATIONTYPE,PO_WINDOW_ID,COPYCOLUMNSFROMTABLE) -VALUES -(53014,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,'Model Validator','Global Model Validator',NULL,'AD_ModelValidator','N','4','D',NULL,NULL,0,'N','Y','N','N','N','L',NULL,'N'); - --- INSERTING into AD_Column -INSERT INTO AD_COLUMN -(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC) -VALUES -(53252,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,100,'Client','Client/Tenant for this installation.','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.',0,'D','AD_Client_ID',53014,19,NULL,NULL,10,'0','N','N','Y','N',NULL,'N',0,'N','N',NULL,NULL,NULL,NULL,'N',102,NULL,'N','N',NULL,NULL); - -INSERT INTO AD_COLUMN -(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC) -VALUES -(53253,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,100,'Model Validator',NULL,NULL,0,'D','AD_ModelValidator_ID',53014,13,NULL,NULL,10,NULL,'Y','N','Y','N',NULL,'N',0,'N','N',NULL,NULL,NULL,NULL,'N',53225,NULL,'N','N',NULL,NULL); - -INSERT INTO AD_COLUMN -(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC) -VALUES -(53254,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,100,'Organization','Organizational entity within client','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.',0,'D','AD_Org_ID',53014,19,NULL,NULL,10,'0','N','N','Y','N',NULL,'N',0,'N','N',NULL,NULL,NULL,NULL,'N',113,NULL,'N','N',NULL,NULL); - -INSERT INTO AD_COLUMN -(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC) -VALUES -(53255,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,100,'Created','Date this record was created','The Created field indicates the date that this record was created.',0,'D','Created',53014,16,NULL,NULL,7,NULL,'N','N','Y','N',NULL,'N',0,'N','N',NULL,NULL,NULL,NULL,'N',245,NULL,'N','N',NULL,NULL); - -INSERT INTO AD_COLUMN -(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC) -VALUES -(53256,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,100,'Created By','User who created this records','The Created By field indicates the user who created this record.',0,'D','CreatedBy',53014,18,110,NULL,10,NULL,'N','N','Y','N',NULL,'N',0,'N','N',NULL,NULL,NULL,NULL,'N',246,NULL,'N','N',NULL,NULL); - -INSERT INTO AD_COLUMN -(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC) -VALUES -(53257,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,100,'Updated','Date this record was updated','The Updated field indicates the date that this record was updated.',0,'D','Updated',53014,16,NULL,NULL,7,NULL,'N','N','Y','N',NULL,'N',0,'N','N',NULL,NULL,NULL,NULL,'N',607,NULL,'N','N',NULL,NULL); - -INSERT INTO AD_COLUMN -(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC) -VALUES -(53258,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,100,'Updated By','User who updated this records','The Updated By field indicates the user who updated this record.',0,'D','UpdatedBy',53014,18,110,NULL,10,NULL,'N','N','Y','N',NULL,'N',0,'N','N',NULL,NULL,NULL,NULL,'N',608,NULL,'N','N',NULL,NULL); - -INSERT INTO AD_COLUMN -(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC) -VALUES -(53259,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,100,'Active','The record is active in the system','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.',0,'D','IsActive',53014,20,null,null,1,null,'N','N','Y','Y',null,'N',0,'N','N',null,null,null,null,'N',348,null,'N','N',null,null); - -INSERT INTO AD_COLUMN -(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC) -VALUES -(53260,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,100,'Name','Alphanumeric identifier of the entity','The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.',0,'D','Name',53014,10,NULL,NULL,120,NULL,'N','N','Y','Y',NULL,'Y',1,'N','N',NULL,NULL,NULL,NULL,'N',469,NULL,'N','N',NULL,NULL); - -INSERT INTO AD_COLUMN -(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC) -VALUES -(53261,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,100,'Description','Optional short description of the record','A description is limited to 255 characters.',0,'D','Description',53014,10,NULL,NULL,255,NULL,'N','N','N','Y',NULL,'N',0,'N','N',NULL,NULL,NULL,NULL,'N',275,NULL,'N','N',NULL,NULL); - -INSERT INTO AD_COLUMN -(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC) -VALUES -(53262,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,100,'Comment/Help','Comment or Hint','The Help field contains a hint, comment or help about the use of this item.',0,'D','Help',53014,10,NULL,NULL,2000,NULL,'N','N','N','Y',NULL,'N',0,'N','N',NULL,NULL,NULL,NULL,'N',326,NULL,'N','N',NULL,NULL); - -INSERT INTO AD_COLUMN -(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC) -VALUES -(53263,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,100,'Entity Type','Dictionary Entity Type; Determines ownership and synchronization','The Entity Types "Dictionary", "Adempiere" and "Application" might be automatically synchronized and customizations deleted or overwritten. For customizations, copy the entity and select "User"!',0,'D','EntityType',53014,10,NULL,NULL,40,NULL,'N','N','Y','N',NULL,'N',0,'N','N',NULL,NULL,NULL,NULL,'N',1682,NULL,'N','N',NULL,NULL); - -INSERT INTO AD_COLUMN -(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC) -VALUES -(53264,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,100,'Model Validation Class',NULL,NULL,1,'D','ModelValidationClass',53014,10,NULL,NULL,255,NULL,'N','N','Y','Y',NULL,'N',0,'N','N',NULL,NULL,NULL,NULL,'N',53226,NULL,'N','N',NULL,NULL); - --- INSERTING into AD_Window -INSERT INTO AD_WINDOW -(AD_WINDOW_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY,NAME,DESCRIPTION,HELP,WINDOWTYPE,ISSOTRX,ENTITYTYPE,PROCESSING,AD_IMAGE_ID,AD_COLOR_ID,ISDEFAULT,WINHEIGHT,WINWIDTH,ISBETAFUNCTIONALITY) -VALUES -(53003,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,'Model Validator',NULL,NULL,'M','N','D','N',NULL,NULL,'N',0,0,'N'); - --- INSERTING into AD_Tab -INSERT INTO AD_TAB -(AD_TAB_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY,NAME,DESCRIPTION,HELP,AD_TABLE_ID,AD_WINDOW_ID,SEQNO,TABLEVEL,ISSINGLEROW,ISINFOTAB,ISTRANSLATIONTAB,ISREADONLY,AD_COLUMN_ID,HASTREE,WHERECLAUSE,ORDERBYCLAUSE,COMMITWARNING,AD_PROCESS_ID,PROCESSING,AD_IMAGE_ID,IMPORTFIELDS,AD_COLUMNSORTORDER_ID,AD_COLUMNSORTYESNO_ID,ISSORTTAB,ENTITYTYPE,INCLUDED_TAB_ID,READONLYLOGIC,DISPLAYLOGIC,ISINSERTRECORD,ISADVANCEDTAB) -VALUES -(53014,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,'Model Validator',NULL,NULL,53014,53003,10,0,'N','N','N','N',NULL,'N',NULL,NULL,NULL,NULL,'N',NULL,'N',NULL,NULL,'N','D',NULL,NULL,NULL,'Y','N'); - --- INSERTING into AD_Field -INSERT -INTO AD_FIELD(ad_field_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, HELP, iscentrallymaintained, ad_tab_id, ad_column_id, ad_fieldgroup_id, isdisplayed, displaylogic, displaylength, isreadonly, seqno, sortno, issameline, isheading, isfieldonly, isencrypted, entitytype, obscuretype, ad_reference_id, ismandatory, included_tab_id) -VALUES(53271, 0, 0, 'Y', TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Client', 'Client/Tenant for this installation.', 'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.', 'Y', 53014, 53252, NULL, 'Y', NULL, 10, 'N', 10, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL, NULL); - -INSERT -INTO AD_FIELD(ad_field_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, HELP, iscentrallymaintained, ad_tab_id, ad_column_id, ad_fieldgroup_id, isdisplayed, displaylogic, displaylength, isreadonly, seqno, sortno, issameline, isheading, isfieldonly, isencrypted, entitytype, obscuretype, ad_reference_id, ismandatory, included_tab_id) -VALUES(53272, 0, 0, 'Y', TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Organization', 'Organizational entity within client', 'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.', 'Y', 53014, 53254, NULL, 'Y', NULL, 10, 'N', 20, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL, NULL); - -INSERT -INTO AD_FIELD(ad_field_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, HELP, iscentrallymaintained, ad_tab_id, ad_column_id, ad_fieldgroup_id, isdisplayed, displaylogic, displaylength, isreadonly, seqno, sortno, issameline, isheading, isfieldonly, isencrypted, entitytype, obscuretype, ad_reference_id, ismandatory, included_tab_id) -VALUES(53273, 0, 0, 'Y', TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Entity Type', 'Dictionary Entity Type; Determines ownership and synchronization', 'The Entity Types "Dictionary", "Adempiere" and "Application" might be automatically synchronized and customizations deleted or overwritten. For customizations, copy the entity and select "User"!', 'Y', 53014, 53263, NULL, 'Y', NULL, 40, 'N', 30, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL, NULL); - -INSERT -INTO AD_FIELD(ad_field_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, HELP, iscentrallymaintained, ad_tab_id, ad_column_id, ad_fieldgroup_id, isdisplayed, displaylogic, displaylength, isreadonly, seqno, sortno, issameline, isheading, isfieldonly, isencrypted, entitytype, obscuretype, ad_reference_id, ismandatory, included_tab_id) -VALUES(53274, 0, 0, 'Y', TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Name', 'Alphanumeric identifier of the entity', 'The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.', 'Y', 53014, 53260, NULL, 'Y', NULL, 120, 'N', 40, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL, NULL); - -INSERT -INTO AD_FIELD(ad_field_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, HELP, iscentrallymaintained, ad_tab_id, ad_column_id, ad_fieldgroup_id, isdisplayed, displaylogic, displaylength, isreadonly, seqno, sortno, issameline, isheading, isfieldonly, isencrypted, entitytype, obscuretype, ad_reference_id, ismandatory, included_tab_id) -VALUES(53275, 0, 0, 'Y', TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Description', 'Optional short description of the record', 'A description is limited to 255 characters.', 'Y', 53014, 53261, NULL, 'Y', NULL, 255, 'N', 50, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL, NULL); - -INSERT -INTO AD_FIELD(ad_field_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, HELP, iscentrallymaintained, ad_tab_id, ad_column_id, ad_fieldgroup_id, isdisplayed, displaylogic, displaylength, isreadonly, seqno, sortno, issameline, isheading, isfieldonly, isencrypted, entitytype, obscuretype, ad_reference_id, ismandatory, included_tab_id) -VALUES(53276, 0, 0, 'Y', TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Comment/Help', 'Comment or Hint', 'The Help field contains a hint, comment or help about the use of this item.', 'Y', 53014, 53262, NULL, 'Y', NULL, 2000, 'N', 60, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL, NULL); - -INSERT -INTO AD_FIELD(ad_field_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, HELP, iscentrallymaintained, ad_tab_id, ad_column_id, ad_fieldgroup_id, isdisplayed, displaylogic, displaylength, isreadonly, seqno, sortno, issameline, isheading, isfieldonly, isencrypted, entitytype, obscuretype, ad_reference_id, ismandatory, included_tab_id) -VALUES(53277, 0, 0, 'Y', TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Active', 'The record is active in the system', 'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.', 'Y', 53014, 53259, NULL, 'Y', NULL, 1, 'N', 70, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL, NULL); - -INSERT -INTO AD_FIELD(ad_field_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, HELP, iscentrallymaintained, ad_tab_id, ad_column_id, ad_fieldgroup_id, isdisplayed, displaylogic, displaylength, isreadonly, seqno, sortno, issameline, isheading, isfieldonly, isencrypted, entitytype, obscuretype, ad_reference_id, ismandatory, included_tab_id) -VALUES(53278, 0, 0, 'Y', TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Model Validation Class', NULL, NULL, 'Y', 53014, 53264, NULL, 'Y', NULL, 255, 'N', 80, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL, NULL); - -INSERT -INTO AD_FIELD(ad_field_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, HELP, iscentrallymaintained, ad_tab_id, ad_column_id, ad_fieldgroup_id, isdisplayed, displaylogic, displaylength, isreadonly, seqno, sortno, issameline, isheading, isfieldonly, isencrypted, entitytype, obscuretype, ad_reference_id, ismandatory, included_tab_id) -VALUES(53279, 0, 0, 'Y', TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Model Validator', NULL, NULL, 'Y', 53014, 53253, NULL, 'N', NULL, 10, 'N', NULL, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL, NULL); - --- INSERTING into AD_Menu -INSERT -INTO AD_MENU(ad_menu_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, NAME, updatedby, description, issummary, issotrx, isreadonly, ACTION, ad_window_id, ad_workflow_id, ad_task_id, ad_process_id, ad_form_id, ad_workbench_id, entitytype) -VALUES(53012, 0, 0, 'Y', TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 'Model Validator', 100, NULL, 'N', 'N', 'N', 'W', 53003, NULL, NULL, NULL, NULL, NULL, 'D'); - --- INSERTING into AD_TreeNodeMM -INSERT -INTO AD_TREENODEMM(ad_tree_id, node_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, parent_id, seqno) -VALUES(10, 53012, 0, 0, 'Y', TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 0, TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 0, 153, 9); - --- INSERTING into AD_Sequence -INSERT -INTO AD_SEQUENCE(ad_sequence_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, vformat, isautosequence, incrementno, startno, currentnext, currentnextsys, isaudited, istableid, prefix, suffix, startnewyear) -VALUES(53012, 0, 0, 'Y', TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'AD_ModelValidator', 'Table AD_ModelValidator', NULL, 'Y', 1, 1000000, 1000000, 50000, 'N', 'Y', NULL, NULL, 'N'); - - -SELECT '021_rejected.sql' AS Filename FROM dual; --- This is just a sequence placeholder for a rejected migration script - -SELECT '022_FR_1732786.sql' AS Filename FROM dual; --- FR [ 1732786 ] DefaultValue on AD_Field --- https://sourceforge.net/tracker/index.php?func=detail&aid=1732786&group_id=176962&atid=879335 --- ---delete from AD_Column where AD_Column_ID=53265; -INSERT INTO AD_COLUMN (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION,AD_Client_ID,AD_Column_ID) -VALUES (0,272,14,107,'DefaultValue',TO_DATE('2007-10-22 14:22:58','YYYY-MM-DD HH24:MI:SS'),0,'Default value hierarchy, separated by ;','D',2000,'The defaults are evaluated in the order of definition, the first not null value becomes the default value of the column. The values are separated by comma or semicolon. a) Literals:. ''Text'' or 123 b) Variables - in format @Variable@ - Login e.g. #Date, #AD_Org_ID, #AD_Client_ID - Accounting Schema: e.g. $C_AcctSchema_ID, $C_Calendar_ID - Global defaults: e.g. DateFormat - Window values (all Picks, CheckBoxes, RadioButtons, and DateDoc/DateAcct) c) SQL code with the tag: @SQL=SELECT something AS DefaultValue FROM ... The SQL statement can contain variables. There can be no other value other than the SQL statement. The default is only evaluated, if no user preference is defined. Default definitions are ignored for record columns as Key, Parent, Client as well as Buttons.','Y','N','N','N','N','N','N','N','N','N','Y','Default Logic',0,TO_DATE('2007-10-22 14:22:58','YYYY-MM-DD HH24:MI:SS'),0,0,0,53265); --- ---delete from AD_Field where AD_Field_ID=53280; -INSERT INTO AD_FIELD (AD_Column_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,AD_Client_ID,UpdatedBy,SeqNo,AD_Field_ID) -VALUES (53265,0,107,TO_DATE('2007-10-22 14:30:33','YYYY-MM-DD HH24:MI:SS'),0,'Default value hierarchy, separated by ;',60,'D','The defaults are evaluated in the order of definition, the first not null value becomes the default value of the column. The values are separated by comma or semicolon. a) Literals:. ''Text'' or 123 b) Variables - in format @Variable@ - Login e.g. #Date, #AD_Org_ID, #AD_Client_ID - Accounting Schema: e.g. $C_AcctSchema_ID, $C_Calendar_ID - Global defaults: e.g. DateFormat - Window values (all Picks, CheckBoxes, RadioButtons, and DateDoc/DateAcct) c) SQL code with the tag: @SQL=SELECT something AS DefaultValue FROM ... The SQL statement can contain variables. There can be no other value other than the SQL statement. The default is only evaluated, if no user preference is defined. Default definitions are ignored for record columns as Key, Parent, Client as well as Buttons.','Y','Y','Y','N','N','N','N','N','Default Logic',TO_DATE('2007-10-22 14:30:33','YYYY-MM-DD HH24:MI:SS'),0,0,270,53280); --- - --- -ALTER TABLE AD_FIELD ADD DefaultValue NVARCHAR2(2000); --- -CREATE OR REPLACE VIEW AD_FIELD_V -(AD_WINDOW_ID, AD_TAB_ID, AD_FIELD_ID, AD_TABLE_ID, AD_COLUMN_ID, - NAME, DESCRIPTION, HELP, ISDISPLAYED, DISPLAYLOGIC, - DISPLAYLENGTH, SEQNO, SORTNO, ISSAMELINE, ISHEADING, - ISFIELDONLY, ISREADONLY, ISENCRYPTEDFIELD, OBSCURETYPE, COLUMNNAME, - COLUMNSQL, FIELDLENGTH, VFORMAT, DEFAULTVALUE, ISKEY, - ISPARENT, ISMANDATORY, ISIDENTIFIER, ISTRANSLATED, AD_REFERENCE_VALUE_ID, - CALLOUT, AD_REFERENCE_ID, AD_VAL_RULE_ID, AD_PROCESS_ID, ISALWAYSUPDATEABLE, - READONLYLOGIC, MANDATORYLOGIC, ISUPDATEABLE, ISENCRYPTEDCOLUMN, ISSELECTIONCOLUMN, TABLENAME, - VALUEMIN, VALUEMAX, FIELDGROUP, VALIDATIONCODE, INCLUDED_TAB_ID) -AS -SELECT t.AD_Window_ID, f.AD_Tab_ID, f.AD_Field_ID, tbl.AD_Table_ID, f.AD_Column_ID, - f.NAME, f.Description, f.Help, f.IsDisplayed, f.DisplayLogic, f.DisplayLength, - f.SeqNo, f.SortNo, f.IsSameLine, f.IsHeading, f.IsFieldOnly, f.IsReadOnly, - f.IsEncrypted AS IsEncryptedField, f.ObscureType, - c.ColumnName, c.ColumnSQL, c.FieldLength, c.VFormat, - COALESCE(f.DefaultValue, c.DefaultValue) AS DefaultValue, - c.IsKey, c.IsParent, - COALESCE(f.IsMandatory, c.IsMandatory) AS IsMandatory, - c.IsIdentifier, c.IsTranslated, c.AD_Reference_Value_ID, - c.Callout, COALESCE(f.AD_Reference_ID, c.AD_Reference_ID) AS AD_Reference_ID, - c.AD_Val_Rule_ID, c.AD_Process_ID, c.IsAlwaysUpdateable, - c.ReadOnlyLogic, c.MandatoryLogic, c.IsUpdateable, c.IsEncrypted AS IsEncryptedColumn, - c.IsSelectionColumn, - tbl.TableName, c.ValueMin, c.ValueMax, - fg.NAME AS FieldGroup, vr.Code AS ValidationCode, - f.Included_Tab_ID -FROM AD_FIELD f - INNER JOIN AD_TAB t ON (f.AD_Tab_ID = t.AD_Tab_ID) - LEFT OUTER JOIN AD_FIELDGROUP fg ON (f.AD_FieldGroup_ID = fg.AD_FieldGroup_ID) - LEFT OUTER JOIN AD_COLUMN c ON (f.AD_Column_ID = c.AD_Column_ID) - INNER JOIN AD_TABLE tbl ON (c.AD_Table_ID = tbl.AD_Table_ID) - INNER JOIN AD_REFERENCE r ON (c.AD_Reference_ID = r.AD_Reference_ID) - LEFT OUTER JOIN AD_VAL_RULE vr ON (c.AD_Val_Rule_ID=vr.AD_Val_Rule_ID) -WHERE f.IsActive = 'Y' - AND c.IsActive = 'Y'; --- -CREATE OR REPLACE VIEW AD_FIELD_VT -(AD_LANGUAGE, AD_WINDOW_ID, AD_TAB_ID, AD_FIELD_ID, AD_TABLE_ID, - AD_COLUMN_ID, NAME, DESCRIPTION, HELP, ISDISPLAYED, - DISPLAYLOGIC, DISPLAYLENGTH, SEQNO, SORTNO, ISSAMELINE, - ISHEADING, ISFIELDONLY, ISREADONLY, ISENCRYPTEDFIELD, OBSCURETYPE, - COLUMNNAME, COLUMNSQL, FIELDLENGTH, VFORMAT, DEFAULTVALUE, - ISKEY, ISPARENT, ISMANDATORY, ISIDENTIFIER, ISTRANSLATED, - AD_REFERENCE_VALUE_ID, CALLOUT, AD_REFERENCE_ID, AD_VAL_RULE_ID, AD_PROCESS_ID, - ISALWAYSUPDATEABLE, READONLYLOGIC, MANDATORYLOGIC, ISUPDATEABLE, ISENCRYPTEDCOLUMN, ISSELECTIONCOLUMN, - TABLENAME, VALUEMIN, VALUEMAX, FIELDGROUP, VALIDATIONCODE, INCLUDED_TAB_ID) -AS -SELECT trl.AD_LANGUAGE, t.AD_Window_ID, f.AD_Tab_ID, f.AD_Field_ID, tbl.AD_Table_ID, f.AD_Column_ID, - trl.NAME, trl.Description, trl.Help, f.IsDisplayed, f.DisplayLogic, f.DisplayLength, - f.SeqNo, f.SortNo, f.IsSameLine, f.IsHeading, f.IsFieldOnly, f.IsReadOnly, - f.IsEncrypted AS IsEncryptedField, f.ObscureType, - c.ColumnName, c.ColumnSQL, c.FieldLength, c.VFormat, - COALESCE(f.DefaultValue, c.DefaultValue) AS DefaultValue, - c.IsKey, c.IsParent, - COALESCE(f.IsMandatory, c.IsMandatory) AS IsMandatory, - c.IsIdentifier, c.IsTranslated, c.AD_Reference_Value_ID, - c.Callout, COALESCE(f.AD_Reference_ID, c.AD_Reference_ID) AS AD_Reference_ID, - c.AD_Val_Rule_ID, c.AD_Process_ID, c.IsAlwaysUpdateable, - c.ReadOnlyLogic, c.MandatoryLogic, c.IsUpdateable, c.IsEncrypted AS IsEncryptedColumn, c.IsSelectionColumn, - tbl.TableName, c.ValueMin, c.ValueMax, - fgt.NAME AS FieldGroup, vr.Code AS ValidationCode, - f.Included_Tab_ID -FROM AD_FIELD f - INNER JOIN AD_FIELD_TRL trl ON (f.AD_Field_ID = trl.AD_Field_ID) - INNER JOIN AD_TAB t ON (f.AD_Tab_ID = t.AD_Tab_ID) - LEFT OUTER JOIN AD_FIELDGROUP_TRL fgt ON - (f.AD_FieldGroup_ID = fgt.AD_FieldGroup_ID AND trl.AD_LANGUAGE=fgt.AD_LANGUAGE) - LEFT OUTER JOIN AD_COLUMN c ON (f.AD_Column_ID = c.AD_Column_ID) - INNER JOIN AD_TABLE tbl ON (c.AD_Table_ID = tbl.AD_Table_ID) - INNER JOIN AD_REFERENCE r ON (c.AD_Reference_ID = r.AD_Reference_ID) - LEFT OUTER JOIN AD_VAL_RULE vr ON (c.AD_Val_Rule_ID=vr.AD_Val_Rule_ID) -WHERE f.IsActive = 'Y' - AND c.IsActive = 'Y'; --- --- NOTE: Don't forget to run the three processes: --- 1 - Add missing translations in the language screen --- 2 - Synchronize terminology --- 3 - Check sequences - -SELECT '023_BF_1812362.sql' AS Filename FROM dual; -UPDATE C_CURRENCY SET CurSymbol='KR' WHERE C_Currency_ID=285; -SELECT '024_BF_1760922.sql' AS Filename FROM dual; -UPDATE AD_COLUMN - SET defaultvalue = 'N' - WHERE ad_column_id = 50169; - -UPDATE AD_COLUMN - SET ad_reference_id = 38 - WHERE ad_column_id = 50170; - - - -SELECT '025_OverUnderAmtMessage.sql' AS Filename FROM dual; -INSERT INTO AD_MESSAGE -(AD_Message_ID, AD_Client_ID, AD_Org_ID, IsActive, -Created, CreatedBy, -Updated, UpdatedBy, -VALUE, MsgText, MsgType -) -VALUES (53006, 0, 0, 'Y', -TO_DATE ('10/26/2007 01:01:50', 'MM/DD/YYYY HH24:MI:SS'), 100, -TO_DATE ('10/26/2007 01:01:50', 'MM/DD/YYYY HH24:MI:SS'), 100, -'OverUnderAmt','Over/Under Payment','I' -); - -UPDATE AD_SEQUENCE -SET CurrentNextSys = (SELECT MAX (AD_Message_ID) + 1 -FROM AD_MESSAGE -WHERE AD_message_ID < 1000000) -WHERE NAME = 'AD_Message'; - - - -SELECT '026_disable_ldap_processor.sql' AS Filename FROM dual; -UPDATE AD_LDAPPROCESSOR - SET isactive = 'N' - WHERE ad_ldapprocessor_id = 100; - - -SELECT '027_fix_typo_es.sql' AS Filename FROM dual; -UPDATE AD_WINDOW_TRL - SET HELP = - 'La terminal de PDV define los datos por omisión y las funciones disponibles para las formas de PDV.' - WHERE ad_window_id = 338 - AND HELP LIKE - '%La terminal de PDV define los datos por homición y las funciones disponibles para las formas de PDV.%' - AND AD_LANGUAGE LIKE 'es_%'; - - - -SELECT '028_FR_1799601.sql' AS Filename FROM dual; -SET DEFINE OFF; - -INSERT INTO AD_ELEMENT - (ad_element_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - columnname, entitytype, NAME, - printname - ) - VALUES (53223, 0, 0, 'Y', - TO_DATE ('09/21/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('09/21/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'DunningGrace', 'D', 'Dunning Grace', - 'Dunning Grace' - ); - - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - help, VERSION, - entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, seqno, istranslated, isencrypted, - isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (53246, 0, 0, 'Y', - TO_DATE ('09/21/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('09/21/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Dunning Grace', 'Delay/block the dunning until this date is reached.', - 'Delay/block the dunning until this date is reached.', 1, - 'D', 'DunningGrace', 291, 15, - 7, 'N', 'N', 'N', 'Y', - 'N', 0, 'N', 'N', - 'N', 53223, 'N', - 'N' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - help, - iscentrallymaintained, seqno, ad_tab_id, - ad_column_id, isdisplayed, displaylength, isreadonly, - issameline, isheading, isfieldonly, isencrypted, entitytype, - displaylogic - ) - VALUES (53256, 0, 0, 'Y', - TO_DATE ('09/21/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('09/21/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Dunning Grace', 'Delay/block the dunning until this date is reached.', - 'Delay/block the dunning until this date is reached.', - 'Y', 260 ,223, - 53246, 'Y', 14, 'N', - 'N', 'N', 'N', 'N', 'D', - '@IsCustomer@=Y' - ); - - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - help, VERSION, - entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, seqno, istranslated, isencrypted, - isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (53247, 0, 0, 'Y', - TO_DATE ('09/21/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('09/21/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Dunning Grace', 'Delay/block the dunning until this date is reached.', - 'Delay/block the dunning until this date is reached.', 1, - 'D', 'DunningGrace', 318, 15, - 7, 'N', 'N', 'N', 'Y', - 'N', 0, 'N', 'N', - 'N', 53223, 'N', - 'Y' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - help, - iscentrallymaintained, seqno, ad_tab_id, - ad_column_id, isdisplayed, displaylength, isreadonly, - issameline, isheading, isfieldonly, isencrypted, entitytype - ) - VALUES (53257, 0, 0, 'Y', - TO_DATE ('09/21/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('09/21/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Dunning Grace', 'Delay/block the dunning until this date is reached.', - 'Delay/block the dunning until this date is reached.', - 'Y', 410 ,263, - 53247, 'Y', 14, 'N', - 'N', 'N', 'N', 'N', 'D' - ); - - - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_element_id) + 1 - FROM AD_ELEMENT - WHERE ad_element_id < 1000000) - WHERE NAME = 'AD_Element'; - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_column_id) + 1 - FROM AD_COLUMN - WHERE ad_column_id < 1000000) - WHERE NAME = 'AD_Column'; - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_field_id) + 1 - FROM AD_FIELD - WHERE ad_field_id < 1000000) - WHERE NAME = 'AD_Field'; - - - -ALTER TABLE C_BPARTNER ADD DunningGrace DATE NULL; -ALTER TABLE C_INVOICE ADD DunningGrace DATE NULL; - - - CREATE OR REPLACE FORCE VIEW C_INVOICE_V AS - SELECT i.C_Invoice_ID, i.AD_Client_ID, i.AD_Org_ID, i.IsActive, i.Created, i.CreatedBy, i.Updated, i.UpdatedBy, - i.IsSOTrx, i.DocumentNo, i.DocStatus, i.DocAction, i.Processing, i.Processed, i.C_DocType_ID, - i.C_DocTypeTarget_ID, i.C_Order_ID, i.Description, i.IsApproved, i.IsTransferred, - i.SalesRep_ID, i.DateInvoiced, i.DatePrinted, i.DateAcct, i.C_BPartner_ID, i.C_BPartner_Location_ID, - i.AD_User_ID, i.POReference, i.DateOrdered, i.C_Currency_ID, i.C_ConversionType_ID, i.PaymentRule, - i.C_PaymentTerm_ID, i.C_Charge_ID, i.M_PriceList_ID, i.C_Campaign_ID, i.C_Project_ID, - i.C_Activity_ID, i.IsPrinted, i.IsDiscountPrinted, i.IsPaid, i.IsInDispute, - i.IsPayScheduleValid, NULL AS C_InvoicePaySchedule_ID, i.InvoiceCollectionType, - i.DunningGrace, - CASE WHEN Charat(d.DocBaseType,3)='C' THEN i.ChargeAmt*-1 ELSE i.ChargeAmt END AS ChargeAmt, - CASE WHEN Charat(d.DocBaseType,3)='C' THEN i.TotalLines*-1 ELSE i.TotalLines END AS TotalLines, - CASE WHEN Charat(d.DocBaseType,3)='C' THEN i.GrandTotal*-1 ELSE i.GrandTotal END AS GrandTotal, - CASE WHEN Charat(d.DocBaseType,3)='C' THEN -1 ELSE 1 END AS Multiplier, - CASE WHEN Charat(d.DocBaseType,2)='P' THEN -1 ELSE 1 END AS MultiplierAP, - d.DocBaseType -FROM C_INVOICE i - INNER JOIN C_DOCTYPE d ON (i.C_DocType_ID=d.C_DocType_ID) -WHERE i.IsPayScheduleValid<>'Y' -UNION -SELECT i.C_Invoice_ID, i.AD_Client_ID, i.AD_Org_ID, i.IsActive, i.Created, i.CreatedBy, i.Updated, i.UpdatedBy, - i.IsSOTrx, i.DocumentNo, i.DocStatus, i.DocAction, i.Processing, i.Processed, i.C_DocType_ID, - i.C_DocTypeTarget_ID, i.C_Order_ID, i.Description, i.IsApproved, i.IsTransferred, - i.SalesRep_ID, i.DateInvoiced, i.DatePrinted, i.DateAcct, i.C_BPartner_ID, i.C_BPartner_Location_ID, - i.AD_User_ID, i.POReference, i.DateOrdered, i.C_Currency_ID, i.C_ConversionType_ID, i.PaymentRule, - i.C_PaymentTerm_ID, i.C_Charge_ID, i.M_PriceList_ID, i.C_Campaign_ID, i.C_Project_ID, - i.C_Activity_ID, i.IsPrinted, i.IsDiscountPrinted, i.IsPaid, i.IsInDispute, - i.IsPayScheduleValid, ips.C_InvoicePaySchedule_ID, i.InvoiceCollectionType, - i.DunningGrace, - NULL AS ChargeAmt, - NULL AS TotalLines, - CASE WHEN Charat(d.DocBaseType,3)='C' THEN ips.DueAmt*-1 ELSE ips.DueAmt END AS GrandTotal, - CASE WHEN Charat(d.DocBaseType,3)='C' THEN -1 ELSE 1 END AS Multiplier, - CASE WHEN Charat(d.DocBaseType,2)='P' THEN -1 ELSE 1 END AS MultiplierAP, - d.DocBaseType -FROM C_INVOICE i - INNER JOIN C_DOCTYPE d ON (i.C_DocType_ID=d.C_DocType_ID) - INNER JOIN C_INVOICEPAYSCHEDULE ips ON (i.C_Invoice_ID=ips.C_Invoice_ID) -WHERE i.IsPayScheduleValid='Y' - AND ips.IsValid='Y'; - - -SELECT '029_FR_1804068.sql' AS Filename FROM dual; -SET DEFINE OFF; - -UPDATE AD_COLUMN SET IsAlwaysUpdateable='Y' WHERE AD_Column_ID=12569; -UPDATE AD_COLUMN SET IsAlwaysUpdateable='Y' WHERE AD_Column_ID=12566; - -INSERT INTO AD_ELEMENT - (ad_element_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - columnname, entitytype, NAME, - printname - ) - VALUES (53224, 0, 0, 'Y', - TO_DATE ('2007-09-28', 'YYYY-MM-DD'), 100, - TO_DATE ('2007-09-28', 'YYYY-MM-DD'), 100, - 'PrintUnprocessedOnly', 'D', 'Print Unprocessed Entries Only', - 'Print Unprocessed Entries Only' - ); - - -INSERT INTO AD_PROCESS_PARA -(AD_Process_Para_ID, AD_Client_ID, AD_Org_ID, IsActive, Created, -CreatedBy, Updated, UpdatedBy, NAME, -Description, -Help, -AD_Process_ID, SeqNo, AD_Reference_ID, AD_Reference_Value_ID, -AD_Val_Rule_ID, ColumnName, IsCentrallyMaintained, FieldLength, -IsMandatory, DefaultValue, IsRange, AD_Element_ID, EntityType -) -VALUES -(53011 , 0, 0, 'Y', TO_DATE ('2007-09-28', 'YYYY-MM-DD'), -100, TO_DATE ('2007-09-28', 'YYYY-MM-DD'), 100, 'Print Unprocessed Entries Only', -'Print the unprocessed (unprinted) entries of the dunning run only.', -'Print the unprocessed (unprinted) entries of the dunning run only. This allows you to reprint only certain dunning entries.', -312, 50, 20, NULL, -NULL, 'PrintUnprocessedOnly', 'N', 1, -'Y', 'Y', 'N', 53224, 'D' -); - -INSERT INTO AD_VAL_RULE( -AD_VAL_RULE_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY, -UPDATED,UPDATEDBY, -NAME,DESCRIPTION, -TYPE,CODE,ENTITYTYPE) -VALUES(51003,0,0,'Y',TO_DATE('2007-09-28','RRRR-MM-DD'),100, -TO_DATE('2007-09-28','RRRR-MM-DD'),100, -'C_DunningRun Unprocessed','Unprocessed Dunning Runs', -'S','C_DunningRun.Processed=''N''','D'); - -UPDATE AD_PROCESS_PARA SET AD_Val_Rule_ID=51003 WHERE AD_Process_Para_ID=578; - - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - help, VERSION, - entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, seqno, istranslated, isencrypted, - isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (53248, 0, 0, 'Y', - TO_DATE ('2007-09-28','RRRR-MM-DD'), - TO_DATE ('2007-09-28','RRRR-MM-DD'), 100, - 100, 'Dunning Level', 'Dunning Level', - 'Dunning Level', 1, - 'D', 'C_DunningLevel_ID', 318, 19, - 22, 'N', 'N', 'N', 'Y', - 'N', 0, 'N', 'N', - 'N', 1075, 'N', - 'N' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - help, - iscentrallymaintained, seqno, ad_tab_id, - ad_column_id, isdisplayed, displaylength, isreadonly, - issameline, isheading, isfieldonly, isencrypted, entitytype, - displaylogic - ) - VALUES (53258 , 0, 0, 'Y', - TO_DATE ('2007-09-28','RRRR-MM-DD'), 100, - TO_DATE ('2007-09-28','RRRR-MM-DD'), 100, - 'Dunning Level', 'Dunning Level', - 'Dunning Level', - 'Y', 420 ,263, - 53248, 'Y', 14, 'Y', - 'Y', 'N', 'N', 'N', 'D', - '@Processed@=Y' - ); - -ALTER TABLE C_INVOICE ADD C_DunningLevel_ID NUMBER(10,0) NULL; - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - help, VERSION, - entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, seqno, istranslated, isencrypted, - isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (53249, 0, 0, 'Y', - TO_DATE ('2007-09-28','RRRR-MM-DD'), - TO_DATE ('2007-09-28','RRRR-MM-DD'), 100, - 100, 'Invoice Payment Schedule', 'Invoice Payment Schedule', - 'Invoice Payment Schedule', 1, - 'D', 'C_InvoicePaySchedule_ID', 524, 19, - 22, 'N', 'N', 'N', 'Y', - 'N', 0, 'N', 'N', - 'N', 1995, 'N', - 'N' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - help, - iscentrallymaintained, seqno, ad_tab_id, - ad_column_id, isdisplayed, displaylength, isreadonly, - issameline, isheading, isfieldonly, isencrypted, entitytype - ) - VALUES (53259 , 0, 0, 'Y', - TO_DATE ('2007-09-28','RRRR-MM-DD'), 100, - TO_DATE ('2007-09-28','RRRR-MM-DD'), 100, - 'Invoice Payment Schedule', 'Invoice Payment Schedule', - 'Invoice Payment Schedule', - 'Y', 65 ,635, - 53249, 'Y', 26, 'Y', - 'N', 'N', 'N', 'N', 'D' - ); - -ALTER TABLE C_DUNNINGRUNLINE ADD C_InvoicePaySchedule_ID NUMBER(10,0) NULL; - - - - - - -UPDATE AD_SEQUENCE -SET currentnextsys = (SELECT MAX (ad_process_para_id) + 1 -FROM AD_PROCESS_PARA -WHERE AD_Process_Para_ID < 1000000) -WHERE NAME = 'AD_Process_Para'; - -UPDATE AD_SEQUENCE -SET currentnextsys = (SELECT MAX (AD_Val_Rule_id) + 1 -FROM AD_VAL_RULE -WHERE AD_Val_Rule_ID < 1000000) -WHERE NAME = 'AD_Val_Rule'; - -UPDATE AD_SEQUENCE -SET currentnextsys = (SELECT MAX (ad_element_id) + 1 -FROM AD_ELEMENT -WHERE ad_element_id < 1000000) -WHERE NAME = 'AD_Element'; - -UPDATE AD_SEQUENCE -SET currentnextsys = (SELECT MAX (ad_column_id) + 1 -FROM AD_COLUMN -WHERE ad_column_id < 1000000) -WHERE NAME = 'AD_Column'; - -UPDATE AD_SEQUENCE -SET currentnextsys = (SELECT MAX (ad_field_id) + 1 -FROM AD_FIELD -WHERE ad_field_id < 1000000) -WHERE NAME = 'AD_Field'; - - - - -SELECT '030_BF_1824260.sql' AS Filename FROM dual; --- BF [ 1824260 ] TRUNC function not working like in Oracle --- http://sourceforge.net/tracker/?func=detail&atid=879332&aid=1824260&group_id=176962 --- --- Nothing to do for Oracle, this is just a sequence placeholder - -SELECT '031_FR_1823186.sql' AS Filename FROM dual; --- --- ad_menu --- - -INSERT INTO AD_PROCESS (ad_process_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - VALUE, - NAME, - description, - help, - accesslevel, - entitytype, - procedurename, - isreport, - isdirectprint, - ad_reportview_id, - classname, - statistic_count, - statistic_seconds, - ad_printformat_id, - workflowvalue, - ad_workflow_id, - isbetafunctionality, - isserverprocess, - showhelp, - jasperreport) - VALUES - (53002, - 0, - 0, - 'Y', - TO_DATE('2007-11-03 21:38:36','YYYY-MM-DD HH24:MI:SS'), - 0, - TO_DATE('2007-11-03 21:38:36','YYYY-MM-DD HH24:MI:SS'), - 0, - 'Setup Web POS', - 'Setup Web POS', - NULL, - NULL, - '3', - 'C', - NULL, - 'N', - 'N', - NULL, - 'org.posterita.process.SetupWebPOS', - 0, - 0, - NULL, - NULL, - NULL, - 'N', - 'N', - 'Y', - NULL); - -INSERT INTO AD_MENU (ad_menu_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - NAME, - updatedby, - description, - issummary, - issotrx, - isreadonly, - action, - ad_window_id, - ad_workflow_id, - ad_task_id, - ad_process_id, - ad_form_id, - ad_workbench_id, - entitytype) - VALUES - (53013, - 0, - 0, - 'Y', - TO_DATE('2007-11-03 21:38:38','YYYY-MM-DD HH24:MI:SS'), - 0, - TO_DATE('2007-11-03 21:38:38','YYYY-MM-DD HH24:MI:SS'), - 'Setup Web POS', - 0, - NULL, - 'N', - 'N', - 'N', - 'P', - NULL, - NULL, - NULL, - 53002, - NULL, - NULL, - 'C'); - - - --- --- ad_process_access --- - -UPDATE AD_PROCESS_ACCESS SET created = TO_DATE('2007-11-03 21:16:37','YYYY-MM-DD HH24:MI:SS'), - updated = TO_DATE('2007-11-03 21:16:37','YYYY-MM-DD HH24:MI:SS') WHERE ad_process_id = 52003 AND ad_role_id = 0; - -UPDATE AD_PROCESS_ACCESS SET created = TO_DATE('2007-11-03 21:16:37','YYYY-MM-DD HH24:MI:SS'), - updated = TO_DATE('2007-11-03 21:16:37','YYYY-MM-DD HH24:MI:SS') WHERE ad_process_id = 52003 AND ad_role_id = 102; - -UPDATE AD_PROCESS_ACCESS SET created = TO_DATE('2007-11-03 21:16:37','YYYY-MM-DD HH24:MI:SS'), - updated = TO_DATE('2007-11-03 21:16:37','YYYY-MM-DD HH24:MI:SS') WHERE ad_process_id = 52003 AND ad_role_id = 103; - - --- --- ad_process_para --- - -INSERT INTO AD_PROCESS_PARA (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - NAME, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53012, - 0, - 0, - 'Y', - TO_DATE('2007-11-03 21:38:37','YYYY-MM-DD HH24:MI:SS'), - 0, - TO_DATE('2007-11-03 21:38:37','YYYY-MM-DD HH24:MI:SS'), - 0, - 'Price List Version', - 'Identifies a unique instance of a Price List', - 'Each Price List can have multiple versions. The most common use is to indicate the dates that a Price List is valid for.', - 53002, - 20, - 19, - NULL, - NULL, - 'M_PriceList_Version_ID', - 'Y', - 10, - 'Y', - 'N', - NULL, - NULL, - NULL, - NULL, - NULL, - 450, - 'C'); -INSERT INTO AD_PROCESS_PARA (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - NAME, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53013, - 0, - 0, - 'Y', - TO_DATE('2007-11-03 21:38:37','YYYY-MM-DD HH24:MI:SS'), - 0, - TO_DATE('2007-11-03 21:38:37','YYYY-MM-DD HH24:MI:SS'), - 0, - 'Organization', - 'Organizational entity within client', - 'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.', - 53002, - 10, - 19, - NULL, - 130, - 'AD_Org_ID', - 'Y', - 10, - 'Y', - 'N', - NULL, - NULL, - NULL, - NULL, - NULL, - 113, - 'C'); -INSERT INTO AD_PROCESS_PARA (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - NAME, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53014, - 0, - 0, - 'Y', - TO_DATE('2007-11-03 21:38:37','YYYY-MM-DD HH24:MI:SS'), - 0, - TO_DATE('2007-11-03 21:38:37','YYYY-MM-DD HH24:MI:SS'), - 0, - 'Bank', - 'Bank', - 'The Bank is a unique identifier of a Bank for this Organization or for a Business Partner with whom this Organization transacts.', - 53002, - 50, - 19, - NULL, - NULL, - 'C_Bank_ID', - 'Y', - 10, - 'Y', - 'N', - NULL, - NULL, - NULL, - NULL, - NULL, - 835, - 'C'); -INSERT INTO AD_PROCESS_PARA (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - NAME, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53015, - 0, - 0, - 'Y', - TO_DATE('2007-11-03 21:38:37','YYYY-MM-DD HH24:MI:SS'), - 0, - TO_DATE('2007-11-03 21:38:37','YYYY-MM-DD HH24:MI:SS'), - 0, - 'Bank Account', - 'Account at the Bank', - 'The Bank Account identifies an account at this Bank.', - 53002, - 60, - 19, - NULL, - NULL, - 'C_BankAccount_ID', - 'Y', - 10, - 'Y', - 'N', - NULL, - NULL, - NULL, - NULL, - NULL, - 836, - 'C'); -INSERT INTO AD_PROCESS_PARA (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - NAME, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53016, - 0, - 0, - 'Y', - TO_DATE('2007-11-03 21:38:37','YYYY-MM-DD HH24:MI:SS'), - 0, - TO_DATE('2007-11-03 21:38:37','YYYY-MM-DD HH24:MI:SS'), - 0, - 'Tax Category', - 'Tax Category', - 'The Tax Category provides a method of grouping similar taxes. For example, Sales Tax or Value Added Tax.', - 53002, - 70, - 19, - NULL, - NULL, - 'C_TaxCategory_ID', - 'Y', - 10, - 'Y', - 'N', - NULL, - NULL, - NULL, - NULL, - NULL, - 211, - 'C'); -INSERT INTO AD_PROCESS_PARA (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - NAME, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53017, - 0, - 0, - 'Y', - TO_DATE('2007-11-03 21:38:37','YYYY-MM-DD HH24:MI:SS'), - 0, - TO_DATE('2007-11-03 21:38:37','YYYY-MM-DD HH24:MI:SS'), - 0, - 'Locator', - 'Warehouse Locator', - 'The Locator indicates where in a Warehouse a product is located.', - 53002, - 80, - 19, - NULL, - NULL, - 'M_Locator_ID', - 'Y', - 10, - 'Y', - 'N', - NULL, - NULL, - NULL, - NULL, - NULL, - 448, - 'C'); -INSERT INTO AD_PROCESS_PARA (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - NAME, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53018, - 0, - 0, - 'Y', - TO_DATE('2007-11-03 21:38:37','YYYY-MM-DD HH24:MI:SS'), - 0, - TO_DATE('2007-11-03 21:38:37','YYYY-MM-DD HH24:MI:SS'), - 0, - 'Business Partner ', - 'Identifies a Business Partner', - 'A Business Partner is anyone with whom you transact. This can include Vendor, Customer, Employee or Salesperson', - 53002, - 90, - 19, - NULL, - NULL, - 'C_BPartner_ID', - 'Y', - 10, - 'Y', - 'N', - NULL, - NULL, - NULL, - NULL, - NULL, - 187, - 'C'); -INSERT INTO AD_PROCESS_PARA (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - NAME, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53019, - 0, - 0, - 'Y', - TO_DATE('2007-11-03 21:38:37','YYYY-MM-DD HH24:MI:SS'), - 0, - TO_DATE('2007-11-03 21:38:37','YYYY-MM-DD HH24:MI:SS'), - 0, - 'Sales Representative', - 'Sales Representative or Company Agent', - 'The Sales Representative indicates the Sales Rep for this Region. Any Sales Rep must be a valid internal user.', - 53002, - 100, - 18, - 190, - NULL, - 'SalesRep_ID', - 'Y', - 10, - 'Y', - 'N', - NULL, - NULL, - NULL, - NULL, - NULL, - 409, - 'C'); -INSERT INTO AD_PROCESS_PARA (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - NAME, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53020, - 0, - 0, - 'Y', - TO_DATE('2007-11-03 21:38:37','YYYY-MM-DD HH24:MI:SS'), - 0, - TO_DATE('2007-11-03 21:38:37','YYYY-MM-DD HH24:MI:SS'), - 0, - 'Role', - 'Responsibility Role', - 'The Role determines security and access a user who has this Role will have in the System.', - 53002, - 110, - 19, - NULL, - NULL, - 'AD_Role_ID', - 'Y', - 10, - 'Y', - 'N', - NULL, - NULL, - NULL, - NULL, - NULL, - 123, - 'C'); -INSERT INTO AD_PROCESS_PARA (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - NAME, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53021, - 0, - 0, - 'Y', - TO_DATE('2007-11-03 21:38:37','YYYY-MM-DD HH24:MI:SS'), - 0, - TO_DATE('2007-11-03 21:38:37','YYYY-MM-DD HH24:MI:SS'), - 0, - 'Cash Book', - 'Cash Book for recording petty cash transactions', - 'The Cash Book identifies a unique cash book. The cash book is used to record cash transactions.', - 53002, - 15, - 19, - NULL, - NULL, - 'C_CashBook_ID', - 'Y', - 10, - 'Y', - 'N', - NULL, - NULL, - NULL, - NULL, - NULL, - 1463, - 'C'); -INSERT INTO AD_PROCESS_PARA (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - NAME, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53022, - 0, - 0, - 'Y', - TO_DATE('2007-11-03 21:38:37','YYYY-MM-DD HH24:MI:SS'), - 0, - TO_DATE('2007-11-03 21:38:37','YYYY-MM-DD HH24:MI:SS'), - 0, - 'Name', - 'Alphanumeric identifier of the entity', - 'The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.', - 53002, - 130, - 10, - NULL, - NULL, - 'Name', - 'Y', - 60, - 'Y', - 'N', - NULL, - NULL, - NULL, - NULL, - NULL, - 469, - 'C'); -INSERT INTO AD_PROCESS_PARA (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - NAME, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53023, - 0, - 0, - 'Y', - TO_DATE('2007-11-03 21:38:37','YYYY-MM-DD HH24:MI:SS'), - 0, - TO_DATE('2007-11-03 21:38:37','YYYY-MM-DD HH24:MI:SS'), - 0, - 'Host Address', - 'Host Address URL or DNS', - 'The Host Address identifies the URL or DNS of the target host', - 53002, - 140, - 10, - NULL, - NULL, - 'HostAddress', - 'Y', - 60, - 'Y', - 'N', - 'http://www.adempiere.org', - NULL, - NULL, - NULL, - NULL, - 1398, - 'C'); -INSERT INTO AD_PROCESS_PARA (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - NAME, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53024, - 0, - 0, - 'Y', - TO_DATE('2007-11-03 21:38:37','YYYY-MM-DD HH24:MI:SS'), - 0, - TO_DATE('2007-11-03 21:38:37','YYYY-MM-DD HH24:MI:SS'), - 0, - 'Discount Schema', - 'Schema to calculate the trade discount percentage', - 'After calculation of the (standard) price, the trade discount percentage is calculated and applied resulting in the final price.', - 53002, - 25, - 19, - NULL, - NULL, - 'M_DiscountSchema_ID', - 'Y', - 10, - 'Y', - 'N', - NULL, - NULL, - NULL, - NULL, - NULL, - 1714, - 'C'); -INSERT INTO AD_PROCESS_PARA (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - NAME, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53025, - 0, - 0, - 'Y', - TO_DATE('2007-11-03 21:38:38','YYYY-MM-DD HH24:MI:SS'), - 0, - TO_DATE('2007-11-03 21:38:38','YYYY-MM-DD HH24:MI:SS'), - 0, - 'Purchase Price List Version', - NULL, - NULL, - 53002, - 30, - 18, - 188, - NULL, - 'PriceList_Version_ID', - 'Y', - 10, - 'Y', - 'N', - NULL, - NULL, - NULL, - NULL, - NULL, - 450, - 'C'); -INSERT INTO AD_PROCESS_PARA (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - NAME, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53026, - 0, - 0, - 'Y', - TO_DATE('2007-11-03 21:38:38','YYYY-MM-DD HH24:MI:SS'), - 0, - TO_DATE('2007-11-03 21:38:38','YYYY-MM-DD HH24:MI:SS'), - 0, - 'UserPIN', - NULL, - NULL, - 53002, - 120, - 10, - NULL, - NULL, - 'UserPIN', - 'Y', - 10, - 'Y', - 'N', - NULL, - NULL, - NULL, - NULL, - NULL, - 52023, - 'C'); - - --- --- ad_treenodemm --- - -INSERT INTO AD_TREENODEMM (ad_tree_id, - node_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - parent_id, - seqno) - VALUES - (10, - 53013, - 0, - 0, - 'Y', - TO_DATE('2007-11-03 21:38:36','YYYY-MM-DD HH24:MI:SS'), - 0, - TO_DATE('2007-11-03 21:38:36','YYYY-MM-DD HH24:MI:SS'), - 0, - 52001, - 5); - -INSERT INTO AD_PROCESS_ACCESS (AD_Client_ID,AD_Org_ID,IsReadWrite,Created,AD_Process_ID,CreatedBy,Updated,UpdatedBy,IsActive,AD_Role_ID) VALUES (11,0,'Y',TO_DATE('2007-11-05 14:26:09','YYYY-MM-DD HH24:MI:SS'),53002,100,TO_DATE('2007-11-05 14:26:09','YYYY-MM-DD HH24:MI:SS'),100,'Y',102); - - - -SELECT '032_Rejected_Incomplete_C1648920_EnhancedDocNum.sql' AS Filename FROM dual; --- Revert 006_C1648920_EnhancedDocNum - incomplete contribution - -DELETE FROM AD_COLUMN - WHERE ad_column_id = 53200; - -DELETE FROM AD_ELEMENT - WHERE ad_element_id = 53200; - -DELETE FROM AD_COLUMN - WHERE ad_column_id = 53201; - -DELETE FROM AD_ELEMENT - WHERE ad_element_id = 53201; - -ALTER TABLE AD_SEQUENCE_NO DROP CONSTRAINT ad_sequence_no_key; - -DROP INDEX ad_sequence_no_key; - -CREATE UNIQUE INDEX ad_sequence_no_key ON AD_SEQUENCE_NO -(ad_sequence_id, calendaryear); - -ALTER TABLE AD_SEQUENCE_NO ADD ( - CONSTRAINT ad_sequence_no_key - PRIMARY KEY - (ad_sequence_id, calendaryear)); - -ALTER TABLE AD_SEQUENCE_NO DROP COLUMN DAY; - -ALTER TABLE AD_SEQUENCE_NO DROP COLUMN MONTH; - -ALTER TABLE AD_SEQUENCE DROP COLUMN datetrx; - -DELETE FROM AD_COLUMN - WHERE ad_column_id = 53202; - -ALTER TABLE AD_SEQUENCE DROP COLUMN isadddate; - -DELETE FROM AD_COLUMN - WHERE ad_column_id = 53203; - -DELETE FROM AD_ELEMENT - WHERE ad_element_id = 53203; - -ALTER TABLE AD_SEQUENCE DROP COLUMN isaddmonth; - -DELETE FROM AD_COLUMN - WHERE ad_column_id = 53204; - -DELETE FROM AD_ELEMENT - WHERE ad_element_id = 53204; - -ALTER TABLE AD_SEQUENCE DROP COLUMN isaddyear; - -DELETE FROM AD_COLUMN - WHERE ad_column_id = 53205; - -DELETE FROM AD_ELEMENT - WHERE ad_element_id = 53205; - -ALTER TABLE AD_SEQUENCE DROP COLUMN isromancharacter; - -DELETE FROM AD_COLUMN - WHERE ad_column_id = 53206; - -DELETE FROM AD_ELEMENT - WHERE ad_element_id = 53206; - -ALTER TABLE AD_SEQUENCE DROP COLUMN separator; - -DELETE FROM AD_COLUMN - WHERE ad_column_id = 53207; - -ALTER TABLE AD_SEQUENCE DROP COLUMN dateposition; - -DELETE FROM AD_COLUMN - WHERE ad_column_id = 53208; - -DELETE FROM AD_ELEMENT - WHERE ad_element_id = 53208; - -DELETE FROM AD_REF_LIST - WHERE ad_ref_list_id = 53200; - -DELETE FROM AD_REF_LIST - WHERE ad_ref_list_id = 53201; - -DELETE FROM AD_REF_LIST - WHERE ad_ref_list_id = 53202; - -DELETE FROM AD_REF_LIST - WHERE ad_ref_list_id = 53203; - -DELETE FROM AD_REFERENCE - WHERE ad_reference_id = 53200; - -ALTER TABLE AD_SEQUENCE DROP COLUMN DATEFORMAT; - -DELETE FROM AD_REF_LIST - WHERE ad_ref_list_id = 53204; - -DELETE FROM AD_REF_LIST - WHERE ad_ref_list_id = 53205; - -DELETE FROM AD_REF_LIST - WHERE ad_ref_list_id = 53206; - -DELETE FROM AD_COLUMN - WHERE ad_column_id = 53209; - -DELETE FROM AD_REFERENCE - WHERE ad_reference_id = 53201; - - -DELETE FROM AD_REF_LIST - WHERE ad_ref_list_id = 53207; - -DELETE FROM AD_REF_LIST - WHERE ad_ref_list_id = 53208; - -DELETE FROM AD_REF_LIST - WHERE ad_ref_list_id = 53209; - -DELETE FROM AD_COLUMN - WHERE ad_column_id = 53210; - -DELETE FROM AD_REFERENCE - WHERE ad_reference_id = 53202; - -DELETE FROM AD_ELEMENT - WHERE ad_element_id = 53210; - -ALTER TABLE AD_SEQUENCE DROP COLUMN RESET; - - -SELECT '033_centralized_id_sysconfig.sql' AS Filename FROM dual; -INSERT INTO AD_SYSCONFIG - (ad_sysconfig_id, ad_client_id, ad_org_id, - created, - updated, createdby, - updatedby, isactive, NAME, - VALUE, - description - ) - VALUES (50000, 0, 0, - TO_DATE ('10/13/2007 14:30:57', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('10/13/2007 14:32:17', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Y', 'DICTIONARY_ID_WEBSITE', - 'http://developer.adempiere.com/cgi-bin/get_ID', - 'Website where the system sequences are found (MSequence)' - ); - -INSERT INTO AD_SYSCONFIG - (ad_sysconfig_id, ad_client_id, ad_org_id, - created, - updated, createdby, - updatedby, isactive, NAME, VALUE, - description - ) - VALUES (50001, 0, 0, - TO_DATE ('10/13/2007 14:31:09', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('10/13/2007 14:32:45', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Y', 'DICTIONARY_ID_USER', 'globalqss', - 'User (sourceforge developer) to get the system sequences (MSequence)' - ); - -INSERT INTO AD_SYSCONFIG - (ad_sysconfig_id, ad_client_id, ad_org_id, - created, - updated, createdby, - updatedby, isactive, NAME, VALUE, - description - ) - VALUES (50002, 0, 0, - TO_DATE ('10/13/2007 14:31:19', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('10/13/2007 14:33:03', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Y', 'DICTIONARY_ID_PASSWORD', 'password_inseguro', - 'Password to get the system sequences (MSequence)' - ); - -INSERT INTO AD_SYSCONFIG - (ad_sysconfig_id, ad_client_id, ad_org_id, - created, - updated, createdby, - updatedby, isactive, NAME, - VALUE, - description - ) - VALUES (50003, 0, 0, - TO_DATE ('10/13/2007 14:31:38', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('10/13/2007 14:33:17', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Y', 'DICTIONARY_ID_COMMENTS', - 'Default comment for updating dictionary', - 'Comment to reserve the system sequences (MSequence)' - ); - -INSERT INTO AD_SYSCONFIG - (ad_sysconfig_id, ad_client_id, ad_org_id, - created, - updated, createdby, - updatedby, isactive, NAME, - VALUE, - description - ) - VALUES (50004, 0, 0, - TO_DATE ('10/13/2007 14:30:57', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('10/13/2007 14:32:17', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Y', 'PROJECT_ID_WEBSITE', - 'http://developer.adempiere.com/cgi-bin/get_ID', - 'Website where the system sequences are found (MSequence)' - ); - -INSERT INTO AD_SYSCONFIG - (ad_sysconfig_id, ad_client_id, ad_org_id, - created, - updated, createdby, - updatedby, isactive, NAME, VALUE, - description - ) - VALUES (50005, 0, 0, - TO_DATE ('10/13/2007 14:30:57', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('10/13/2007 14:32:17', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Y', 'PROJECT_ID_PROJECT', 'TestProject', - 'Name of the project you are working on for development' - ); - -INSERT INTO AD_SYSCONFIG - (ad_sysconfig_id, ad_client_id, ad_org_id, - created, - updated, createdby, - updatedby, isactive, NAME, VALUE, - description - ) - VALUES (50006, 0, 0, - TO_DATE ('10/13/2007 14:31:09', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('10/13/2007 14:32:45', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Y', 'PROJECT_ID_USER', 'globalqss', - 'User (sourceforge developer) to get the system sequences (MSequence)' - ); - -INSERT INTO AD_SYSCONFIG - (ad_sysconfig_id, ad_client_id, ad_org_id, - created, - updated, createdby, - updatedby, isactive, NAME, VALUE, - description - ) - VALUES (50007, 0, 0, - TO_DATE ('10/13/2007 14:31:19', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('10/13/2007 14:33:03', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Y', 'PROJECT_ID_PASSWORD', 'password_inseguro', - 'Password to get the system sequences (MSequence)' - ); - -INSERT INTO AD_SYSCONFIG - (ad_sysconfig_id, ad_client_id, ad_org_id, - created, - updated, createdby, - updatedby, isactive, NAME, - VALUE, - description - ) - VALUES (50008, 0, 0, - TO_DATE ('10/13/2007 14:31:38', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('10/13/2007 14:33:17', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Y', 'PROJECT_ID_COMMENTS', - 'Default comment for updating dictionary', - 'Comment to reserve the system sequences (MSequence)' - ); - -INSERT INTO AD_SYSCONFIG - (ad_sysconfig_id, ad_client_id, ad_org_id, - created, - updated, createdby, - updatedby, isactive, NAME, VALUE, - description - ) - VALUES (50009, 0, 0, - TO_DATE ('10/13/2007 14:30:57', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('10/13/2007 14:32:17', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Y', 'DICTIONARY_ID_USE_CENTRALIZED_ID', 'Y', - 'Flag to indicate if we use centralized ID approach or not' - ); - -INSERT INTO AD_SYSCONFIG - (ad_sysconfig_id, ad_client_id, ad_org_id, - created, - updated, createdby, - updatedby, isactive, NAME, VALUE, - description - ) - VALUES (50010, 0, 0, - TO_DATE ('10/13/2007 14:30:57', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('10/13/2007 14:32:17', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Y', 'PROJECT_ID_USE_CENTRALIZED_ID', 'N', - 'Flag to indicate if we use centralized ID approach or not' - ); - - - -SELECT '034_message_logmigrationscript.sql' AS Filename FROM dual; --- Nov 11, 2007 1:54:50 AM COT --- FR 1829798 - Easy generation of migration scripts -INSERT INTO AD_MESSAGE - (ad_client_id, ad_message_id, ad_org_id, - created, createdby, - entitytype, isactive, msgtext, - msgtip, - msgtype, updated, - updatedby, VALUE - ) - VALUES (0, 53007, 0, - TO_DATE ('2007-11-11 01:54:49', 'YYYY-MM-DD HH24:MI:SS'), 100, - 'D', 'Y', 'Log Migration Script', - 'Log Migration Script - Save migration scripts file in %TEMP%/migration_script_*.sql', - 'I', TO_DATE ('2007-11-11 01:54:49', 'YYYY-MM-DD HH24:MI:SS'), - 100, 'LogMigrationScript' - ) -/ --- Nov 11, 2007 1:54:50 AM COT --- FR 1829798 - Easy generation of migration scripts -INSERT INTO AD_MESSAGE_TRL - (AD_LANGUAGE, ad_message_id, msgtext, msgtip, istranslated, - ad_client_id, ad_org_id, created, createdby, updated, updatedby) - SELECT l.AD_LANGUAGE, t.ad_message_id, t.msgtext, t.msgtip, 'N', - t.ad_client_id, t.ad_org_id, t.created, t.createdby, t.updated, - t.updatedby - FROM AD_LANGUAGE l, AD_MESSAGE t - WHERE l.isactive = 'Y' - AND l.issystemlanguage = 'Y' - AND l.isbaselanguage = 'N' - AND t.ad_message_id = 53007 - AND EXISTS ( - SELECT * - FROM AD_MESSAGE_TRL tt - WHERE tt.AD_LANGUAGE != l.AD_LANGUAGE - OR tt.ad_message_id != t.ad_message_id) -/ - -SELECT '035_BF_1828688.sql' AS Filename FROM dual; -UPDATE AD_TAB - SET isinfotab = 'N' - WHERE ad_tab_id = 684 -- Invoice (Customer) -> Allocation - OR ad_tab_id = 685 -- Invoice (Vendor) -> Allocation - OR ad_tab_id = 755 -- Payment -> Allocate - OR ad_tab_id = 686 -- Payment -> Allocations -; - - -SELECT '036_FR1675372.sql' AS Filename FROM dual; --- Nov 15, 2007 9:19:15 PM COT --- FR 1675372 - Add supplier/vendor to productinfo -INSERT INTO AD_MESSAGE (AD_Client_ID,AD_Message_ID,AD_Org_ID,Created,CreatedBy,EntityType,IsActive,MsgText,MsgType,Updated,UpdatedBy,VALUE) VALUES (0,53008,0,TO_DATE('2007-11-15 21:19:10','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Vendor','I',TO_DATE('2007-11-15 21:19:10','YYYY-MM-DD HH24:MI:SS'),100,'Vendor') -/ - --- Nov 15, 2007 9:19:15 PM COT --- FR 1675372 - Add supplier/vendor to productinfo -INSERT INTO AD_MESSAGE_TRL (AD_LANGUAGE,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_MESSAGE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=53008 AND EXISTS (SELECT * FROM AD_MESSAGE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Message_ID!=t.AD_Message_ID) -/ - -UPDATE AD_MESSAGE_TRL - SET msgtext = 'Proveedor' - WHERE ad_message_id = 53008 AND AD_LANGUAGE LIKE 'es_%' -/ - -SELECT '037_AdditionalProductInfo.sql' AS Filename FROM dual; --- [ 1823612 ] Product Info Screen Improvements --- Author: fer_luck --- Contributor: Kartsten Thiemann --- Dictionary Additions --- Feature Request: http://sourceforge.net/tracker/index.php?func=detail&aid=1823612&group_id=176962&atid=879335 ---******************************************************-- --- NOTE: Don't forget to run the three processes: -- --- 1 - Add missing translations in the language screen -- --- 2 - Synchronize terminology -- --- 3 - Check sequences -- ---******************************************************-- - --- new message -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(53001, 0, 0, 'Y', TO_DATE('2007-07-26','RRRR-MM-DD'), 100, TO_DATE('2007-07-26','RRRR-MM-DD'), 100, 'WarehouseStock', 'Item Availability in other Warehouses', NULL, 'M', 'D'); - ---add view to ad_table -INSERT INTO AD_TABLE (ad_table_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, help, tablename, isview, accesslevel, entitytype, ad_window_id, ad_val_rule_id, loadseq, issecurityenabled, isdeleteable, ishighvolume, importtable, ischangelog, replicationtype, po_window_id, copycolumnsfromtable) - VALUES(53011, 0, 0, 'Y', TO_DATE('2007-07-26','RRRR-MM-DD'), 100, TO_DATE('2007-07-26','RRRR-MM-DD'), 100, 'Product Stock at Warehouses', NULL, NULL, 'M_Product_Stock_V', 'Y', '1', 'D', NULL, NULL, NULL, 'N', 'Y', 'N', 'N', 'N', 'L', NULL, NULL); - ---add columns to view in ad_column -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql, mandatorylogic) - VALUES(53003, 0, 0, 'Y', TO_DATE('2007-07-26','RRRR-MM-DD'), TO_DATE('2007-07-26','RRRR-MM-DD'), 0, 0, 'Description', 'Optional short description of the record', 'A description is limited to 255 characters.', 0, 'D', 'Description', 53011, 10, NULL, NULL, 255, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', NULL, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 275, NULL, 'N', 'N', NULL, NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql, mandatorylogic) - VALUES(53004, 0, 0, 'Y', TO_DATE('2007-07-26','RRRR-MM-DD'), TO_DATE('2007-07-26','RRRR-MM-DD'), 0, 0, 'Product', 'Product, Service, Item', 'Identifies an item which is either purchased or sold in this organization.', 0, 'U', 'M_Product_ID', 53011, 30, NULL, NULL, 10, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 454, NULL, 'N', 'N', NULL, NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql, mandatorylogic) - VALUES(53005, 0, 0, 'Y', TO_DATE('2007-07-26','RRRR-MM-DD'), TO_DATE('2007-07-26','RRRR-MM-DD'), 0, 0, 'Name', 'Alphanumeric identifier of the entity', 'The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.', 1, 'D', 'Name', 53011, 10, NULL, NULL, 60, NULL, 'N', 'N', 'Y', 'Y', NULL, 'Y', 1, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 469, NULL, 'N', 'N', NULL, NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql, mandatorylogic) - VALUES(53006, 0, 0, 'Y', TO_DATE('2007-07-26','RRRR-MM-DD'), TO_DATE('2007-07-26','RRRR-MM-DD'), 0, 0, 'Available Quantity', 'Available Quantity (On Hand - Reserved)', 'Quantity available to promise = On Hand minus Reserved Quantity', 1, 'D', 'QtyAvailable', 53011, 29, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'N', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 2238, NULL, 'N', 'N', NULL, NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql, mandatorylogic) - VALUES(53007, 0, 0, 'Y', TO_DATE('2007-07-26','RRRR-MM-DD'), TO_DATE('2007-07-26','RRRR-MM-DD'), 0, 0, 'On Hand Quantity', 'On Hand Quantity', 'The On Hand Quantity indicates the quantity of a product that is on hand in a warehouse.', 1, 'D', 'QtyOnHand', 53011, 29, NULL, NULL, 22, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', NULL, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 530, NULL, 'N', 'N', NULL, NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql, mandatorylogic) - VALUES(53008, 0, 0, 'Y', TO_DATE('2007-07-26','RRRR-MM-DD'), TO_DATE('2007-07-26','RRRR-MM-DD'), 0, 0, 'Reserved Quantity', 'Reserved Quantity', 'The Reserved Quantity indicates the quantity of a product that is currently reserved.', 1, 'D', 'QtyReserved', 53011, 29, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', NULL, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 532, NULL, 'N', 'N', NULL, NULL); - ---add view to ad_table -INSERT INTO AD_TABLE (ad_table_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, help, tablename, isview, accesslevel, entitytype, ad_window_id, ad_val_rule_id, loadseq, issecurityenabled, isdeleteable, ishighvolume, importtable, ischangelog, replicationtype, po_window_id, copycolumnsfromtable) - VALUES(53015, 0, 0, 'Y', TO_DATE('2007-07-26','RRRR-MM-DD'), 100, TO_DATE('2007-07-26','RRRR-MM-DD'), 100, 'Product Substitute with Stock Info', NULL, NULL, 'M_Product_SubstituteRelated_V', 'Y', '1', 'D', NULL, NULL, NULL, 'N', 'Y', 'N', 'N', 'N', 'L', NULL, NULL); - ---add columns to view in ad_column -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql, mandatorylogic) - VALUES(53023, 0, 0, 'Y', TO_DATE('2007-07-26','RRRR-MM-DD'), TO_DATE('2007-07-26','RRRR-MM-DD'), 0, 0, 'Description', 'Optional short description of the record', 'A description is limited to 255 characters.', 0, 'D', 'Description', 53015, 10, NULL, NULL, 255, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', NULL, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 275, NULL, 'N', 'N', NULL, NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql, mandatorylogic) - VALUES(53024, 0, 0, 'Y', TO_DATE('2007-07-26','RRRR-MM-DD'), TO_DATE('2007-07-26','RRRR-MM-DD'), 0, 0, 'Product', 'Product, Service, Item', 'Identifies an item which is either purchased or sold in this organization.', 0, 'U', 'M_Product_ID', 53015, 30, NULL, NULL, 10, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 454, NULL, 'N', 'N', NULL, NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql, mandatorylogic) - VALUES(53025, 0, 0, 'Y', TO_DATE('2007-07-26','RRRR-MM-DD'), TO_DATE('2007-07-26','RRRR-MM-DD'), 0, 0, 'Standard Price', 'Standard Price', 'The Standard Price indicates the standard or normal price for a product on this price list', 1, 'D', 'PriceStd', 53015, 37, NULL, NULL, 60, NULL, 'N', 'N', 'Y', 'Y', NULL, 'Y', 1, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 957, NULL, 'N', 'N', NULL, NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql, mandatorylogic) - VALUES(53026, 0, 0, 'Y', TO_DATE('2007-07-26','RRRR-MM-DD'), TO_DATE('2007-07-26','RRRR-MM-DD'), 0, 0, 'Available Quantity', 'Available Quantity (On Hand - Reserved)', 'Quantity available to promise = On Hand minus Reserved Quantity', 1, 'D', 'QtyAvailable', 53015, 29, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'N', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 2238, NULL, 'N', 'N', NULL, NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql, mandatorylogic) - VALUES(53028, 0, 0, 'Y', TO_DATE('2007-07-26','RRRR-MM-DD'), TO_DATE('2007-07-26','RRRR-MM-DD'), 0, 0, 'Reserved Quantity', 'Reserved Quantity', 'The Reserved Quantity indicates the quantity of a product that is currently reserved.', 1, 'D', 'QtyReserved', 53015, 29, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', NULL, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 532, NULL, 'N', 'N', NULL, NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql, mandatorylogic) - VALUES(53027, 0, 0, 'Y', TO_DATE('2007-07-26','RRRR-MM-DD'), TO_DATE('2007-07-26','RRRR-MM-DD'), 0, 0, 'On Hand Quantity', 'On Hand Quantity', 'The On Hand Quantity indicates the quantity of a product that is on hand in a warehouse.', 1, 'D', 'QtyOnHand', 53015, 29, NULL, NULL, 22, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', NULL, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 530, NULL, 'N', 'N', NULL, NULL); - ---create views -CREATE OR REPLACE VIEW m_product_stock_v -AS -SELECT -ms.IsActive, ms.Created, ms.CreatedBy, ms.Updated, ms.UpdatedBy, -mp.VALUE, mp.help, (ms.qtyonhand - ms.qtyreserved) AS qtyavailable, ms.qtyonhand, -ms.qtyreserved, mp.description, mw.NAME AS warehouse, mw.m_warehouse_id, mw.ad_client_id, -mw.ad_org_id, mp.documentnote -FROM M_STORAGE ms -JOIN M_PRODUCT mp ON ms.m_product_id = mp.m_product_id -JOIN M_LOCATOR ml ON ms.m_locator_id = ml.m_locator_id -JOIN M_WAREHOUSE mw ON ml.m_warehouse_id = mw.m_warehouse_id -ORDER BY mw.NAME; - -CREATE OR REPLACE VIEW M_Product_SubstituteRelated_V AS -SELECT s.AD_Client_ID, s.AD_Org_ID, s.IsActive, s.Created, s.CreatedBy, s.Updated, s.UpdatedBy, s.m_product_id, s.substitute_id, s.description, 'S' AS ROWTYPE, (ms.qtyonhand - ms.qtyreserved) AS qtyavailable, ms.qtyonhand, ms.qtyreserved, mpr.pricestd, mpr.m_pricelist_version_id, mw.m_warehouse_id -FROM M_SUBSTITUTE s -JOIN M_STORAGE ms ON ms.m_product_id = s.substitute_id -JOIN M_PRODUCT mp ON ms.m_product_id = mp.m_product_id -JOIN M_LOCATOR ml ON ms.m_locator_id = ml.m_locator_id -JOIN M_WAREHOUSE mw ON ml.m_warehouse_id = mw.m_warehouse_id -JOIN M_PRODUCTPRICE mpr ON ms.m_product_id = mpr.m_product_id -UNION -SELECT r.ad_client_id, r.ad_org_id, r.IsActive, r.Created, r.CreatedBy, r.Updated, r.UpdatedBy, r.m_product_id, r.relatedproduct_id, r.description, 'R' AS ROWTYPE, (ms.qtyonhand - ms.qtyreserved) AS qtyavailable, ms.qtyonhand, ms.qtyreserved, mpr.pricestd, mpr.m_pricelist_version_id, mw.m_warehouse_id -FROM M_RELATEDPRODUCT r -JOIN M_STORAGE ms ON ms.m_product_id = r.relatedproduct_id -JOIN M_PRODUCT mp ON ms.m_product_id = mp.m_product_id -JOIN M_LOCATOR ml ON ms.m_locator_id = ml.m_locator_id -JOIN M_WAREHOUSE mw ON ml.m_warehouse_id = mw.m_warehouse_id -JOIN M_PRODUCTPRICE mpr ON ms.m_product_id = mpr.m_product_id; - - - -SELECT '038_AD_ModelValidatorPatch.sql' AS Filename FROM dual; --- Fixed wrong reference id for the entitytype column in the 020 script. - -UPDATE AD_COLUMN -SET AD_Reference_ID = 18, -AD_Reference_Value_ID = 389 -WHERE AD_Column_ID = 53263; - - - - -SELECT '039_FR_1782412.sql' AS Filename FROM dual; -CREATE TABLE AD_Document_Action_Access ( - AD_CLIENT_ID NUMBER(10,0) NOT NULL , - AD_ORG_ID NUMBER(10,0) NOT NULL , - ISACTIVE CHAR(1 BYTE) DEFAULT 'Y' NOT NULL , - CREATED DATE DEFAULT SYSDATE NOT NULL , - CREATEDBY NUMBER(10,0) NOT NULL , - UPDATED DATE DEFAULT SYSDATE NOT NULL , - UPDATEDBY NUMBER(10,0) NOT NULL , - C_DocType_ID NUMBER(10,0) NOT NULL, - AD_Role_ID NUMBER(10,0) NOT NULL, - AD_Ref_List_ID NUMBER(10,0) NOT NULL -); - - - -SET DEFINE OFF; -INSERT INTO AD_VAL_RULE(AD_VAL_RULE_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY,NAME,DESCRIPTION,TYPE,CODE,ENTITYTYPE)VALUES(51002,0,0,'Y',TO_DATE('2007-08-27','RRRR-MM-DD'),100,TO_DATE('2007-08-27','RRRR-MM-DD'),100,'AD_Ref_List_ID (Document Actions)','all document actions','S','AD_Ref_List.AD_Reference_ID=135','D'); -INSERT INTO AD_TABLE(AD_TABLE_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY,NAME,DESCRIPTION,HELP,TABLENAME,ISVIEW,ACCESSLEVEL,ENTITYTYPE,AD_WINDOW_ID,AD_VAL_RULE_ID,LOADSEQ,ISSECURITYENABLED,ISDELETEABLE,ISHIGHVOLUME,IMPORTTABLE,ISCHANGELOG,REPLICATIONTYPE,PO_WINDOW_ID,COPYCOLUMNSFROMTABLE)VALUES(53012,0,0,'Y',TO_DATE('2007-08-27','RRRR-MM-DD'),100,TO_DATE('2007-08-27','RRRR-MM-DD'),100,'Document Action Access','Define access to document type / document action / role combinations.','Define access rules (add roles with access) for client/role/doctype/document action combinations. If no rules are defined for a client/doctype/doc action combination all roles can access the document action.','AD_Document_Action_Access','N','6','D',NULL,NULL,0,'N','Y','N','N','N','L',NULL,'N'); -INSERT INTO AD_SEQUENCE(AD_SEQUENCE_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY,NAME,DESCRIPTION,VFORMAT,ISAUTOSEQUENCE,INCREMENTNO,STARTNO,CURRENTNEXT,CURRENTNEXTSYS,ISAUDITED,ISTABLEID,PREFIX,SUFFIX,STARTNEWYEAR)VALUES(53011,0,0,'Y',TO_DATE('2007-08-27','RRRR-MM-DD'),100,TO_DATE('2007-08-27','RRRR-MM-DD'),100,'AD_Document_Action_Access','Table AD_Document_Action_Access',NULL,'Y',1,1000000,1000001,50000,'N','Y',NULL,NULL,'N'); - -INSERT INTO AD_COLUMN(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC)VALUES(53222,0,0,'Y',TO_DATE('2007-08-27','RRRR-MM-DD'),TO_DATE('2007-08-27','RRRR-MM-DD'),100,100,'Client','Client/Tenant for this installation.','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.',0,'D','AD_Client_ID',53012,19,NULL,NULL,22,'@AD_Client_ID@','N','N','Y','N',NULL,'N',NULL,'N','N',NULL,NULL,NULL,NULL,'N',102,NULL,'N','N',NULL,NULL); -INSERT INTO AD_COLUMN(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC)VALUES(53223,0,0,'Y',TO_DATE('2007-08-27','RRRR-MM-DD'),TO_DATE('2007-08-27','RRRR-MM-DD'),100,100,'Organization','Organizational entity within client','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.',0,'D','AD_Org_ID',53012,19,NULL,104,22,'@AD_Org_ID@','N','N','Y','N',NULL,'N',NULL,'N','N',NULL,NULL,NULL,NULL,'N',113,NULL,'N','N',NULL,NULL); -INSERT INTO AD_COLUMN(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC)VALUES(53224,0,0,'Y',TO_DATE('2007-08-27','RRRR-MM-DD'),TO_DATE('2007-08-27','RRRR-MM-DD'),100,100,'Active','The record is active in the system','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. There are two reasons for de-activating and not deleting records: (1) The system requires the record for audit purposes. (2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries.',0,'D','IsActive',53012,20,NULL,NULL,1,NULL,'N','N','Y','Y',NULL,'N',NULL,'N','N',NULL,NULL,NULL,NULL,'N',348,NULL,'N','N',NULL,NULL); -INSERT INTO AD_COLUMN(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC)VALUES(53225,0,0,'Y',TO_DATE('2007-08-27','RRRR-MM-DD'),TO_DATE('2007-08-27','RRRR-MM-DD'),100,100,'Created','Date this record was created','The Created field indicates the date that this record was created.',0,'D','Created',53012,16,NULL,NULL,7,NULL,'N','N','Y','N',NULL,'N',NULL,'N','N',NULL,NULL,NULL,NULL,'N',245,NULL,'N','N',NULL,NULL); -INSERT INTO AD_COLUMN(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC)VALUES(53226,0,0,'Y',TO_DATE('2007-08-27','RRRR-MM-DD'),TO_DATE('2007-08-27','RRRR-MM-DD'),100,100,'Created By','User who created this records','The Created By field indicates the user who created this record.',0,'D','CreatedBy',53012,18,110,NULL,22,NULL,'N','N','Y','N',NULL,'N',NULL,'N','N',NULL,NULL,NULL,NULL,'N',246,NULL,'N','N',NULL,NULL); -INSERT INTO AD_COLUMN(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC)VALUES(53227,0,0,'Y',TO_DATE('2007-08-27','RRRR-MM-DD'),TO_DATE('2007-08-27','RRRR-MM-DD'),100,100,'Updated','Date this record was updated','The Updated field indicates the date that this record was updated.',0,'D','Updated',53012,16,NULL,NULL,7,NULL,'N','N','Y','N',NULL,'N',NULL,'N','N',NULL,NULL,NULL,NULL,'N',607,NULL,'N','N',NULL,NULL); -INSERT INTO AD_COLUMN(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC)VALUES(53228,0,0,'Y',TO_DATE('2007-08-27','RRRR-MM-DD'),TO_DATE('2007-08-27','RRRR-MM-DD'),100,100,'Updated By','User who updated this records','The Updated By field indicates the user who updated this record.',0,'D','UpdatedBy',53012,18,110,NULL,22,NULL,'N','N','Y','N',NULL,'N',NULL,'N','N',NULL,NULL,NULL,NULL,'N',608,NULL,'N','N',NULL,NULL); -INSERT INTO AD_COLUMN(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC)VALUES(53229,0,0,'Y',TO_DATE('2007-08-27','RRRR-MM-DD'),TO_DATE('2007-08-27','RRRR-MM-DD'),100,100,'Document Type','Document type or rules','The Document Type determines document sequence and processing rules',0,'D','C_DocType_ID',53012,19,NULL,NULL,22,NULL,'N','Y','Y','N',NULL,'N',NULL,'N','N',NULL,NULL,NULL,NULL,'N',196,NULL,'N','N',NULL,NULL); -INSERT INTO AD_COLUMN(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC)VALUES(53230,0,0,'Y',TO_DATE('2007-08-27','RRRR-MM-DD'),TO_DATE('2007-08-27','RRRR-MM-DD'),100,100,'Role','Responsibility Role','The Role determines security and access a user who has this Role will have in the System.',0,'D','AD_Role_ID',53012,19,NULL,NULL,22,NULL,'N','Y','Y','N',NULL,'N',NULL,'N','N',NULL,NULL,NULL,NULL,'N',123,NULL,'N','N',NULL,NULL); -INSERT INTO AD_COLUMN(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC)VALUES(53231,0,0,'Y',TO_DATE('2007-08-27','RRRR-MM-DD'),TO_DATE('2007-08-27','RRRR-MM-DD'),100,100,'Reference List','Reference List based on Table',NULL,0,'D','AD_Ref_List_ID',53012,19,NULL,51002,22,NULL,'N','Y','Y','N',NULL,'N',NULL,'N','N',NULL,NULL,NULL,NULL,'N',119,NULL,'N','N',NULL,NULL); - -INSERT INTO AD_TAB(AD_TAB_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY,NAME,DESCRIPTION,HELP,AD_TABLE_ID,AD_WINDOW_ID,SEQNO,TABLEVEL,ISSINGLEROW,ISINFOTAB,ISTRANSLATIONTAB,ISREADONLY,AD_COLUMN_ID,HASTREE,WHERECLAUSE,ORDERBYCLAUSE,COMMITWARNING,AD_PROCESS_ID,PROCESSING,AD_IMAGE_ID,IMPORTFIELDS,AD_COLUMNSORTORDER_ID,AD_COLUMNSORTYESNO_ID,ISSORTTAB,ENTITYTYPE,INCLUDED_TAB_ID,READONLYLOGIC,DISPLAYLOGIC,ISINSERTRECORD,ISADVANCEDTAB)VALUES(53013,0,0,'Y',TO_DATE('2007-08-29','RRRR-MM-DD'),100,TO_DATE('2007-08-29','RRRR-MM-DD'),100,'Document Action Access','Define access to document type / document action / role combinations.','Define access to document type / document action / role combinations.',53012,111,90,1,'N','N','N','N',53230,'N',NULL,NULL,NULL,NULL,'N',NULL,'N',NULL,NULL,'N','D',NULL,NULL,NULL,'Y','N'); - -INSERT INTO AD_FIELD(AD_FIELD_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY,NAME,DESCRIPTION,HELP,ISCENTRALLYMAINTAINED,AD_TAB_ID,AD_COLUMN_ID,AD_FIELDGROUP_ID,ISDISPLAYED,DISPLAYLOGIC,DISPLAYLENGTH,ISREADONLY,SEQNO,SORTNO,ISSAMELINE,ISHEADING,ISFIELDONLY,ISENCRYPTED,ENTITYTYPE,OBSCURETYPE,AD_REFERENCE_ID,ISMANDATORY)VALUES(53241,0,0,'Y',TO_DATE('2007-08-29','RRRR-MM-DD'),100,TO_DATE('2007-08-29','RRRR-MM-DD'),100,'Active','The record is active in the system','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. There are two reasons for de-activating and not deleting records: (1) The system requires the record for audit purposes. (2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries.','Y',53013,53224,NULL,'Y',NULL,1,'N',50,NULL,'N','N','N','N','D',NULL,NULL,NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY,NAME,DESCRIPTION,HELP,ISCENTRALLYMAINTAINED,AD_TAB_ID,AD_COLUMN_ID,AD_FIELDGROUP_ID,ISDISPLAYED,DISPLAYLOGIC,DISPLAYLENGTH,ISREADONLY,SEQNO,SORTNO,ISSAMELINE,ISHEADING,ISFIELDONLY,ISENCRYPTED,ENTITYTYPE,OBSCURETYPE,AD_REFERENCE_ID,ISMANDATORY)VALUES(53242,0,0,'Y',TO_DATE('2007-08-29','RRRR-MM-DD'),100,TO_DATE('2007-08-29','RRRR-MM-DD'),100,'Client','Client/Tenant for this installation.','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y',53013,53222,NULL,'Y',NULL,22,'N',10,NULL,'N','N','N','N','D',NULL,NULL,NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY,NAME,DESCRIPTION,HELP,ISCENTRALLYMAINTAINED,AD_TAB_ID,AD_COLUMN_ID,AD_FIELDGROUP_ID,ISDISPLAYED,DISPLAYLOGIC,DISPLAYLENGTH,ISREADONLY,SEQNO,SORTNO,ISSAMELINE,ISHEADING,ISFIELDONLY,ISENCRYPTED,ENTITYTYPE,OBSCURETYPE,AD_REFERENCE_ID,ISMANDATORY)VALUES(53244,0,0,'Y',TO_DATE('2007-08-29','RRRR-MM-DD'),100,TO_DATE('2007-08-29','RRRR-MM-DD'),100,'Document Type','Document type or rules','The Document Type determines document sequence and processing rules','Y',53013,53229,NULL,'Y',NULL,22,'N',30,NULL,'N','N','N','N','D',NULL,NULL,NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY,NAME,DESCRIPTION,HELP,ISCENTRALLYMAINTAINED,AD_TAB_ID,AD_COLUMN_ID,AD_FIELDGROUP_ID,ISDISPLAYED,DISPLAYLOGIC,DISPLAYLENGTH,ISREADONLY,SEQNO,SORTNO,ISSAMELINE,ISHEADING,ISFIELDONLY,ISENCRYPTED,ENTITYTYPE,OBSCURETYPE,AD_REFERENCE_ID,ISMANDATORY)VALUES(53245,0,0,'Y',TO_DATE('2007-08-29','RRRR-MM-DD'),100,TO_DATE('2007-08-29','RRRR-MM-DD'),100,'Organization','Organizational entity within client','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y',53013,53223,NULL,'Y',NULL,22,'N',20,NULL,'N','N','N','N','D',NULL,NULL,NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY,NAME,DESCRIPTION,HELP,ISCENTRALLYMAINTAINED,AD_TAB_ID,AD_COLUMN_ID,AD_FIELDGROUP_ID,ISDISPLAYED,DISPLAYLOGIC,DISPLAYLENGTH,ISREADONLY,SEQNO,SORTNO,ISSAMELINE,ISHEADING,ISFIELDONLY,ISENCRYPTED,ENTITYTYPE,OBSCURETYPE,AD_REFERENCE_ID,ISMANDATORY)VALUES(53246,0,0,'Y',TO_DATE('2007-08-29','RRRR-MM-DD'),100,TO_DATE('2007-08-29','RRRR-MM-DD'),100,'Reference List','Reference List based on Table','The Reference List field indicates a list of reference values from a database tables. Reference lists populate drop down list boxes in data entry screens','Y',53013,53231,NULL,'Y',NULL,22,'N',40,NULL,'N','N','N','N','D',NULL,NULL,NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY,NAME,DESCRIPTION,HELP,ISCENTRALLYMAINTAINED,AD_TAB_ID,AD_COLUMN_ID,AD_FIELDGROUP_ID,ISDISPLAYED,DISPLAYLOGIC,DISPLAYLENGTH,ISREADONLY,SEQNO,SORTNO,ISSAMELINE,ISHEADING,ISFIELDONLY,ISENCRYPTED,ENTITYTYPE,OBSCURETYPE,AD_REFERENCE_ID,ISMANDATORY)VALUES(53247,0,0,'Y',TO_DATE('2007-08-29','RRRR-MM-DD'),100,TO_DATE('2007-08-29','RRRR-MM-DD'),100,'Role','Responsibility Role','The Role determines security and access a user who has this Role will have in the System.','Y',53013,53230,NULL,'N',NULL,22,'N',0,NULL,'N','N','N','N','D',NULL,NULL,NULL); - - - - - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_column_id) + 1 - FROM AD_COLUMN - WHERE ad_column_id < 1000000) - WHERE NAME = 'AD_Column'; - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_field_id) + 1 - FROM AD_FIELD - WHERE ad_field_id < 1000000) - WHERE NAME = 'AD_Field'; - - - UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_column_id) + 1 - FROM AD_COLUMN - WHERE ad_column_id < 1000000) - WHERE NAME = 'AD_Sequence'; - - UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_field_id) + 1 - FROM AD_FIELD - WHERE ad_field_id < 1000000) - WHERE NAME = 'AD_Tab'; - - UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_message_id) + 1 - FROM AD_MESSAGE - WHERE ad_message_id < 1000000) - WHERE NAME = 'AD_Table'; - - UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_element_id) + 1 - FROM AD_ELEMENT - WHERE ad_element_id < 1000000) - WHERE NAME = 'AD_Window'; - - UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_column_id) + 1 - FROM AD_COLUMN - WHERE ad_column_id < 1000000) - WHERE NAME = 'AD_Val_Rule'; - - - - - DELETE FROM AD_Document_Action_Access; - - INSERT INTO AD_DOCUMENT_ACTION_ACCESS ( - AD_CLIENT_ID , - AD_ORG_ID , - ISACTIVE , - CREATED , - CREATEDBY , - UPDATED , - UPDATEDBY , - C_DOCTYPE_ID , - AD_ROLE_ID , - AD_REF_LIST_ID - ) - SELECT - client.AD_Client_ID, - 0, - 'Y', - SYSDATE, - 0, - SYSDATE, - 0, - doctype.C_DocType_ID, - rol.AD_Role_ID, - action.AD_Ref_List_ID - FROM AD_CLIENT client - INNER JOIN C_DOCTYPE doctype ON (doctype.AD_Client_ID=client.AD_Client_ID) - INNER JOIN AD_REF_LIST action ON (action.AD_Reference_ID=135) - INNER JOIN AD_ROLE rol ON (rol.AD_Client_ID=client.AD_Client_ID) - ; - - - - -SELECT '040_FR1840016.sql' AS Filename FROM dual; --- Nov 27, 2007 11:00:14 PM COT --- FR 1840016 - Avoid usage of clearing accounts -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,Help,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53227,0,'IsPostIfClearingEqual',TO_DATE('2007-11-27 23:00:10','YYYY-MM-DD HH24:MI:SS'),100,'This flag controls if Adempiere must post when clearing (transit) and final accounts are the same','D',NULL,'Y','Post if Clearing Equal','Post if Clearing Equal',TO_DATE('2007-11-27 23:00:10','YYYY-MM-DD HH24:MI:SS'),100) -/ - --- Nov 27, 2007 11:00:16 PM COT --- FR 1840016 - Avoid usage of clearing accounts -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53227 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -/ - --- Nov 27, 2007 11:00:45 PM COT --- FR 1840016 - Avoid usage of clearing accounts -UPDATE AD_COLUMN SET ColumnName='IsPostIfClearingEqual', NAME='Post if Clearing Equal', Description='This flag controls if Adempiere must post when clearing (transit) and final accounts are the same', Help=NULL WHERE AD_Element_ID=53227 -/ - --- Nov 27, 2007 11:00:45 PM COT --- FR 1840016 - Avoid usage of clearing accounts -UPDATE AD_FIELD SET NAME='Post if Clearing Equal', Description='This flag controls if Adempiere must post when clearing (transit) and final accounts are the same', Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_COLUMN WHERE AD_Element_ID=53227) AND IsCentrallyMaintained='Y' -/ - --- Nov 27, 2007 11:00:45 PM COT --- FR 1840016 - Avoid usage of clearing accounts -UPDATE AD_PROCESS_PARA SET ColumnName='IsPostIfClearingEqual', NAME='Post if Clearing Equal', Description='This flag controls if Adempiere must post when clearing (transit) and final accounts are the same', Help=NULL, AD_Element_ID=53227 WHERE UPPER(ColumnName)='ISPOSTIFCLEARINGEQUAL' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -/ - --- Nov 27, 2007 11:00:45 PM COT --- FR 1840016 - Avoid usage of clearing accounts -UPDATE AD_PROCESS_PARA SET ColumnName='IsPostIfClearingEqual', NAME='Post if Clearing Equal', Description='This flag controls if Adempiere must post when clearing (transit) and final accounts are the same', Help=NULL WHERE AD_Element_ID=53227 AND IsCentrallyMaintained='Y' -/ - --- Nov 27, 2007 11:00:45 PM COT --- FR 1840016 - Avoid usage of clearing accounts -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Post if Clearing Equal', NAME='Post if Clearing Equal' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=53227) -/ - --- Nov 27, 2007 11:00:46 PM COT --- FR 1840016 - Avoid usage of clearing accounts -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Post if Clearing Equal', NAME='Post if Clearing Equal' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=53227) -/ - --- Nov 27, 2007 11:01:30 PM COT --- FR 1840016 - Avoid usage of clearing accounts -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,53266,53227,0,20,265,'IsPostIfClearingEqual',TO_DATE('2007-11-27 23:01:29','YYYY-MM-DD HH24:MI:SS'),100,'Y','This flag controls if Adempiere must post when clearing (transit) and final accounts are the same','D',1,'Y','N','N','N','N','N','N','N','N','N','Y','Post if Clearing Equal',0,TO_DATE('2007-11-27 23:01:29','YYYY-MM-DD HH24:MI:SS'),100,0) -/ - --- Nov 27, 2007 11:01:30 PM COT --- FR 1840016 - Avoid usage of clearing accounts -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=53266 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -/ - --- Nov 27, 2007 11:01:45 PM COT --- FR 1840016 - Avoid usage of clearing accounts -ALTER TABLE C_ACCTSCHEMA ADD IsPostIfClearingEqual CHAR(1) DEFAULT 'Y' CHECK (IsPostIfClearingEqual IN ('Y','N')) -/ - --- Nov 27, 2007 11:07:24 PM COT --- FR 1840016 - Avoid usage of clearing accounts -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,Updated,UpdatedBy) VALUES (0,53266,53281,0,199,TO_DATE('2007-11-27 23:07:22','YYYY-MM-DD HH24:MI:SS'),100,'This flag controls if Adempiere must post when clearing (transit) and final accounts are the same',1,'D','Y','Y','Y','N','N','N','N','Y','Post if Clearing Equal',270,TO_DATE('2007-11-27 23:07:22','YYYY-MM-DD HH24:MI:SS'),100) -/ - --- Nov 27, 2007 11:07:24 PM COT --- FR 1840016 - Avoid usage of clearing accounts -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=53281 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -/ - - -SELECT '041_FR1814291.sql' AS Filename FROM dual; -SET DEFINE OFF - --- Dec 1, 2007 1:51:24 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_REF_LIST SET NAME='PO Commitment & Reservation',Updated=TO_DATE('2007-12-01 01:51:24','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Ref_List_ID=785 -/ - --- Dec 1, 2007 1:51:24 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_REF_LIST_TRL SET NAME = 'Compromisos Compra y Reservas', IsTranslated='Y' WHERE AD_Ref_List_ID=785 AND AD_LANGUAGE LIKE 'es_%' -/ - --- Dec 1, 2007 1:52:54 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_REF_LIST SET NAME='PO Commitment only',Updated=TO_DATE('2007-12-01 01:52:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Ref_List_ID=784 -/ - --- Dec 1, 2007 1:52:54 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_REF_LIST_TRL SET NAME = 'Solamente Compromiso Compras', IsTranslated='Y' WHERE AD_Ref_List_ID=784 AND AD_LANGUAGE LIKE 'es_%' -/ - --- Dec 1, 2007 1:53:53 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53223,359,TO_DATE('2007-12-01 01:53:45','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','PO/SO Commitment & Reservation',TO_DATE('2007-12-01 01:53:45','YYYY-MM-DD HH24:MI:SS'),100,'A') -/ - --- Dec 1, 2007 1:53:53 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53223 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -/ - --- Dec 1, 2007 1:52:54 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_REF_LIST_TRL SET NAME = 'Compromisos (ambos) y Reservas', IsTranslated='Y' WHERE AD_Ref_List_ID=53223 AND AD_LANGUAGE LIKE 'es_%' -/ - --- Dec 1, 2007 1:54:46 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53224,359,TO_DATE('2007-12-01 01:54:31','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','SO Commitment only',TO_DATE('2007-12-01 01:54:31','YYYY-MM-DD HH24:MI:SS'),100,'S') -/ - --- Dec 1, 2007 1:54:46 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53224 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -/ - --- Dec 1, 2007 1:52:54 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_REF_LIST_TRL SET NAME = 'Solamente Compromiso Ventas', IsTranslated='Y' WHERE AD_Ref_List_ID=53224 AND AD_LANGUAGE LIKE 'es_%' -/ - --- Dec 1, 2007 1:55:44 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53225,359,TO_DATE('2007-12-01 01:55:35','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','PO/SO Commitment',TO_DATE('2007-12-01 01:55:35','YYYY-MM-DD HH24:MI:SS'),100,'O') -/ - --- Dec 1, 2007 1:55:44 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53225 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -/ - --- Dec 1, 2007 1:52:54 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_REF_LIST_TRL SET NAME = 'Solamente Compromisos (ambos)', IsTranslated='Y' WHERE AD_Ref_List_ID=53225 AND AD_LANGUAGE LIKE 'es_%' -/ - --- Dec 1, 2007 1:58:18 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,Help,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53228,0,'CommitmentOffsetSales_Acct',TO_DATE('2007-12-01 01:58:04','YYYY-MM-DD HH24:MI:SS'),100,'Budgetary Commitment Offset Account for Sales','D','The Commitment Offset Account is used for posting Commitments Sales and Reservations. It is usually an off-balance sheet and gain-and-loss account.','Y','Commitment Offset Sales','Commitment Offset Sales',TO_DATE('2007-12-01 01:58:04','YYYY-MM-DD HH24:MI:SS'),100) -/ - --- Dec 1, 2007 1:58:18 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53228 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -/ - --- Dec 1, 2007 1:59:04 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,53267,53228,0,25,266,'CommitmentOffsetSales_Acct',TO_DATE('2007-12-01 01:58:56','YYYY-MM-DD HH24:MI:SS'),100,'Budgetary Commitment Offset Account for Sales','D',10,'The Commitment Offset Account is used for posting Commitments Sales and Reservations. It is usually an off-balance sheet and gain-and-loss account.','Y','N','N','N','N','N','N','N','N','N','Y','Commitment Offset Sales',TO_DATE('2007-12-01 01:58:56','YYYY-MM-DD HH24:MI:SS'),100,0) -/ - --- Dec 1, 2007 1:59:04 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=53267 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -/ - --- Dec 1, 2007 1:59:26 AM COT --- FR 1814291 - Sales Commitment Offset -ALTER TABLE C_ACCTSCHEMA_GL ADD CommitmentOffsetSales_Acct NUMBER(10) -/ - --- FR 1814291 - Sales Commitment Offset -UPDATE C_ACCTSCHEMA_GL SET CommitmentOffsetSales_Acct = CommitmentOffset_Acct -/ - --- Dec 1, 2007 2:00:11 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_COLUMN SET IsMandatory='Y',Updated=TO_DATE('2007-12-01 02:00:11','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=53267 -/ - --- Dec 1, 2007 2:00:11 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_FIELD SET NAME='Commitment Offset Sales', Description='Budgetary Commitment Offset Account for Sales', Help='The Commitment Offset Account is used for posting Commitments Sales and Reservations. It is usually an off-balance sheet and gain-and-loss account.' WHERE AD_Column_ID=53267 AND IsCentrallyMaintained='Y' -/ - --- Dec 1, 2007 2:00:20 AM COT --- FR 1814291 - Sales Commitment Offset -ALTER TABLE C_ACCTSCHEMA_GL MODIFY CommitmentOffsetSales_Acct NOT NULL -/ - --- Dec 1, 2007 2:02:34 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_FIELD SET IsSameLine='N', SeqNo=160,Updated=TO_DATE('2007-12-01 02:02:34','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=12375 -/ - --- Dec 1, 2007 2:03:04 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,Updated,UpdatedBy) VALUES (0,53267,53282,0,200,TO_DATE('2007-12-01 02:02:56','YYYY-MM-DD HH24:MI:SS'),100,'Budgetary Commitment Offset Account for Sales',10,'D','The Commitment Offset Account is used for posting Commitments Sales and Reservations. It is usually an off-balance sheet and gain-and-loss account.','Y','Y','Y','N','N','N','N','Y','Commitment Offset Sales',170,TO_DATE('2007-12-01 02:02:56','YYYY-MM-DD HH24:MI:SS'),100) -/ - --- Dec 1, 2007 2:03:04 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=53282 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -/ - --- Dec 1, 2007 2:55:04 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO C_ELEMENTVALUE (AD_Client_ID,AD_Org_ID,AccountSign,AccountType,C_ElementValue_ID,C_Element_ID,Created,CreatedBy,IsActive,IsBankAccount,IsDocControlled,IsForeignCurrency,IsSummary,NAME,PostActual,PostBudget,PostEncumbrance,PostStatistical,Updated,UpdatedBy,VALUE) VALUES (11,0,'N','M',50000,105,TO_DATE('2007-12-01 02:55:03','YYYY-MM-DD HH24:MI:SS'),100,'Y','N','N','N','N','SO Commitment','Y','Y','Y','Y',TO_DATE('2007-12-01 02:55:03','YYYY-MM-DD HH24:MI:SS'),100,'953') -/ - --- Dec 1, 2007 2:55:04 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO C_ELEMENTVALUE_TRL (AD_LANGUAGE,C_ElementValue_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.C_ElementValue_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, C_ELEMENTVALUE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.C_ElementValue_ID=50000 AND EXISTS (SELECT * FROM C_ELEMENTVALUE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.C_ElementValue_ID!=t.C_ElementValue_ID) -/ - --- Dec 1, 2007 2:55:04 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO AD_TREENODE (AD_Client_ID,AD_Org_ID, IsActive,Created,CreatedBy,Updated,UpdatedBy, AD_Tree_ID, Node_ID, Parent_ID, SeqNo) SELECT t.AD_Client_ID,0, 'Y', SYSDATE, 0, SYSDATE, 0,t.AD_Tree_ID, 50000, 0, 999 FROM AD_TREE t WHERE t.AD_Client_ID=11 AND t.IsActive='Y' AND EXISTS (SELECT * FROM C_ELEMENT ae WHERE ae.C_Element_ID=105 AND t.AD_Tree_ID=ae.AD_Tree_ID) AND NOT EXISTS (SELECT * FROM AD_TREENODE e WHERE e.AD_Tree_ID=t.AD_Tree_ID AND Node_ID=50000) -/ - --- Dec 1, 2007 2:55:08 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=0, SeqNo=0, Updated=SYSDATE WHERE AD_Tree_ID=101 AND Node_ID=506 -/ - --- Dec 1, 2007 2:55:08 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=0, SeqNo=1, Updated=SYSDATE WHERE AD_Tree_ID=101 AND Node_ID=584 -/ - --- Dec 1, 2007 2:55:08 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=0, SeqNo=2, Updated=SYSDATE WHERE AD_Tree_ID=101 AND Node_ID=624 -/ - --- Dec 1, 2007 2:55:08 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=0, SeqNo=3, Updated=SYSDATE WHERE AD_Tree_ID=101 AND Node_ID=632 -/ - --- Dec 1, 2007 2:55:08 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=0, SeqNo=4, Updated=SYSDATE WHERE AD_Tree_ID=101 AND Node_ID=429 -/ - --- Dec 1, 2007 2:55:08 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=0, SeqNo=5, Updated=SYSDATE WHERE AD_Tree_ID=101 AND Node_ID=449 -/ - --- Dec 1, 2007 2:55:08 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=0, SeqNo=6, Updated=SYSDATE WHERE AD_Tree_ID=101 AND Node_ID=783 -/ - --- Dec 1, 2007 2:55:08 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=0, SeqNo=7, Updated=SYSDATE WHERE AD_Tree_ID=101 AND Node_ID=704 -/ - --- Dec 1, 2007 2:55:08 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=0, SeqNo=8, Updated=SYSDATE WHERE AD_Tree_ID=101 AND Node_ID=716 -/ - --- Dec 1, 2007 2:55:08 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=0, SeqNo=9, Updated=SYSDATE WHERE AD_Tree_ID=101 AND Node_ID=728 -/ - --- Dec 1, 2007 2:55:08 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=0, SeqNo=10, Updated=SYSDATE WHERE AD_Tree_ID=101 AND Node_ID=731 -/ - --- Dec 1, 2007 2:55:08 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=0, SeqNo=11, Updated=SYSDATE WHERE AD_Tree_ID=101 AND Node_ID=734 -/ - --- Dec 1, 2007 2:55:08 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=734, SeqNo=0, Updated=SYSDATE WHERE AD_Tree_ID=101 AND Node_ID=735 -/ - --- Dec 1, 2007 2:55:09 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=734, SeqNo=1, Updated=SYSDATE WHERE AD_Tree_ID=101 AND Node_ID=736 -/ - --- Dec 1, 2007 2:55:09 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=734, SeqNo=2, Updated=SYSDATE WHERE AD_Tree_ID=101 AND Node_ID=50000 -/ - --- Dec 1, 2007 2:55:09 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=734, SeqNo=3, Updated=SYSDATE WHERE AD_Tree_ID=101 AND Node_ID=737 -/ - --- Dec 1, 2007 2:55:54 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO C_VALIDCOMBINATION (AD_Client_ID,AD_Org_ID,Account_ID,C_AcctSchema_ID,C_ValidCombination_ID,Combination,Created,CreatedBy,Description,IsActive,IsFullyQualified,Updated,UpdatedBy) VALUES (11,11,50000,101,50000,'HQ-953-_-_-_-_',TO_DATE('2007-12-01 02:55:54','YYYY-MM-DD HH24:MI:SS'),100,'HQ-SO Commitment-_-_-_-_','Y','Y',TO_DATE('2007-12-01 02:55:54','YYYY-MM-DD HH24:MI:SS'),100) -/ - --- Dec 1, 2007 2:56:01 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE C_ACCTSCHEMA_GL SET CommitmentOffsetSales_Acct=50000,Updated=TO_DATE('2007-12-01 02:56:01','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_AcctSchema_ID=101 -/ - -SELECT '042_fix_typo_in_help.sql' AS Filename FROM dual; -UPDATE AD_WINDOW - SET HELP = - 'The User Window allows you to maintain User of the system. Users can log into the system and have access to functionality via one or more roles. A user can also be a business partner contact.' - WHERE ad_window_id = 108 AND HELP LIKE '%aprtner%'; - -SELECT '043_version331.sql' AS Filename FROM dual; -UPDATE AD_SYSTEM - SET releaseno = '331b', - VERSION = '2007-12-05' - WHERE ad_system_id = 0 AND ad_client_id = 0; - - - -SELECT '044_BF_1824260.sql' AS Filename FROM dual; --- placeholder - script is just for postgres -SELECT '045_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '046_FR1800371_SystemConfiguratorEnhancements.sql' AS Filename FROM dual; -SET SQLBLANKLINES ON --- Dec 15, 2007 12:31:13 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,ReadOnlyLogic,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,53270,1682,0,18,389,50009,'EntityType',TO_DATE('2007-12-15 12:31:11','YYYY-MM-DD HH24:MI:SS'),100,'U','Dictionary Entity Type; Determines ownership and synchronization','D',40,'The Entity Types "Dictionary", "Adempiere" and "Application" might be automatically synchronized and customizations deleted or overwritten. - -FOR customizations, copy THE entity AND SELECT "User"!','Y','N','N','N','N','Y','N','N','N','N','Y','Entity TYPE','@EntityType@=D',0,TO_DATE('2007-12-15 12:31:11','YYYY-MM-DD HH24:MI:SS'),100,1.000000000000) -; - --- Dec 15, 2007 12:31:13 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=53270 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Dec 15, 2007 12:31:24 PM COT --- FR 1800371 System Configurator Enhancements -ALTER TABLE AD_SYSCONFIG ADD EntityType VARCHAR2(40) DEFAULT 'U' NOT NULL -; - --- Dec 15, 2007 12:33:53 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,Help,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53229,0,'ConfigurationLevel',TO_DATE('2007-12-15 12:33:52','YYYY-MM-DD HH24:MI:SS'),100,'Configuration Level for this parameter','D','Configuration Level for this parameter -S - just allowed SYSTEM configuration -C - client configurable parameter -O - org configurable parameter','Y','Configuration LEVEL','Configuration LEVEL FOR this parameter',TO_DATE('2007-12-15 12:33:52','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Dec 15, 2007 12:33:53 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53229 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - --- Dec 15, 2007 12:34:46 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_REFERENCE (AD_Client_ID,AD_Org_ID,AD_Reference_ID,Created,CreatedBy,Description,EntityType,IsActive,NAME,Updated,UpdatedBy,ValidationType) VALUES (0,0,53222,TO_DATE('2007-12-15 12:34:44','YYYY-MM-DD HH24:MI:SS'),100,'Configuration Level','D','Y','AD_SysConfig ConfigurationLevel',TO_DATE('2007-12-15 12:34:44','YYYY-MM-DD HH24:MI:SS'),100,'L') -; - --- Dec 15, 2007 12:34:46 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_REFERENCE_TRL (AD_LANGUAGE,AD_Reference_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Reference_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REFERENCE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Reference_ID=53222 AND EXISTS (SELECT * FROM AD_REFERENCE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Reference_ID!=t.AD_Reference_ID) -; - --- Dec 15, 2007 12:35:24 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,Description,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53228,53222,TO_DATE('2007-12-15 12:35:20','YYYY-MM-DD HH24:MI:SS'),100,'Just allowed system configuration','D','Y','System',TO_DATE('2007-12-15 12:35:20','YYYY-MM-DD HH24:MI:SS'),100,'S') -; - --- Dec 15, 2007 12:35:24 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53228 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- Dec 15, 2007 12:35:43 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,Description,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53229,53222,TO_DATE('2007-12-15 12:35:42','YYYY-MM-DD HH24:MI:SS'),100,'Allowed system and client configuration','D','Y','Client',TO_DATE('2007-12-15 12:35:42','YYYY-MM-DD HH24:MI:SS'),100,'C') -; - --- Dec 15, 2007 12:35:43 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53229 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- Dec 15, 2007 12:36:00 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,Description,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53230,53222,TO_DATE('2007-12-15 12:36:00','YYYY-MM-DD HH24:MI:SS'),100,'Allowed system, client and organization configuration','D','Y','Organization',TO_DATE('2007-12-15 12:36:00','YYYY-MM-DD HH24:MI:SS'),100,'O') -; - --- Dec 15, 2007 12:36:01 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53230 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- Dec 15, 2007 12:36:39 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,53271,53229,0,17,53222,50009,'ConfigurationLevel',TO_DATE('2007-12-15 12:36:38','YYYY-MM-DD HH24:MI:SS'),100,'S','Configuration Level for this parameter','D',1,'Configuration Level for this parameter -S - just allowed SYSTEM configuration -C - client configurable parameter -O - org configurable parameter','Y','N','N','N','N','N','N','N','N','N','Y','Configuration LEVEL',0,TO_DATE('2007-12-15 12:36:38','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Dec 15, 2007 12:36:39 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=53271 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Dec 15, 2007 12:36:53 PM COT --- FR 1800371 System Configurator Enhancements -ALTER TABLE AD_SYSCONFIG ADD ConfigurationLevel CHAR(1) DEFAULT 'S' -; - --- Dec 15, 2007 12:41:18 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,53271,53285,0,50009,TO_DATE('2007-12-15 12:41:14','YYYY-MM-DD HH24:MI:SS'),100,'Configuration Level for this parameter',1,'D','Configuration Level for this parameter -S - just allowed SYSTEM configuration -C - client configurable parameter -O - org configurable parameter','Y','Y','Y','N','N','N','N','N','Configuration LEVEL',TO_DATE('2007-12-15 12:41:14','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Dec 15, 2007 12:41:18 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=53285 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- Dec 15, 2007 12:41:25 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,53270,53286,0,50009,TO_DATE('2007-12-15 12:41:18','YYYY-MM-DD HH24:MI:SS'),100,'Dictionary Entity Type; Determines ownership and synchronization',40,'D','The Entity Types "Dictionary", "Adempiere" and "Application" might be automatically synchronized and customizations deleted or overwritten. - -FOR customizations, copy THE entity AND SELECT "User"!','Y','Y','Y','N','N','N','N','N','Entity TYPE',TO_DATE('2007-12-15 12:41:18','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Dec 15, 2007 12:41:26 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=53286 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- Dec 15, 2007 12:41:38 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_FIELD SET SeqNo=30,IsDisplayed='Y' WHERE AD_Field_ID=50164 -; - --- Dec 15, 2007 12:41:39 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_FIELD SET SeqNo=40,IsDisplayed='Y' WHERE AD_Field_ID=50163 -; - --- Dec 15, 2007 12:41:39 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_FIELD SET SeqNo=50,IsDisplayed='Y' WHERE AD_Field_ID=50166 -; - --- Dec 15, 2007 12:41:39 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_FIELD SET SeqNo=60,IsDisplayed='Y' WHERE AD_Field_ID=53286 -; - --- Dec 15, 2007 12:41:39 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_FIELD SET SeqNo=70,IsDisplayed='Y' WHERE AD_Field_ID=53285 -; - --- Dec 15, 2007 12:41:39 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_FIELD SET SeqNo=80,IsDisplayed='Y' WHERE AD_Field_ID=50161 -; - --- Dec 15, 2007 12:42:07 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_FIELD SET DisplayLength=20,Updated=TO_DATE('2007-12-15 12:42:07','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=53286 -; - --- Dec 15, 2007 12:42:18 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_FIELD SET DisplayLength=20, IsSameLine='Y',Updated=TO_DATE('2007-12-15 12:42:18','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=53285 -; - --- Dec 15, 2007 12:49:08 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_SYSCONFIG SET EntityType='D',Updated=TO_DATE('2007-12-15 12:49:08','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_SysConfig_ID=50000 -; - --- Dec 15, 2007 12:49:16 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_SYSCONFIG SET EntityType='D',Updated=TO_DATE('2007-12-15 12:49:16','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_SysConfig_ID=50005 -; - --- Dec 15, 2007 12:49:26 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_SYSCONFIG SET EntityType='D',Updated=TO_DATE('2007-12-15 12:49:25','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_SysConfig_ID=50009 -; - --- Dec 15, 2007 12:49:33 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_SYSCONFIG SET EntityType='D',Updated=TO_DATE('2007-12-15 12:49:32','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_SysConfig_ID=50010 -; - --- Dec 15, 2007 12:49:42 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_SYSCONFIG SET EntityType='D',Updated=TO_DATE('2007-12-15 12:49:42','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_SysConfig_ID=50004 -; - --- Dec 15, 2007 12:49:49 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_SYSCONFIG SET EntityType='D',Updated=TO_DATE('2007-12-15 12:49:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_SysConfig_ID=50006 -; - --- Dec 15, 2007 12:49:58 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_SYSCONFIG SET EntityType='D',Updated=TO_DATE('2007-12-15 12:49:58','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_SysConfig_ID=50001 -; - --- Dec 15, 2007 12:50:06 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_SYSCONFIG SET EntityType='D',Updated=TO_DATE('2007-12-15 12:50:06','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_SysConfig_ID=50007 -; - --- Dec 15, 2007 12:50:14 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_SYSCONFIG SET EntityType='D',Updated=TO_DATE('2007-12-15 12:50:14','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_SysConfig_ID=50002 -; - --- Dec 15, 2007 12:50:29 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_SYSCONFIG SET EntityType='D',Updated=TO_DATE('2007-12-15 12:50:29','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_SysConfig_ID=50008 -; - --- Dec 15, 2007 12:50:51 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_SYSCONFIG SET EntityType='D',Updated=TO_DATE('2007-12-15 12:50:51','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_SysConfig_ID=50003 -; - --- Dec 15, 2007 12:51:28 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_TAB SET OrderByClause='Name',Updated=TO_DATE('2007-12-15 12:51:28','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=50009 -; - --- Dec 15, 2007 1:24:58 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_MESSAGE (AD_Client_ID,AD_Message_ID,AD_Org_ID,Created,CreatedBy,EntityType,IsActive,MsgText,MsgType,Updated,UpdatedBy,VALUE) VALUES (0,53009,0,TO_DATE('2007-12-15 13:24:57','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','This is a system or client parameter, you can''t save it as organization parameter','E',TO_DATE('2007-12-15 13:24:57','YYYY-MM-DD HH24:MI:SS'),100,'Can''t Save Org Level') -; - --- Dec 15, 2007 1:24:58 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_MESSAGE_TRL (AD_LANGUAGE,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_MESSAGE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=53009 AND EXISTS (SELECT * FROM AD_MESSAGE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Message_ID!=t.AD_Message_ID) -; - --- Dec 15, 2007 1:25:17 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_MESSAGE (AD_Client_ID,AD_Message_ID,AD_Org_ID,Created,CreatedBy,EntityType,IsActive,MsgText,MsgType,Updated,UpdatedBy,VALUE) VALUES (0,53010,0,TO_DATE('2007-12-15 13:25:16','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','This is a system parameter, you can''t save it as client parameter','E',TO_DATE('2007-12-15 13:25:16','YYYY-MM-DD HH24:MI:SS'),100,'Can''t Save Client Level') -; - --- Dec 15, 2007 1:25:17 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_MESSAGE_TRL (AD_LANGUAGE,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_MESSAGE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=53010 AND EXISTS (SELECT * FROM AD_MESSAGE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Message_ID!=t.AD_Message_ID) -; - -SELECT '047_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '048_FieldGroupType_in_AD_Field_V.sql' AS Filename FROM dual; -CREATE OR REPLACE VIEW AD_FIELD_V -AS -SELECT t.AD_Window_ID, f.AD_Tab_ID, f.AD_Field_ID, tbl.AD_Table_ID, f.AD_Column_ID, - f.NAME, f.Description, f.Help, f.IsDisplayed, f.DisplayLogic, f.DisplayLength, - f.SeqNo, f.SortNo, f.IsSameLine, f.IsHeading, f.IsFieldOnly, f.IsReadOnly, - f.IsEncrypted AS IsEncryptedField, f.ObscureType, - c.ColumnName, c.ColumnSQL, c.FieldLength, c.VFormat, - COALESCE(f.DefaultValue, c.DefaultValue) AS DefaultValue, - c.IsKey, c.IsParent, - COALESCE(f.IsMandatory, c.IsMandatory) AS IsMandatory, - c.IsIdentifier, c.IsTranslated, c.AD_Reference_Value_ID, - c.Callout, COALESCE(f.AD_Reference_ID, c.AD_Reference_ID) AS AD_Reference_ID, - c.AD_Val_Rule_ID, c.AD_Process_ID, c.IsAlwaysUpdateable, - c.ReadOnlyLogic, c.MandatoryLogic, c.IsUpdateable, c.IsEncrypted AS IsEncryptedColumn, - c.IsSelectionColumn, - tbl.TableName, c.ValueMin, c.ValueMax, - fg.NAME AS FieldGroup, vr.Code AS ValidationCode, - f.Included_Tab_ID, fg.FieldGroupType -FROM AD_FIELD f - INNER JOIN AD_TAB t ON (f.AD_Tab_ID = t.AD_Tab_ID) - LEFT OUTER JOIN AD_FIELDGROUP fg ON (f.AD_FieldGroup_ID = fg.AD_FieldGroup_ID) - LEFT OUTER JOIN AD_COLUMN c ON (f.AD_Column_ID = c.AD_Column_ID) - INNER JOIN AD_TABLE tbl ON (c.AD_Table_ID = tbl.AD_Table_ID) - INNER JOIN AD_REFERENCE r ON (c.AD_Reference_ID = r.AD_Reference_ID) - LEFT OUTER JOIN AD_VAL_RULE vr ON (c.AD_Val_Rule_ID=vr.AD_Val_Rule_ID) -WHERE f.IsActive = 'Y' - AND c.IsActive = 'Y' -; - -CREATE OR REPLACE VIEW AD_FIELD_VT -AS -SELECT trl.AD_LANGUAGE, t.AD_Window_ID, f.AD_Tab_ID, f.AD_Field_ID, tbl.AD_Table_ID, f.AD_Column_ID, - trl.NAME, trl.Description, trl.Help, f.IsDisplayed, f.DisplayLogic, f.DisplayLength, - f.SeqNo, f.SortNo, f.IsSameLine, f.IsHeading, f.IsFieldOnly, f.IsReadOnly, - f.IsEncrypted AS IsEncryptedField, f.ObscureType, - c.ColumnName, c.ColumnSQL, c.FieldLength, c.VFormat, - COALESCE(f.DefaultValue, c.DefaultValue) AS DefaultValue, - c.IsKey, c.IsParent, - COALESCE(f.IsMandatory, c.IsMandatory) AS IsMandatory, - c.IsIdentifier, c.IsTranslated, c.AD_Reference_Value_ID, - c.Callout, COALESCE(f.AD_Reference_ID, c.AD_Reference_ID) AS AD_Reference_ID, - c.AD_Val_Rule_ID, c.AD_Process_ID, c.IsAlwaysUpdateable, - c.ReadOnlyLogic, c.MandatoryLogic, c.IsUpdateable, c.IsEncrypted AS IsEncryptedColumn, c.IsSelectionColumn, - tbl.TableName, c.ValueMin, c.ValueMax, - fgt.NAME AS FieldGroup, vr.Code AS ValidationCode, - f.Included_Tab_ID, fg.FieldGroupType -FROM AD_FIELD f - INNER JOIN AD_FIELD_TRL trl ON (f.AD_Field_ID = trl.AD_Field_ID) - INNER JOIN AD_TAB t ON (f.AD_Tab_ID = t.AD_Tab_ID) - LEFT OUTER JOIN AD_FIELDGROUP fg ON (f.AD_FieldGroup_ID = fg.AD_FieldGroup_ID) - LEFT OUTER JOIN AD_FIELDGROUP_TRL fgt ON - (f.AD_FieldGroup_ID = fgt.AD_FieldGroup_ID AND trl.AD_LANGUAGE=fgt.AD_LANGUAGE) - LEFT OUTER JOIN AD_COLUMN c ON (f.AD_Column_ID = c.AD_Column_ID) - INNER JOIN AD_TABLE tbl ON (c.AD_Table_ID = tbl.AD_Table_ID) - INNER JOIN AD_REFERENCE r ON (c.AD_Reference_ID = r.AD_Reference_ID) - LEFT OUTER JOIN AD_VAL_RULE vr ON (c.AD_Val_Rule_ID=vr.AD_Val_Rule_ID) -WHERE f.IsActive = 'Y' - AND c.IsActive = 'Y' -; -SELECT '049_FR1860642_C_DocType.sql' AS Filename FROM dual; --- Dec 29, 2007 5:52:00 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_ELEMENT (AD_Org_ID,AD_Element_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53320,'IsOverwriteSeqOnComplete',TO_DATE('2007-12-29 17:51:59','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Overwrite Sequence on Complete','Overwrite Sequence on Complete',TO_DATE('2007-12-29 17:51:59','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- Dec 29, 2007 5:52:00 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53320 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -UPDATE AD_ELEMENT_TRL SET istranslated='Y', NAME = 'Sobreescribir Secuencia al Completar', printname = 'Sobreescribir Secuencia al Completar' -WHERE AD_Element_ID=53320 AND AD_LANGUAGE LIKE 'es_%' -; - --- Dec 29, 2007 5:53:26 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_ELEMENT (AD_Org_ID,AD_Element_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53321,'DefiniteSequence_ID',TO_DATE('2007-12-29 17:53:26','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Definite Sequence','Definite Sequence',TO_DATE('2007-12-29 17:53:26','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- Dec 29, 2007 5:53:26 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53321 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -UPDATE AD_ELEMENT_TRL SET istranslated='Y', NAME = 'Secuencia Definitiva', printname = 'Secuencia Definitiva' -WHERE AD_Element_ID=53321 AND AD_LANGUAGE LIKE 'es_%' -; - --- Dec 29, 2007 5:54:09 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_ELEMENT (AD_Org_ID,AD_Element_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53322,'IsOverwriteDateOnComplete',TO_DATE('2007-12-29 17:54:09','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Overwrite Date on Complete','Overwrite Date on Complete',TO_DATE('2007-12-29 17:54:09','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- Dec 29, 2007 5:54:09 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53322 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -UPDATE AD_ELEMENT_TRL SET istranslated='Y', NAME = 'Sobreescribir Fecha al Completar', printname = 'Sobreescribir Fecha al Completar' -WHERE AD_Element_ID=53322 AND AD_LANGUAGE LIKE 'es_%' -; - --- Dec 29, 2007 5:55:55 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_COLUMN (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION,AD_Client_ID,AD_Column_ID) VALUES (0,53320,20,217,'IsOverwriteSeqOnComplete',TO_DATE('2007-12-29 17:55:55','YYYY-MM-DD HH24:MI:SS'),100,'N','D',1,'Y','N','N','N','N','N','N','N','N','N','Y','Overwrite Sequence on Complete',0,TO_DATE('2007-12-29 17:55:55','YYYY-MM-DD HH24:MI:SS'),100,1.00,0,54087) -; - --- Dec 29, 2007 5:55:56 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54087 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Dec 29, 2007 5:56:02 PM COT --- 1860642 - Enhance document numbering -ALTER TABLE C_DOCTYPE ADD IsOverwriteSeqOnComplete CHAR(1) DEFAULT 'N' CHECK (IsOverwriteSeqOnComplete IN ('Y','N')) -; - --- Dec 29, 2007 5:57:54 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_COLUMN (AD_Org_ID,AD_Reference_Value_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION,AD_Client_ID,AD_Column_ID) VALUES (0,128,53321,18,217,'DefiniteSequence_ID',TO_DATE('2007-12-29 17:57:54','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','N','N','N','N','N','N','Y','Definite Sequence',TO_DATE('2007-12-29 17:57:54','YYYY-MM-DD HH24:MI:SS'),100,1,0,54088) -; - --- Dec 29, 2007 5:57:54 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54088 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Dec 29, 2007 5:58:04 PM COT --- 1860642 - Enhance document numbering -ALTER TABLE C_DOCTYPE ADD DefiniteSequence_ID NUMBER(10) -; - --- Dec 29, 2007 5:58:27 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_COLUMN (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION,AD_Client_ID,AD_Column_ID) VALUES (0,53322,20,217,'IsOverwriteDateOnComplete',TO_DATE('2007-12-29 17:58:26','YYYY-MM-DD HH24:MI:SS'),100,'N','D',1,'Y','N','N','N','N','N','N','N','N','N','Y','Overwrite Date on Complete',0,TO_DATE('2007-12-29 17:58:26','YYYY-MM-DD HH24:MI:SS'),100,1.00,0,54089) -; - --- Dec 29, 2007 5:58:27 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54089 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Dec 29, 2007 5:58:37 PM COT --- 1860642 - Enhance document numbering -ALTER TABLE C_DOCTYPE ADD IsOverwriteDateOnComplete CHAR(1) DEFAULT 'N' CHECK (IsOverwriteDateOnComplete IN ('Y','N')) -; - --- Dec 29, 2007 6:00:14 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_FIELD (AD_Column_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,AD_Client_ID,UpdatedBy,AD_Field_ID) VALUES (54088,0,167,TO_DATE('2007-12-29 18:00:13','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','Y','N','N','N','N','N','Definite Sequence',TO_DATE('2007-12-29 18:00:13','YYYY-MM-DD HH24:MI:SS'),0,100,54230) -; - --- Dec 29, 2007 6:00:14 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54230 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- Dec 29, 2007 6:00:15 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_FIELD (AD_Column_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,AD_Client_ID,UpdatedBy,AD_Field_ID) VALUES (54089,0,167,TO_DATE('2007-12-29 18:00:15','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','N','Overwrite Date on Complete',TO_DATE('2007-12-29 18:00:15','YYYY-MM-DD HH24:MI:SS'),0,100,54232) -; - --- Dec 29, 2007 6:00:15 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54232 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- Dec 29, 2007 6:00:16 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_FIELD (AD_Column_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,AD_Client_ID,UpdatedBy,AD_Field_ID) VALUES (54087,0,167,TO_DATE('2007-12-29 18:00:15','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','N','Overwrite Sequence on Complete',TO_DATE('2007-12-29 18:00:15','YYYY-MM-DD HH24:MI:SS'),0,100,54233) -; - --- Dec 29, 2007 6:00:16 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54233 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- Dec 29, 2007 6:00:52 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_FIELD SET SeqNo=290,Updated=TO_DATE('2007-12-29 18:00:52','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54233 -; - --- Dec 29, 2007 6:00:57 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_FIELD SET IsSameLine='Y', SeqNo=300,Updated=TO_DATE('2007-12-29 18:00:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54230 -; - --- Dec 29, 2007 6:01:04 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_FIELD SET SeqNo=310,Updated=TO_DATE('2007-12-29 18:01:04','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54232 -; - --- Dec 29, 2007 6:01:31 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_FIELD SET DisplayLogic='@IsOverwriteSeqOnComplete@=''Y''',Updated=TO_DATE('2007-12-29 18:01:31','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54230 -; - --- Dec 29, 2007 8:21:16 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_FIELD SET SeqNo=190,IsDisplayed='Y' WHERE AD_Field_ID=54233 -; - --- Dec 29, 2007 8:21:16 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_FIELD SET SeqNo=200,IsDisplayed='Y' WHERE AD_Field_ID=54230 -; - --- Dec 29, 2007 8:21:16 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_FIELD SET SeqNo=210,IsDisplayed='Y' WHERE AD_Field_ID=54232 -; - --- Dec 29, 2007 8:21:16 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_FIELD SET SeqNo=220,IsDisplayed='Y' WHERE AD_Field_ID=10345 -; - --- Dec 29, 2007 8:21:16 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_FIELD SET SeqNo=230,IsDisplayed='Y' WHERE AD_Field_ID=10346 -; - --- Dec 29, 2007 8:21:16 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_FIELD SET SeqNo=240,IsDisplayed='Y' WHERE AD_Field_ID=10481 -; - --- Dec 29, 2007 8:21:16 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_FIELD SET SeqNo=250,IsDisplayed='Y' WHERE AD_Field_ID=10480 -; - --- Dec 29, 2007 8:21:16 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_FIELD SET SeqNo=260,IsDisplayed='Y' WHERE AD_Field_ID=10371 -; - --- Dec 29, 2007 8:21:16 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_FIELD SET SeqNo=270,IsDisplayed='Y' WHERE AD_Field_ID=10528 -; - --- Dec 29, 2007 8:21:16 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_FIELD SET SeqNo=280,IsDisplayed='Y' WHERE AD_Field_ID=10340 -; - --- Dec 29, 2007 8:21:16 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_FIELD SET SeqNo=290,IsDisplayed='Y' WHERE AD_Field_ID=6567 -; - --- Dec 29, 2007 8:21:16 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_FIELD SET SeqNo=300,IsDisplayed='Y' WHERE AD_Field_ID=3125 -; - --- Dec 29, 2007 8:21:57 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_FIELD SET DisplayLogic='@IsDocNoControlled@=''Y''',Updated=TO_DATE('2007-12-29 20:21:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54233 -; - --- Dec 29, 2007 8:22:06 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_FIELD SET DisplayLogic='@IsDocNoControlled@=''Y'' & @IsOverwriteSeqOnComplete@=''Y''',Updated=TO_DATE('2007-12-29 20:22:06','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54230 -; - - -SELECT '050_Create_2008_Calendar_For_GardenWorld.sql' AS Filename FROM dual; --- Dec 31, 2007 4:26:33 PM COT --- Create 2008 calendar for GardenWorld -INSERT INTO C_YEAR (AD_Client_ID,AD_Org_ID,C_Calendar_ID,C_Year_ID,Created,CreatedBy,FiscalYear,IsActive,Processing,Updated,UpdatedBy) VALUES (11,0,102,50001,TO_DATE('2007-12-31 16:26:29','YYYY-MM-DD HH24:MI:SS'),100,'2008','Y','N',TO_DATE('2007-12-31 16:26:29','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIOD (AD_Client_ID,AD_Org_ID,C_Period_ID,C_Year_ID,Created,CreatedBy,EndDate,IsActive,NAME,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50012,50001,TO_DATE('2007-12-31 16:26:38','YYYY-MM-DD HH24:MI:SS'),100,TO_DATE('2008-01-31','YYYY-MM-DD'),'Y','Jan-08',1,'S','N',TO_DATE('2008-01-01','YYYY-MM-DD'),TO_DATE('2007-12-31 16:26:38','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50276,50012,TO_DATE('2007-12-31 16:26:39','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_DATE('2007-12-31 16:26:39','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50277,50012,TO_DATE('2007-12-31 16:26:40','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_DATE('2007-12-31 16:26:40','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50278,50012,TO_DATE('2007-12-31 16:26:41','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_DATE('2007-12-31 16:26:41','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50279,50012,TO_DATE('2007-12-31 16:26:42','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_DATE('2007-12-31 16:26:42','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50280,50012,TO_DATE('2007-12-31 16:26:43','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_DATE('2007-12-31 16:26:43','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50281,50012,TO_DATE('2007-12-31 16:26:44','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_DATE('2007-12-31 16:26:44','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50282,50012,TO_DATE('2007-12-31 16:26:45','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_DATE('2007-12-31 16:26:45','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50283,50012,TO_DATE('2007-12-31 16:26:46','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_DATE('2007-12-31 16:26:46','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50284,50012,TO_DATE('2007-12-31 16:26:46','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_DATE('2007-12-31 16:26:46','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50285,50012,TO_DATE('2007-12-31 16:26:47','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_DATE('2007-12-31 16:26:47','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50286,50012,TO_DATE('2007-12-31 16:26:48','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_DATE('2007-12-31 16:26:48','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50287,50012,TO_DATE('2007-12-31 16:26:49','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_DATE('2007-12-31 16:26:49','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50288,50012,TO_DATE('2007-12-31 16:26:50','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_DATE('2007-12-31 16:26:50','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50289,50012,TO_DATE('2007-12-31 16:26:51','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_DATE('2007-12-31 16:26:51','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50290,50012,TO_DATE('2007-12-31 16:26:52','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_DATE('2007-12-31 16:26:52','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50291,50012,TO_DATE('2007-12-31 16:26:54','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_DATE('2007-12-31 16:26:54','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50292,50012,TO_DATE('2007-12-31 16:26:55','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_DATE('2007-12-31 16:26:55','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50293,50012,TO_DATE('2007-12-31 16:26:57','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_DATE('2007-12-31 16:26:57','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50294,50012,TO_DATE('2007-12-31 16:26:59','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_DATE('2007-12-31 16:26:59','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50295,50012,TO_DATE('2007-12-31 16:27:01','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_DATE('2007-12-31 16:27:01','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50296,50012,TO_DATE('2007-12-31 16:27:02','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_DATE('2007-12-31 16:27:02','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50297,50012,TO_DATE('2007-12-31 16:27:04','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_DATE('2007-12-31 16:27:04','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50298,50012,TO_DATE('2007-12-31 16:27:06','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_DATE('2007-12-31 16:27:06','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIOD (AD_Client_ID,AD_Org_ID,C_Period_ID,C_Year_ID,Created,CreatedBy,EndDate,IsActive,NAME,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50013,50001,TO_DATE('2007-12-31 16:27:08','YYYY-MM-DD HH24:MI:SS'),100,TO_DATE('2008-02-29','YYYY-MM-DD'),'Y','Feb-08',2,'S','N',TO_DATE('2008-02-01','YYYY-MM-DD'),TO_DATE('2007-12-31 16:27:08','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50299,50013,TO_DATE('2007-12-31 16:27:10','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_DATE('2007-12-31 16:27:10','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50300,50013,TO_DATE('2007-12-31 16:27:11','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_DATE('2007-12-31 16:27:11','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50301,50013,TO_DATE('2007-12-31 16:27:13','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_DATE('2007-12-31 16:27:13','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50302,50013,TO_DATE('2007-12-31 16:27:19','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_DATE('2007-12-31 16:27:19','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50303,50013,TO_DATE('2007-12-31 16:27:21','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_DATE('2007-12-31 16:27:21','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50304,50013,TO_DATE('2007-12-31 16:27:24','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_DATE('2007-12-31 16:27:24','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50305,50013,TO_DATE('2007-12-31 16:27:26','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_DATE('2007-12-31 16:27:26','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50306,50013,TO_DATE('2007-12-31 16:27:28','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_DATE('2007-12-31 16:27:28','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50307,50013,TO_DATE('2007-12-31 16:27:31','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_DATE('2007-12-31 16:27:31','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50308,50013,TO_DATE('2007-12-31 16:27:33','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_DATE('2007-12-31 16:27:33','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50309,50013,TO_DATE('2007-12-31 16:27:35','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_DATE('2007-12-31 16:27:35','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50310,50013,TO_DATE('2007-12-31 16:27:37','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_DATE('2007-12-31 16:27:37','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50311,50013,TO_DATE('2007-12-31 16:27:40','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_DATE('2007-12-31 16:27:40','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50312,50013,TO_DATE('2007-12-31 16:27:42','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_DATE('2007-12-31 16:27:42','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50313,50013,TO_DATE('2007-12-31 16:27:43','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_DATE('2007-12-31 16:27:43','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50314,50013,TO_DATE('2007-12-31 16:27:44','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_DATE('2007-12-31 16:27:44','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50315,50013,TO_DATE('2007-12-31 16:27:45','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_DATE('2007-12-31 16:27:45','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50316,50013,TO_DATE('2007-12-31 16:27:46','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_DATE('2007-12-31 16:27:46','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50317,50013,TO_DATE('2007-12-31 16:27:48','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_DATE('2007-12-31 16:27:48','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50318,50013,TO_DATE('2007-12-31 16:27:48','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_DATE('2007-12-31 16:27:48','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50319,50013,TO_DATE('2007-12-31 16:27:49','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_DATE('2007-12-31 16:27:49','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50320,50013,TO_DATE('2007-12-31 16:27:50','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_DATE('2007-12-31 16:27:50','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50321,50013,TO_DATE('2007-12-31 16:27:51','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_DATE('2007-12-31 16:27:51','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIOD (AD_Client_ID,AD_Org_ID,C_Period_ID,C_Year_ID,Created,CreatedBy,EndDate,IsActive,NAME,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50014,50001,TO_DATE('2007-12-31 16:27:52','YYYY-MM-DD HH24:MI:SS'),100,TO_DATE('2008-03-31','YYYY-MM-DD'),'Y','Mar-08',3,'S','N',TO_DATE('2008-03-01','YYYY-MM-DD'),TO_DATE('2007-12-31 16:27:52','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50322,50014,TO_DATE('2007-12-31 16:27:53','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_DATE('2007-12-31 16:27:53','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50323,50014,TO_DATE('2007-12-31 16:27:59','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_DATE('2007-12-31 16:27:59','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50324,50014,TO_DATE('2007-12-31 16:28:00','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_DATE('2007-12-31 16:28:00','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50325,50014,TO_DATE('2007-12-31 16:28:01','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_DATE('2007-12-31 16:28:01','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50326,50014,TO_DATE('2007-12-31 16:28:01','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_DATE('2007-12-31 16:28:01','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50327,50014,TO_DATE('2007-12-31 16:28:02','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_DATE('2007-12-31 16:28:02','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50328,50014,TO_DATE('2007-12-31 16:28:02','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_DATE('2007-12-31 16:28:02','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50329,50014,TO_DATE('2007-12-31 16:28:03','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_DATE('2007-12-31 16:28:03','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50330,50014,TO_DATE('2007-12-31 16:28:03','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_DATE('2007-12-31 16:28:03','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50331,50014,TO_DATE('2007-12-31 16:28:04','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_DATE('2007-12-31 16:28:04','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50332,50014,TO_DATE('2007-12-31 16:28:04','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_DATE('2007-12-31 16:28:04','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50333,50014,TO_DATE('2007-12-31 16:28:04','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_DATE('2007-12-31 16:28:04','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50334,50014,TO_DATE('2007-12-31 16:28:05','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_DATE('2007-12-31 16:28:05','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50335,50014,TO_DATE('2007-12-31 16:28:05','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_DATE('2007-12-31 16:28:05','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50336,50014,TO_DATE('2007-12-31 16:28:06','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_DATE('2007-12-31 16:28:06','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50337,50014,TO_DATE('2007-12-31 16:28:06','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_DATE('2007-12-31 16:28:06','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50338,50014,TO_DATE('2007-12-31 16:28:07','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_DATE('2007-12-31 16:28:07','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50339,50014,TO_DATE('2007-12-31 16:28:07','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_DATE('2007-12-31 16:28:07','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50340,50014,TO_DATE('2007-12-31 16:28:08','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_DATE('2007-12-31 16:28:08','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50341,50014,TO_DATE('2007-12-31 16:28:08','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_DATE('2007-12-31 16:28:08','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50342,50014,TO_DATE('2007-12-31 16:28:09','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_DATE('2007-12-31 16:28:09','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50343,50014,TO_DATE('2007-12-31 16:28:09','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_DATE('2007-12-31 16:28:09','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50344,50014,TO_DATE('2007-12-31 16:28:09','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_DATE('2007-12-31 16:28:09','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIOD (AD_Client_ID,AD_Org_ID,C_Period_ID,C_Year_ID,Created,CreatedBy,EndDate,IsActive,NAME,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50015,50001,TO_DATE('2007-12-31 16:28:10','YYYY-MM-DD HH24:MI:SS'),100,TO_DATE('2008-04-30','YYYY-MM-DD'),'Y','Apr-08',4,'S','N',TO_DATE('2008-04-01','YYYY-MM-DD'),TO_DATE('2007-12-31 16:28:10','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50345,50015,TO_DATE('2007-12-31 16:28:10','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_DATE('2007-12-31 16:28:10','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50346,50015,TO_DATE('2007-12-31 16:28:11','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_DATE('2007-12-31 16:28:11','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50347,50015,TO_DATE('2007-12-31 16:28:11','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_DATE('2007-12-31 16:28:11','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50348,50015,TO_DATE('2007-12-31 16:28:12','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_DATE('2007-12-31 16:28:12','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50349,50015,TO_DATE('2007-12-31 16:28:12','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_DATE('2007-12-31 16:28:12','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50350,50015,TO_DATE('2007-12-31 16:28:13','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_DATE('2007-12-31 16:28:13','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50351,50015,TO_DATE('2007-12-31 16:28:14','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_DATE('2007-12-31 16:28:14','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50352,50015,TO_DATE('2007-12-31 16:28:14','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_DATE('2007-12-31 16:28:14','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50353,50015,TO_DATE('2007-12-31 16:28:15','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_DATE('2007-12-31 16:28:15','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50354,50015,TO_DATE('2007-12-31 16:28:15','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_DATE('2007-12-31 16:28:15','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50355,50015,TO_DATE('2007-12-31 16:28:16','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_DATE('2007-12-31 16:28:16','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50356,50015,TO_DATE('2007-12-31 16:28:16','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_DATE('2007-12-31 16:28:16','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50357,50015,TO_DATE('2007-12-31 16:28:17','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_DATE('2007-12-31 16:28:17','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50358,50015,TO_DATE('2007-12-31 16:28:17','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_DATE('2007-12-31 16:28:17','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50359,50015,TO_DATE('2007-12-31 16:28:18','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_DATE('2007-12-31 16:28:18','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50360,50015,TO_DATE('2007-12-31 16:28:18','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_DATE('2007-12-31 16:28:18','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50361,50015,TO_DATE('2007-12-31 16:28:18','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_DATE('2007-12-31 16:28:18','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50362,50015,TO_DATE('2007-12-31 16:28:19','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_DATE('2007-12-31 16:28:19','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50363,50015,TO_DATE('2007-12-31 16:28:19','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_DATE('2007-12-31 16:28:19','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50364,50015,TO_DATE('2007-12-31 16:28:20','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_DATE('2007-12-31 16:28:20','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50365,50015,TO_DATE('2007-12-31 16:28:20','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_DATE('2007-12-31 16:28:20','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50366,50015,TO_DATE('2007-12-31 16:28:21','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_DATE('2007-12-31 16:28:21','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50367,50015,TO_DATE('2007-12-31 16:28:21','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_DATE('2007-12-31 16:28:21','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIOD (AD_Client_ID,AD_Org_ID,C_Period_ID,C_Year_ID,Created,CreatedBy,EndDate,IsActive,NAME,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50016,50001,TO_DATE('2007-12-31 16:28:22','YYYY-MM-DD HH24:MI:SS'),100,TO_DATE('2008-05-31','YYYY-MM-DD'),'Y','May-08',5,'S','N',TO_DATE('2008-05-01','YYYY-MM-DD'),TO_DATE('2007-12-31 16:28:22','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50368,50016,TO_DATE('2007-12-31 16:28:22','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_DATE('2007-12-31 16:28:22','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50369,50016,TO_DATE('2007-12-31 16:28:23','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_DATE('2007-12-31 16:28:23','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50370,50016,TO_DATE('2007-12-31 16:28:23','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_DATE('2007-12-31 16:28:23','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50371,50016,TO_DATE('2007-12-31 16:28:24','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_DATE('2007-12-31 16:28:24','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50372,50016,TO_DATE('2007-12-31 16:28:24','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_DATE('2007-12-31 16:28:24','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50373,50016,TO_DATE('2007-12-31 16:28:25','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_DATE('2007-12-31 16:28:25','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50374,50016,TO_DATE('2007-12-31 16:28:25','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_DATE('2007-12-31 16:28:25','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50375,50016,TO_DATE('2007-12-31 16:28:25','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_DATE('2007-12-31 16:28:25','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50376,50016,TO_DATE('2007-12-31 16:28:26','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_DATE('2007-12-31 16:28:26','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50377,50016,TO_DATE('2007-12-31 16:28:26','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_DATE('2007-12-31 16:28:26','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50378,50016,TO_DATE('2007-12-31 16:28:27','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_DATE('2007-12-31 16:28:27','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50379,50016,TO_DATE('2007-12-31 16:28:27','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_DATE('2007-12-31 16:28:27','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50380,50016,TO_DATE('2007-12-31 16:28:28','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_DATE('2007-12-31 16:28:28','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50381,50016,TO_DATE('2007-12-31 16:28:28','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_DATE('2007-12-31 16:28:28','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50382,50016,TO_DATE('2007-12-31 16:28:29','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_DATE('2007-12-31 16:28:29','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50383,50016,TO_DATE('2007-12-31 16:28:29','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_DATE('2007-12-31 16:28:29','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50384,50016,TO_DATE('2007-12-31 16:28:29','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_DATE('2007-12-31 16:28:29','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50385,50016,TO_DATE('2007-12-31 16:28:30','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_DATE('2007-12-31 16:28:30','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50386,50016,TO_DATE('2007-12-31 16:28:30','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_DATE('2007-12-31 16:28:30','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50387,50016,TO_DATE('2007-12-31 16:28:31','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_DATE('2007-12-31 16:28:31','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50388,50016,TO_DATE('2007-12-31 16:28:31','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_DATE('2007-12-31 16:28:31','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50389,50016,TO_DATE('2007-12-31 16:28:32','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_DATE('2007-12-31 16:28:32','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50390,50016,TO_DATE('2007-12-31 16:28:33','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_DATE('2007-12-31 16:28:33','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIOD (AD_Client_ID,AD_Org_ID,C_Period_ID,C_Year_ID,Created,CreatedBy,EndDate,IsActive,NAME,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50017,50001,TO_DATE('2007-12-31 16:28:33','YYYY-MM-DD HH24:MI:SS'),100,TO_DATE('2008-06-30','YYYY-MM-DD'),'Y','Jun-08',6,'S','N',TO_DATE('2008-06-01','YYYY-MM-DD'),TO_DATE('2007-12-31 16:28:33','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50391,50017,TO_DATE('2007-12-31 16:28:33','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_DATE('2007-12-31 16:28:33','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50392,50017,TO_DATE('2007-12-31 16:28:34','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_DATE('2007-12-31 16:28:34','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50393,50017,TO_DATE('2007-12-31 16:28:35','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_DATE('2007-12-31 16:28:35','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50394,50017,TO_DATE('2007-12-31 16:28:35','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_DATE('2007-12-31 16:28:35','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50395,50017,TO_DATE('2007-12-31 16:28:36','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_DATE('2007-12-31 16:28:36','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50396,50017,TO_DATE('2007-12-31 16:28:36','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_DATE('2007-12-31 16:28:36','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50397,50017,TO_DATE('2007-12-31 16:28:37','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_DATE('2007-12-31 16:28:37','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50398,50017,TO_DATE('2007-12-31 16:28:37','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_DATE('2007-12-31 16:28:37','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50399,50017,TO_DATE('2007-12-31 16:28:38','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_DATE('2007-12-31 16:28:38','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50400,50017,TO_DATE('2007-12-31 16:28:38','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_DATE('2007-12-31 16:28:38','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50401,50017,TO_DATE('2007-12-31 16:28:39','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_DATE('2007-12-31 16:28:39','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50402,50017,TO_DATE('2007-12-31 16:28:39','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_DATE('2007-12-31 16:28:39','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50403,50017,TO_DATE('2007-12-31 16:28:40','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_DATE('2007-12-31 16:28:40','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50404,50017,TO_DATE('2007-12-31 16:28:41','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_DATE('2007-12-31 16:28:41','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50405,50017,TO_DATE('2007-12-31 16:28:41','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_DATE('2007-12-31 16:28:41','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50406,50017,TO_DATE('2007-12-31 16:28:42','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_DATE('2007-12-31 16:28:42','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50407,50017,TO_DATE('2007-12-31 16:28:42','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_DATE('2007-12-31 16:28:42','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50408,50017,TO_DATE('2007-12-31 16:28:42','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_DATE('2007-12-31 16:28:42','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50409,50017,TO_DATE('2007-12-31 16:28:43','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_DATE('2007-12-31 16:28:43','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50410,50017,TO_DATE('2007-12-31 16:28:43','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_DATE('2007-12-31 16:28:43','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50411,50017,TO_DATE('2007-12-31 16:28:44','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_DATE('2007-12-31 16:28:44','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50412,50017,TO_DATE('2007-12-31 16:28:44','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_DATE('2007-12-31 16:28:44','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50413,50017,TO_DATE('2007-12-31 16:28:45','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_DATE('2007-12-31 16:28:45','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIOD (AD_Client_ID,AD_Org_ID,C_Period_ID,C_Year_ID,Created,CreatedBy,EndDate,IsActive,NAME,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50018,50001,TO_DATE('2007-12-31 16:28:46','YYYY-MM-DD HH24:MI:SS'),100,TO_DATE('2008-07-31','YYYY-MM-DD'),'Y','Jul-08',7,'S','N',TO_DATE('2008-07-01','YYYY-MM-DD'),TO_DATE('2007-12-31 16:28:46','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50414,50018,TO_DATE('2007-12-31 16:28:46','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_DATE('2007-12-31 16:28:46','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50415,50018,TO_DATE('2007-12-31 16:28:47','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_DATE('2007-12-31 16:28:47','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50416,50018,TO_DATE('2007-12-31 16:28:47','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_DATE('2007-12-31 16:28:47','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50417,50018,TO_DATE('2007-12-31 16:28:47','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_DATE('2007-12-31 16:28:47','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50418,50018,TO_DATE('2007-12-31 16:28:48','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_DATE('2007-12-31 16:28:48','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50419,50018,TO_DATE('2007-12-31 16:28:48','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_DATE('2007-12-31 16:28:48','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50420,50018,TO_DATE('2007-12-31 16:28:49','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_DATE('2007-12-31 16:28:49','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50421,50018,TO_DATE('2007-12-31 16:28:49','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_DATE('2007-12-31 16:28:49','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50422,50018,TO_DATE('2007-12-31 16:28:50','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_DATE('2007-12-31 16:28:50','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50423,50018,TO_DATE('2007-12-31 16:28:51','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_DATE('2007-12-31 16:28:51','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50424,50018,TO_DATE('2007-12-31 16:28:52','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_DATE('2007-12-31 16:28:52','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50425,50018,TO_DATE('2007-12-31 16:28:52','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_DATE('2007-12-31 16:28:52','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50426,50018,TO_DATE('2007-12-31 16:28:53','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_DATE('2007-12-31 16:28:53','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50427,50018,TO_DATE('2007-12-31 16:28:53','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_DATE('2007-12-31 16:28:53','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50428,50018,TO_DATE('2007-12-31 16:28:54','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_DATE('2007-12-31 16:28:54','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50429,50018,TO_DATE('2007-12-31 16:28:54','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_DATE('2007-12-31 16:28:54','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50430,50018,TO_DATE('2007-12-31 16:28:55','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_DATE('2007-12-31 16:28:55','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50431,50018,TO_DATE('2007-12-31 16:28:55','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_DATE('2007-12-31 16:28:55','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50432,50018,TO_DATE('2007-12-31 16:28:55','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_DATE('2007-12-31 16:28:55','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50433,50018,TO_DATE('2007-12-31 16:28:56','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_DATE('2007-12-31 16:28:56','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50434,50018,TO_DATE('2007-12-31 16:28:56','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_DATE('2007-12-31 16:28:56','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50435,50018,TO_DATE('2007-12-31 16:28:57','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_DATE('2007-12-31 16:28:57','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50436,50018,TO_DATE('2007-12-31 16:28:57','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_DATE('2007-12-31 16:28:57','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIOD (AD_Client_ID,AD_Org_ID,C_Period_ID,C_Year_ID,Created,CreatedBy,EndDate,IsActive,NAME,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50019,50001,TO_DATE('2007-12-31 16:28:58','YYYY-MM-DD HH24:MI:SS'),100,TO_DATE('2008-08-31','YYYY-MM-DD'),'Y','Aug-08',8,'S','N',TO_DATE('2008-08-01','YYYY-MM-DD'),TO_DATE('2007-12-31 16:28:58','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50437,50019,TO_DATE('2007-12-31 16:28:58','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_DATE('2007-12-31 16:28:58','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50438,50019,TO_DATE('2007-12-31 16:28:58','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_DATE('2007-12-31 16:28:58','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50439,50019,TO_DATE('2007-12-31 16:28:59','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_DATE('2007-12-31 16:28:59','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50440,50019,TO_DATE('2007-12-31 16:28:59','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_DATE('2007-12-31 16:28:59','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50441,50019,TO_DATE('2007-12-31 16:29:00','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_DATE('2007-12-31 16:29:00','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50442,50019,TO_DATE('2007-12-31 16:29:00','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_DATE('2007-12-31 16:29:00','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50443,50019,TO_DATE('2007-12-31 16:29:01','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_DATE('2007-12-31 16:29:01','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50444,50019,TO_DATE('2007-12-31 16:29:01','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_DATE('2007-12-31 16:29:01','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50445,50019,TO_DATE('2007-12-31 16:29:02','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_DATE('2007-12-31 16:29:02','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50446,50019,TO_DATE('2007-12-31 16:29:02','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_DATE('2007-12-31 16:29:02','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50447,50019,TO_DATE('2007-12-31 16:29:03','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_DATE('2007-12-31 16:29:03','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50448,50019,TO_DATE('2007-12-31 16:29:03','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_DATE('2007-12-31 16:29:03','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50449,50019,TO_DATE('2007-12-31 16:29:03','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_DATE('2007-12-31 16:29:03','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50450,50019,TO_DATE('2007-12-31 16:29:04','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_DATE('2007-12-31 16:29:04','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50451,50019,TO_DATE('2007-12-31 16:29:04','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_DATE('2007-12-31 16:29:04','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50452,50019,TO_DATE('2007-12-31 16:29:05','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_DATE('2007-12-31 16:29:05','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50453,50019,TO_DATE('2007-12-31 16:29:05','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_DATE('2007-12-31 16:29:05','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50454,50019,TO_DATE('2007-12-31 16:29:06','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_DATE('2007-12-31 16:29:06','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50455,50019,TO_DATE('2007-12-31 16:29:09','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_DATE('2007-12-31 16:29:09','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50456,50019,TO_DATE('2007-12-31 16:29:10','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_DATE('2007-12-31 16:29:10','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50457,50019,TO_DATE('2007-12-31 16:29:11','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_DATE('2007-12-31 16:29:11','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50458,50019,TO_DATE('2007-12-31 16:29:11','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_DATE('2007-12-31 16:29:11','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50459,50019,TO_DATE('2007-12-31 16:29:12','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_DATE('2007-12-31 16:29:12','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIOD (AD_Client_ID,AD_Org_ID,C_Period_ID,C_Year_ID,Created,CreatedBy,EndDate,IsActive,NAME,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50020,50001,TO_DATE('2007-12-31 16:29:12','YYYY-MM-DD HH24:MI:SS'),100,TO_DATE('2008-09-30','YYYY-MM-DD'),'Y','Sep-08',9,'S','N',TO_DATE('2008-09-01','YYYY-MM-DD'),TO_DATE('2007-12-31 16:29:12','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50460,50020,TO_DATE('2007-12-31 16:29:13','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_DATE('2007-12-31 16:29:13','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50461,50020,TO_DATE('2007-12-31 16:29:14','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_DATE('2007-12-31 16:29:14','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50462,50020,TO_DATE('2007-12-31 16:29:15','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_DATE('2007-12-31 16:29:15','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50463,50020,TO_DATE('2007-12-31 16:29:15','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_DATE('2007-12-31 16:29:15','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50464,50020,TO_DATE('2007-12-31 16:29:16','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_DATE('2007-12-31 16:29:16','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50465,50020,TO_DATE('2007-12-31 16:29:16','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_DATE('2007-12-31 16:29:16','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50466,50020,TO_DATE('2007-12-31 16:29:16','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_DATE('2007-12-31 16:29:16','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50467,50020,TO_DATE('2007-12-31 16:29:17','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_DATE('2007-12-31 16:29:17','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50468,50020,TO_DATE('2007-12-31 16:29:17','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_DATE('2007-12-31 16:29:17','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50469,50020,TO_DATE('2007-12-31 16:29:18','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_DATE('2007-12-31 16:29:18','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50470,50020,TO_DATE('2007-12-31 16:29:18','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_DATE('2007-12-31 16:29:18','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50471,50020,TO_DATE('2007-12-31 16:29:19','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_DATE('2007-12-31 16:29:19','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50472,50020,TO_DATE('2007-12-31 16:29:20','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_DATE('2007-12-31 16:29:20','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50473,50020,TO_DATE('2007-12-31 16:29:20','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_DATE('2007-12-31 16:29:20','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50474,50020,TO_DATE('2007-12-31 16:29:21','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_DATE('2007-12-31 16:29:21','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50475,50020,TO_DATE('2007-12-31 16:29:21','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_DATE('2007-12-31 16:29:21','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50476,50020,TO_DATE('2007-12-31 16:29:22','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_DATE('2007-12-31 16:29:22','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50477,50020,TO_DATE('2007-12-31 16:29:22','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_DATE('2007-12-31 16:29:22','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50478,50020,TO_DATE('2007-12-31 16:29:22','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_DATE('2007-12-31 16:29:22','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50479,50020,TO_DATE('2007-12-31 16:29:23','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_DATE('2007-12-31 16:29:23','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50480,50020,TO_DATE('2007-12-31 16:29:23','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_DATE('2007-12-31 16:29:23','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50481,50020,TO_DATE('2007-12-31 16:29:24','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_DATE('2007-12-31 16:29:24','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50482,50020,TO_DATE('2007-12-31 16:29:24','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_DATE('2007-12-31 16:29:24','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIOD (AD_Client_ID,AD_Org_ID,C_Period_ID,C_Year_ID,Created,CreatedBy,EndDate,IsActive,NAME,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50021,50001,TO_DATE('2007-12-31 16:29:25','YYYY-MM-DD HH24:MI:SS'),100,TO_DATE('2008-10-31','YYYY-MM-DD'),'Y','Oct-08',10,'S','N',TO_DATE('2008-10-01','YYYY-MM-DD'),TO_DATE('2007-12-31 16:29:25','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50483,50021,TO_DATE('2007-12-31 16:29:25','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_DATE('2007-12-31 16:29:25','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50484,50021,TO_DATE('2007-12-31 16:29:26','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_DATE('2007-12-31 16:29:26','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50485,50021,TO_DATE('2007-12-31 16:29:26','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_DATE('2007-12-31 16:29:26','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50486,50021,TO_DATE('2007-12-31 16:29:26','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_DATE('2007-12-31 16:29:26','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50487,50021,TO_DATE('2007-12-31 16:29:27','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_DATE('2007-12-31 16:29:27','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50488,50021,TO_DATE('2007-12-31 16:29:27','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_DATE('2007-12-31 16:29:27','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50489,50021,TO_DATE('2007-12-31 16:29:28','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_DATE('2007-12-31 16:29:28','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50490,50021,TO_DATE('2007-12-31 16:29:28','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_DATE('2007-12-31 16:29:28','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50491,50021,TO_DATE('2007-12-31 16:29:29','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_DATE('2007-12-31 16:29:29','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50492,50021,TO_DATE('2007-12-31 16:29:30','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_DATE('2007-12-31 16:29:30','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50493,50021,TO_DATE('2007-12-31 16:29:30','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_DATE('2007-12-31 16:29:30','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50494,50021,TO_DATE('2007-12-31 16:29:31','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_DATE('2007-12-31 16:29:31','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50495,50021,TO_DATE('2007-12-31 16:29:31','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_DATE('2007-12-31 16:29:31','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50496,50021,TO_DATE('2007-12-31 16:29:32','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_DATE('2007-12-31 16:29:32','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50497,50021,TO_DATE('2007-12-31 16:29:32','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_DATE('2007-12-31 16:29:32','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50498,50021,TO_DATE('2007-12-31 16:29:33','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_DATE('2007-12-31 16:29:33','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50499,50021,TO_DATE('2007-12-31 16:29:33','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_DATE('2007-12-31 16:29:33','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50500,50021,TO_DATE('2007-12-31 16:29:34','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_DATE('2007-12-31 16:29:34','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50501,50021,TO_DATE('2007-12-31 16:29:34','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_DATE('2007-12-31 16:29:34','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50502,50021,TO_DATE('2007-12-31 16:29:35','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_DATE('2007-12-31 16:29:35','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50503,50021,TO_DATE('2007-12-31 16:29:35','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_DATE('2007-12-31 16:29:35','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50504,50021,TO_DATE('2007-12-31 16:29:36','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_DATE('2007-12-31 16:29:36','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50505,50021,TO_DATE('2007-12-31 16:29:36','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_DATE('2007-12-31 16:29:36','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIOD (AD_Client_ID,AD_Org_ID,C_Period_ID,C_Year_ID,Created,CreatedBy,EndDate,IsActive,NAME,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50022,50001,TO_DATE('2007-12-31 16:29:37','YYYY-MM-DD HH24:MI:SS'),100,TO_DATE('2008-11-30','YYYY-MM-DD'),'Y','Nov-08',11,'S','N',TO_DATE('2008-11-01','YYYY-MM-DD'),TO_DATE('2007-12-31 16:29:37','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50506,50022,TO_DATE('2007-12-31 16:29:37','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_DATE('2007-12-31 16:29:37','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50507,50022,TO_DATE('2007-12-31 16:29:38','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_DATE('2007-12-31 16:29:38','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50508,50022,TO_DATE('2007-12-31 16:29:38','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_DATE('2007-12-31 16:29:38','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50509,50022,TO_DATE('2007-12-31 16:29:39','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_DATE('2007-12-31 16:29:39','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50510,50022,TO_DATE('2007-12-31 16:29:39','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_DATE('2007-12-31 16:29:39','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50511,50022,TO_DATE('2007-12-31 16:29:39','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_DATE('2007-12-31 16:29:39','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50512,50022,TO_DATE('2007-12-31 16:29:40','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_DATE('2007-12-31 16:29:40','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50513,50022,TO_DATE('2007-12-31 16:29:40','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_DATE('2007-12-31 16:29:40','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50514,50022,TO_DATE('2007-12-31 16:29:41','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_DATE('2007-12-31 16:29:41','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50515,50022,TO_DATE('2007-12-31 16:29:41','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_DATE('2007-12-31 16:29:41','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50516,50022,TO_DATE('2007-12-31 16:29:42','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_DATE('2007-12-31 16:29:42','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50517,50022,TO_DATE('2007-12-31 16:29:42','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_DATE('2007-12-31 16:29:42','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50518,50022,TO_DATE('2007-12-31 16:29:43','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_DATE('2007-12-31 16:29:43','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50519,50022,TO_DATE('2007-12-31 16:29:43','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_DATE('2007-12-31 16:29:43','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50520,50022,TO_DATE('2007-12-31 16:29:44','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_DATE('2007-12-31 16:29:44','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50521,50022,TO_DATE('2007-12-31 16:29:44','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_DATE('2007-12-31 16:29:44','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50522,50022,TO_DATE('2007-12-31 16:29:44','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_DATE('2007-12-31 16:29:44','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50523,50022,TO_DATE('2007-12-31 16:29:45','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_DATE('2007-12-31 16:29:45','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50524,50022,TO_DATE('2007-12-31 16:29:46','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_DATE('2007-12-31 16:29:46','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50525,50022,TO_DATE('2007-12-31 16:29:47','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_DATE('2007-12-31 16:29:47','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50526,50022,TO_DATE('2007-12-31 16:29:48','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_DATE('2007-12-31 16:29:48','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50527,50022,TO_DATE('2007-12-31 16:29:49','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_DATE('2007-12-31 16:29:49','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50528,50022,TO_DATE('2007-12-31 16:29:50','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_DATE('2007-12-31 16:29:50','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIOD (AD_Client_ID,AD_Org_ID,C_Period_ID,C_Year_ID,Created,CreatedBy,EndDate,IsActive,NAME,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50023,50001,TO_DATE('2007-12-31 16:29:50','YYYY-MM-DD HH24:MI:SS'),100,TO_DATE('2008-12-31','YYYY-MM-DD'),'Y','Dec-08',12,'S','N',TO_DATE('2008-12-01','YYYY-MM-DD'),TO_DATE('2007-12-31 16:29:50','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50529,50023,TO_DATE('2007-12-31 16:29:51','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_DATE('2007-12-31 16:29:51','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50530,50023,TO_DATE('2007-12-31 16:29:53','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_DATE('2007-12-31 16:29:53','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50531,50023,TO_DATE('2007-12-31 16:29:53','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_DATE('2007-12-31 16:29:53','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50532,50023,TO_DATE('2007-12-31 16:29:54','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_DATE('2007-12-31 16:29:54','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50533,50023,TO_DATE('2007-12-31 16:29:55','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_DATE('2007-12-31 16:29:55','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50534,50023,TO_DATE('2007-12-31 16:29:55','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_DATE('2007-12-31 16:29:55','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50535,50023,TO_DATE('2007-12-31 16:29:59','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_DATE('2007-12-31 16:29:59','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50536,50023,TO_DATE('2007-12-31 16:30:02','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_DATE('2007-12-31 16:30:02','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50537,50023,TO_DATE('2007-12-31 16:30:03','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_DATE('2007-12-31 16:30:03','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50538,50023,TO_DATE('2007-12-31 16:30:03','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_DATE('2007-12-31 16:30:03','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50539,50023,TO_DATE('2007-12-31 16:30:04','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_DATE('2007-12-31 16:30:04','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50540,50023,TO_DATE('2007-12-31 16:30:04','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_DATE('2007-12-31 16:30:04','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50541,50023,TO_DATE('2007-12-31 16:30:05','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_DATE('2007-12-31 16:30:05','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50542,50023,TO_DATE('2007-12-31 16:30:06','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_DATE('2007-12-31 16:30:06','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50543,50023,TO_DATE('2007-12-31 16:30:06','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_DATE('2007-12-31 16:30:06','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50544,50023,TO_DATE('2007-12-31 16:30:08','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_DATE('2007-12-31 16:30:08','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50545,50023,TO_DATE('2007-12-31 16:30:09','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_DATE('2007-12-31 16:30:09','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50546,50023,TO_DATE('2007-12-31 16:30:09','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_DATE('2007-12-31 16:30:09','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50547,50023,TO_DATE('2007-12-31 16:30:10','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_DATE('2007-12-31 16:30:10','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50548,50023,TO_DATE('2007-12-31 16:30:11','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_DATE('2007-12-31 16:30:11','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50549,50023,TO_DATE('2007-12-31 16:30:11','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_DATE('2007-12-31 16:30:11','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50550,50023,TO_DATE('2007-12-31 16:30:12','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_DATE('2007-12-31 16:30:12','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PERIODCONTROL (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50551,50023,TO_DATE('2007-12-31 16:30:12','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_DATE('2007-12-31 16:30:12','YYYY-MM-DD HH24:MI:SS'),100) -; - -SELECT '051_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '052_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '053_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '054_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '055_Bug1863640.sql' AS Filename FROM dual; --- Jan 3, 2008 6:21:50 PM COT --- 1863640 - Window View Allocation is showing Post button -UPDATE AD_FIELD SET DisplayLogic='@Processed@=Y & @#ShowAcct@=Y',Updated=TO_DATE('2008-01-03 18:21:50','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=10430 -; - - -SELECT '056_FR1782412_beautifywindow.sql' AS Filename FROM dual; --- Jan 3, 2008 6:15:05 PM COT --- Beautify window [ 1782412 ] Add Document Action Access Functionality -UPDATE AD_FIELD SET SeqNo=30,IsDisplayed='Y' WHERE AD_Field_ID=53247 -; - -UPDATE AD_FIELD SET SeqNo=40,IsDisplayed='Y' WHERE AD_Field_ID=53244 -; - -UPDATE AD_FIELD SET SeqNo=50,IsDisplayed='Y' WHERE AD_Field_ID=53246 -; - -UPDATE AD_FIELD SET SeqNo=60,IsDisplayed='Y' WHERE AD_Field_ID=53241 -; - -UPDATE AD_FIELD SET DisplayLength=20,Updated=TO_DATE('2008-01-03 18:15:35','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=53242 -; - -UPDATE AD_FIELD SET DisplayLength=20, IsSameLine='Y',Updated=TO_DATE('2008-01-03 18:15:41','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=53245 -; - -UPDATE AD_FIELD SET DisplayLength=20,Updated=TO_DATE('2008-01-03 18:16:13','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=53247 -; - -UPDATE AD_FIELD SET DisplayLength=20,Updated=TO_DATE('2008-01-03 18:16:33','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=53244 -; - -UPDATE AD_FIELD SET DisplayLength=20,Updated=TO_DATE('2008-01-03 18:16:38','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=53246 -; - - -SELECT '057_BF1866222.sql' AS Filename FROM dual; --- [ 1866222 ] Wrong default dictionary entry for C_CashBook.C_Currency_ID -UPDATE AD_COLUMN SET defaultvalue = NULL -WHERE ad_column_id = 5521; -SELECT '058_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '059_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '060_FR_1866483JasperFinancialReports.sql' AS Filename FROM dual; --- Jan 7, 2008 9:37:36 PM COT --- 1866483 - Jasper on Financial Reports -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54091,50064,0,18,400,445,'JasperProcess_ID',TO_DATE('2008-01-07 21:37:34','YYYY-MM-DD HH24:MI:SS'),100,'The Jasper Process used by the printengine if any process defined','D',22,'Y','N','N','N','N','N','N','N','N','N','Y','Jasper Process',0,TO_DATE('2008-01-07 21:37:34','YYYY-MM-DD HH24:MI:SS'),100,1.000000000000) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54091 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -ALTER TABLE PA_REPORT ADD JasperProcess_ID NUMBER(10) -; - -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53323,0,'JasperProcessing',TO_DATE('2008-01-07 21:40:17','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Jasper Process Now','Jasper Process Now',TO_DATE('2008-01-07 21:40:17','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53323 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_PROCESS (AD_Client_ID,AD_Org_ID,AD_Process_ID,AccessLevel,Classname,Created,CreatedBy,Description,EntityType,Help,IsActive,IsBetaFunctionality,IsDirectPrint,IsReport,IsServerProcess,NAME,ShowHelp,Statistic_Count,Statistic_Seconds,Updated,UpdatedBy,VALUE) VALUES (0,0,53063,'3','org.compiere.report.FinReportJasper',TO_DATE('2008-01-07 21:41:49','YYYY-MM-DD HH24:MI:SS'),100,'Create Financial Report (Jasper)','D','The default period is the current period. You can optionally enter other restrictions. You can select an alternative Reporting Hierarchy.','Y','N','N','N','N','Create Report (Jasper)','Y',0,0,TO_DATE('2008-01-07 21:41:49','YYYY-MM-DD HH24:MI:SS'),100,'FinReportJasper') -; - -INSERT INTO AD_PROCESS_TRL (AD_LANGUAGE,AD_Process_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_ID=53063 AND EXISTS (SELECT * FROM AD_PROCESS_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_ID!=t.AD_Process_ID) -; - -INSERT INTO AD_PROCESS_ACCESS (AD_Client_ID,AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,53063,0,TO_DATE('2008-01-07 21:41:57','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-01-07 21:41:57','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_PROCESS_ACCESS (AD_Client_ID,AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,53063,102,TO_DATE('2008-01-07 21:41:57','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-01-07 21:41:57','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_PROCESS_ACCESS (AD_Client_ID,AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,53063,103,TO_DATE('2008-01-07 21:41:57','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-01-07 21:41:57','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_PROCESS_ACCESS (AD_Client_ID,AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,53063,50001,TO_DATE('2008-01-07 21:41:57','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-01-07 21:41:57','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54092,53323,0,53063,28,445,'JasperProcessing',TO_DATE('2008-01-07 21:42:27','YYYY-MM-DD HH24:MI:SS'),100,'D',1,'Y','N','N','N','N','Y','N','N','N','N','Y','Jasper Process Now',0,TO_DATE('2008-01-07 21:42:27','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54092 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -UPDATE AD_COLUMN SET IsMandatory='N',Updated=TO_DATE('2008-01-07 21:43:19','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54092 -; - -UPDATE AD_FIELD SET NAME='Jasper Process Now', Description=NULL, Help=NULL WHERE AD_Column_ID=54092 AND IsCentrallyMaintained='Y' -; - -ALTER TABLE PA_REPORT ADD JasperProcessing CHAR(1) -; - -INSERT INTO AD_PROCESS_PARA (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,NAME,SeqNo,Updated,UpdatedBy) VALUES (0,206,0,53063,53114,18,275,217,'C_Period_ID',TO_DATE('2008-01-07 21:44:40','YYYY-MM-DD HH24:MI:SS'),100,'Period of the Calendar','D',0,'The Period indicates an exclusive range of dates for a calendar.','Y','Y','N','N','Period',10,TO_DATE('2008-01-07 21:44:40','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_PROCESS_PARA_TRL (AD_LANGUAGE,AD_Process_Para_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_Para_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS_PARA t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53114 AND EXISTS (SELECT * FROM AD_PROCESS_PARA_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_PROCESS_PARA (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,AD_Reference_Value_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,NAME,SeqNo,Updated,UpdatedBy) VALUES (0,479,0,53063,53115,18,322,'Org_ID',TO_DATE('2008-01-07 21:45:09','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client','D',0,'An organization is a unit of your client or legal entity - examples are store, department.','Y','Y','N','N','Organization',20,TO_DATE('2008-01-07 21:45:09','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_PROCESS_PARA_TRL (AD_LANGUAGE,AD_Process_Para_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_Para_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS_PARA t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53115 AND EXISTS (SELECT * FROM AD_PROCESS_PARA_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_PROCESS_PARA (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,NAME,SeqNo,Updated,UpdatedBy) VALUES (0,187,0,53063,53116,19,'C_BPartner_ID',TO_DATE('2008-01-07 21:45:39','YYYY-MM-DD HH24:MI:SS'),100,'Identifies a Business Partner','D',0,'A Business Partner is anyone with whom you transact. This can include Vendor, Customer, Employee or Salesperson','Y','Y','N','N','Business Partner ',30,TO_DATE('2008-01-07 21:45:39','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_PROCESS_PARA_TRL (AD_LANGUAGE,AD_Process_Para_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_Para_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS_PARA t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53116 AND EXISTS (SELECT * FROM AD_PROCESS_PARA_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_PROCESS_PARA (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,NAME,SeqNo,Updated,UpdatedBy) VALUES (0,454,0,53063,53117,19,'M_Product_ID',TO_DATE('2008-01-07 21:46:05','YYYY-MM-DD HH24:MI:SS'),100,'Product, Service, Item','D',0,'Identifies an item which is either purchased or sold in this organization.','Y','Y','N','N','Product',40,TO_DATE('2008-01-07 21:46:05','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_PROCESS_PARA_TRL (AD_LANGUAGE,AD_Process_Para_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_Para_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS_PARA t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53117 AND EXISTS (SELECT * FROM AD_PROCESS_PARA_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_PROCESS_PARA (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,NAME,SeqNo,Updated,UpdatedBy) VALUES (0,208,0,53063,53118,19,'C_Project_ID',TO_DATE('2008-01-07 21:47:04','YYYY-MM-DD HH24:MI:SS'),100,'Financial Project','D',0,'A Project allows you to track and control internal or external activities.','Y','Y','N','N','Project',50,TO_DATE('2008-01-07 21:47:04','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_PROCESS_PARA_TRL (AD_LANGUAGE,AD_Process_Para_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_Para_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS_PARA t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53118 AND EXISTS (SELECT * FROM AD_PROCESS_PARA_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_PROCESS_PARA (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,NAME,SeqNo,Updated,UpdatedBy) VALUES (0,1005,0,53063,53119,19,'C_Activity_ID',TO_DATE('2008-01-07 21:47:41','YYYY-MM-DD HH24:MI:SS'),100,'Business Activity','D',0,'Activities indicate tasks that are performed and used to utilize Activity based Costing','Y','Y','N','N','Activity',60,TO_DATE('2008-01-07 21:47:41','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_PROCESS_PARA_TRL (AD_LANGUAGE,AD_Process_Para_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_Para_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS_PARA t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53119 AND EXISTS (SELECT * FROM AD_PROCESS_PARA_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_PROCESS_PARA (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,NAME,SeqNo,Updated,UpdatedBy) VALUES (0,210,0,53063,53120,19,'C_SalesRegion_ID',TO_DATE('2008-01-07 21:48:11','YYYY-MM-DD HH24:MI:SS'),100,'Sales coverage region','D',0,'The Sales Region indicates a specific area of sales coverage.','Y','Y','N','N','Sales Region',70,TO_DATE('2008-01-07 21:48:11','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_PROCESS_PARA_TRL (AD_LANGUAGE,AD_Process_Para_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_Para_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS_PARA t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53120 AND EXISTS (SELECT * FROM AD_PROCESS_PARA_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_PROCESS_PARA (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,NAME,SeqNo,Updated,UpdatedBy) VALUES (0,550,0,53063,53121,19,'C_Campaign_ID',TO_DATE('2008-01-07 21:48:35','YYYY-MM-DD HH24:MI:SS'),100,'Marketing Campaign','D',0,'The Campaign defines a unique marketing program. Projects can be associated with a pre defined Marketing Campaign. You can then report based on a specific Campaign.','Y','Y','N','N','Campaign',80,TO_DATE('2008-01-07 21:48:35','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_PROCESS_PARA_TRL (AD_LANGUAGE,AD_Process_Para_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_Para_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS_PARA t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53121 AND EXISTS (SELECT * FROM AD_PROCESS_PARA_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_PROCESS_PARA (AD_Client_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,NAME,SeqNo,Updated,UpdatedBy) VALUES (0,0,53063,53122,20,'DetailsSourceFirst',TO_DATE('2008-01-07 21:49:04','YYYY-MM-DD HH24:MI:SS'),100,'Details and Sources are printed before the Line','D',0,'Y','Y','N','N','Details/Source First',90,TO_DATE('2008-01-07 21:49:04','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_PROCESS_PARA_TRL (AD_LANGUAGE,AD_Process_Para_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_Para_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS_PARA t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53122 AND EXISTS (SELECT * FROM AD_PROCESS_PARA_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_PROCESS_PARA (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,NAME,SeqNo,Updated,UpdatedBy) VALUES (0,2344,0,53063,53123,20,'UpdateBalances',TO_DATE('2008-01-07 21:49:52','YYYY-MM-DD HH24:MI:SS'),100,'Y','Update Accounting Balances first (not required for subsequent runs)','D',0,'Y','Y','Y','N','Update Balances',100,TO_DATE('2008-01-07 21:49:52','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_PROCESS_PARA_TRL (AD_LANGUAGE,AD_Process_Para_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_Para_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS_PARA t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53123 AND EXISTS (SELECT * FROM AD_PROCESS_PARA_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_PROCESS_PARA (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,NAME,SeqNo,Updated,UpdatedBy) VALUES (0,2868,0,53063,53124,19,'PA_Hierarchy_ID',TO_DATE('2008-01-07 21:50:22','YYYY-MM-DD HH24:MI:SS'),100,'Optional Reporting Hierarchy - If not selected the default hierarchy trees are used.','D',0,'Reporting Hierarchy allows you to select different Hierarchies/Trees for the report. -Accounting Segments LIKE ORGANIZATION, ACCOUNT, Product may have several hierarchies TO accomodate different VIEWS ON THE business.','Y','Y','N','N','Reporting HIERARCHY',110,TO_DATE('2008-01-07 21:50:22','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_PROCESS_PARA_TRL (AD_LANGUAGE,AD_Process_Para_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_Para_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS_PARA t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53124 AND EXISTS (SELECT * FROM AD_PROCESS_PARA_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54091,54234,0,372,TO_DATE('2008-01-07 21:51:00','YYYY-MM-DD HH24:MI:SS'),100,'The Jasper Process used by the printengine if any process defined',22,'D','Y','Y','Y','N','N','N','N','N','Jasper Process',TO_DATE('2008-01-07 21:51:00','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54234 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54092,54235,0,372,TO_DATE('2008-01-07 21:51:02','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','N','Jasper Process Now',TO_DATE('2008-01-07 21:51:02','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54235 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -UPDATE AD_FIELD SET SeqNo=0,IsDisplayed='N' WHERE AD_Field_ID=4731 -; - -UPDATE AD_FIELD SET SeqNo=10,IsDisplayed='Y' WHERE AD_Field_ID=4732 -; - -UPDATE AD_FIELD SET SeqNo=20,IsDisplayed='Y' WHERE AD_Field_ID=4733 -; - -UPDATE AD_FIELD SET SeqNo=30,IsDisplayed='Y' WHERE AD_Field_ID=6263 -; - -UPDATE AD_FIELD SET SeqNo=40,IsDisplayed='Y' WHERE AD_Field_ID=6264 -; - -UPDATE AD_FIELD SET SeqNo=50,IsDisplayed='Y' WHERE AD_Field_ID=4739 -; - -UPDATE AD_FIELD SET SeqNo=60,IsDisplayed='Y' WHERE AD_Field_ID=4734 -; - -UPDATE AD_FIELD SET SeqNo=70,IsDisplayed='Y' WHERE AD_Field_ID=4738 -; - -UPDATE AD_FIELD SET SeqNo=80,IsDisplayed='Y' WHERE AD_Field_ID=4735 -; - -UPDATE AD_FIELD SET SeqNo=90,IsDisplayed='Y' WHERE AD_Field_ID=4736 -; - -UPDATE AD_FIELD SET SeqNo=100,IsDisplayed='Y' WHERE AD_Field_ID=54234 -; - -UPDATE AD_FIELD SET SeqNo=140,IsDisplayed='Y' WHERE AD_Field_ID=54235 -; - -UPDATE AD_FIELD SET SeqNo=150,IsDisplayed='Y' WHERE AD_Field_ID=6265 -; - -UPDATE AD_FIELD SET DisplayLogic='@JasperProcess_ID@=0',Updated=TO_DATE('2008-01-07 21:52:25','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=4737 -; - -UPDATE AD_FIELD SET DisplayLogic='@JasperProcess_ID@>0',Updated=TO_DATE('2008-01-07 21:53:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54235 -; - -UPDATE AD_FIELD SET DisplayLength=23,Updated=TO_DATE('2008-01-07 21:55:11','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54235 -; - -UPDATE AD_FIELD SET NAME='Create Report (Jasper)',Updated=TO_DATE('2008-01-07 21:55:28','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54235 -; - -UPDATE AD_FIELD_TRL SET IsTranslated='N' WHERE AD_Field_ID=54235 -; - -UPDATE AD_FIELD SET Description='Create Financial Report (Jasper)',Updated=TO_DATE('2008-01-07 21:55:35','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54235 -; - -UPDATE AD_FIELD_TRL SET IsTranslated='N' WHERE AD_Field_ID=54235 -; - -UPDATE AD_FIELD SET Help='The default period is the current period. You can optionally enter other restrictions. You can select an alternative Reporting Hierarchy.',Updated=TO_DATE('2008-01-07 21:55:40','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54235 -; - -UPDATE AD_FIELD_TRL SET IsTranslated='N' WHERE AD_Field_ID=54235 -; - -UPDATE AD_FIELD SET AD_FieldGroup_ID=114,Updated=TO_DATE('2008-01-07 21:55:50','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54235 -; - - -SELECT '061_BF1851188.sql' AS Filename FROM dual; --- Jan 8, 2008 7:04:17 PM COT --- [ 1851188 ] Missing ModelValidator must fail client to start -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,Help,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53324,0,'IsFailOnMissingModelValidator',TO_DATE('2008-01-08 19:04:14','YYYY-MM-DD HH24:MI:SS'),0,NULL,'D',NULL,'Y','Fail on Missing Model Validator','Fail on Missing Model Validator',TO_DATE('2008-01-08 19:04:14','YYYY-MM-DD HH24:MI:SS'),0) -; - -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53324 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54093,53324,0,20,531,'IsFailOnMissingModelValidator',TO_DATE('2008-01-08 19:04:46','YYYY-MM-DD HH24:MI:SS'),0,'Y','D',1,'Y','N','N','N','N','Y','N','N','N','N','Y','Fail on Missing Model Validator',0,TO_DATE('2008-01-08 19:04:46','YYYY-MM-DD HH24:MI:SS'),0,1.000000000000) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54093 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -ALTER TABLE AD_SYSTEM ADD IsFailOnMissingModelValidator CHAR(1) DEFAULT 'Y' CHECK (IsFailOnMissingModelValidator IN ('Y','N')) NOT NULL -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54093,54236,0,440,TO_DATE('2008-01-08 19:08:25','YYYY-MM-DD HH24:MI:SS'),0,1,'D','Y','Y','Y','N','N','N','N','N','Fail on Missing Model Validator',235,0,TO_DATE('2008-01-08 19:08:25','YYYY-MM-DD HH24:MI:SS'),0) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54236 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - - -SELECT '062_FR1853645.sql' AS Filename FROM dual; --- Jan 8, 2008 8:30:01 PM COT --- 1853645 - Priority for model validator -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54094,566,0,11,53014,'SeqNo',TO_DATE('2008-01-08 20:29:58','YYYY-MM-DD HH24:MI:SS'),100,'Method of ordering records; lowest number comes first','D',22,'The Sequence indicates the order of records','Y','N','N','N','N','N','N','N','N','N','Y','Sequence',0,TO_DATE('2008-01-08 20:29:58','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54094 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -ALTER TABLE AD_ModelValidator ADD SeqNo NUMBER(10) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54094,54237,0,53014,TO_DATE('2008-01-08 20:30:35','YYYY-MM-DD HH24:MI:SS'),100,'Method of ordering records; lowest number comes first',22,'D','The Sequence indicates the order of records','Y','Y','Y','N','N','N','N','N','Sequence',TO_DATE('2008-01-08 20:30:35','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54237 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -UPDATE AD_FIELD SET SeqNo=70,IsDisplayed='Y' WHERE AD_Field_ID=53278 -; - -UPDATE AD_FIELD SET SeqNo=80,IsDisplayed='Y' WHERE AD_Field_ID=54237 -; - -UPDATE AD_FIELD SET SeqNo=90,IsDisplayed='Y' WHERE AD_Field_ID=53277 -; - -UPDATE AD_FIELD SET IsSameLine='Y',Updated=TO_DATE('2008-01-08 20:31:04','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=53272 -; - - -SELECT '063_FR1851188_ASP.sql' AS Filename FROM dual; --- Jan 9, 2008 11:29:56 PM COT --- 1846929 - SaaS (ASP) (On-Demand) configurator -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53325,0,'IsUseASP',TO_DATE('2008-01-09 23:29:56','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','IsUseASP','IsUseASP',TO_DATE('2008-01-09 23:29:56','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53325 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54095,53325,0,20,112,'IsUseASP',TO_DATE('2008-01-09 23:29:56','YYYY-MM-DD HH24:MI:SS'),100,'N','D',1,'Y','N','N','N','N','Y','N','N','Y','N','Y','IsUseASP',TO_DATE('2008-01-09 23:29:56','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54095 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -ALTER TABLE AD_CLIENT ADD IsUseASP CHAR(1) DEFAULT 'N' CHECK (IsUseASP IN ('Y','N')) NOT NULL -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,DisplayLogic,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54095,54238,0,145,TO_DATE('2008-01-09 23:30:04','YYYY-MM-DD HH24:MI:SS'),100,1,'@AD_Client_ID@>0','D','Y','Y','Y','N','N','N','N','IsUseASP',280,0,TO_DATE('2008-01-09 23:30:04','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54238 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_WINDOW (AD_Client_ID,AD_Org_ID,AD_Window_ID,Created,CreatedBy,EntityType,IsActive,IsBetaFunctionality,IsDefault,IsSOTrx,NAME,Processing,Updated,UpdatedBy,WindowType) VALUES (0,0,53015,TO_DATE('2008-01-09 23:30:05','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Y','N','Y','ASP Modules','N',TO_DATE('2008-01-09 23:30:05','YYYY-MM-DD HH24:MI:SS'),100,'M') -; - -INSERT INTO AD_WINDOW_TRL (AD_LANGUAGE,AD_Window_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Window_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_WINDOW t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Window_ID=53015 AND EXISTS (SELECT * FROM AD_WINDOW_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Window_ID!=t.AD_Window_ID) -; - -INSERT INTO AD_WINDOW_ACCESS (AD_Client_ID,AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,0,53015,TO_DATE('2008-01-09 23:30:06','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-01-09 23:30:06','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_WINDOW_ACCESS (AD_Client_ID,AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,102,53015,TO_DATE('2008-01-09 23:30:06','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-01-09 23:30:06','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_WINDOW_ACCESS (AD_Client_ID,AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,103,53015,TO_DATE('2008-01-09 23:30:06','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-01-09 23:30:06','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_WINDOW_ACCESS (AD_Client_ID,AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,50001,53015,TO_DATE('2008-01-09 23:30:06','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-01-09 23:30:06','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE (AD_Client_ID,AD_Org_ID,AD_Table_ID,AccessLevel,Created,CreatedBy,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,NAME,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53046,'4',TO_DATE('2008-01-09 23:30:06','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','Y','N','N','N','ASP Window','L','ASP_Window',TO_DATE('2008-01-09 23:30:06','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE_TRL (AD_LANGUAGE,AD_Table_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Table_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TABLE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53046 AND EXISTS (SELECT * FROM AD_TABLE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Table_ID!=t.AD_Table_ID) -; - -INSERT INTO AD_SEQUENCE (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,NAME,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53063,TO_DATE('2008-01-09 23:30:07','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table ASP_Window',1,'Y','N','Y','Y','ASP_Window','N',1000000,TO_DATE('2008-01-09 23:30:07','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54096,102,0,19,53046,'AD_Client_ID',TO_DATE('2008-01-09 23:30:17','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Client_ID@','Client/Tenant for this installation.','D',22,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','N','Client',TO_DATE('2008-01-09 23:30:17','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54096 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54097,113,0,19,53046,104,'AD_Org_ID',TO_DATE('2008-01-09 23:30:21','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Org_ID@','Organizational entity within client','D',22,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','N','Organization',TO_DATE('2008-01-09 23:30:21','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54097 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54098,143,0,19,53046,'AD_Window_ID',TO_DATE('2008-01-09 23:30:22','YYYY-MM-DD HH24:MI:SS'),100,'Data entry or display window','D',22,'The Window field identifies a unique Window in the system.','Y','N','N','N','N','Y','Y','N','N','N','N','Window',TO_DATE('2008-01-09 23:30:22','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54098 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53326,0,'ASP_Level_ID',TO_DATE('2008-01-09 23:30:22','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','ASP_Level_ID','ASP_Level_ID',TO_DATE('2008-01-09 23:30:22','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53326 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54099,53326,0,19,53046,'ASP_Level_ID',TO_DATE('2008-01-09 23:30:22','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','N','Y','Y','N','N','N','N','ASP_Level_ID',TO_DATE('2008-01-09 23:30:22','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54099 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54100,608,0,18,110,53046,'UpdatedBy',TO_DATE('2008-01-09 23:30:25','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',22,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','N','Updated By',TO_DATE('2008-01-09 23:30:25','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54100 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54101,245,0,16,53046,'Created',TO_DATE('2008-01-09 23:30:28','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',7,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','N','Created',TO_DATE('2008-01-09 23:30:28','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54101 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54102,246,0,18,110,53046,'CreatedBy',TO_DATE('2008-01-09 23:30:29','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',22,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','N','Created By',TO_DATE('2008-01-09 23:30:29','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54102 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54103,348,0,20,53046,'IsActive',TO_DATE('2008-01-09 23:30:33','YYYY-MM-DD HH24:MI:SS'),100,'Y','The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','N','N','N','N','Y','N','N','N','N','Y','Active',TO_DATE('2008-01-09 23:30:33','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54103 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54104,607,0,16,53046,'Updated',TO_DATE('2008-01-09 23:30:35','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','N','Updated',TO_DATE('2008-01-09 23:30:35','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54104 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_REFERENCE (AD_Client_ID,AD_Org_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,ValidationType) VALUES (0,0,53234,TO_DATE('2008-01-09 23:30:36','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','ASP_Status',TO_DATE('2008-01-09 23:30:36','YYYY-MM-DD HH24:MI:SS'),100,'L') -; - -INSERT INTO AD_REFERENCE_TRL (AD_LANGUAGE,AD_Reference_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Reference_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REFERENCE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Reference_ID=53234 AND EXISTS (SELECT * FROM AD_REFERENCE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Reference_ID!=t.AD_Reference_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53284,53234,TO_DATE('2008-01-09 23:30:37','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Hide',TO_DATE('2008-01-09 23:30:37','YYYY-MM-DD HH24:MI:SS'),100,'H') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53284 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53285,53234,TO_DATE('2008-01-09 23:30:38','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Show',TO_DATE('2008-01-09 23:30:38','YYYY-MM-DD HH24:MI:SS'),100,'S') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53285 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53286,53234,TO_DATE('2008-01-09 23:30:39','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Undefined',TO_DATE('2008-01-09 23:30:39','YYYY-MM-DD HH24:MI:SS'),100,'U') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53286 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53327,0,'ASP_Status',TO_DATE('2008-01-09 23:30:42','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','ASP_Status','ASP_Status',TO_DATE('2008-01-09 23:30:42','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53327 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54105,53327,0,17,53234,53046,'ASP_Status',TO_DATE('2008-01-09 23:30:42','YYYY-MM-DD HH24:MI:SS'),100,'U','D',1,'Y','N','N','N','N','Y','N','N','N','N','Y','ASP_Status',TO_DATE('2008-01-09 23:30:42','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54105 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_TAB (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,CommitWarning,Created,CreatedBy,EntityType,HasTree,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,NAME,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53056,53046,53015,NULL,TO_DATE('2008-01-09 23:30:46','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','N','Y','N','N','N','N','Window','N',40,2,TO_DATE('2008-01-09 23:30:46','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TAB_TRL (AD_LANGUAGE,AD_Tab_ID, CommitWarning,Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TAB t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53056 AND EXISTS (SELECT * FROM AD_TAB_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54096,54239,0,53056,TO_DATE('2008-01-09 23:30:50','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',22,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','Client',10,0,TO_DATE('2008-01-09 23:30:50','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54239 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54097,54240,0,53056,TO_DATE('2008-01-09 23:30:54','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',22,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','Y','Organization',20,0,TO_DATE('2008-01-09 23:30:54','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54240 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54099,54241,0,53056,TO_DATE('2008-01-09 23:30:56','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','Y','N','N','N','N','ASP_Level_ID',30,0,TO_DATE('2008-01-09 23:30:56','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54241 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54098,54242,0,53056,TO_DATE('2008-01-09 23:30:56','YYYY-MM-DD HH24:MI:SS'),100,'Data entry or display window',22,'D','The Window field identifies a unique Window in the system.','Y','Y','Y','N','N','N','N','Window',40,0,TO_DATE('2008-01-09 23:30:56','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54242 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54105,54243,0,53056,TO_DATE('2008-01-09 23:31:00','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','ASP_Status',50,0,TO_DATE('2008-01-09 23:31:00','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54243 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54103,54244,0,53056,TO_DATE('2008-01-09 23:31:01','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','Y','Y','N','N','N','N','Active',60,0,TO_DATE('2008-01-09 23:31:01','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54244 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_TABLE (AD_Client_ID,AD_Org_ID,AD_Table_ID,AccessLevel,Created,CreatedBy,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,NAME,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53047,'4',TO_DATE('2008-01-09 23:31:05','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','Y','N','N','N','ASP Tab','L','ASP_Tab',TO_DATE('2008-01-09 23:31:05','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE_TRL (AD_LANGUAGE,AD_Table_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Table_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TABLE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53047 AND EXISTS (SELECT * FROM AD_TABLE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Table_ID!=t.AD_Table_ID) -; - -INSERT INTO AD_SEQUENCE (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,NAME,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53064,TO_DATE('2008-01-09 23:31:06','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table ASP_Tab',1,'Y','N','Y','Y','ASP_Tab','N',1000000,TO_DATE('2008-01-09 23:31:06','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54106,102,0,19,53047,'AD_Client_ID',TO_DATE('2008-01-09 23:31:07','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Client_ID@','Client/Tenant for this installation.','D',22,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','N','Client',TO_DATE('2008-01-09 23:31:07','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54106 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54107,113,0,19,53047,104,'AD_Org_ID',TO_DATE('2008-01-09 23:31:11','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Org_ID@','Organizational entity within client','D',22,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','N','Organization',TO_DATE('2008-01-09 23:31:11','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54107 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54108,125,0,19,53047,163,'AD_Tab_ID',TO_DATE('2008-01-09 23:31:12','YYYY-MM-DD HH24:MI:SS'),100,'Tab within a Window','D',22,'The Tab indicates a tab that displays within a window.','Y','N','N','N','N','Y','Y','N','N','N','N','Tab',TO_DATE('2008-01-09 23:31:12','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54108 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54109,143,0,19,53047,'AD_Window_ID',TO_DATE('2008-01-09 23:31:13','YYYY-MM-DD HH24:MI:SS'),100,'Data entry or display window','D',22,'The Window field identifies a unique Window in the system.','Y','N','N','N','N','Y','Y','N','N','N','N','Window',TO_DATE('2008-01-09 23:31:13','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54109 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54110,53326,0,19,53047,'ASP_Level_ID',TO_DATE('2008-01-09 23:31:14','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','N','Y','Y','N','N','N','N','ASP_Level_ID',TO_DATE('2008-01-09 23:31:14','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54110 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54111,53327,0,17,53234,53047,'ASP_Status',TO_DATE('2008-01-09 23:31:16','YYYY-MM-DD HH24:MI:SS'),100,'U','D',1,'Y','N','N','N','N','Y','N','N','N','N','Y','ASP_Status',TO_DATE('2008-01-09 23:31:16','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54111 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54112,608,0,18,110,53047,'UpdatedBy',TO_DATE('2008-01-09 23:31:20','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',22,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','N','Updated By',TO_DATE('2008-01-09 23:31:20','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54112 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54113,245,0,16,53047,'Created',TO_DATE('2008-01-09 23:31:21','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',7,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','N','Created',TO_DATE('2008-01-09 23:31:21','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54113 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54114,246,0,18,110,53047,'CreatedBy',TO_DATE('2008-01-09 23:31:25','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',22,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','N','Created By',TO_DATE('2008-01-09 23:31:25','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54114 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54115,348,0,20,53047,'IsActive',TO_DATE('2008-01-09 23:31:26','YYYY-MM-DD HH24:MI:SS'),100,'Y','The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','N','N','N','N','Y','N','N','N','N','Y','Active',TO_DATE('2008-01-09 23:31:26','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54115 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_PROCESS (AD_Client_ID,AD_Org_ID,AD_Process_ID,AccessLevel,Classname,Created,CreatedBy,EntityType,IsActive,IsBetaFunctionality,IsDirectPrint,IsReport,NAME,ShowHelp,Statistic_Count,Statistic_Seconds,Updated,UpdatedBy,VALUE,WorkflowValue) VALUES (0,0,53065,'4','org.adempiere.process.ASPGenerateFields',TO_DATE('2008-01-09 23:31:27','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','N','N','N','ASP Generate Fields','Y',0,0,TO_DATE('2008-01-09 23:31:27','YYYY-MM-DD HH24:MI:SS'),100,'ASP Generate Fields',NULL) -; - -INSERT INTO AD_PROCESS_TRL (AD_LANGUAGE,AD_Process_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_ID=53065 AND EXISTS (SELECT * FROM AD_PROCESS_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_ID!=t.AD_Process_ID) -; - -INSERT INTO AD_PROCESS_PARA (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,AD_Reference_Value_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,NAME,SeqNo,Updated,UpdatedBy) VALUES (0,53327,0,53065,53125,17,53234,'ASP_Status',TO_DATE('2008-01-09 23:31:32','YYYY-MM-DD HH24:MI:SS'),100,'U','D',0,'Y','Y','Y','N','ASP Status',10,TO_DATE('2008-01-09 23:31:32','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_PROCESS_PARA_TRL (AD_LANGUAGE,AD_Process_Para_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_Para_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS_PARA t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53125 AND EXISTS (SELECT * FROM AD_PROCESS_PARA_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54116,524,0,53065,28,53047,'Processing',TO_DATE('2008-01-09 23:31:33','YYYY-MM-DD HH24:MI:SS'),100,'D',1,'Y','N','N','N','N','N','N','N','N','N','Y','Process Now',TO_DATE('2008-01-09 23:31:33','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54116 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54117,607,0,16,53047,'Updated',TO_DATE('2008-01-09 23:31:33','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','N','Updated',TO_DATE('2008-01-09 23:31:33','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54117 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53328,0,'AllFields',TO_DATE('2008-01-09 23:31:34','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','AllFields','AllFields',TO_DATE('2008-01-09 23:31:34','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53328 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54118,53328,0,20,53047,'AllFields',TO_DATE('2008-01-09 23:31:34','YYYY-MM-DD HH24:MI:SS'),100,'Y','D',1,'Y','N','N','N','N','N','N','N','N','N','Y','AllFields',TO_DATE('2008-01-09 23:31:34','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54118 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_TAB (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,CommitWarning,Created,CreatedBy,EntityType,HasTree,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,NAME,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53057,53047,53015,NULL,TO_DATE('2008-01-09 23:31:39','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','N','Y','N','N','N','N','Tab','N',50,3,TO_DATE('2008-01-09 23:31:39','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TAB_TRL (AD_LANGUAGE,AD_Tab_ID, CommitWarning,Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TAB t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53057 AND EXISTS (SELECT * FROM AD_TAB_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54106,54245,0,53057,TO_DATE('2008-01-09 23:31:40','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',22,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','Client',10,0,TO_DATE('2008-01-09 23:31:40','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54245 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54107,54246,0,53057,TO_DATE('2008-01-09 23:31:40','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',22,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','Y','Organization',20,0,TO_DATE('2008-01-09 23:31:40','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54246 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54110,54247,0,53057,TO_DATE('2008-01-09 23:31:41','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','Y','N','N','Y','N','ASP_Level_ID',30,0,TO_DATE('2008-01-09 23:31:41','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54247 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54109,54248,0,53057,TO_DATE('2008-01-09 23:31:42','YYYY-MM-DD HH24:MI:SS'),100,'Data entry or display window',22,'D','The Window field identifies a unique Window in the system.','Y','Y','Y','N','N','Y','N','Window',40,0,TO_DATE('2008-01-09 23:31:42','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54248 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54108,54249,0,53057,TO_DATE('2008-01-09 23:31:43','YYYY-MM-DD HH24:MI:SS'),100,'Tab within a Window',22,'D','The Tab indicates a tab that displays within a window.','Y','Y','Y','N','N','N','N','Tab',50,0,TO_DATE('2008-01-09 23:31:43','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54249 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54111,54250,0,53057,TO_DATE('2008-01-09 23:31:44','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','ASP_Status',60,0,TO_DATE('2008-01-09 23:31:44','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54250 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54118,54251,0,53057,TO_DATE('2008-01-09 23:31:45','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','AllFields',70,0,TO_DATE('2008-01-09 23:31:45','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54251 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,DisplayLogic,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54116,54252,0,53057,TO_DATE('2008-01-09 23:31:46','YYYY-MM-DD HH24:MI:SS'),100,1,'@AllFields@=N','D','Y','Y','Y','N','N','N','N','Process Now',80,0,TO_DATE('2008-01-09 23:31:46','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54252 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54115,54253,0,53057,TO_DATE('2008-01-09 23:31:46','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','Y','Y','N','N','N','N','Active',90,0,TO_DATE('2008-01-09 23:31:46','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54253 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_TABLE (AD_Client_ID,AD_Org_ID,AD_Table_ID,AccessLevel,Created,CreatedBy,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,NAME,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53048,'4',TO_DATE('2008-01-09 23:31:48','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','Y','N','N','N','ASP Field','L','ASP_Field',TO_DATE('2008-01-09 23:31:48','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE_TRL (AD_LANGUAGE,AD_Table_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Table_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TABLE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53048 AND EXISTS (SELECT * FROM AD_TABLE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Table_ID!=t.AD_Table_ID) -; - -INSERT INTO AD_SEQUENCE (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,NAME,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53065,TO_DATE('2008-01-09 23:31:48','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table ASP_Field',1,'Y','N','Y','Y','ASP_Field','N',1000000,TO_DATE('2008-01-09 23:31:48','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54119,102,0,19,53048,'AD_Client_ID',TO_DATE('2008-01-09 23:31:50','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Client_ID@','Client/Tenant for this installation.','D',22,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','N','Client',TO_DATE('2008-01-09 23:31:50','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54119 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_VAL_RULE (AD_Client_ID,AD_Org_ID,AD_Val_Rule_ID,Code,Created,CreatedBy,EntityType,IsActive,NAME,TYPE,Updated,UpdatedBy) VALUES (0,0,52005,'AD_Field.AD_Tab_ID=@AD_Tab_ID@',TO_DATE('2008-01-09 23:31:50','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','AD_Field in Tab','S',TO_DATE('2008-01-09 23:31:50','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54120,107,0,19,53048,52005,'AD_Field_ID',TO_DATE('2008-01-09 23:31:51','YYYY-MM-DD HH24:MI:SS'),100,'Field on a database table','D',22,'The Field identifies a field on a database table.','Y','N','N','N','N','N','Y','N','N','N','N','Field',TO_DATE('2008-01-09 23:31:51','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54120 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54121,113,0,19,53048,104,'AD_Org_ID',TO_DATE('2008-01-09 23:31:52','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Org_ID@','Organizational entity within client','D',22,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','N','Organization',TO_DATE('2008-01-09 23:31:52','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54121 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54122,125,0,19,53048,163,'AD_Tab_ID',TO_DATE('2008-01-09 23:31:53','YYYY-MM-DD HH24:MI:SS'),100,'Tab within a Window','D',22,'The Tab indicates a tab that displays within a window.','Y','N','N','N','N','Y','Y','N','N','N','N','Tab',TO_DATE('2008-01-09 23:31:53','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54122 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54123,53326,0,19,53048,'ASP_Level_ID',TO_DATE('2008-01-09 23:31:54','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','N','Y','Y','N','N','N','N','ASP_Level_ID',TO_DATE('2008-01-09 23:31:54','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54123 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54124,608,0,18,110,53048,'UpdatedBy',TO_DATE('2008-01-09 23:31:55','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',22,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','N','Updated By',TO_DATE('2008-01-09 23:31:55','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54124 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54125,245,0,16,53048,'Created',TO_DATE('2008-01-09 23:32:00','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',7,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','N','Created',TO_DATE('2008-01-09 23:32:00','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54125 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54126,246,0,18,110,53048,'CreatedBy',TO_DATE('2008-01-09 23:32:00','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',22,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','N','Created By',TO_DATE('2008-01-09 23:32:00','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54126 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54127,348,0,20,53048,'IsActive',TO_DATE('2008-01-09 23:32:01','YYYY-MM-DD HH24:MI:SS'),100,'Y','The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','N','N','N','N','Y','N','N','N','N','Y','Active',TO_DATE('2008-01-09 23:32:01','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54127 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54128,607,0,16,53048,'Updated',TO_DATE('2008-01-09 23:32:02','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','N','Updated',TO_DATE('2008-01-09 23:32:02','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54128 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54129,53327,0,17,53234,53048,'ASP_Status',TO_DATE('2008-01-09 23:32:03','YYYY-MM-DD HH24:MI:SS'),100,'U','D',1,'Y','N','N','N','N','Y','N','N','N','N','Y','ASP_Status',TO_DATE('2008-01-09 23:32:03','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54129 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_TAB (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,CommitWarning,Created,CreatedBy,DisplayLogic,EntityType,HasTree,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,NAME,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53058,53048,53015,NULL,TO_DATE('2008-01-09 23:32:03','YYYY-MM-DD HH24:MI:SS'),100,'@AllFields@=N','D','N','Y','N','N','Y','N','N','N','N','Field','N',60,4,TO_DATE('2008-01-09 23:32:03','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TAB_TRL (AD_LANGUAGE,AD_Tab_ID, CommitWarning,Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TAB t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53058 AND EXISTS (SELECT * FROM AD_TAB_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54119,54254,0,53058,TO_DATE('2008-01-09 23:32:10','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',22,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','Client',10,0,TO_DATE('2008-01-09 23:32:10','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54254 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54121,54255,0,53058,TO_DATE('2008-01-09 23:32:11','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',22,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','Y','Organization',20,0,TO_DATE('2008-01-09 23:32:11','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54255 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54123,54256,0,53058,TO_DATE('2008-01-09 23:32:12','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','Y','N','N','N','N','ASP_Level_ID',30,0,TO_DATE('2008-01-09 23:32:12','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54256 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54122,54257,0,53058,TO_DATE('2008-01-09 23:32:16','YYYY-MM-DD HH24:MI:SS'),100,'Tab within a Window',22,'D','The Tab indicates a tab that displays within a window.','Y','Y','Y','N','N','N','N','Tab',40,0,TO_DATE('2008-01-09 23:32:16','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54257 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54120,54258,0,53058,TO_DATE('2008-01-09 23:32:17','YYYY-MM-DD HH24:MI:SS'),100,'Field on a database table',22,'D','The Field identifies a field on a database table.','Y','Y','Y','N','N','N','N','Field',50,0,TO_DATE('2008-01-09 23:32:17','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54258 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54129,54259,0,53058,TO_DATE('2008-01-09 23:32:18','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','ASP_Status',60,0,TO_DATE('2008-01-09 23:32:18','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54259 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54127,54260,0,53058,TO_DATE('2008-01-09 23:32:18','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','Y','Y','N','N','N','N','Active',70,0,TO_DATE('2008-01-09 23:32:18','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54260 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_TABLE (AD_Client_ID,AD_Org_ID,AD_Table_ID,AccessLevel,Created,CreatedBy,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,NAME,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53049,'4',TO_DATE('2008-01-09 23:32:22','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','Y','N','N','N','ASP Process','L','ASP_Process',TO_DATE('2008-01-09 23:32:22','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE_TRL (AD_LANGUAGE,AD_Table_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Table_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TABLE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53049 AND EXISTS (SELECT * FROM AD_TABLE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Table_ID!=t.AD_Table_ID) -; - -INSERT INTO AD_SEQUENCE (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,NAME,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53066,TO_DATE('2008-01-09 23:32:23','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table ASP_Process',1,'Y','N','Y','Y','ASP_Process','N',1000000,TO_DATE('2008-01-09 23:32:23','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54130,102,0,19,53049,'AD_Client_ID',TO_DATE('2008-01-09 23:32:24','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Client_ID@','Client/Tenant for this installation.','D',22,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','N','Client',TO_DATE('2008-01-09 23:32:24','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54130 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54131,113,0,19,53049,104,'AD_Org_ID',TO_DATE('2008-01-09 23:32:28','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Org_ID@','Organizational entity within client','D',22,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','N','Organization',TO_DATE('2008-01-09 23:32:28','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54131 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54132,117,0,19,53049,'AD_Process_ID',TO_DATE('2008-01-09 23:32:32','YYYY-MM-DD HH24:MI:SS'),100,'Process or Report','D',22,'The Process field identifies a unique Process or Report in the system.','Y','N','N','N','N','Y','Y','N','N','N','N','Process',TO_DATE('2008-01-09 23:32:32','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54132 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54133,53326,0,19,53049,'ASP_Level_ID',TO_DATE('2008-01-09 23:32:32','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','N','Y','Y','N','N','N','N','ASP_Level_ID',TO_DATE('2008-01-09 23:32:32','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54133 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54134,608,0,18,110,53049,'UpdatedBy',TO_DATE('2008-01-09 23:32:33','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',22,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','N','Updated By',TO_DATE('2008-01-09 23:32:33','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54134 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54135,245,0,16,53049,'Created',TO_DATE('2008-01-09 23:32:34','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',7,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','N','Created',TO_DATE('2008-01-09 23:32:34','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54135 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54136,246,0,18,110,53049,'CreatedBy',TO_DATE('2008-01-09 23:32:35','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',22,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','N','Created By',TO_DATE('2008-01-09 23:32:35','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54136 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54137,348,0,20,53049,'IsActive',TO_DATE('2008-01-09 23:32:36','YYYY-MM-DD HH24:MI:SS'),100,'Y','The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','N','N','N','N','Y','N','N','N','N','Y','Active',TO_DATE('2008-01-09 23:32:36','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54137 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54138,607,0,16,53049,'Updated',TO_DATE('2008-01-09 23:32:37','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','N','Updated',TO_DATE('2008-01-09 23:32:37','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54138 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54139,53327,0,17,53234,53049,'ASP_Status',TO_DATE('2008-01-09 23:32:38','YYYY-MM-DD HH24:MI:SS'),100,'U','D',1,'Y','N','N','N','N','Y','N','N','N','N','Y','ASP_Status',TO_DATE('2008-01-09 23:32:38','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54139 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_TAB (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,CommitWarning,Created,CreatedBy,EntityType,HasTree,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,NAME,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53059,53049,53015,NULL,TO_DATE('2008-01-09 23:32:45','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','N','Y','N','N','N','N','Process','N',70,2,TO_DATE('2008-01-09 23:32:45','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TAB_TRL (AD_LANGUAGE,AD_Tab_ID, CommitWarning,Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TAB t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53059 AND EXISTS (SELECT * FROM AD_TAB_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54130,54261,0,53059,TO_DATE('2008-01-09 23:32:46','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',22,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','Client',10,0,TO_DATE('2008-01-09 23:32:46','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54261 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54131,54262,0,53059,TO_DATE('2008-01-09 23:32:49','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',22,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','Y','Organization',20,0,TO_DATE('2008-01-09 23:32:49','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54262 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54133,54263,0,53059,TO_DATE('2008-01-09 23:32:51','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','Y','N','N','N','N','ASP_Level_ID',30,0,TO_DATE('2008-01-09 23:32:51','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54263 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54132,54264,0,53059,TO_DATE('2008-01-09 23:32:51','YYYY-MM-DD HH24:MI:SS'),100,'Process or Report',22,'D','The Process field identifies a unique Process or Report in the system.','Y','Y','Y','N','N','N','N','Process',40,0,TO_DATE('2008-01-09 23:32:51','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54264 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54139,54265,0,53059,TO_DATE('2008-01-09 23:32:55','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','ASP_Status',50,0,TO_DATE('2008-01-09 23:32:55','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54265 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54137,54266,0,53059,TO_DATE('2008-01-09 23:32:56','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','Y','Y','N','N','N','N','Active',60,0,TO_DATE('2008-01-09 23:32:56','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54266 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_TABLE (AD_Client_ID,AD_Org_ID,AD_Table_ID,AccessLevel,Created,CreatedBy,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,NAME,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53050,'4',TO_DATE('2008-01-09 23:32:57','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','Y','N','N','N','ASP Process Parameter','L','ASP_Process_Para',TO_DATE('2008-01-09 23:32:57','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE_TRL (AD_LANGUAGE,AD_Table_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Table_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TABLE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53050 AND EXISTS (SELECT * FROM AD_TABLE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Table_ID!=t.AD_Table_ID) -; - -INSERT INTO AD_SEQUENCE (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,NAME,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53067,TO_DATE('2008-01-09 23:32:59','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table ASP_Process_Para',1,'Y','N','Y','Y','ASP_Process_Para','N',1000000,TO_DATE('2008-01-09 23:32:59','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54140,102,0,19,53050,'AD_Client_ID',TO_DATE('2008-01-09 23:32:59','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Client_ID@','Client/Tenant for this installation.','D',22,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','N','Client',TO_DATE('2008-01-09 23:32:59','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54140 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54141,113,0,19,53050,104,'AD_Org_ID',TO_DATE('2008-01-09 23:33:00','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Org_ID@','Organizational entity within client','D',22,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','N','Organization',TO_DATE('2008-01-09 23:33:00','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54141 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54142,117,0,19,53050,163,'AD_Process_ID',TO_DATE('2008-01-09 23:33:01','YYYY-MM-DD HH24:MI:SS'),100,'Process or Report','D',22,'The Process field identifies a unique Process or Report in the system.','Y','N','N','N','N','Y','Y','N','N','N','N','Process',TO_DATE('2008-01-09 23:33:01','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54142 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54143,118,0,19,53050,186,'AD_Process_Para_ID',TO_DATE('2008-01-09 23:33:05','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','N','N','Y','N','N','N','N','Process Parameter',TO_DATE('2008-01-09 23:33:05','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54143 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54144,53326,0,19,53050,'ASP_Level_ID',TO_DATE('2008-01-09 23:33:06','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','N','Y','Y','N','N','N','N','ASP_Level_ID',TO_DATE('2008-01-09 23:33:06','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54144 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54145,608,0,18,110,53050,'UpdatedBy',TO_DATE('2008-01-09 23:33:06','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',22,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','N','Updated By',TO_DATE('2008-01-09 23:33:06','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54145 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54146,245,0,16,53050,'Created',TO_DATE('2008-01-09 23:33:07','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',7,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','N','Created',TO_DATE('2008-01-09 23:33:07','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54146 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54147,246,0,18,110,53050,'CreatedBy',TO_DATE('2008-01-09 23:33:09','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',22,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','N','Created By',TO_DATE('2008-01-09 23:33:09','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54147 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54148,348,0,20,53050,'IsActive',TO_DATE('2008-01-09 23:33:10','YYYY-MM-DD HH24:MI:SS'),100,'Y','The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','N','N','N','N','Y','N','N','N','N','Y','Active',TO_DATE('2008-01-09 23:33:10','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54148 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54149,607,0,16,53050,'Updated',TO_DATE('2008-01-09 23:33:10','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','N','Updated',TO_DATE('2008-01-09 23:33:10','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54149 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54150,53327,0,17,53234,53050,'ASP_Status',TO_DATE('2008-01-09 23:33:11','YYYY-MM-DD HH24:MI:SS'),100,'U','D',1,'Y','N','N','N','N','Y','N','N','N','N','Y','ASP_Status',TO_DATE('2008-01-09 23:33:11','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54150 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_TAB (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,CommitWarning,Created,CreatedBy,EntityType,HasTree,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,NAME,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53060,53050,53015,NULL,TO_DATE('2008-01-09 23:33:15','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','N','Y','N','N','N','N','Process Parameter','N',80,3,TO_DATE('2008-01-09 23:33:15','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TAB_TRL (AD_LANGUAGE,AD_Tab_ID, CommitWarning,Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TAB t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53060 AND EXISTS (SELECT * FROM AD_TAB_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54140,54267,0,53060,TO_DATE('2008-01-09 23:33:16','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',22,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','Client',10,0,TO_DATE('2008-01-09 23:33:16','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54267 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54141,54268,0,53060,TO_DATE('2008-01-09 23:33:17','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',22,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','Y','Organization',20,0,TO_DATE('2008-01-09 23:33:17','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54268 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54144,54269,0,53060,TO_DATE('2008-01-09 23:33:17','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','Y','N','N','Y','N','ASP_Level_ID',30,0,TO_DATE('2008-01-09 23:33:17','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54269 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54142,54270,0,53060,TO_DATE('2008-01-09 23:33:18','YYYY-MM-DD HH24:MI:SS'),100,'Process or Report',22,'D','The Process field identifies a unique Process or Report in the system.','Y','Y','Y','N','N','N','N','Process',40,0,TO_DATE('2008-01-09 23:33:18','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54270 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54143,54271,0,53060,TO_DATE('2008-01-09 23:33:21','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','Y','N','N','N','N','Process Parameter',50,0,TO_DATE('2008-01-09 23:33:21','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54271 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54150,54272,0,53060,TO_DATE('2008-01-09 23:33:22','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','ASP_Status',60,0,TO_DATE('2008-01-09 23:33:22','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54272 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54148,54273,0,53060,TO_DATE('2008-01-09 23:33:22','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','Y','Y','N','N','N','N','Active',70,0,TO_DATE('2008-01-09 23:33:22','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54273 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_TABLE (AD_Client_ID,AD_Org_ID,AD_Table_ID,AccessLevel,Created,CreatedBy,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,NAME,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53051,'4',TO_DATE('2008-01-09 23:33:23','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','Y','N','N','N','ASP Form','L','ASP_Form',TO_DATE('2008-01-09 23:33:23','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE_TRL (AD_LANGUAGE,AD_Table_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Table_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TABLE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53051 AND EXISTS (SELECT * FROM AD_TABLE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Table_ID!=t.AD_Table_ID) -; - -INSERT INTO AD_SEQUENCE (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,NAME,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53068,TO_DATE('2008-01-09 23:33:24','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table ASP_Form',1,'Y','N','Y','Y','ASP_Form','N',1000000,TO_DATE('2008-01-09 23:33:24','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54151,102,0,19,53051,'AD_Client_ID',TO_DATE('2008-01-09 23:33:25','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Client_ID@','Client/Tenant for this installation.','D',22,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','N','Client',TO_DATE('2008-01-09 23:33:25','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54151 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54152,1298,0,19,53051,'AD_Form_ID',TO_DATE('2008-01-09 23:33:26','YYYY-MM-DD HH24:MI:SS'),100,'Special Form','D',22,'The Special Form field identifies a unique Special Form in the system.','Y','N','N','N','N','Y','Y','N','N','N','N','Special Form',TO_DATE('2008-01-09 23:33:26','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54152 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54153,113,0,19,53051,104,'AD_Org_ID',TO_DATE('2008-01-09 23:33:26','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Org_ID@','Organizational entity within client','D',22,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','N','Organization',TO_DATE('2008-01-09 23:33:26','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54153 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54154,53326,0,19,53051,'ASP_Level_ID',TO_DATE('2008-01-09 23:33:28','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','N','Y','Y','N','N','N','N','ASP_Level_ID',TO_DATE('2008-01-09 23:33:28','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54154 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54155,608,0,18,110,53051,'UpdatedBy',TO_DATE('2008-01-09 23:33:28','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',22,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','N','Updated By',TO_DATE('2008-01-09 23:33:28','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54155 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54156,245,0,16,53051,'Created',TO_DATE('2008-01-09 23:33:29','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',7,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','N','Created',TO_DATE('2008-01-09 23:33:29','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54156 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54157,246,0,18,110,53051,'CreatedBy',TO_DATE('2008-01-09 23:33:30','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',22,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','N','Created By',TO_DATE('2008-01-09 23:33:30','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54157 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54158,348,0,20,53051,'IsActive',TO_DATE('2008-01-09 23:33:31','YYYY-MM-DD HH24:MI:SS'),100,'Y','The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','N','N','N','N','Y','N','N','N','N','Y','Active',TO_DATE('2008-01-09 23:33:31','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54158 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54159,607,0,16,53051,'Updated',TO_DATE('2008-01-09 23:33:32','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','N','Updated',TO_DATE('2008-01-09 23:33:32','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54159 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54160,53327,0,17,53234,53051,'ASP_Status',TO_DATE('2008-01-09 23:33:33','YYYY-MM-DD HH24:MI:SS'),100,'U','D',1,'Y','N','N','N','N','Y','N','N','N','N','Y','ASP_Status',TO_DATE('2008-01-09 23:33:33','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54160 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_TAB (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,CommitWarning,Created,CreatedBy,EntityType,HasTree,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,NAME,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53061,53051,53015,NULL,TO_DATE('2008-01-09 23:33:34','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','N','Y','N','N','N','N','Form','N',90,2,TO_DATE('2008-01-09 23:33:34','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TAB_TRL (AD_LANGUAGE,AD_Tab_ID, CommitWarning,Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TAB t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53061 AND EXISTS (SELECT * FROM AD_TAB_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54151,54274,0,53061,TO_DATE('2008-01-09 23:33:35','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',22,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','Client',10,0,TO_DATE('2008-01-09 23:33:35','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54274 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54153,54275,0,53061,TO_DATE('2008-01-09 23:33:36','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',22,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','Y','Organization',20,0,TO_DATE('2008-01-09 23:33:36','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54275 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54154,54276,0,53061,TO_DATE('2008-01-09 23:33:36','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','Y','N','N','N','N','ASP_Level_ID',30,0,TO_DATE('2008-01-09 23:33:36','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54276 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54152,54277,0,53061,TO_DATE('2008-01-09 23:33:37','YYYY-MM-DD HH24:MI:SS'),100,'Special Form',22,'D','The Special Form field identifies a unique Special Form in the system.','Y','Y','Y','N','N','N','N','Special Form',40,0,TO_DATE('2008-01-09 23:33:37','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54277 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54160,54278,0,53061,TO_DATE('2008-01-09 23:33:38','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','ASP_Status',50,0,TO_DATE('2008-01-09 23:33:38','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54278 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54158,54279,0,53061,TO_DATE('2008-01-09 23:33:40','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','Y','Y','N','N','N','N','Active',60,0,TO_DATE('2008-01-09 23:33:40','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54279 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_TABLE (AD_Client_ID,AD_Org_ID,AD_Table_ID,AccessLevel,Created,CreatedBy,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,NAME,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53052,'4',TO_DATE('2008-01-09 23:33:44','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','Y','N','N','N','ASP Task','L','ASP_Task',TO_DATE('2008-01-09 23:33:44','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE_TRL (AD_LANGUAGE,AD_Table_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Table_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TABLE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53052 AND EXISTS (SELECT * FROM AD_TABLE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Table_ID!=t.AD_Table_ID) -; - -INSERT INTO AD_SEQUENCE (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,NAME,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53069,TO_DATE('2008-01-09 23:33:45','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table ASP_Task',1,'Y','N','Y','Y','ASP_Task','N',1000000,TO_DATE('2008-01-09 23:33:45','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54161,102,0,19,53052,'AD_Client_ID',TO_DATE('2008-01-09 23:33:46','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Client_ID@','Client/Tenant for this installation.','D',22,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','N','Client',TO_DATE('2008-01-09 23:33:46','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54161 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54162,113,0,19,53052,104,'AD_Org_ID',TO_DATE('2008-01-09 23:33:47','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Org_ID@','Organizational entity within client','D',22,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','N','Organization',TO_DATE('2008-01-09 23:33:47','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54162 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54163,128,0,19,53052,'AD_Task_ID',TO_DATE('2008-01-09 23:33:49','YYYY-MM-DD HH24:MI:SS'),100,'Operation System Task','D',22,'The Task field identifies a Operation System Task in the system.','Y','N','N','N','N','Y','Y','N','N','N','N','OS Task',TO_DATE('2008-01-09 23:33:49','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54163 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54164,53326,0,19,53052,'ASP_Level_ID',TO_DATE('2008-01-09 23:33:50','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','N','Y','Y','N','N','N','N','ASP_Level_ID',TO_DATE('2008-01-09 23:33:50','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54164 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54165,608,0,18,110,53052,'UpdatedBy',TO_DATE('2008-01-09 23:33:51','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',22,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','N','Updated By',TO_DATE('2008-01-09 23:33:51','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54165 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54166,245,0,16,53052,'Created',TO_DATE('2008-01-09 23:33:52','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',7,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','N','Created',TO_DATE('2008-01-09 23:33:52','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54166 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54167,246,0,18,110,53052,'CreatedBy',TO_DATE('2008-01-09 23:33:56','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',22,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','N','Created By',TO_DATE('2008-01-09 23:33:56','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54167 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54168,348,0,20,53052,'IsActive',TO_DATE('2008-01-09 23:34:00','YYYY-MM-DD HH24:MI:SS'),100,'Y','The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','N','N','N','N','Y','N','N','N','N','Y','Active',TO_DATE('2008-01-09 23:34:00','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54168 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54169,607,0,16,53052,'Updated',TO_DATE('2008-01-09 23:34:01','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','N','Updated',TO_DATE('2008-01-09 23:34:01','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54169 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54170,53327,0,17,53234,53052,'ASP_Status',TO_DATE('2008-01-09 23:34:05','YYYY-MM-DD HH24:MI:SS'),100,'U','D',1,'Y','N','N','N','N','Y','N','N','N','N','Y','ASP_Status',TO_DATE('2008-01-09 23:34:05','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54170 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_TAB (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,CommitWarning,Created,CreatedBy,EntityType,HasTree,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,NAME,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53062,53052,53015,NULL,TO_DATE('2008-01-09 23:34:06','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','N','Y','N','N','N','N','Task','N',100,2,TO_DATE('2008-01-09 23:34:06','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TAB_TRL (AD_LANGUAGE,AD_Tab_ID, CommitWarning,Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TAB t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53062 AND EXISTS (SELECT * FROM AD_TAB_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54161,54280,0,53062,TO_DATE('2008-01-09 23:34:08','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',22,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','Client',10,0,TO_DATE('2008-01-09 23:34:08','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54280 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54162,54281,0,53062,TO_DATE('2008-01-09 23:34:11','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',22,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','Y','Organization',20,0,TO_DATE('2008-01-09 23:34:11','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54281 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54164,54282,0,53062,TO_DATE('2008-01-09 23:34:15','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','Y','N','N','N','N','ASP_Level_ID',30,0,TO_DATE('2008-01-09 23:34:15','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54282 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54163,54283,0,53062,TO_DATE('2008-01-09 23:34:16','YYYY-MM-DD HH24:MI:SS'),100,'Operation System Task',22,'D','The Task field identifies a Operation System Task in the system.','Y','Y','Y','N','N','N','N','OS Task',40,0,TO_DATE('2008-01-09 23:34:16','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54283 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54170,54284,0,53062,TO_DATE('2008-01-09 23:34:17','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','ASP_Status',50,0,TO_DATE('2008-01-09 23:34:17','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54284 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54168,54285,0,53062,TO_DATE('2008-01-09 23:34:18','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','Y','Y','N','N','N','N','Active',60,0,TO_DATE('2008-01-09 23:34:18','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54285 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_TABLE (AD_Client_ID,AD_Org_ID,AD_Table_ID,AccessLevel,Created,CreatedBy,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,NAME,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53053,'4',TO_DATE('2008-01-09 23:34:22','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','Y','N','N','N','ASP Workflow','L','ASP_Workflow',TO_DATE('2008-01-09 23:34:22','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE_TRL (AD_LANGUAGE,AD_Table_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Table_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TABLE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53053 AND EXISTS (SELECT * FROM AD_TABLE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Table_ID!=t.AD_Table_ID) -; - -INSERT INTO AD_SEQUENCE (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,NAME,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53070,TO_DATE('2008-01-09 23:34:26','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table ASP_Workflow',1,'Y','N','Y','Y','ASP_Workflow','N',1000000,TO_DATE('2008-01-09 23:34:26','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54171,102,0,19,53053,'AD_Client_ID',TO_DATE('2008-01-09 23:34:27','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Client_ID@','Client/Tenant for this installation.','D',22,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','N','Client',TO_DATE('2008-01-09 23:34:27','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54171 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54172,113,0,19,53053,104,'AD_Org_ID',TO_DATE('2008-01-09 23:34:28','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Org_ID@','Organizational entity within client','D',22,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','N','Organization',TO_DATE('2008-01-09 23:34:28','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54172 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_VAL_RULE (AD_Client_ID,AD_Org_ID,AD_Val_Rule_ID,Code,Created,CreatedBy,EntityType,IsActive,NAME,TYPE,Updated,UpdatedBy) VALUES (0,0,52006,'AD_Workflow.WorkflowType = ''G''',TO_DATE('2008-01-09 23:34:28','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','General Workflows','S',TO_DATE('2008-01-09 23:34:28','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54173,144,0,19,53053,52006,'AD_Workflow_ID',TO_DATE('2008-01-09 23:34:34','YYYY-MM-DD HH24:MI:SS'),100,'Workflow or combination of tasks','D',22,'The Workflow field identifies a unique Workflow in the system.','Y','N','N','N','N','Y','Y','N','N','N','N','Workflow',TO_DATE('2008-01-09 23:34:34','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54173 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54174,53326,0,19,53053,'ASP_Level_ID',TO_DATE('2008-01-09 23:34:34','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','N','Y','Y','N','N','N','N','ASP_Level_ID',TO_DATE('2008-01-09 23:34:34','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54174 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54175,608,0,18,110,53053,'UpdatedBy',TO_DATE('2008-01-09 23:34:36','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',22,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','N','Updated By',TO_DATE('2008-01-09 23:34:36','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54175 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54176,245,0,16,53053,'Created',TO_DATE('2008-01-09 23:34:37','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',7,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','N','Created',TO_DATE('2008-01-09 23:34:37','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54176 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54177,246,0,18,110,53053,'CreatedBy',TO_DATE('2008-01-09 23:34:38','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',22,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','N','Created By',TO_DATE('2008-01-09 23:34:38','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54177 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54178,348,0,20,53053,'IsActive',TO_DATE('2008-01-09 23:34:38','YYYY-MM-DD HH24:MI:SS'),100,'Y','The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','N','N','N','N','Y','N','N','N','N','Y','Active',TO_DATE('2008-01-09 23:34:38','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54178 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54179,607,0,16,53053,'Updated',TO_DATE('2008-01-09 23:34:39','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','N','Updated',TO_DATE('2008-01-09 23:34:39','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54179 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54180,53327,0,17,53234,53053,'ASP_Status',TO_DATE('2008-01-09 23:34:40','YYYY-MM-DD HH24:MI:SS'),100,'U','D',1,'Y','N','N','N','N','Y','N','N','N','N','Y','ASP_Status',TO_DATE('2008-01-09 23:34:40','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54180 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_TAB (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,CommitWarning,Created,CreatedBy,EntityType,HasTree,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,NAME,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53063,53053,53015,NULL,TO_DATE('2008-01-09 23:34:41','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','N','Y','N','N','N','N','Workflow','N',110,2,TO_DATE('2008-01-09 23:34:41','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TAB_TRL (AD_LANGUAGE,AD_Tab_ID, CommitWarning,Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TAB t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53063 AND EXISTS (SELECT * FROM AD_TAB_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54171,54286,0,53063,TO_DATE('2008-01-09 23:34:41','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',22,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','Client',10,0,TO_DATE('2008-01-09 23:34:41','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54286 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54172,54287,0,53063,TO_DATE('2008-01-09 23:34:43','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',22,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','Y','Organization',20,0,TO_DATE('2008-01-09 23:34:43','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54287 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54174,54288,0,53063,TO_DATE('2008-01-09 23:34:46','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','Y','N','N','N','N','ASP_Level_ID',30,0,TO_DATE('2008-01-09 23:34:46','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54288 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54173,54289,0,53063,TO_DATE('2008-01-09 23:34:47','YYYY-MM-DD HH24:MI:SS'),100,'Workflow or combination of tasks',22,'D','The Workflow field identifies a unique Workflow in the system.','Y','Y','Y','N','N','N','N','Workflow',40,0,TO_DATE('2008-01-09 23:34:47','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54289 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54180,54290,0,53063,TO_DATE('2008-01-09 23:34:48','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','ASP_Status',50,0,TO_DATE('2008-01-09 23:34:48','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54290 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54178,54291,0,53063,TO_DATE('2008-01-09 23:34:49','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','Y','Y','N','N','N','N','Active',60,0,TO_DATE('2008-01-09 23:34:49','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54291 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_TABLE (AD_Client_ID,AD_Org_ID,AD_Table_ID,AccessLevel,Created,CreatedBy,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,NAME,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53054,'4',TO_DATE('2008-01-09 23:34:49','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','Y','N','N','N','ASP Module','L','ASP_Module',TO_DATE('2008-01-09 23:34:49','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE_TRL (AD_LANGUAGE,AD_Table_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Table_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TABLE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53054 AND EXISTS (SELECT * FROM AD_TABLE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Table_ID!=t.AD_Table_ID) -; - -INSERT INTO AD_SEQUENCE (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,NAME,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53071,TO_DATE('2008-01-09 23:34:56','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table ASP_Module',1,'Y','N','Y','Y','ASP_Module','N',1000000,TO_DATE('2008-01-09 23:34:56','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54181,469,0,10,53054,'Name',TO_DATE('2008-01-09 23:34:58','YYYY-MM-DD HH24:MI:SS'),100,'Alphanumeric identifier of the entity','D',60,'The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.','Y','N','N','Y','N','Y','N','N','N','N','Y','Name',1,TO_DATE('2008-01-09 23:34:58','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54181 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54182,113,0,19,53054,104,'AD_Org_ID',TO_DATE('2008-01-09 23:34:59','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Org_ID@','Organizational entity within client','D',22,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','N','Organization',TO_DATE('2008-01-09 23:34:59','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54182 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53329,0,'ASP_Module_ID',TO_DATE('2008-01-09 23:34:59','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','ASP_Module_ID','ASP_Module_ID',TO_DATE('2008-01-09 23:34:59','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53329 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54183,53329,0,13,53054,'ASP_Module_ID',TO_DATE('2008-01-09 23:34:59','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','Y','Y','N','N','N','N','N','ASP_Module_ID',TO_DATE('2008-01-09 23:34:59','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54183 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54184,245,0,16,53054,'Created',TO_DATE('2008-01-09 23:35:01','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',7,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','N','Created',TO_DATE('2008-01-09 23:35:01','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54184 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54185,246,0,18,110,53054,'CreatedBy',TO_DATE('2008-01-09 23:35:02','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',22,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','N','Created By',TO_DATE('2008-01-09 23:35:02','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54185 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54186,620,0,10,53054,'Value',TO_DATE('2008-01-09 23:35:05','YYYY-MM-DD HH24:MI:SS'),100,'Search key for the record in the format required - must be unique','D',40,'A search key allows you a fast method of finding a particular record. -IF you leave THE search KEY empty, THE SYSTEM automatically creates a NUMERIC NUMBER. THE document SEQUENCE used FOR this fallback NUMBER IS DEFINED IN THE "Maintain Sequence" window WITH THE NAME "DocumentNo_", WHERE TableName IS THE actual NAME OF THE TABLE (e.g. C_ORDER).','Y','N','N','N','N','Y','N','N','N','N','Y','Search KEY',TO_DATE('2008-01-09 23:35:05','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54186 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54187,326,0,14,53054,'Help',TO_DATE('2008-01-09 23:35:06','YYYY-MM-DD HH24:MI:SS'),100,'Comment or Hint','D',2000,'The Help field contains a hint, comment or help about the use of this item.','Y','N','N','N','N','N','N','N','N','N','Y','Comment/Help',TO_DATE('2008-01-09 23:35:06','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54187 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54188,348,0,20,53054,'IsActive',TO_DATE('2008-01-09 23:35:07','YYYY-MM-DD HH24:MI:SS'),100,'Y','The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','N','N','N','N','Y','N','N','N','N','Y','Active',TO_DATE('2008-01-09 23:35:07','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54188 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54189,607,0,16,53054,'Updated',TO_DATE('2008-01-09 23:35:08','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','N','Updated',TO_DATE('2008-01-09 23:35:08','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54189 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54190,608,0,18,110,53054,'UpdatedBy',TO_DATE('2008-01-09 23:35:08','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',22,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','N','Updated By',TO_DATE('2008-01-09 23:35:08','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54190 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54191,102,0,19,53054,'AD_Client_ID',TO_DATE('2008-01-09 23:35:09','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Client_ID@','Client/Tenant for this installation.','D',22,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','N','Client',TO_DATE('2008-01-09 23:35:09','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54191 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54192,275,0,10,53054,'Description',TO_DATE('2008-01-09 23:35:13','YYYY-MM-DD HH24:MI:SS'),100,'Optional short description of the record','D',255,'A description is limited to 255 characters.','Y','N','N','N','N','N','N','N','N','N','Y','Description',TO_DATE('2008-01-09 23:35:13','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54192 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_TAB (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,CommitWarning,Created,CreatedBy,EntityType,HasTree,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,NAME,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53064,53054,53015,NULL,TO_DATE('2008-01-09 23:35:16','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','N','Y','N','Y','N','N','Module','N',10,0,TO_DATE('2008-01-09 23:35:16','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TAB_TRL (AD_LANGUAGE,AD_Tab_ID, CommitWarning,Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TAB t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53064 AND EXISTS (SELECT * FROM AD_TAB_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54183,54292,0,53064,TO_DATE('2008-01-09 23:35:16','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','N','N','N','N','N','ASP_Module_ID',0,0,TO_DATE('2008-01-09 23:35:16','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54292 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54191,54293,0,53064,TO_DATE('2008-01-09 23:35:17','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',20,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','Client',10,0,TO_DATE('2008-01-09 23:35:17','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54293 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54182,54294,0,53064,TO_DATE('2008-01-09 23:35:21','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',20,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','Y','Organization',20,0,TO_DATE('2008-01-09 23:35:21','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54294 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54186,54295,0,53064,TO_DATE('2008-01-09 23:35:22','YYYY-MM-DD HH24:MI:SS'),100,'Search key for the record in the format required - must be unique',20,'D','A search key allows you a fast method of finding a particular record. -IF you leave THE search KEY empty, THE SYSTEM automatically creates a NUMERIC NUMBER. THE document SEQUENCE used FOR this fallback NUMBER IS DEFINED IN THE "Maintain Sequence" window WITH THE NAME "DocumentNo_", WHERE TableName IS THE actual NAME OF THE TABLE (e.g. C_ORDER).','Y','Y','Y','N','N','N','N','Search KEY',30,0,TO_DATE('2008-01-09 23:35:22','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54295 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54181,54296,0,53064,TO_DATE('2008-01-09 23:35:23','YYYY-MM-DD HH24:MI:SS'),100,'Alphanumeric identifier of the entity',40,'D','The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.','Y','Y','Y','N','N','N','N','Name',40,0,TO_DATE('2008-01-09 23:35:23','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54296 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54192,54297,0,53064,TO_DATE('2008-01-09 23:35:24','YYYY-MM-DD HH24:MI:SS'),100,'Optional short description of the record',40,'D','A description is limited to 255 characters.','Y','Y','Y','N','N','N','N','Description',50,0,TO_DATE('2008-01-09 23:35:24','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54297 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54187,54298,0,53064,TO_DATE('2008-01-09 23:35:25','YYYY-MM-DD HH24:MI:SS'),100,'Comment or Hint',40,'D','The Help field contains a hint, comment or help about the use of this item.','Y','Y','Y','N','N','N','N','Comment/Help',60,0,TO_DATE('2008-01-09 23:35:25','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54298 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54188,54299,0,53064,TO_DATE('2008-01-09 23:35:25','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','Y','Y','N','N','N','N','Active',70,0,TO_DATE('2008-01-09 23:35:25','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54299 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_TABLE (AD_Client_ID,AD_Org_ID,AD_Table_ID,AccessLevel,Created,CreatedBy,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,NAME,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53055,'4',TO_DATE('2008-01-09 23:35:27','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','Y','N','N','N','ASP Level','L','ASP_Level',TO_DATE('2008-01-09 23:35:27','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE_TRL (AD_LANGUAGE,AD_Table_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Table_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TABLE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53055 AND EXISTS (SELECT * FROM AD_TABLE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Table_ID!=t.AD_Table_ID) -; - -INSERT INTO AD_SEQUENCE (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,NAME,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53072,TO_DATE('2008-01-09 23:35:28','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table ASP_Level',1,'Y','N','Y','Y','ASP_Level','N',1000000,TO_DATE('2008-01-09 23:35:28','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_PROCESS (AD_Client_ID,AD_Org_ID,AD_Process_ID,AccessLevel,Classname,Created,CreatedBy,EntityType,IsActive,IsBetaFunctionality,IsDirectPrint,IsReport,NAME,ShowHelp,Statistic_Count,Statistic_Seconds,Updated,UpdatedBy,VALUE,WorkflowValue) VALUES (0,0,53067,'4','org.adempiere.process.ASPGenerateLevel',TO_DATE('2008-01-09 23:35:29','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','N','N','N','ASP Generate Level','Y',0,0,TO_DATE('2008-01-09 23:35:29','YYYY-MM-DD HH24:MI:SS'),100,'ASP Generate Level',NULL) -; - -INSERT INTO AD_PROCESS_TRL (AD_LANGUAGE,AD_Process_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_ID=53067 AND EXISTS (SELECT * FROM AD_PROCESS_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_ID!=t.AD_Process_ID) -; - -INSERT INTO AD_PROCESS_PARA (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,AD_Reference_Value_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,NAME,SeqNo,Updated,UpdatedBy) VALUES (0,53327,0,53067,53126,17,53234,'ASP_Status',TO_DATE('2008-01-09 23:35:33','YYYY-MM-DD HH24:MI:SS'),100,'U','D',0,'Y','Y','Y','N','ASP Status',10,TO_DATE('2008-01-09 23:35:33','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_PROCESS_PARA_TRL (AD_LANGUAGE,AD_Process_Para_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_Para_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS_PARA t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53126 AND EXISTS (SELECT * FROM AD_PROCESS_PARA_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_PROCESS_PARA (AD_Client_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,NAME,SeqNo,Updated,UpdatedBy) VALUES (0,0,53067,53127,20,'IsGenerateFields',TO_DATE('2008-01-09 23:35:35','YYYY-MM-DD HH24:MI:SS'),100,'N','D',0,'Y','Y','Y','N','Generate Fields',30,TO_DATE('2008-01-09 23:35:35','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_PROCESS_PARA_TRL (AD_LANGUAGE,AD_Process_Para_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_Para_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS_PARA t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53127 AND EXISTS (SELECT * FROM AD_PROCESS_PARA_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54193,524,0,53067,28,53055,'Processing',TO_DATE('2008-01-09 23:35:36','YYYY-MM-DD HH24:MI:SS'),100,'D',1,'Y','N','N','N','N','N','N','N','N','N','Y','Process Now',TO_DATE('2008-01-09 23:35:36','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54193 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54194,469,0,10,53055,'Name',TO_DATE('2008-01-09 23:35:37','YYYY-MM-DD HH24:MI:SS'),100,'Alphanumeric identifier of the entity','D',60,'The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.','Y','N','N','Y','N','Y','N','N','N','N','Y','Name',1,TO_DATE('2008-01-09 23:35:37','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54194 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54195,53326,0,13,53055,'ASP_Level_ID',TO_DATE('2008-01-09 23:35:38','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','Y','Y','N','N','N','N','N','ASP_Level_ID',TO_DATE('2008-01-09 23:35:38','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54195 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54196,53329,0,19,53055,'ASP_Module_ID',TO_DATE('2008-01-09 23:35:39','YYYY-MM-DD HH24:MI:SS'),100,'D',1,'Y','N','N','N','N','Y','Y','N','N','N','N','ASP_Module_ID',TO_DATE('2008-01-09 23:35:39','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54196 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54197,245,0,16,53055,'Created',TO_DATE('2008-01-09 23:35:43','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',7,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','N','Created',TO_DATE('2008-01-09 23:35:43','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54197 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54198,246,0,18,110,53055,'CreatedBy',TO_DATE('2008-01-09 23:35:47','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',22,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','N','Created By',TO_DATE('2008-01-09 23:35:47','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54198 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54199,620,0,10,53055,'Value',TO_DATE('2008-01-09 23:35:48','YYYY-MM-DD HH24:MI:SS'),100,'Search key for the record in the format required - must be unique','D',40,'A search key allows you a fast method of finding a particular record. -IF you leave THE search KEY empty, THE SYSTEM automatically creates a NUMERIC NUMBER. THE document SEQUENCE used FOR this fallback NUMBER IS DEFINED IN THE "Maintain Sequence" window WITH THE NAME "DocumentNo_", WHERE TableName IS THE actual NAME OF THE TABLE (e.g. C_ORDER).','Y','N','N','N','N','Y','N','N','N','N','Y','Search KEY',TO_DATE('2008-01-09 23:35:48','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54199 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54200,326,0,14,53055,'Help',TO_DATE('2008-01-09 23:35:49','YYYY-MM-DD HH24:MI:SS'),100,'Comment or Hint','D',2000,'The Help field contains a hint, comment or help about the use of this item.','Y','N','N','N','N','N','N','N','N','N','Y','Comment/Help',TO_DATE('2008-01-09 23:35:49','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54200 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54201,348,0,20,53055,'IsActive',TO_DATE('2008-01-09 23:35:53','YYYY-MM-DD HH24:MI:SS'),100,'Y','The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','N','N','N','N','Y','N','N','N','N','Y','Active',TO_DATE('2008-01-09 23:35:53','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54201 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54202,607,0,16,53055,'Updated',TO_DATE('2008-01-09 23:35:54','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','N','Updated',TO_DATE('2008-01-09 23:35:54','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54202 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54203,608,0,18,110,53055,'UpdatedBy',TO_DATE('2008-01-09 23:35:57','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',22,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','N','Updated By',TO_DATE('2008-01-09 23:35:57','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54203 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54204,113,0,19,53055,104,'AD_Org_ID',TO_DATE('2008-01-09 23:35:58','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Org_ID@','Organizational entity within client','D',22,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','N','Organization',TO_DATE('2008-01-09 23:35:58','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54204 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54205,102,0,19,53055,'AD_Client_ID',TO_DATE('2008-01-09 23:35:59','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Client_ID@','Client/Tenant for this installation.','D',22,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','N','Client',TO_DATE('2008-01-09 23:35:59','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54205 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54206,275,0,10,53055,'Description',TO_DATE('2008-01-09 23:36:00','YYYY-MM-DD HH24:MI:SS'),100,'Optional short description of the record','D',255,'A description is limited to 255 characters.','Y','N','N','N','N','N','N','N','N','N','Y','Description',TO_DATE('2008-01-09 23:36:00','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54206 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_TAB (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,CommitWarning,Created,CreatedBy,EntityType,HasTree,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,NAME,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53065,53055,53015,NULL,TO_DATE('2008-01-09 23:36:01','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','N','Y','N','Y','N','N','Level','N',20,1,TO_DATE('2008-01-09 23:36:01','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TAB_TRL (AD_LANGUAGE,AD_Tab_ID, CommitWarning,Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TAB t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53065 AND EXISTS (SELECT * FROM AD_TAB_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54195,54300,0,53065,TO_DATE('2008-01-09 23:36:02','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','N','N','N','N','N','ASP_Level_ID',0,0,TO_DATE('2008-01-09 23:36:02','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54300 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54205,54301,0,53065,TO_DATE('2008-01-09 23:36:03','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',20,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','Client',10,0,TO_DATE('2008-01-09 23:36:03','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54301 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54204,54302,0,53065,TO_DATE('2008-01-09 23:36:04','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',20,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','Y','Organization',20,0,TO_DATE('2008-01-09 23:36:04','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54302 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54196,54303,0,53065,TO_DATE('2008-01-09 23:36:05','YYYY-MM-DD HH24:MI:SS'),100,20,'D','Y','Y','Y','N','N','N','N','ASP_Module_ID',30,0,TO_DATE('2008-01-09 23:36:05','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54303 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54199,54304,0,53065,TO_DATE('2008-01-09 23:36:06','YYYY-MM-DD HH24:MI:SS'),100,'Search key for the record in the format required - must be unique',40,'D','A search key allows you a fast method of finding a particular record. -IF you leave THE search KEY empty, THE SYSTEM automatically creates a NUMERIC NUMBER. THE document SEQUENCE used FOR this fallback NUMBER IS DEFINED IN THE "Maintain Sequence" window WITH THE NAME "DocumentNo_", WHERE TableName IS THE actual NAME OF THE TABLE (e.g. C_ORDER).','Y','Y','Y','N','N','N','N','Search KEY',40,0,TO_DATE('2008-01-09 23:36:06','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54304 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54194,54305,0,53065,TO_DATE('2008-01-09 23:36:07','YYYY-MM-DD HH24:MI:SS'),100,'Alphanumeric identifier of the entity',40,'D','The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.','Y','Y','Y','N','N','N','N','Name',50,0,TO_DATE('2008-01-09 23:36:07','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54305 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54206,54306,0,53065,TO_DATE('2008-01-09 23:36:11','YYYY-MM-DD HH24:MI:SS'),100,'Optional short description of the record',40,'D','A description is limited to 255 characters.','Y','Y','Y','N','N','N','N','Description',60,0,TO_DATE('2008-01-09 23:36:11','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54306 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54200,54307,0,53065,TO_DATE('2008-01-09 23:36:11','YYYY-MM-DD HH24:MI:SS'),100,'Comment or Hint',40,'D','The Help field contains a hint, comment or help about the use of this item.','Y','Y','Y','N','N','N','N','Comment/Help',70,0,TO_DATE('2008-01-09 23:36:11','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54307 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54193,54308,0,53065,TO_DATE('2008-01-09 23:36:12','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','Process Now',80,0,TO_DATE('2008-01-09 23:36:12','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54308 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54201,54309,0,53065,TO_DATE('2008-01-09 23:36:13','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','Y','Y','N','N','N','N','Active',90,0,TO_DATE('2008-01-09 23:36:13','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54309 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_WINDOW (AD_Client_ID,AD_Org_ID,AD_Window_ID,Created,CreatedBy,EntityType,IsActive,IsBetaFunctionality,IsDefault,IsSOTrx,NAME,Processing,Updated,UpdatedBy,WindowType) VALUES (0,0,53016,TO_DATE('2008-01-09 23:36:14','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Y','N','Y','ASP Subscribed Modules','N',TO_DATE('2008-01-09 23:36:14','YYYY-MM-DD HH24:MI:SS'),100,'M') -; - -INSERT INTO AD_WINDOW_TRL (AD_LANGUAGE,AD_Window_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Window_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_WINDOW t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Window_ID=53016 AND EXISTS (SELECT * FROM AD_WINDOW_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Window_ID!=t.AD_Window_ID) -; - -INSERT INTO AD_WINDOW_ACCESS (AD_Client_ID,AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,0,53016,TO_DATE('2008-01-09 23:36:15','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-01-09 23:36:15','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_WINDOW_ACCESS (AD_Client_ID,AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,102,53016,TO_DATE('2008-01-09 23:36:15','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-01-09 23:36:15','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_WINDOW_ACCESS (AD_Client_ID,AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,103,53016,TO_DATE('2008-01-09 23:36:15','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-01-09 23:36:15','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_WINDOW_ACCESS (AD_Client_ID,AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,50001,53016,TO_DATE('2008-01-09 23:36:15','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-01-09 23:36:15','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE (AD_Client_ID,AD_Org_ID,AD_Table_ID,AccessLevel,Created,CreatedBy,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,NAME,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53056,'2',TO_DATE('2008-01-09 23:36:15','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','Y','N','N','N','ASP Client Level','L','ASP_ClientLevel',TO_DATE('2008-01-09 23:36:15','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE_TRL (AD_LANGUAGE,AD_Table_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Table_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TABLE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53056 AND EXISTS (SELECT * FROM AD_TABLE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Table_ID!=t.AD_Table_ID) -; - -INSERT INTO AD_SEQUENCE (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,NAME,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53073,TO_DATE('2008-01-09 23:36:16','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table ASP_ClientLevel',1,'Y','N','Y','Y','ASP_ClientLevel','N',1000000,TO_DATE('2008-01-09 23:36:16','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54207,102,0,19,53056,'AD_Client_ID',TO_DATE('2008-01-09 23:36:20','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Client_ID@','Client/Tenant for this installation.','D',22,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','N','Client',TO_DATE('2008-01-09 23:36:20','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54207 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54208,113,0,19,53056,104,'AD_Org_ID',TO_DATE('2008-01-09 23:36:20','YYYY-MM-DD HH24:MI:SS'),100,'0','Organizational entity within client','D',22,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','N','Organization',TO_DATE('2008-01-09 23:36:20','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54208 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53330,0,'ASP_ClientLevel_ID',TO_DATE('2008-01-09 23:36:22','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','ASP_ClientLevel_ID','ASP_ClientLevel_ID',TO_DATE('2008-01-09 23:36:22','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53330 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54209,53330,0,13,53056,'ASP_ClientLevel_ID',TO_DATE('2008-01-09 23:36:22','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','Y','Y','N','N','N','N','N','ASP_ClientLevel_ID',TO_DATE('2008-01-09 23:36:22','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54209 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_VAL_RULE (AD_Client_ID,AD_Org_ID,AD_Val_Rule_ID,Code,Created,CreatedBy,EntityType,IsActive,NAME,TYPE,Updated,UpdatedBy) VALUES (0,0,52007,'ASP_Module_ID=@ASP_Module_ID@',TO_DATE('2008-01-09 23:36:26','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','ASP_SameModule','S',TO_DATE('2008-01-09 23:36:26','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54210,53326,0,19,53056,52007,'ASP_Level_ID',TO_DATE('2008-01-09 23:36:27','YYYY-MM-DD HH24:MI:SS'),100,'D',10,'Y','N','N','N','N','Y','N','N','N','N','Y','ASP_Level_ID',TO_DATE('2008-01-09 23:36:27','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54210 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54211,53329,0,19,53056,'ASP_Module_ID',TO_DATE('2008-01-09 23:36:28','YYYY-MM-DD HH24:MI:SS'),100,'D',10,'Y','N','N','N','N','Y','N','N','N','N','Y','ASP_Module_ID',TO_DATE('2008-01-09 23:36:28','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54211 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54212,608,0,18,110,53056,'UpdatedBy',TO_DATE('2008-01-09 23:36:29','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',22,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','N','Updated By',TO_DATE('2008-01-09 23:36:29','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54212 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54213,246,0,18,110,53056,'CreatedBy',TO_DATE('2008-01-09 23:36:30','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',22,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','N','Created By',TO_DATE('2008-01-09 23:36:30','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54213 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54214,326,0,14,53056,'Help',TO_DATE('2008-01-09 23:36:31','YYYY-MM-DD HH24:MI:SS'),100,'Comment or Hint','D',2000,'The Help field contains a hint, comment or help about the use of this item.','Y','N','N','N','N','N','N','N','N','N','Y','Comment/Help',TO_DATE('2008-01-09 23:36:31','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54214 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54215,348,0,20,53056,'IsActive',TO_DATE('2008-01-09 23:36:32','YYYY-MM-DD HH24:MI:SS'),100,'Y','The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','N','N','N','N','Y','N','N','N','N','Y','Active',TO_DATE('2008-01-09 23:36:32','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54215 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54216,607,0,16,53056,'Updated',TO_DATE('2008-01-09 23:36:33','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','N','Updated',TO_DATE('2008-01-09 23:36:33','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54216 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54217,245,0,16,53056,'Created',TO_DATE('2008-01-09 23:36:33','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',7,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','N','Created',TO_DATE('2008-01-09 23:36:33','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54217 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_TAB (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,CommitWarning,Created,CreatedBy,EntityType,HasTree,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,NAME,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53066,53056,53016,NULL,TO_DATE('2008-01-09 23:36:37','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','N','Y','N','Y','N','N','Client Level','N',10,0,TO_DATE('2008-01-09 23:36:37','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TAB_TRL (AD_LANGUAGE,AD_Tab_ID, CommitWarning,Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TAB t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53066 AND EXISTS (SELECT * FROM AD_TAB_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54209,54310,0,53066,TO_DATE('2008-01-09 23:36:39','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','N','N','N','N','N','ASP_ClientLevel_ID',0,0,TO_DATE('2008-01-09 23:36:39','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54310 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54207,54311,0,53066,TO_DATE('2008-01-09 23:36:39','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',20,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','Client',10,0,TO_DATE('2008-01-09 23:36:39','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54311 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54208,54312,0,53066,TO_DATE('2008-01-09 23:36:40','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',20,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','Y','Organization',20,0,TO_DATE('2008-01-09 23:36:40','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54312 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54211,54313,0,53066,TO_DATE('2008-01-09 23:36:42','YYYY-MM-DD HH24:MI:SS'),100,20,'D','Y','Y','Y','N','N','N','N','ASP_Module_ID',30,0,TO_DATE('2008-01-09 23:36:42','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54313 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54210,54314,0,53066,TO_DATE('2008-01-09 23:36:43','YYYY-MM-DD HH24:MI:SS'),100,20,'D','Y','Y','Y','N','N','N','N','ASP_Level_ID',40,0,TO_DATE('2008-01-09 23:36:43','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54314 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54214,54315,0,53066,TO_DATE('2008-01-09 23:36:43','YYYY-MM-DD HH24:MI:SS'),100,'Comment or Hint',40,'D','The Help field contains a hint, comment or help about the use of this item.','Y','Y','Y','N','N','N','N','Comment/Help',50,0,TO_DATE('2008-01-09 23:36:43','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54315 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54215,54316,0,53066,TO_DATE('2008-01-09 23:36:44','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','Y','Y','N','N','N','N','Active',60,0,TO_DATE('2008-01-09 23:36:44','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54316 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_TABLE (AD_Client_ID,AD_Org_ID,AD_Table_ID,AccessLevel,Created,CreatedBy,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,NAME,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53057,'2',TO_DATE('2008-01-09 23:36:45','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','Y','N','N','N','ASP Client Exception','L','ASP_ClientException',TO_DATE('2008-01-09 23:36:45','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE_TRL (AD_LANGUAGE,AD_Table_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Table_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TABLE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53057 AND EXISTS (SELECT * FROM AD_TABLE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Table_ID!=t.AD_Table_ID) -; - -INSERT INTO AD_SEQUENCE (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,NAME,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53074,TO_DATE('2008-01-09 23:36:46','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table ASP_ClientException',1,'Y','N','Y','Y','ASP_ClientException','N',1000000,TO_DATE('2008-01-09 23:36:46','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,ReadOnlyLogic,Updated,UpdatedBy,VERSION) VALUES (0,54218,144,0,19,53057,52006,'AD_Workflow_ID',TO_DATE('2008-01-09 23:36:51','YYYY-MM-DD HH24:MI:SS'),100,'Workflow or combination of tasks','D',22,'The Workflow field identifies a unique Workflow in the system.','Y','N','N','N','N','N','N','N','N','N','Y','Workflow','@AD_Window_ID@>0 | @AD_Process_ID@>0 | @AD_Form_ID@>0 | @AD_Task_ID@>0',TO_DATE('2008-01-09 23:36:51','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54218 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,ReadOnlyLogic,Updated,UpdatedBy,VERSION) VALUES (0,54219,1298,0,19,53057,'AD_Form_ID',TO_DATE('2008-01-09 23:36:55','YYYY-MM-DD HH24:MI:SS'),100,'Special Form','D',22,'The Special Form field identifies a unique Special Form in the system.','Y','N','N','N','N','N','N','N','N','N','Y','Special Form','@AD_Process_ID@>0 | @AD_Window_ID@>0 | @AD_Task_ID@>0 | @AD_Workflow_ID@>0',TO_DATE('2008-01-09 23:36:55','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54219 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,ReadOnlyLogic,Updated,UpdatedBy,VERSION) VALUES (0,54220,142,0,19,53057,140,'AD_WF_Node_ID',TO_DATE('2008-01-09 23:36:56','YYYY-MM-DD HH24:MI:SS'),100,'Workflow Node (activity), step or process','D',22,'The Workflow Node indicates a unique step or process in a Workflow.','Y','N','N','N','N','N','N','N','N','N','Y','Node','@AD_Window_ID@>0 | @AD_Process_ID@>0 | @AD_Form_ID@>0 | @AD_Task_ID@>0',TO_DATE('2008-01-09 23:36:56','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54220 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,ReadOnlyLogic,Updated,UpdatedBy,VERSION) VALUES (0,54221,128,0,19,53057,'AD_Task_ID',TO_DATE('2008-01-09 23:36:58','YYYY-MM-DD HH24:MI:SS'),100,'Operation System Task','D',22,'The Task field identifies a Operation System Task in the system.','Y','N','N','N','N','N','N','N','N','N','Y','OS Task','@AD_Process_ID@>0 | @AD_Form_ID@>0 | @AD_Window_ID@>0 | @AD_Workflow_ID@>0',TO_DATE('2008-01-09 23:36:58','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54221 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54222,53327,0,17,53234,53057,'ASP_Status',TO_DATE('2008-01-09 23:36:58','YYYY-MM-DD HH24:MI:SS'),100,'U','D',1,'Y','N','N','N','N','Y','N','N','N','N','Y','ASP_Status',TO_DATE('2008-01-09 23:36:58','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54222 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,ReadOnlyLogic,Updated,UpdatedBy,VERSION) VALUES (0,54223,117,0,19,53057,'AD_Process_ID',TO_DATE('2008-01-09 23:36:59','YYYY-MM-DD HH24:MI:SS'),100,'Process or Report','D',22,'The Process field identifies a unique Process or Report in the system.','Y','N','N','N','N','N','N','N','N','N','Y','Process','@AD_Window_ID@>0 | @AD_Form_ID@>0 | @AD_Task_ID@>0 | @AD_Workflow_ID@>0',TO_DATE('2008-01-09 23:36:59','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54223 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53331,0,'ASP_ClientException_ID',TO_DATE('2008-01-09 23:37:00','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','ASP_ClientException_ID','ASP_ClientException_ID',TO_DATE('2008-01-09 23:37:00','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53331 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54224,53331,0,13,53057,'ASP_ClientException_ID',TO_DATE('2008-01-09 23:37:00','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','Y','Y','N','N','N','N','N','ASP_ClientException_ID',TO_DATE('2008-01-09 23:37:00','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54224 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54225,245,0,16,53057,'Created',TO_DATE('2008-01-09 23:37:02','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',7,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','N','Created',TO_DATE('2008-01-09 23:37:02','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54225 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54226,246,0,18,110,53057,'CreatedBy',TO_DATE('2008-01-09 23:37:02','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',22,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','N','Created By',TO_DATE('2008-01-09 23:37:02','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54226 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54227,348,0,20,53057,'IsActive',TO_DATE('2008-01-09 23:37:04','YYYY-MM-DD HH24:MI:SS'),100,'Y','The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','N','N','N','N','Y','N','N','N','N','Y','Active',TO_DATE('2008-01-09 23:37:04','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54227 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54228,607,0,16,53057,'Updated',TO_DATE('2008-01-09 23:37:08','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','N','Updated',TO_DATE('2008-01-09 23:37:08','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54228 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,ReadOnlyLogic,Updated,UpdatedBy,VERSION) VALUES (0,54229,143,0,30,53057,'AD_Window_ID',TO_DATE('2008-01-09 23:37:09','YYYY-MM-DD HH24:MI:SS'),100,'Data entry or display window','D',10,'The Window field identifies a unique Window in the system.','Y','N','N','N','N','N','N','N','N','N','Y','Window','@AD_Workflow_ID@>0 | @AD_Process_ID@>0 | @AD_Form_ID@>0 | @AD_Task_ID@>0',TO_DATE('2008-01-09 23:37:09','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54229 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,ReadOnlyLogic,Updated,UpdatedBy,VERSION) VALUES (0,54230,125,0,30,53057,163,'AD_Tab_ID',TO_DATE('2008-01-09 23:37:10','YYYY-MM-DD HH24:MI:SS'),100,'Tab within a Window','D',10,'The Tab indicates a tab that displays within a window.','Y','N','N','N','N','N','N','N','N','N','Y','Tab','@AD_Process_ID@>0 | @AD_Form_ID@>0 | @AD_Task_ID@>0 | @AD_Workflow_ID@>0',TO_DATE('2008-01-09 23:37:10','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54230 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,ReadOnlyLogic,Updated,UpdatedBy,VERSION) VALUES (0,54231,118,0,30,53057,'AD_Process_Para_ID',TO_DATE('2008-01-09 23:37:12','YYYY-MM-DD HH24:MI:SS'),100,'D',10,'Y','N','N','N','N','N','N','N','N','N','Y','Process Parameter','@AD_Window_ID@>0 | @AD_Form_ID@>0 | @AD_Task_ID@>0 | @AD_Workflow_ID@>0',TO_DATE('2008-01-09 23:37:12','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54231 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54232,113,0,19,53057,104,'AD_Org_ID',TO_DATE('2008-01-09 23:37:13','YYYY-MM-DD HH24:MI:SS'),100,'0','Organizational entity within client','D',22,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','N','Organization',TO_DATE('2008-01-09 23:37:13','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54232 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54233,608,0,18,110,53057,'UpdatedBy',TO_DATE('2008-01-09 23:37:14','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',22,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','N','Updated By',TO_DATE('2008-01-09 23:37:14','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54233 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54234,102,0,19,53057,'AD_Client_ID',TO_DATE('2008-01-09 23:37:14','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Client_ID@','Client/Tenant for this installation.','D',22,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','N','Client',TO_DATE('2008-01-09 23:37:14','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54234 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,ReadOnlyLogic,Updated,UpdatedBy,VERSION) VALUES (0,54235,107,0,30,53057,52005,'AD_Field_ID',TO_DATE('2008-01-09 23:37:15','YYYY-MM-DD HH24:MI:SS'),100,'Field on a database table','D',10,'The Field identifies a field on a database table.','Y','N','N','N','N','N','N','N','N','N','Y','Field','@AD_Process_ID@>0 | @AD_Form_ID@>0 | @AD_Task_ID@>0 | @AD_Workflow_ID@>0',TO_DATE('2008-01-09 23:37:15','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54235 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_TAB (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,CommitWarning,Created,CreatedBy,EntityType,HasTree,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,NAME,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53067,53057,53016,NULL,TO_DATE('2008-01-09 23:37:16','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','N','Y','N','Y','N','N','Exceptions','N',20,0,TO_DATE('2008-01-09 23:37:16','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TAB_TRL (AD_LANGUAGE,AD_Tab_ID, CommitWarning,Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TAB t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53067 AND EXISTS (SELECT * FROM AD_TAB_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54224,54317,0,53067,TO_DATE('2008-01-09 23:37:17','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','N','N','N','N','N','ASP_ClientException_ID',0,0,TO_DATE('2008-01-09 23:37:17','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54317 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54234,54318,0,53067,TO_DATE('2008-01-09 23:37:18','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',22,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','Client',10,0,TO_DATE('2008-01-09 23:37:18','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54318 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54232,54319,0,53067,TO_DATE('2008-01-09 23:37:19','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',22,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','Y','Organization',20,0,TO_DATE('2008-01-09 23:37:19','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54319 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54229,54320,0,53067,TO_DATE('2008-01-09 23:37:20','YYYY-MM-DD HH24:MI:SS'),100,'Data entry or display window',10,'D','The Window field identifies a unique Window in the system.','Y','Y','Y','N','N','N','N','Window',30,0,TO_DATE('2008-01-09 23:37:20','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54320 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54230,54321,0,53067,TO_DATE('2008-01-09 23:37:21','YYYY-MM-DD HH24:MI:SS'),100,'Tab within a Window',10,'D','The Tab indicates a tab that displays within a window.','Y','Y','Y','N','N','N','N','Tab',40,0,TO_DATE('2008-01-09 23:37:21','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54321 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54235,54322,0,53067,TO_DATE('2008-01-09 23:37:22','YYYY-MM-DD HH24:MI:SS'),100,'Field on a database table',10,'D','The Field identifies a field on a database table.','Y','Y','Y','N','N','N','N','Field',50,0,TO_DATE('2008-01-09 23:37:22','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54322 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54223,54323,0,53067,TO_DATE('2008-01-09 23:37:26','YYYY-MM-DD HH24:MI:SS'),100,'Process or Report',22,'D','The Process field identifies a unique Process or Report in the system.','Y','Y','Y','N','N','N','N','Process',60,0,TO_DATE('2008-01-09 23:37:26','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54323 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54231,54324,0,53067,TO_DATE('2008-01-09 23:37:27','YYYY-MM-DD HH24:MI:SS'),100,10,'D','Y','Y','Y','N','N','N','N','Process Parameter',70,0,TO_DATE('2008-01-09 23:37:27','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54324 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54219,54325,0,53067,TO_DATE('2008-01-09 23:37:27','YYYY-MM-DD HH24:MI:SS'),100,'Special Form',22,'D','The Special Form field identifies a unique Special Form in the system.','Y','Y','Y','N','N','N','N','Special Form',80,0,TO_DATE('2008-01-09 23:37:27','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54325 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54221,54326,0,53067,TO_DATE('2008-01-09 23:37:28','YYYY-MM-DD HH24:MI:SS'),100,'Operation System Task',22,'D','The Task field identifies a Operation System Task in the system.','Y','Y','Y','N','N','N','N','OS Task',90,0,TO_DATE('2008-01-09 23:37:28','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54326 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54218,54327,0,53067,TO_DATE('2008-01-09 23:37:29','YYYY-MM-DD HH24:MI:SS'),100,'Workflow or combination of tasks',22,'D','The Workflow field identifies a unique Workflow in the system.','Y','Y','Y','N','N','N','N','Workflow',100,0,TO_DATE('2008-01-09 23:37:29','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54327 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54222,54328,0,53067,TO_DATE('2008-01-09 23:37:30','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','ASP_Status',110,0,TO_DATE('2008-01-09 23:37:30','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54328 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54227,54329,0,53067,TO_DATE('2008-01-09 23:37:32','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','Y','Y','N','N','N','N','Active',120,0,TO_DATE('2008-01-09 23:37:32','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54329 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -CREATE TABLE ASP_MODULE (AD_Client_ID NUMBER(10) DEFAULT NULL NOT NULL, AD_Org_ID NUMBER(10) DEFAULT NULL NOT NULL, ASP_Module_ID NUMBER(10) NOT NULL, Created DATE NOT NULL, CreatedBy NUMBER(10) NOT NULL, Description NVARCHAR2(255), Help NVARCHAR2(2000), IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL, NAME NVARCHAR2(60) NOT NULL, Updated DATE NOT NULL, UpdatedBy NUMBER(10) NOT NULL, VALUE NVARCHAR2(40) NOT NULL, CONSTRAINT ASP_Module_Key PRIMARY KEY (ASP_Module_ID)) -; - -CREATE TABLE ASP_LEVEL (AD_Client_ID NUMBER(10) DEFAULT NULL NOT NULL, AD_Org_ID NUMBER(10) DEFAULT NULL NOT NULL, ASP_Level_ID NUMBER(10) NOT NULL, ASP_Module_ID NUMBER(10) NOT NULL, Created DATE NOT NULL, CreatedBy NUMBER(10) NOT NULL, Description NVARCHAR2(255), Help NVARCHAR2(2000), IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL, NAME NVARCHAR2(60) NOT NULL, Processing CHAR(1), Updated DATE NOT NULL, UpdatedBy NUMBER(10) NOT NULL, VALUE NVARCHAR2(40) NOT NULL, CONSTRAINT ASP_Level_Key PRIMARY KEY (ASP_Level_ID)) -; - -CREATE TABLE ASP_WINDOW (AD_Client_ID NUMBER(10) DEFAULT NULL NOT NULL, AD_Org_ID NUMBER(10) DEFAULT NULL NOT NULL, AD_Window_ID NUMBER(10) NOT NULL, ASP_Level_ID NUMBER(10) NOT NULL, ASP_Status CHAR(1) DEFAULT 'U' NOT NULL, Created DATE NOT NULL, CreatedBy NUMBER(10) NOT NULL, IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL, Updated DATE NOT NULL, UpdatedBy NUMBER(10) NOT NULL, CONSTRAINT ASP_Window_Key PRIMARY KEY (AD_Window_ID, ASP_Level_ID)) -; - -CREATE TABLE ASP_TAB (AD_Client_ID NUMBER(10) DEFAULT NULL NOT NULL, AD_Org_ID NUMBER(10) DEFAULT NULL NOT NULL, AD_Tab_ID NUMBER(10) NOT NULL, AD_Window_ID NUMBER(10) NOT NULL, ASP_Level_ID NUMBER(10) NOT NULL, ASP_Status CHAR(1) DEFAULT 'U' NOT NULL, AllFields CHAR(1) DEFAULT 'Y' CHECK (AllFields IN ('Y','N')), Created DATE NOT NULL, CreatedBy NUMBER(10) NOT NULL, IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL, Processing CHAR(1), Updated DATE NOT NULL, UpdatedBy NUMBER(10) NOT NULL, CONSTRAINT ASP_Tab_Key PRIMARY KEY (AD_Tab_ID, AD_Window_ID, ASP_Level_ID)) -; - -CREATE TABLE ASP_FIELD (AD_Client_ID NUMBER(10) DEFAULT NULL NOT NULL, AD_Field_ID NUMBER(10), AD_Org_ID NUMBER(10) DEFAULT NULL NOT NULL, AD_Tab_ID NUMBER(10) NOT NULL, ASP_Level_ID NUMBER(10) NOT NULL, ASP_Status CHAR(1) DEFAULT 'U' NOT NULL, Created DATE NOT NULL, CreatedBy NUMBER(10) NOT NULL, IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL, Updated DATE NOT NULL, UpdatedBy NUMBER(10) NOT NULL, CONSTRAINT ASP_Field_Key PRIMARY KEY (AD_Field_ID, AD_Tab_ID, ASP_Level_ID)) -; - -CREATE TABLE ASP_FORM (AD_Client_ID NUMBER(10) DEFAULT NULL NOT NULL, AD_Form_ID NUMBER(10) NOT NULL, AD_Org_ID NUMBER(10) DEFAULT NULL NOT NULL, ASP_Level_ID NUMBER(10) NOT NULL, ASP_Status CHAR(1) DEFAULT 'U' NOT NULL, Created DATE NOT NULL, CreatedBy NUMBER(10) NOT NULL, IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL, Updated DATE NOT NULL, UpdatedBy NUMBER(10) NOT NULL, CONSTRAINT ASP_Form_Key PRIMARY KEY (AD_Form_ID, ASP_Level_ID)) -; - -CREATE TABLE ASP_TASK (AD_Client_ID NUMBER(10) DEFAULT NULL NOT NULL, AD_Org_ID NUMBER(10) DEFAULT NULL NOT NULL, AD_Task_ID NUMBER(10) NOT NULL, ASP_Level_ID NUMBER(10) NOT NULL, ASP_Status CHAR(1) DEFAULT 'U' NOT NULL, Created DATE NOT NULL, CreatedBy NUMBER(10) NOT NULL, IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL, Updated DATE NOT NULL, UpdatedBy NUMBER(10) NOT NULL, CONSTRAINT ASP_Task_Key PRIMARY KEY (AD_Task_ID, ASP_Level_ID)) -; - -CREATE TABLE ASP_PROCESS (AD_Client_ID NUMBER(10) DEFAULT NULL NOT NULL, AD_Org_ID NUMBER(10) DEFAULT NULL NOT NULL, AD_Process_ID NUMBER(10) NOT NULL, ASP_Level_ID NUMBER(10) NOT NULL, ASP_Status CHAR(1) DEFAULT 'U' NOT NULL, Created DATE NOT NULL, CreatedBy NUMBER(10) NOT NULL, IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL, Updated DATE NOT NULL, UpdatedBy NUMBER(10) NOT NULL, CONSTRAINT ASP_Process_Key PRIMARY KEY (AD_Process_ID, ASP_Level_ID)) -; - -CREATE TABLE ASP_PROCESS_PARA (AD_Client_ID NUMBER(10) DEFAULT NULL NOT NULL, AD_Org_ID NUMBER(10) DEFAULT NULL NOT NULL, AD_Process_ID NUMBER(10) NOT NULL, AD_Process_Para_ID NUMBER(10), ASP_Level_ID NUMBER(10) NOT NULL, ASP_Status CHAR(1) DEFAULT 'U' NOT NULL, Created DATE NOT NULL, CreatedBy NUMBER(10) NOT NULL, IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL, Updated DATE NOT NULL, UpdatedBy NUMBER(10) NOT NULL, CONSTRAINT ASP_Process_Para_Key PRIMARY KEY (AD_Process_ID, AD_Process_Para_ID, ASP_Level_ID)) -; - -CREATE TABLE ASP_WORKFLOW (AD_Client_ID NUMBER(10) DEFAULT NULL NOT NULL, AD_Org_ID NUMBER(10) DEFAULT NULL NOT NULL, AD_Workflow_ID NUMBER(10) NOT NULL, ASP_Level_ID NUMBER(10) NOT NULL, ASP_Status CHAR(1) DEFAULT 'U' NOT NULL, Created DATE NOT NULL, CreatedBy NUMBER(10) NOT NULL, IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL, Updated DATE NOT NULL, UpdatedBy NUMBER(10) NOT NULL, CONSTRAINT ASP_Workflow_Key PRIMARY KEY (AD_Workflow_ID, ASP_Level_ID)) -; - -CREATE TABLE ASP_CLIENTLEVEL (AD_Client_ID NUMBER(10) DEFAULT NULL NOT NULL, AD_Org_ID NUMBER(10) DEFAULT 0 NOT NULL, ASP_ClientLevel_ID NUMBER(10) NOT NULL, ASP_Level_ID NUMBER(10) NOT NULL, ASP_Module_ID NUMBER(10) NOT NULL, Created DATE NOT NULL, CreatedBy NUMBER(10) NOT NULL, Help NVARCHAR2(2000), IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL, Updated DATE NOT NULL, UpdatedBy NUMBER(10) NOT NULL, CONSTRAINT ASP_ClientLevel_Key PRIMARY KEY (ASP_ClientLevel_ID)) -; - -CREATE TABLE ASP_CLIENTEXCEPTION (AD_Client_ID NUMBER(10) DEFAULT NULL NOT NULL, AD_Field_ID NUMBER(10), AD_Form_ID NUMBER(10), AD_Org_ID NUMBER(10) DEFAULT 0 NOT NULL, AD_Process_ID NUMBER(10), AD_Process_Para_ID NUMBER(10), AD_Tab_ID NUMBER(10), AD_Task_ID NUMBER(10), AD_WF_Node_ID NUMBER(10), AD_Window_ID NUMBER(10), AD_Workflow_ID NUMBER(10), ASP_ClientException_ID NUMBER(10) NOT NULL, ASP_Status CHAR(1) DEFAULT 'U' NOT NULL, Created DATE NOT NULL, CreatedBy NUMBER(10) NOT NULL, IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL, Updated DATE NOT NULL, UpdatedBy NUMBER(10) NOT NULL, CONSTRAINT ASP_ClientException_Key PRIMARY KEY (ASP_ClientException_ID)) -; - -INSERT INTO AD_MENU (AD_Client_ID,AD_Menu_ID,AD_Org_ID,AD_Window_ID,Action,Created,CreatedBy,EntityType,IsActive,IsReadOnly,IsSOTrx,IsSummary,NAME,Updated,UpdatedBy) VALUES (0,53083,0,53015,'W',TO_DATE('2008-01-09 23:57:19','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','N','N','N','ASP Modules',TO_DATE('2008-01-09 23:57:19','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_MENU_TRL (AD_LANGUAGE,AD_Menu_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Menu_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_MENU t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Menu_ID=53083 AND EXISTS (SELECT * FROM AD_MENU_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Menu_ID!=t.AD_Menu_ID) -; - -INSERT INTO AD_TREENODEMM (AD_Client_ID,AD_Org_ID, IsActive,Created,CreatedBy,Updated,UpdatedBy, AD_Tree_ID, Node_ID, Parent_ID, SeqNo) SELECT t.AD_Client_ID,0, 'Y', SYSDATE, 0, SYSDATE, 0,t.AD_Tree_ID, 53083, 0, 999 FROM AD_TREE t WHERE t.AD_Client_ID=0 AND t.IsActive='Y' AND t.IsAllNodes='Y' AND t.TreeType='MM' AND NOT EXISTS (SELECT * FROM AD_TREENODEMM e WHERE e.AD_Tree_ID=t.AD_Tree_ID AND Node_ID=53083) -; - -INSERT INTO AD_MENU (AD_Client_ID,AD_Menu_ID,AD_Org_ID,AD_Window_ID,Action,Created,CreatedBy,EntityType,IsActive,IsReadOnly,IsSOTrx,IsSummary,NAME,Updated,UpdatedBy) VALUES (0,53084,0,53016,'W',TO_DATE('2008-01-09 23:57:35','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','N','N','N','ASP Subscribed Modules',TO_DATE('2008-01-09 23:57:35','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_MENU_TRL (AD_LANGUAGE,AD_Menu_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Menu_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_MENU t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Menu_ID=53084 AND EXISTS (SELECT * FROM AD_MENU_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Menu_ID!=t.AD_Menu_ID) -; - -INSERT INTO AD_TREENODEMM (AD_Client_ID,AD_Org_ID, IsActive,Created,CreatedBy,Updated,UpdatedBy, AD_Tree_ID, Node_ID, Parent_ID, SeqNo) SELECT t.AD_Client_ID,0, 'Y', SYSDATE, 0, SYSDATE, 0,t.AD_Tree_ID, 53084, 0, 999 FROM AD_TREE t WHERE t.AD_Client_ID=0 AND t.IsActive='Y' AND t.IsAllNodes='Y' AND t.TreeType='MM' AND NOT EXISTS (SELECT * FROM AD_TREENODEMM e WHERE e.AD_Tree_ID=t.AD_Tree_ID AND Node_ID=53084) -; - --- manually added foreign keys - -ALTER TABLE ASP_CLIENTEXCEPTION ADD (CONSTRAINT adfield_aspclientexception FOREIGN KEY (ad_field_id) REFERENCES AD_FIELD); - -ALTER TABLE ASP_CLIENTEXCEPTION ADD (CONSTRAINT adform_aspclientexception FOREIGN KEY (ad_form_id) REFERENCES AD_FORM); - -ALTER TABLE ASP_CLIENTEXCEPTION ADD (CONSTRAINT adprocess_aspclientexception FOREIGN KEY (ad_process_id) REFERENCES AD_PROCESS); - -ALTER TABLE ASP_CLIENTEXCEPTION ADD (CONSTRAINT adprocesspara_aspclientexcepti FOREIGN KEY (ad_process_para_id) REFERENCES AD_PROCESS_PARA); - -ALTER TABLE ASP_CLIENTEXCEPTION ADD (CONSTRAINT adtab_aspclientexception FOREIGN KEY (ad_tab_id) REFERENCES AD_TAB); - -ALTER TABLE ASP_CLIENTEXCEPTION ADD (CONSTRAINT adtask_aspclientexception FOREIGN KEY (ad_task_id) REFERENCES AD_TASK); - -ALTER TABLE ASP_CLIENTEXCEPTION ADD (CONSTRAINT adwfnode_aspclientexception FOREIGN KEY (ad_wf_node_id) REFERENCES AD_WF_NODE); - -ALTER TABLE ASP_CLIENTEXCEPTION ADD (CONSTRAINT adwindow_aspclientexception FOREIGN KEY (ad_window_id) REFERENCES AD_WINDOW); - -ALTER TABLE ASP_CLIENTEXCEPTION ADD (CONSTRAINT adworkflow_aspclientexception FOREIGN KEY (ad_workflow_id) REFERENCES AD_WORKFLOW); - -ALTER TABLE ASP_CLIENTLEVEL ADD (CONSTRAINT asplevel_aspclientlevel FOREIGN KEY (asp_level_id) REFERENCES ASP_LEVEL); - -ALTER TABLE ASP_CLIENTLEVEL ADD (CONSTRAINT aspmodule_aspclientlevel FOREIGN KEY (asp_module_id) REFERENCES ASP_MODULE); - -ALTER TABLE ASP_FIELD ADD (CONSTRAINT adfield_aspfield FOREIGN KEY (ad_field_id) REFERENCES AD_FIELD); - -ALTER TABLE ASP_FIELD ADD (CONSTRAINT adtab_aspfield FOREIGN KEY (ad_tab_id) REFERENCES AD_TAB); - -ALTER TABLE ASP_FIELD ADD (CONSTRAINT asplevel_aspfield FOREIGN KEY (asp_level_id) REFERENCES ASP_LEVEL); - -ALTER TABLE ASP_FORM ADD (CONSTRAINT adform_aspform FOREIGN KEY (ad_form_id) REFERENCES AD_FORM); - -ALTER TABLE ASP_FORM ADD (CONSTRAINT asplevel_aspform FOREIGN KEY (asp_level_id) REFERENCES ASP_LEVEL); - -ALTER TABLE ASP_LEVEL ADD (CONSTRAINT aspmodule_asplevel FOREIGN KEY (asp_module_id) REFERENCES ASP_MODULE); - -ALTER TABLE ASP_PROCESS ADD (CONSTRAINT adprocess_aspprocess FOREIGN KEY (ad_process_id) REFERENCES AD_PROCESS); - -ALTER TABLE ASP_PROCESS ADD (CONSTRAINT asplevel_aspprocess FOREIGN KEY (asp_level_id) REFERENCES ASP_LEVEL); - -ALTER TABLE ASP_PROCESS_PARA ADD (CONSTRAINT adprocess_aspprocesspara FOREIGN KEY (ad_process_id) REFERENCES AD_PROCESS); - -ALTER TABLE ASP_PROCESS_PARA ADD (CONSTRAINT adprocesspara_aspprocesspara FOREIGN KEY (ad_process_para_id) REFERENCES AD_PROCESS_PARA); - -ALTER TABLE ASP_PROCESS_PARA ADD (CONSTRAINT asplevel_aspprocesspara FOREIGN KEY (asp_level_id) REFERENCES ASP_LEVEL); - -ALTER TABLE ASP_TAB ADD (CONSTRAINT adtab_asptab FOREIGN KEY (ad_tab_id) REFERENCES AD_TAB); - -ALTER TABLE ASP_TAB ADD (CONSTRAINT adwindow_asptab FOREIGN KEY (ad_window_id) REFERENCES AD_WINDOW); - -ALTER TABLE ASP_TAB ADD (CONSTRAINT asplevel_asptab FOREIGN KEY (asp_level_id) REFERENCES ASP_LEVEL); - -ALTER TABLE ASP_TASK ADD (CONSTRAINT adtask_asptask FOREIGN KEY (ad_task_id) REFERENCES AD_TASK); - -ALTER TABLE ASP_TASK ADD (CONSTRAINT asplevel_asptask FOREIGN KEY (asp_level_id) REFERENCES ASP_LEVEL); - -ALTER TABLE ASP_WINDOW ADD (CONSTRAINT adwindow_aspwindow FOREIGN KEY (ad_window_id) REFERENCES AD_WINDOW); - -ALTER TABLE ASP_WINDOW ADD (CONSTRAINT asplevel_aspwindow FOREIGN KEY (asp_level_id) REFERENCES ASP_LEVEL); - -ALTER TABLE ASP_WORKFLOW ADD (CONSTRAINT adworkflow_aspworkflow FOREIGN KEY (ad_workflow_id) REFERENCES AD_WORKFLOW); - -ALTER TABLE ASP_WORKFLOW ADD (CONSTRAINT asplevel_aspworkflow FOREIGN KEY (asp_level_id) REFERENCES ASP_LEVEL); - --- Jan 10, 2008 1:06:02 AM COT -INSERT INTO AD_PROCESS_PARA (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,AD_Reference_Value_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,NAME,SeqNo,Updated,UpdatedBy) VALUES (0,110,0,53067,53128,18,105,'AD_Menu_ID',TO_DATE('2008-01-10 01:05:57','YYYY-MM-DD HH24:MI:SS'),100,'U',0,'Y','Y','N','N','AD_Menu_ID',20,TO_DATE('2008-01-10 01:05:57','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_PROCESS_PARA_TRL (AD_LANGUAGE,AD_Process_Para_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_Para_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS_PARA t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53128 AND EXISTS (SELECT * FROM AD_PROCESS_PARA_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - - -UPDATE AD_PROCESS_PARA SET Description='Identifies a Menu', Help='The Menu identifies a unique Menu. Menus are used to control the display of those screens a user has access to.', NAME='Menu',Updated=TO_DATE('2008-01-10 01:06:34','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=53128 -; - -UPDATE AD_PROCESS_PARA_TRL SET IsTranslated='N' WHERE AD_Process_Para_ID=53128 -; - -UPDATE AD_ELEMENT SET NAME='Client Exception', PrintName='Client Exception',Updated=TO_DATE('2008-01-10 01:15:32','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=53331 -; - -UPDATE AD_ELEMENT_TRL SET IsTranslated='N' WHERE AD_Element_ID=53331 -; - -UPDATE AD_COLUMN SET ColumnName='ASP_ClientException_ID', NAME='Client Exception', Description=NULL, Help=NULL WHERE AD_Element_ID=53331 -; - -UPDATE AD_FIELD SET NAME='Client Exception', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_COLUMN WHERE AD_Element_ID=53331) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PROCESS_PARA SET ColumnName='ASP_ClientException_ID', NAME='Client Exception', Description=NULL, Help=NULL, AD_Element_ID=53331 WHERE UPPER(ColumnName)='ASP_CLIENTEXCEPTION_ID' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_PROCESS_PARA SET ColumnName='ASP_ClientException_ID', NAME='Client Exception', Description=NULL, Help=NULL WHERE AD_Element_ID=53331 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Client Exception', NAME='Client Exception' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=53331) -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Client Exception', NAME='Client Exception' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=53331) -; - -UPDATE AD_ELEMENT SET NAME='Client Level', PrintName='Client Level',Updated=TO_DATE('2008-01-10 01:15:42','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=53330 -; - -UPDATE AD_ELEMENT_TRL SET IsTranslated='N' WHERE AD_Element_ID=53330 -; - -UPDATE AD_COLUMN SET ColumnName='ASP_ClientLevel_ID', NAME='Client Level', Description=NULL, Help=NULL WHERE AD_Element_ID=53330 -; - -UPDATE AD_FIELD SET NAME='Client Level', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_COLUMN WHERE AD_Element_ID=53330) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PROCESS_PARA SET ColumnName='ASP_ClientLevel_ID', NAME='Client Level', Description=NULL, Help=NULL, AD_Element_ID=53330 WHERE UPPER(ColumnName)='ASP_CLIENTLEVEL_ID' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_PROCESS_PARA SET ColumnName='ASP_ClientLevel_ID', NAME='Client Level', Description=NULL, Help=NULL WHERE AD_Element_ID=53330 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Client Level', NAME='Client Level' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=53330) -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Client Level', NAME='Client Level' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=53330) -; - -UPDATE AD_ELEMENT SET NAME='ASP Level', PrintName='ASP Level',Updated=TO_DATE('2008-01-10 01:15:50','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=53326 -; - -UPDATE AD_ELEMENT_TRL SET IsTranslated='N' WHERE AD_Element_ID=53326 -; - -UPDATE AD_COLUMN SET ColumnName='ASP_Level_ID', NAME='ASP Level', Description=NULL, Help=NULL WHERE AD_Element_ID=53326 -; - -UPDATE AD_FIELD SET NAME='ASP Level', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_COLUMN WHERE AD_Element_ID=53326) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PROCESS_PARA SET ColumnName='ASP_Level_ID', NAME='ASP Level', Description=NULL, Help=NULL, AD_Element_ID=53326 WHERE UPPER(ColumnName)='ASP_LEVEL_ID' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_PROCESS_PARA SET ColumnName='ASP_Level_ID', NAME='ASP Level', Description=NULL, Help=NULL WHERE AD_Element_ID=53326 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='ASP Level', NAME='ASP Level' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=53326) -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='ASP Level', NAME='ASP Level' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=53326) -; - -UPDATE AD_ELEMENT SET NAME='ASP Module', PrintName='ASP Module',Updated=TO_DATE('2008-01-10 01:15:58','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=53329 -; - -UPDATE AD_ELEMENT_TRL SET IsTranslated='N' WHERE AD_Element_ID=53329 -; - -UPDATE AD_COLUMN SET ColumnName='ASP_Module_ID', NAME='ASP Module', Description=NULL, Help=NULL WHERE AD_Element_ID=53329 -; - -UPDATE AD_FIELD SET NAME='ASP Module', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_COLUMN WHERE AD_Element_ID=53329) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PROCESS_PARA SET ColumnName='ASP_Module_ID', NAME='ASP Module', Description=NULL, Help=NULL, AD_Element_ID=53329 WHERE UPPER(ColumnName)='ASP_MODULE_ID' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_PROCESS_PARA SET ColumnName='ASP_Module_ID', NAME='ASP Module', Description=NULL, Help=NULL WHERE AD_Element_ID=53329 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='ASP Module', NAME='ASP Module' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=53329) -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='ASP Module', NAME='ASP Module' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=53329) -; - -UPDATE AD_ELEMENT SET NAME='ASP Status', PrintName='ASP Status',Updated=TO_DATE('2008-01-10 01:16:06','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=53327 -; - -UPDATE AD_ELEMENT_TRL SET IsTranslated='N' WHERE AD_Element_ID=53327 -; - -UPDATE AD_COLUMN SET ColumnName='ASP_Status', NAME='ASP Status', Description=NULL, Help=NULL WHERE AD_Element_ID=53327 -; - -UPDATE AD_FIELD SET NAME='ASP Status', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_COLUMN WHERE AD_Element_ID=53327) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PROCESS_PARA SET ColumnName='ASP_Status', NAME='ASP Status', Description=NULL, Help=NULL, AD_Element_ID=53327 WHERE UPPER(ColumnName)='ASP_STATUS' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_PROCESS_PARA SET ColumnName='ASP_Status', NAME='ASP Status', Description=NULL, Help=NULL WHERE AD_Element_ID=53327 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='ASP Status', NAME='ASP Status' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=53327) -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='ASP Status', NAME='ASP Status' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=53327) -; - - -SELECT '064_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '065_FR_1871741.sql' AS Filename FROM dual; --- [ 1871741 ] Collapse grid as default -UPDATE AD_FIELDGROUP SET FieldGroupType = 'C' WHERE FieldGroupType IS NULL; -SELECT '066_FR1871740_MenuReorg.sql' AS Filename FROM dual; --- Jan 15, 2008 12:26:33 AM COT --- FR 1871740 - Menu reorg for new windows -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=0, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=218 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=1, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=153 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=2, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=263 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=3, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=166 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=4, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=203 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=5, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=236 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=6, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=183 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=7, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=160 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=8, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=278 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=9, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=345 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=10, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=519 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=11, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=52001 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=12, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=518 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=13, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=53083 -; - -UPDATE AD_TREENODEMM SET Parent_ID=156, SeqNo=0, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=225 -; - -UPDATE AD_TREENODEMM SET Parent_ID=156, SeqNo=1, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=261 -; - -UPDATE AD_TREENODEMM SET Parent_ID=156, SeqNo=2, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=148 -; - -UPDATE AD_TREENODEMM SET Parent_ID=156, SeqNo=3, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=529 -; - -UPDATE AD_TREENODEMM SET Parent_ID=156, SeqNo=4, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=397 -; - -UPDATE AD_TREENODEMM SET Parent_ID=156, SeqNo=5, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=531 -; - -UPDATE AD_TREENODEMM SET Parent_ID=156, SeqNo=6, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=530 -; - -UPDATE AD_TREENODEMM SET Parent_ID=156, SeqNo=7, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=532 -; - -UPDATE AD_TREENODEMM SET Parent_ID=156, SeqNo=8, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=53084 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=0, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=218 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=1, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=153 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=2, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=263 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=3, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=166 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=4, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=203 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=5, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=236 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=6, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=183 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=7, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=160 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=8, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=278 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=9, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=345 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=10, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=519 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=11, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=52001 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=12, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=518 -; - -UPDATE AD_TREENODEMM SET Parent_ID=156, SeqNo=0, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=225 -; - -UPDATE AD_TREENODEMM SET Parent_ID=156, SeqNo=1, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=261 -; - -UPDATE AD_TREENODEMM SET Parent_ID=156, SeqNo=2, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=148 -; - -UPDATE AD_TREENODEMM SET Parent_ID=156, SeqNo=3, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=529 -; - -UPDATE AD_TREENODEMM SET Parent_ID=156, SeqNo=4, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=397 -; - -UPDATE AD_TREENODEMM SET Parent_ID=156, SeqNo=5, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=531 -; - -UPDATE AD_TREENODEMM SET Parent_ID=156, SeqNo=6, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=530 -; - -UPDATE AD_TREENODEMM SET Parent_ID=156, SeqNo=7, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=532 -; - -UPDATE AD_TREENODEMM SET Parent_ID=156, SeqNo=8, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=53084 -; - -UPDATE AD_TREENODEMM SET Parent_ID=156, SeqNo=9, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=53083 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=0, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=218 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=1, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=153 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=2, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=263 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=3, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=166 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=4, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=203 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=5, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=236 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=6, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=183 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=7, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=160 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=8, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=278 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=9, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=345 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=10, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=519 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=11, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=518 -; - -UPDATE AD_TREENODEMM SET Parent_ID=457, SeqNo=0, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=52001 -; - -UPDATE AD_TREENODEMM SET Parent_ID=457, SeqNo=1, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=460 -; - -UPDATE AD_TREENODEMM SET Parent_ID=457, SeqNo=2, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=301 -; - -UPDATE AD_TREENODEMM SET Parent_ID=457, SeqNo=3, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=129 -; - -UPDATE AD_TREENODEMM SET Parent_ID=457, SeqNo=4, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=543 -; - -UPDATE AD_TREENODEMM SET Parent_ID=457, SeqNo=5, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=407 -; - -UPDATE AD_TREENODEMM SET Parent_ID=457, SeqNo=6, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=406 -; - -UPDATE AD_TREENODEMM SET Parent_ID=457, SeqNo=7, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=335 -; - -UPDATE AD_TREENODEMM SET Parent_ID=457, SeqNo=8, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=436 -; - -UPDATE AD_TREENODEMM SET Parent_ID=457, SeqNo=9, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=507 -; - -UPDATE AD_TREENODEMM SET Parent_ID=457, SeqNo=10, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=195 -; - -UPDATE AD_TREENODEMM SET Parent_ID=457, SeqNo=11, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=194 -; - -UPDATE AD_TREENODEMM SET Parent_ID=457, SeqNo=12, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=445 -; - -UPDATE AD_TREENODEMM SET Parent_ID=457, SeqNo=13, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=472 -; - -UPDATE AD_TREENODEMM SET Parent_ID=457, SeqNo=14, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=448 -; - -UPDATE AD_TREENODEMM SET Parent_ID=457, SeqNo=15, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=449 -; - -UPDATE AD_TREENODEMM SET Parent_ID=457, SeqNo=16, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=492 -; - -UPDATE AD_TREENODEMM SET Parent_ID=457, SeqNo=17, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=491 -; - -UPDATE AD_TREENODEMM SET Parent_ID=457, SeqNo=18, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=419 -; - -UPDATE AD_MENU SET NAME='Web POS',Updated=TO_DATE('2008-01-15 00:28:59','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=52001 -; - -UPDATE AD_MENU_TRL SET IsTranslated='N' WHERE AD_Menu_ID=52001 -; - -UPDATE AD_WINDOW SET NAME='Web POS BlackListCheque',Updated=TO_DATE('2008-01-15 00:29:24','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=52003 -; - -UPDATE AD_WINDOW_TRL SET IsTranslated='N' WHERE AD_Window_ID=52003 -; - -UPDATE AD_MENU SET Description='Black Listed Cheque', IsActive='Y', NAME='Web POS BlackListCheque',Updated=TO_DATE('2008-01-15 00:29:24','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=52005 -; - -UPDATE AD_MENU_TRL SET IsTranslated='N' WHERE AD_Menu_ID=52005 -; - -UPDATE AD_WINDOW SET NAME='Web POS Properties',Updated=TO_DATE('2008-01-15 00:29:41','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=52002 -; - -UPDATE AD_WINDOW_TRL SET IsTranslated='N' WHERE AD_Window_ID=52002 -; - -UPDATE AD_MENU SET Description='Stores the message tags to be picked up from AD_MESSAGE ', IsActive='Y', NAME='Web POS Properties',Updated=TO_DATE('2008-01-15 00:29:42','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=52004 -; - -UPDATE AD_MENU_TRL SET IsTranslated='N' WHERE AD_Menu_ID=52004 -; - -UPDATE AD_WINDOW SET NAME='Web POS Role Menu',Updated=TO_DATE('2008-01-15 00:29:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=52001 -; - -UPDATE AD_WINDOW_TRL SET IsTranslated='N' WHERE AD_Window_ID=52001 -; - -UPDATE AD_MENU SET Description='Depending on Which Role, Different set of Menus are generated and made available.', IsActive='Y', NAME='Web POS Role Menu',Updated=TO_DATE('2008-01-15 00:29:55','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=52003 -; - -UPDATE AD_MENU_TRL SET IsTranslated='N' WHERE AD_Menu_ID=52003 -; - -UPDATE AD_WINDOW SET NAME='Web POS Menu',Updated=TO_DATE('2008-01-15 00:30:08','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=52000 -; - -UPDATE AD_WINDOW_TRL SET IsTranslated='N' WHERE AD_Window_ID=52000 -; - -UPDATE AD_MENU SET Description='To dynamically generate the menu links in posterita', IsActive='Y', NAME='Web POS Menu',Updated=TO_DATE('2008-01-15 00:30:08','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=52002 -; - -UPDATE AD_MENU_TRL SET IsTranslated='N' WHERE AD_Menu_ID=52002 -; - -UPDATE AD_WINDOW SET Description='To dynamically generate the menu links in web POS',Updated=TO_DATE('2008-01-15 00:30:12','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=52000 -; - -UPDATE AD_WINDOW_TRL SET IsTranslated='N' WHERE AD_Window_ID=52000 -; - -UPDATE AD_MENU SET Description='To dynamically generate the menu links in web POS', IsActive='Y', NAME='Web POS Menu',Updated=TO_DATE('2008-01-15 00:30:12','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=52002 -; - -UPDATE AD_MENU_TRL SET IsTranslated='N' WHERE AD_Menu_ID=52002 -; - -UPDATE AD_FIELD SET SeqNo=10,IsDisplayed='Y' WHERE AD_Field_ID=52040 -; - -UPDATE AD_FIELD SET SeqNo=30,IsDisplayed='Y' WHERE AD_Field_ID=52043 -; - -UPDATE AD_FIELD SET SeqNo=40,IsDisplayed='Y' WHERE AD_Field_ID=52044 -; - -UPDATE AD_FIELD SET SeqNo=50,IsDisplayed='Y' WHERE AD_Field_ID=52042 -; - -UPDATE AD_TABLE SET NAME='Black List Cheque',Updated=TO_DATE('2008-01-15 00:36:00','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Table_ID=52000 -; - -UPDATE AD_TABLE_TRL SET IsTranslated='N' WHERE AD_Table_ID=52000 -; - -UPDATE AD_ELEMENT SET NAME='Black List Cheque', PrintName='Black List Cheque',Updated=TO_DATE('2008-01-15 00:36:17','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=52001 -; - -UPDATE AD_ELEMENT_TRL SET IsTranslated='N' WHERE AD_Element_ID=52001 -; - -UPDATE AD_COLUMN SET ColumnName='U_BlackListCheque_ID', NAME='Black List Cheque', Description=NULL, Help=NULL WHERE AD_Element_ID=52001 -; - -UPDATE AD_FIELD SET NAME='Black List Cheque', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_COLUMN WHERE AD_Element_ID=52001) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PROCESS_PARA SET ColumnName='U_BlackListCheque_ID', NAME='Black List Cheque', Description=NULL, Help=NULL, AD_Element_ID=52001 WHERE UPPER(ColumnName)='U_BLACKLISTCHEQUE_ID' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_PROCESS_PARA SET ColumnName='U_BlackListCheque_ID', NAME='Black List Cheque', Description=NULL, Help=NULL WHERE AD_Element_ID=52001 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Black List Cheque', NAME='Black List Cheque' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=52001) -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Black List Cheque', NAME='Black List Cheque' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=52001) -; - -UPDATE AD_ELEMENT SET NAME='Role Menu', PrintName='Role Menu',Updated=TO_DATE('2008-01-15 00:36:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=52007 -; - -UPDATE AD_ELEMENT_TRL SET IsTranslated='N' WHERE AD_Element_ID=52007 -; - -UPDATE AD_COLUMN SET ColumnName='U_RoleMenu_ID', NAME='Role Menu', Description=NULL, Help=NULL WHERE AD_Element_ID=52007 -; - -UPDATE AD_FIELD SET NAME='Role Menu', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_COLUMN WHERE AD_Element_ID=52007) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PROCESS_PARA SET ColumnName='U_RoleMenu_ID', NAME='Role Menu', Description=NULL, Help=NULL, AD_Element_ID=52007 WHERE UPPER(ColumnName)='U_ROLEMENU_ID' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_PROCESS_PARA SET ColumnName='U_RoleMenu_ID', NAME='Role Menu', Description=NULL, Help=NULL WHERE AD_Element_ID=52007 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Role Menu', NAME='Role Menu' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=52007) -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Role Menu', NAME='Role Menu' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=52007) -; - -UPDATE AD_TABLE SET NAME='Role Menu',Updated=TO_DATE('2008-01-15 00:36:56','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Table_ID=52002 -; - -UPDATE AD_TABLE_TRL SET IsTranslated='N' WHERE AD_Table_ID=52002 -; - -UPDATE AD_ELEMENT SET NAME='Web Menu', PrintName='Web Menu',Updated=TO_DATE('2008-01-15 00:37:16','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=52008 -; - -UPDATE AD_ELEMENT_TRL SET IsTranslated='N' WHERE AD_Element_ID=52008 -; - -UPDATE AD_COLUMN SET ColumnName='U_WebMenu_ID', NAME='Web Menu', Description=NULL, Help=NULL WHERE AD_Element_ID=52008 -; - -UPDATE AD_FIELD SET NAME='Web Menu', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_COLUMN WHERE AD_Element_ID=52008) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PROCESS_PARA SET ColumnName='U_WebMenu_ID', NAME='Web Menu', Description=NULL, Help=NULL, AD_Element_ID=52008 WHERE UPPER(ColumnName)='U_WEBMENU_ID' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_PROCESS_PARA SET ColumnName='U_WebMenu_ID', NAME='Web Menu', Description=NULL, Help=NULL WHERE AD_Element_ID=52008 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Web Menu', NAME='Web Menu' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=52008) -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Web Menu', NAME='Web Menu' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=52008) -; - -UPDATE AD_TABLE SET NAME='Web Menu',Updated=TO_DATE('2008-01-15 00:37:25','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Table_ID=52003 -; - -UPDATE AD_TABLE_TRL SET IsTranslated='N' WHERE AD_Table_ID=52003 -; - -UPDATE AD_ELEMENT SET NAME='Parent Menu', PrintName='Parent Menu',Updated=TO_DATE('2008-01-15 00:37:45','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=52011 -; - -UPDATE AD_ELEMENT_TRL SET IsTranslated='N' WHERE AD_Element_ID=52011 -; - -UPDATE AD_COLUMN SET ColumnName='ParentMenu_ID', NAME='Parent Menu', Description=NULL, Help=NULL WHERE AD_Element_ID=52011 -; - -UPDATE AD_FIELD SET NAME='Parent Menu', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_COLUMN WHERE AD_Element_ID=52011) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PROCESS_PARA SET ColumnName='ParentMenu_ID', NAME='Parent Menu', Description=NULL, Help=NULL, AD_Element_ID=52011 WHERE UPPER(ColumnName)='PARENTMENU_ID' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_PROCESS_PARA SET ColumnName='ParentMenu_ID', NAME='Parent Menu', Description=NULL, Help=NULL WHERE AD_Element_ID=52011 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Parent Menu', NAME='Parent Menu' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=52011) -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Parent Menu', NAME='Parent Menu' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=52011) -; - -UPDATE AD_ELEMENT SET NAME='Has SubMenu', PrintName='Has SubMenu',Updated=TO_DATE('2008-01-15 00:38:07','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=52012 -; - -UPDATE AD_ELEMENT_TRL SET IsTranslated='N' WHERE AD_Element_ID=52012 -; - -UPDATE AD_COLUMN SET ColumnName='HasSubMenu', NAME='Has SubMenu', Description=NULL, Help=NULL WHERE AD_Element_ID=52012 -; - -UPDATE AD_FIELD SET NAME='Has SubMenu', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_COLUMN WHERE AD_Element_ID=52012) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PROCESS_PARA SET ColumnName='HasSubMenu', NAME='Has SubMenu', Description=NULL, Help=NULL, AD_Element_ID=52012 WHERE UPPER(ColumnName)='HASSUBMENU' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_PROCESS_PARA SET ColumnName='HasSubMenu', NAME='Has SubMenu', Description=NULL, Help=NULL WHERE AD_Element_ID=52012 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Has SubMenu', NAME='Has SubMenu' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=52012) -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Has SubMenu', NAME='Has SubMenu' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=52012) -; - -UPDATE AD_ELEMENT SET NAME='Image Link', PrintName='Image Link',Updated=TO_DATE('2008-01-15 00:38:24','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=52013 -; - -UPDATE AD_ELEMENT_TRL SET IsTranslated='N' WHERE AD_Element_ID=52013 -; - -UPDATE AD_COLUMN SET ColumnName='ImageLink', NAME='Image Link', Description=NULL, Help=NULL WHERE AD_Element_ID=52013 -; - -UPDATE AD_FIELD SET NAME='Image Link', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_COLUMN WHERE AD_Element_ID=52013) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PROCESS_PARA SET ColumnName='ImageLink', NAME='Image Link', Description=NULL, Help=NULL, AD_Element_ID=52013 WHERE UPPER(ColumnName)='IMAGELINK' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_PROCESS_PARA SET ColumnName='ImageLink', NAME='Image Link', Description=NULL, Help=NULL WHERE AD_Element_ID=52013 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Image Link', NAME='Image Link' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=52013) -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Image Link', NAME='Image Link' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=52013) -; - -UPDATE AD_ELEMENT SET NAME='Menu Link', PrintName='Menu Link',Updated=TO_DATE('2008-01-15 00:38:34','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=52009 -; - -UPDATE AD_ELEMENT_TRL SET IsTranslated='N' WHERE AD_Element_ID=52009 -; - -UPDATE AD_COLUMN SET ColumnName='MenuLink', NAME='Menu Link', Description=NULL, Help=NULL WHERE AD_Element_ID=52009 -; - -UPDATE AD_FIELD SET NAME='Menu Link', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_COLUMN WHERE AD_Element_ID=52009) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PROCESS_PARA SET ColumnName='MenuLink', NAME='Menu Link', Description=NULL, Help=NULL, AD_Element_ID=52009 WHERE UPPER(ColumnName)='MENULINK' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_PROCESS_PARA SET ColumnName='MenuLink', NAME='Menu Link', Description=NULL, Help=NULL WHERE AD_Element_ID=52009 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Menu Link', NAME='Menu Link' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=52009) -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Menu Link', NAME='Menu Link' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=52009) -; - -UPDATE AD_ELEMENT SET NAME='Bank Name', PrintName='Bank Name',Updated=TO_DATE('2008-01-15 00:38:51','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=52002 -; - -UPDATE AD_ELEMENT_TRL SET IsTranslated='N' WHERE AD_Element_ID=52002 -; - -UPDATE AD_COLUMN SET ColumnName='BankName', NAME='Bank Name', Description=NULL, Help=NULL WHERE AD_Element_ID=52002 -; - -UPDATE AD_FIELD SET NAME='Bank Name', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_COLUMN WHERE AD_Element_ID=52002) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PROCESS_PARA SET ColumnName='BankName', NAME='Bank Name', Description=NULL, Help=NULL, AD_Element_ID=52002 WHERE UPPER(ColumnName)='BANKNAME' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_PROCESS_PARA SET ColumnName='BankName', NAME='Bank Name', Description=NULL, Help=NULL WHERE AD_Element_ID=52002 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Bank Name', NAME='Bank Name' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=52002) -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Bank Name', NAME='Bank Name' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=52002) -; - -UPDATE AD_ELEMENT SET NAME='Cheque No', PrintName='Cheque No',Updated=TO_DATE('2008-01-15 00:39:00','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=52003 -; - -UPDATE AD_ELEMENT_TRL SET IsTranslated='N' WHERE AD_Element_ID=52003 -; - -UPDATE AD_COLUMN SET ColumnName='ChequeNo', NAME='Cheque No', Description=NULL, Help=NULL WHERE AD_Element_ID=52003 -; - -UPDATE AD_FIELD SET NAME='Cheque No', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_COLUMN WHERE AD_Element_ID=52003) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PROCESS_PARA SET ColumnName='ChequeNo', NAME='Cheque No', Description=NULL, Help=NULL, AD_Element_ID=52003 WHERE UPPER(ColumnName)='CHEQUENO' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_PROCESS_PARA SET ColumnName='ChequeNo', NAME='Cheque No', Description=NULL, Help=NULL WHERE AD_Element_ID=52003 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Cheque No', NAME='Cheque No' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=52003) -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Cheque No', NAME='Cheque No' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=52003) -; - -UPDATE AD_ELEMENT SET NAME='Key', PrintName='Key',Updated=TO_DATE('2008-01-15 00:39:35','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=52005 -; - -UPDATE AD_ELEMENT_TRL SET IsTranslated='N' WHERE AD_Element_ID=52005 -; - -UPDATE AD_COLUMN SET ColumnName='U_Key', NAME='Key', Description=NULL, Help=NULL WHERE AD_Element_ID=52005 -; - -UPDATE AD_FIELD SET NAME='Key', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_COLUMN WHERE AD_Element_ID=52005) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PROCESS_PARA SET ColumnName='U_Key', NAME='Key', Description=NULL, Help=NULL, AD_Element_ID=52005 WHERE UPPER(ColumnName)='U_KEY' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_PROCESS_PARA SET ColumnName='U_Key', NAME='Key', Description=NULL, Help=NULL WHERE AD_Element_ID=52005 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Key', NAME='Key' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=52005) -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Key', NAME='Key' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=52005) -; - -UPDATE AD_ELEMENT SET NAME='Value', PrintName='Value',Updated=TO_DATE('2008-01-15 00:39:47','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=52006 -; - -UPDATE AD_ELEMENT_TRL SET IsTranslated='N' WHERE AD_Element_ID=52006 -; - -UPDATE AD_COLUMN SET ColumnName='U_Value', NAME='Value', Description=NULL, Help=NULL WHERE AD_Element_ID=52006 -; - -UPDATE AD_FIELD SET NAME='Value', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_COLUMN WHERE AD_Element_ID=52006) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PROCESS_PARA SET ColumnName='U_Value', NAME='Value', Description=NULL, Help=NULL, AD_Element_ID=52006 WHERE UPPER(ColumnName)='U_VALUE' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_PROCESS_PARA SET ColumnName='U_Value', NAME='Value', Description=NULL, Help=NULL WHERE AD_Element_ID=52006 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Value', NAME='Value' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=52006) -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Value', NAME='Value' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=52006) -; - -UPDATE AD_ELEMENT SET NAME='Web Properties', PrintName='Web Properties',Updated=TO_DATE('2008-01-15 00:40:02','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=52004 -; - -UPDATE AD_ELEMENT_TRL SET IsTranslated='N' WHERE AD_Element_ID=52004 -; - -UPDATE AD_COLUMN SET ColumnName='U_Web_Properties_ID', NAME='Web Properties', Description=NULL, Help=NULL WHERE AD_Element_ID=52004 -; - -UPDATE AD_FIELD SET NAME='Web Properties', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_COLUMN WHERE AD_Element_ID=52004) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PROCESS_PARA SET ColumnName='U_Web_Properties_ID', NAME='Web Properties', Description=NULL, Help=NULL, AD_Element_ID=52004 WHERE UPPER(ColumnName)='U_WEB_PROPERTIES_ID' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_PROCESS_PARA SET ColumnName='U_Web_Properties_ID', NAME='Web Properties', Description=NULL, Help=NULL WHERE AD_Element_ID=52004 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Web Properties', NAME='Web Properties' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=52004) -; - -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Web Properties', NAME='Web Properties' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=52004) -; - -UPDATE AD_TABLE SET NAME='Web Properties',Updated=TO_DATE('2008-01-15 00:40:09','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Table_ID=52001 -; - -UPDATE AD_TABLE_TRL SET IsTranslated='N' WHERE AD_Table_ID=52001 -; - - -SELECT '067_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '068_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '069_BF_1873440.sql' AS Filename FROM dual; --- 17-ene-2008 0:07:20 COT --- [ 1873440 ] Product window misconfigured -UPDATE AD_FIELD SET IsSameLine='N', SeqNo=530,Updated=TO_DATE('2008-01-17 00:07:20','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=52016 -; - -UPDATE AD_FIELD SET SeqNo=520,Updated=TO_DATE('2008-01-17 00:07:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=52015 -; - - -SELECT '070_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '071_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '072_FR1875981_EAN13.sql' AS Filename FROM dual; --- Jan 21, 2008 12:32:21 AM EET --- -- Jan 21, 2008 12:32:50 AM EET --- -- Jan 21, 2008 1:38:27 AM EET --- [ 1875981 ] Add support for EAN13 Barcode -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53288,377,TO_DATE('2008-01-21 01:38:27','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','EAN 13',TO_DATE('2008-01-21 01:38:27','YYYY-MM-DD HH24:MI:SS'),100,'E13') -; - --- Jan 21, 2008 1:38:28 AM EET --- [ 1875981 ] Add support for EAN13 Barcode -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53288 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - - -SELECT '073_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '074_FR1876984.sql' AS Filename FROM dual; --- Jan 21, 2008 11:13:10 PM COT --- 1876984 - Make payment numbering configurable -INSERT INTO AD_SYSCONFIG (AD_Client_ID,AD_Org_ID,AD_SysConfig_ID,ConfigurationLevel,Created,CreatedBy,Description,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,50011,'C',TO_DATE('2008-01-21 23:13:07','YYYY-MM-DD HH24:MI:SS'),100,'Y/N - Define if the payment document number must be overwritten with the check number','D','Y','PAYMENT_OVERWRITE_DOCUMENTNO_WITH_CHECK_ON_PAYMENT',TO_DATE('2008-01-21 23:13:07','YYYY-MM-DD HH24:MI:SS'),100,'Y') -; - -INSERT INTO AD_SYSCONFIG (AD_Client_ID,AD_Org_ID,AD_SysConfig_ID,ConfigurationLevel,Created,CreatedBy,Description,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,50012,'C',TO_DATE('2008-01-21 23:13:30','YYYY-MM-DD HH24:MI:SS'),100,'Y/N - Define if the payment document number must be overwritten with the credit card','D','Y','PAYMENT_OVERWRITE_DOCUMENTNO_WITH_CREDIT_CARD',TO_DATE('2008-01-21 23:13:30','YYYY-MM-DD HH24:MI:SS'),100,'Y') -; - -INSERT INTO AD_SYSCONFIG (AD_Client_ID,AD_Org_ID,AD_SysConfig_ID,ConfigurationLevel,Created,CreatedBy,Description,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,50013,'C',TO_DATE('2008-01-21 23:19:48','YYYY-MM-DD HH24:MI:SS'),100,'Y/N - Define if the payment (receipt) document number must be overwritten with the check number','D','Y','PAYMENT_OVERWRITE_DOCUMENTNO_WITH_CHECK_ON_RECEIPT',TO_DATE('2008-01-21 23:19:48','YYYY-MM-DD HH24:MI:SS'),100,'Y') -; - -SELECT '075_FR1877902_BeanshellCallout.sql' AS Filename FROM dual; -SET SQLBLANKLINES ON --- Jan 23, 2008 11:41:33 AM COT --- 1877902 - Implement beanshell callout -INSERT INTO AD_TABLE (AD_Client_ID,AD_Org_ID,AD_Table_ID,AccessLevel,CopyColumnsFromTable,Created,CreatedBy,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,LoadSeq,NAME,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53058,'4','N',TO_DATE('2008-01-23 11:41:30','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','Y','N','N','N',0,'Rule','L','AD_Rule',TO_DATE('2008-01-23 11:41:30','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE_TRL (AD_LANGUAGE,AD_Table_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Table_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TABLE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53058 AND EXISTS (SELECT * FROM AD_TABLE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Table_ID!=t.AD_Table_ID) -; - -INSERT INTO AD_SEQUENCE (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,NAME,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53075,TO_DATE('2008-01-23 11:41:35','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table AD_Rule',1,'Y','N','Y','Y','AD_Rule','N',1000000,TO_DATE('2008-01-23 11:41:35','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54241,102,0,19,53058,'AD_Client_ID',TO_DATE('2008-01-23 11:41:52','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Client_ID@','Client/Tenant for this installation.','D',22,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','N','Client',0,TO_DATE('2008-01-23 11:41:52','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54241 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54242,113,0,19,53058,104,'AD_Org_ID',TO_DATE('2008-01-23 11:41:59','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Org_ID@','Organizational entity within client','D',22,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','N','Organization',0,TO_DATE('2008-01-23 11:41:59','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54242 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54243,245,0,16,53058,'Created',TO_DATE('2008-01-23 11:42:03','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',7,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','N','Created',0,TO_DATE('2008-01-23 11:42:03','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54243 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54244,246,0,18,110,53058,'CreatedBy',TO_DATE('2008-01-23 11:42:09','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',22,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','N','Created By',0,TO_DATE('2008-01-23 11:42:09','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54244 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54245,275,0,10,53058,'Description',TO_DATE('2008-01-23 11:42:12','YYYY-MM-DD HH24:MI:SS'),100,'Optional short description of the record','D',255,'A description is limited to 255 characters.','Y','N','N','N','N','N','N','N','N','N','Y','Description',0,TO_DATE('2008-01-23 11:42:12','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54245 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54246,326,0,14,53058,'Help',TO_DATE('2008-01-23 11:42:17','YYYY-MM-DD HH24:MI:SS'),100,'Comment or Hint','D',2000,'The Help field contains a hint, comment or help about the use of this item.','Y','N','N','N','N','N','N','N','N','N','Y','Comment/Help',0,TO_DATE('2008-01-23 11:42:17','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54246 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54247,348,0,20,53058,'IsActive',TO_DATE('2008-01-23 11:42:22','YYYY-MM-DD HH24:MI:SS'),100,'Y','The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','N','N','N','N','Y','N','N','N','N','Y','Active',0,TO_DATE('2008-01-23 11:42:22','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54247 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53332,0,'AD_Rule_ID',TO_DATE('2008-01-23 11:42:24','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Rule','Rule',TO_DATE('2008-01-23 11:42:24','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53332 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54248,53332,0,13,53058,'AD_Rule_ID',TO_DATE('2008-01-23 11:42:24','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','Y','Y','N','N','N','N','N','Rule',0,TO_DATE('2008-01-23 11:42:24','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54248 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54249,469,0,10,53058,'Name',TO_DATE('2008-01-23 11:42:27','YYYY-MM-DD HH24:MI:SS'),100,'Alphanumeric identifier of the entity','D',60,'The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.','Y','N','N','Y','N','Y','N','N','N','N','Y','Name',1,TO_DATE('2008-01-23 11:42:27','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54249 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54250,607,0,16,53058,'Updated',TO_DATE('2008-01-23 11:42:32','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','N','Updated',0,TO_DATE('2008-01-23 11:42:32','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54250 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54251,608,0,18,110,53058,'UpdatedBy',TO_DATE('2008-01-23 11:42:35','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',22,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','N','Updated By',0,TO_DATE('2008-01-23 11:42:35','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54251 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54252,620,0,10,53058,'Value',TO_DATE('2008-01-23 11:42:41','YYYY-MM-DD HH24:MI:SS'),100,'Search key for the record in the format required - must be unique','D',40,'A search key allows you a fast method of finding a particular record. -IF you leave THE search KEY empty, THE SYSTEM automatically creates a NUMERIC NUMBER. THE document SEQUENCE used FOR this fallback NUMBER IS DEFINED IN THE "Maintain Sequence" window WITH THE NAME "DocumentNo_", WHERE TableName IS THE actual NAME OF THE TABLE (e.g. C_ORDER).','Y','N','N','N','N','Y','N','N','N','N','Y','Search KEY',0,TO_DATE('2008-01-23 11:42:41','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54252 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,ReadOnlyLogic,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54253,1682,0,18,389,53058,'EntityType',TO_DATE('2008-01-23 11:47:17','YYYY-MM-DD HH24:MI:SS'),100,'U','Dictionary Entity Type; Determines ownership and synchronization','D',40,'The Entity Types "Dictionary", "Adempiere" and "Application" might be automatically synchronized and customizations deleted or overwritten. - -FOR customizations, copy THE entity AND SELECT "User"!','Y','N','N','N','N','N','N','N','N','N','Y','Entity TYPE','@EntityType@=D',0,TO_DATE('2008-01-23 11:47:17','YYYY-MM-DD HH24:MI:SS'),100,1.000000000000) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54253 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53333,0,'RuleType',TO_DATE('2008-01-23 11:48:41','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Rule Type','Rule Type',TO_DATE('2008-01-23 11:48:41','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53333 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_REFERENCE (AD_Client_ID,AD_Org_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,ValidationType) VALUES (0,0,53235,TO_DATE('2008-01-23 11:49:53','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','AD_Rule_RuleType',TO_DATE('2008-01-23 11:49:53','YYYY-MM-DD HH24:MI:SS'),100,'L') -; - -INSERT INTO AD_REFERENCE_TRL (AD_LANGUAGE,AD_Reference_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Reference_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REFERENCE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Reference_ID=53235 AND EXISTS (SELECT * FROM AD_REFERENCE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Reference_ID!=t.AD_Reference_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53289,53235,TO_DATE('2008-01-23 11:51:19','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Aspect Orient Program',TO_DATE('2008-01-23 11:51:19','YYYY-MM-DD HH24:MI:SS'),100,'A') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53289 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53290,53235,TO_DATE('2008-01-23 11:51:28','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','BeanShell',TO_DATE('2008-01-23 11:51:28','YYYY-MM-DD HH24:MI:SS'),100,'B') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53290 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53291,53235,TO_DATE('2008-01-23 11:51:42','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','JSR 94 Rule Engine API',TO_DATE('2008-01-23 11:51:42','YYYY-MM-DD HH24:MI:SS'),100,'R') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53291 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53292,53235,TO_DATE('2008-01-23 11:51:51','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','SQL',TO_DATE('2008-01-23 11:51:51','YYYY-MM-DD HH24:MI:SS'),100,'S') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53292 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54254,53333,0,17,53235,53058,'RuleType',TO_DATE('2008-01-23 11:52:52','YYYY-MM-DD HH24:MI:SS'),100,'D',1,'Y','N','N','N','N','N','N','N','N','N','Y','Rule Type',0,TO_DATE('2008-01-23 11:52:52','YYYY-MM-DD HH24:MI:SS'),100,1.000000000000) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54254 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_REFERENCE (AD_Client_ID,AD_Org_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,ValidationType) VALUES (0,0,53236,TO_DATE('2008-01-23 11:54:58','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','AD_Rule_EventType',TO_DATE('2008-01-23 11:54:58','YYYY-MM-DD HH24:MI:SS'),100,'L') -; - -INSERT INTO AD_REFERENCE_TRL (AD_LANGUAGE,AD_Reference_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Reference_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REFERENCE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Reference_ID=53236 AND EXISTS (SELECT * FROM AD_REFERENCE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Reference_ID!=t.AD_Reference_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53293,53236,TO_DATE('2008-01-23 11:55:09','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Callout',TO_DATE('2008-01-23 11:55:09','YYYY-MM-DD HH24:MI:SS'),100,'C') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53293 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53294,53236,TO_DATE('2008-01-23 11:55:16','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Process',TO_DATE('2008-01-23 11:55:16','YYYY-MM-DD HH24:MI:SS'),100,'P') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53294 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53295,53236,TO_DATE('2008-01-23 11:55:56','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Model Validator Table Event',TO_DATE('2008-01-23 11:55:56','YYYY-MM-DD HH24:MI:SS'),100,'T') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53295 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53296,53236,TO_DATE('2008-01-23 11:56:08','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Model Validator Document Event',TO_DATE('2008-01-23 11:56:08','YYYY-MM-DD HH24:MI:SS'),100,'D') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53296 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53297,53236,TO_DATE('2008-01-23 11:56:20','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Model Validator Login Event',TO_DATE('2008-01-23 11:56:20','YYYY-MM-DD HH24:MI:SS'),100,'L') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53297 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -UPDATE AD_REF_LIST SET EntityType='D',Updated=TO_DATE('2008-01-23 11:56:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Ref_List_ID=53296 -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54255,2334,0,17,53236,53058,'EventType',TO_DATE('2008-01-23 11:56:51','YYYY-MM-DD HH24:MI:SS'),100,'Type of Event','D',1,'Y','N','N','N','N','N','N','N','N','N','Y','Event Type',0,TO_DATE('2008-01-23 11:56:51','YYYY-MM-DD HH24:MI:SS'),100,1.000000000000) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54255 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54256,145,0,17,5,53058,'AccessLevel',TO_DATE('2008-01-23 11:58:09','YYYY-MM-DD HH24:MI:SS'),100,NULL,'Access Level required','D',1,'Indicates the access level required for this record or process.','Y','N','N','N','N','N','N','N','N','N','Y','Data Access Level',0,TO_DATE('2008-01-23 11:58:09','YYYY-MM-DD HH24:MI:SS'),100,1.000000000000) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54256 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -UPDATE AD_COLUMN SET EntityType='D',Updated=TO_DATE('2008-01-23 11:58:34','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54253 -; - -UPDATE AD_FIELD SET NAME='Entity Type', Description='Dictionary Entity Type; Determines ownership and synchronization', Help='The Entity Types "Dictionary", "Adempiere" and "Application" might be automatically synchronized and customizations deleted or overwritten. - -FOR customizations, copy THE entity AND SELECT "User"!' WHERE AD_Column_ID=54253 AND IsCentrallyMaintained='Y' -; - -INSERT INTO AD_WINDOW (AD_Client_ID,AD_Org_ID,AD_Window_ID,Created,CreatedBy,EntityType,IsActive,IsBetaFunctionality,IsDefault,IsSOTrx,NAME,Processing,Updated,UpdatedBy,WinHeight,WinWidth,WindowType) VALUES (0,0,53017,TO_DATE('2008-01-23 11:59:57','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','N','N','N','Rule','N',TO_DATE('2008-01-23 11:59:57','YYYY-MM-DD HH24:MI:SS'),100,0,0,'M') -; - -INSERT INTO AD_WINDOW_TRL (AD_LANGUAGE,AD_Window_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Window_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_WINDOW t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Window_ID=53017 AND EXISTS (SELECT * FROM AD_WINDOW_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Window_ID!=t.AD_Window_ID) -; - -INSERT INTO AD_WINDOW_ACCESS (AD_Client_ID,AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,0,53017,TO_DATE('2008-01-23 12:00:05','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-01-23 12:00:05','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_WINDOW_ACCESS (AD_Client_ID,AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,102,53017,TO_DATE('2008-01-23 12:00:05','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-01-23 12:00:05','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_WINDOW_ACCESS (AD_Client_ID,AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,103,53017,TO_DATE('2008-01-23 12:00:05','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-01-23 12:00:05','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_WINDOW_ACCESS (AD_Client_ID,AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,50001,53017,TO_DATE('2008-01-23 12:00:05','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-01-23 12:00:05','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TAB (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,Created,CreatedBy,EntityType,HasTree,ImportFields,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,NAME,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53068,53058,53017,TO_DATE('2008-01-23 12:00:28','YYYY-MM-DD HH24:MI:SS'),100,'D','N','N','Y','N','N','Y','N','Y','N','N','Rule','N',10,0,TO_DATE('2008-01-23 12:00:28','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TAB_TRL (AD_LANGUAGE,AD_Tab_ID, CommitWarning,Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TAB t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53068 AND EXISTS (SELECT * FROM AD_TAB_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54247,54335,0,53068,TO_DATE('2008-01-23 12:00:32','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','Y','Y','N','N','N','N','N','Active',TO_DATE('2008-01-23 12:00:32','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54335 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54241,54336,0,53068,TO_DATE('2008-01-23 12:00:34','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',22,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','N','Client',TO_DATE('2008-01-23 12:00:34','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54336 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54246,54337,0,53068,TO_DATE('2008-01-23 12:00:34','YYYY-MM-DD HH24:MI:SS'),100,'Comment or Hint',2000,'D','The Help field contains a hint, comment or help about the use of this item.','Y','Y','Y','N','N','N','N','N','Comment/Help',TO_DATE('2008-01-23 12:00:34','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54337 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54256,54338,0,53068,TO_DATE('2008-01-23 12:00:35','YYYY-MM-DD HH24:MI:SS'),100,'Access Level required',1,'D','Indicates the access level required for this record or process.','Y','Y','Y','N','N','N','N','N','Data Access Level',TO_DATE('2008-01-23 12:00:35','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54338 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54245,54339,0,53068,TO_DATE('2008-01-23 12:00:37','YYYY-MM-DD HH24:MI:SS'),100,'Optional short description of the record',255,'D','A description is limited to 255 characters.','Y','Y','Y','N','N','N','N','N','Description',TO_DATE('2008-01-23 12:00:37','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54339 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54253,54340,0,53068,TO_DATE('2008-01-23 12:00:37','YYYY-MM-DD HH24:MI:SS'),100,'Dictionary Entity Type; Determines ownership and synchronization',40,'D','The Entity Types "Dictionary", "Adempiere" and "Application" might be automatically synchronized and customizations deleted or overwritten. - -FOR customizations, copy THE entity AND SELECT "User"!','Y','Y','Y','N','N','N','N','N','Entity TYPE',TO_DATE('2008-01-23 12:00:37','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54340 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54255,54341,0,53068,TO_DATE('2008-01-23 12:00:38','YYYY-MM-DD HH24:MI:SS'),100,'Type of Event',1,'D','Y','Y','Y','N','N','N','N','N','Event Type',TO_DATE('2008-01-23 12:00:38','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54341 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54249,54342,0,53068,TO_DATE('2008-01-23 12:00:42','YYYY-MM-DD HH24:MI:SS'),100,'Alphanumeric identifier of the entity',60,'D','The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.','Y','Y','Y','N','N','N','N','N','Name',TO_DATE('2008-01-23 12:00:42','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54342 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54242,54343,0,53068,TO_DATE('2008-01-23 12:00:43','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',22,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','N','N','Organization',TO_DATE('2008-01-23 12:00:43','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54343 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54248,54344,0,53068,TO_DATE('2008-01-23 12:00:44','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','N','N','N','N','N','N','Rule',TO_DATE('2008-01-23 12:00:44','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54344 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54254,54345,0,53068,TO_DATE('2008-01-23 12:00:45','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','N','Rule Type',TO_DATE('2008-01-23 12:00:45','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54345 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54252,54346,0,53068,TO_DATE('2008-01-23 12:00:46','YYYY-MM-DD HH24:MI:SS'),100,'Search key for the record in the format required - must be unique',40,'D','A search key allows you a fast method of finding a particular record. -IF you leave THE search KEY empty, THE SYSTEM automatically creates a NUMERIC NUMBER. THE document SEQUENCE used FOR this fallback NUMBER IS DEFINED IN THE "Maintain Sequence" window WITH THE NAME "DocumentNo_", WHERE TableName IS THE actual NAME OF THE TABLE (e.g. C_ORDER).','Y','Y','Y','N','N','N','N','N','Search KEY',TO_DATE('2008-01-23 12:00:46','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54346 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -UPDATE AD_FIELD SET SeqNo=10,IsDisplayed='Y' WHERE AD_Field_ID=54336 -; - -UPDATE AD_FIELD SET SeqNo=20,IsDisplayed='Y' WHERE AD_Field_ID=54343 -; - -UPDATE AD_FIELD SET SeqNo=30,IsDisplayed='Y' WHERE AD_Field_ID=54346 -; - -UPDATE AD_FIELD SET SeqNo=40,IsDisplayed='Y' WHERE AD_Field_ID=54342 -; - -UPDATE AD_FIELD SET SeqNo=50,IsDisplayed='Y' WHERE AD_Field_ID=54339 -; - -UPDATE AD_FIELD SET SeqNo=60,IsDisplayed='Y' WHERE AD_Field_ID=54337 -; - -UPDATE AD_FIELD SET SeqNo=70,IsDisplayed='Y' WHERE AD_Field_ID=54341 -; - -UPDATE AD_FIELD SET SeqNo=80,IsDisplayed='Y' WHERE AD_Field_ID=54345 -; - -UPDATE AD_FIELD SET SeqNo=90,IsDisplayed='Y' WHERE AD_Field_ID=54340 -; - -UPDATE AD_FIELD SET SeqNo=100,IsDisplayed='Y' WHERE AD_Field_ID=54338 -; - -UPDATE AD_FIELD SET SeqNo=110,IsDisplayed='Y' WHERE AD_Field_ID=54335 -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54257,1718,0,34,53058,'Script',TO_DATE('2008-01-23 12:02:24','YYYY-MM-DD HH24:MI:SS'),100,'Dynamic Java Language Script to calculate result','D',4000,'Use Java language constructs to define the result of the calculation','Y','N','N','N','N','N','N','N','N','N','Y','Script',0,TO_DATE('2008-01-23 12:02:24','YYYY-MM-DD HH24:MI:SS'),100,1.000000000000) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54257 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -UPDATE AD_COLUMN SET AD_Reference_ID=14,Updated=TO_DATE('2008-01-23 12:02:58','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54257 -; - -UPDATE AD_FIELD SET NAME='Script', Description='Dynamic Java Language Script to calculate result', Help='Use Java language constructs to define the result of the calculation' WHERE AD_Column_ID=54257 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_COLUMN SET AD_Reference_ID=34,Updated=TO_DATE('2008-01-23 12:03:36','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54246 -; - -UPDATE AD_FIELD SET NAME='Comment/Help', Description='Comment or Hint', Help='The Help field contains a hint, comment or help about the use of this item.' WHERE AD_Column_ID=54246 AND IsCentrallyMaintained='Y' -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54257,54347,0,53068,TO_DATE('2008-01-23 12:04:09','YYYY-MM-DD HH24:MI:SS'),100,'Dynamic Java Language Script to calculate result',4000,'D','Use Java language constructs to define the result of the calculation','Y','Y','Y','N','N','N','N','N','Script',TO_DATE('2008-01-23 12:04:09','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54347 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -UPDATE AD_FIELD SET SeqNo=110,IsDisplayed='Y' WHERE AD_Field_ID=54347 -; - -UPDATE AD_FIELD SET SeqNo=120,IsDisplayed='Y' WHERE AD_Field_ID=54335 -; - -UPDATE AD_FIELD SET IsSameLine='Y',Updated=TO_DATE('2008-01-23 12:04:30','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54343 -; - -UPDATE AD_FIELD SET DisplayLength=20,Updated=TO_DATE('2008-01-23 12:04:38','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54346 -; - -UPDATE AD_FIELD SET SeqNo=90,IsDisplayed='Y' WHERE AD_Field_ID=54338 -; - -UPDATE AD_FIELD SET SeqNo=100,IsDisplayed='Y' WHERE AD_Field_ID=54347 -; - -UPDATE AD_FIELD SET SeqNo=110,IsDisplayed='Y' WHERE AD_Field_ID=54340 -; - -UPDATE AD_FIELD SET IsSameLine='Y',Updated=TO_DATE('2008-01-23 12:05:11','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54338 -; - -UPDATE AD_FIELD SET DisplayLogic='@RuleType@=S',Updated=TO_DATE('2008-01-23 12:05:22','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54338 -; - -UPDATE AD_FIELD SET IsSameLine='Y',Updated=TO_DATE('2008-01-23 12:05:34','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54335 -; - -UPDATE AD_TABLE SET AD_Window_ID=53017,Updated=TO_DATE('2008-01-23 12:05:51','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Table_ID=53058 -; - -INSERT INTO AD_MENU (AD_Client_ID,AD_Menu_ID,AD_Org_ID,AD_Window_ID,Action,Created,CreatedBy,EntityType,IsActive,IsReadOnly,IsSOTrx,IsSummary,NAME,Updated,UpdatedBy) VALUES (0,53086,0,53017,'W',TO_DATE('2008-01-23 12:06:13','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','N','N','N','Rule',TO_DATE('2008-01-23 12:06:13','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_MENU_TRL (AD_LANGUAGE,AD_Menu_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Menu_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_MENU t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Menu_ID=53086 AND EXISTS (SELECT * FROM AD_MENU_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Menu_ID!=t.AD_Menu_ID) -; - -INSERT INTO AD_TREENODEMM (AD_Client_ID,AD_Org_ID, IsActive,Created,CreatedBy,Updated,UpdatedBy, AD_Tree_ID, Node_ID, Parent_ID, SeqNo) SELECT t.AD_Client_ID,0, 'Y', SYSDATE, 0, SYSDATE, 0,t.AD_Tree_ID, 53086, 0, 999 FROM AD_TREE t WHERE t.AD_Client_ID=0 AND t.IsActive='Y' AND t.IsAllNodes='Y' AND t.TreeType='MM' AND NOT EXISTS (SELECT * FROM AD_TREENODEMM e WHERE e.AD_Tree_ID=t.AD_Tree_ID AND Node_ID=53086) -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=0, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=218 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=1, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=153 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=2, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=263 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=3, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=166 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=4, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=203 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=5, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=236 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=6, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=183 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=7, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=160 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=8, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=278 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=9, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=345 -; - -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=10, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=53083 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=0, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=586 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=1, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=138 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=2, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=139 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=3, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=249 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=4, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=141 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=5, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=589 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=6, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=216 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=7, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=140 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=8, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=142 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=9, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=53012 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=10, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=143 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=11, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=201 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=12, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=176 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=13, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=53086 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=14, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=239 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=15, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=517 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=16, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=50001 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=17, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=499 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=0, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=586 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=1, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=138 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=2, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=139 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=3, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=249 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=4, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=141 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=5, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=589 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=6, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=216 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=7, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=140 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=8, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=142 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=9, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=53012 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=10, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=143 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=11, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=201 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=12, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=176 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=13, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=53086 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=14, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=239 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=15, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=517 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=16, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=499 -; - -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=17, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=50001 -; - -UPDATE AD_COLUMN SET AD_Reference_ID=14,Updated=TO_DATE('2008-01-23 12:13:14','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54246 -; - -UPDATE AD_FIELD SET NAME='Comment/Help', Description='Comment or Hint', Help='The Help field contains a hint, comment or help about the use of this item.' WHERE AD_Column_ID=54246 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_COLUMN SET AD_Reference_ID=34,Updated=TO_DATE('2008-01-23 12:13:24','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54257 -; - -UPDATE AD_FIELD SET NAME='Script', Description='Dynamic Java Language Script to calculate result', Help='Use Java language constructs to define the result of the calculation' WHERE AD_Column_ID=54257 AND IsCentrallyMaintained='Y' -; - --- Jan 23, 2008 12:25:02 PM COT --- 1877902 - Implement beanshell callout -CREATE TABLE AD_Rule (AD_Client_ID NUMBER(10) DEFAULT NULL NOT NULL, AD_Org_ID NUMBER(10) DEFAULT NULL NOT NULL, AD_Rule_ID NUMBER(10) NOT NULL, AccessLevel CHAR(1), Created DATE NOT NULL, CreatedBy NUMBER(10) NOT NULL, Description NVARCHAR2(255), EntityType VARCHAR2(40) DEFAULT 'U', EventType CHAR(1), Help NVARCHAR2(2000), IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL, NAME NVARCHAR2(60) NOT NULL, RuleType CHAR(1), Script NVARCHAR2(2000), Updated DATE NOT NULL, UpdatedBy NUMBER(10) NOT NULL, VALUE NVARCHAR2(40) NOT NULL, CONSTRAINT AD_Rule_Key PRIMARY KEY (AD_Rule_ID)) -; - --- Jan 23, 2008 12:59:34 PM COT --- Default comment for updating dictionary -UPDATE AD_FIELD SET DisplayLength=20,Updated=TO_DATE('2008-01-23 12:59:34','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54340 -; - --- Jan 23, 2008 1:00:29 PM COT --- Default comment for updating dictionary -UPDATE AD_COLUMN SET AD_Reference_ID=14,Updated=TO_DATE('2008-01-23 13:00:29','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54257 -; - --- Jan 23, 2008 1:00:29 PM COT --- Default comment for updating dictionary -UPDATE AD_FIELD SET NAME='Script', Description='Dynamic Java Language Script to calculate result', Help='Use Java language constructs to define the result of the calculation' WHERE AD_Column_ID=54257 AND IsCentrallyMaintained='Y' -; - --- Jan 23, 2008 1:01:43 PM COT --- Default comment for updating dictionary -UPDATE AD_COLUMN SET AD_Reference_ID=34, FieldLength=20000,Updated=TO_DATE('2008-01-23 13:01:43','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54257 -; - --- Jan 23, 2008 1:01:43 PM COT --- Default comment for updating dictionary -UPDATE AD_FIELD SET NAME='Script', Description='Dynamic Java Language Script to calculate result', Help='Use Java language constructs to define the result of the calculation' WHERE AD_Column_ID=54257 AND IsCentrallyMaintained='Y' -; - --- Jan 23, 2008 1:01:46 PM COT --- Default comment for updating dictionary -UPDATE AD_COLUMN SET FieldLength=2000,Updated=TO_DATE('2008-01-23 13:01:46','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54257 -; - --- Jan 23, 2008 1:01:46 PM COT --- Default comment for updating dictionary -UPDATE AD_FIELD SET NAME='Script', Description='Dynamic Java Language Script to calculate result', Help='Use Java language constructs to define the result of the calculation' WHERE AD_Column_ID=54257 AND IsCentrallyMaintained='Y' -; - --- Jan 23, 2008 1:03:35 PM COT --- Default comment for updating dictionary -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53298,53235,TO_DATE('2008-01-23 13:03:34','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Groovy',TO_DATE('2008-01-23 13:03:34','YYYY-MM-DD HH24:MI:SS'),100,'G') -; - --- Jan 23, 2008 1:03:35 PM COT --- Default comment for updating dictionary -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53298 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - - -SELECT '076_FR1877902_EngineScript.sql' AS Filename FROM dual; --- Jan 24, 2008 2:25:48 PM CST --- 1877902 - Implement JSR 223: Scripting -DELETE FROM AD_REF_LIST_TRL WHERE AD_Ref_List_ID=53298 -; - -DELETE FROM AD_REF_LIST WHERE AD_Ref_List_ID=53298 -; - -UPDATE AD_REF_LIST SET VALUE='Q',Updated=TO_DATE('2008-01-24 14:27:04','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Ref_List_ID=53292 -; - -UPDATE AD_REF_LIST SET VALUE='S', NAME='JSR 223 Scripting APIs',Updated=TO_DATE('2008-01-24 14:26:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Ref_List_ID=53290 -; - -UPDATE AD_REF_LIST_TRL SET IsTranslated='N' WHERE AD_Ref_List_ID=53290 -; - -UPDATE AD_FIELD SET DisplayLogic='@RuleType@=Q',Updated=TO_DATE('2008-01-24 14:28:14','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Field_ID=54338 -; -SELECT '077_BF_1871567.sql' AS Filename FROM dual; --- Review optional scripts at the end - --- Jan 24, 2008 5:45:28 PM GMT-03:00 --- BUG 1871567 - Wrong value in Payment document -INSERT INTO AD_ELEMENT (AD_Org_ID,UpdatedBy,Updated,PrintName,NAME,IsActive,EntityType,CreatedBy,Created,ColumnName,AD_Element_ID,AD_Client_ID) VALUES (0,100,TO_DATE('2008-01-24 17:45:27','YYYY-MM-DD HH24:MI:SS'),'Generated Draft','Generated Draft','Y','D',100,TO_DATE('2008-01-24 17:45:27','YYYY-MM-DD HH24:MI:SS'),'IsGeneratedDraft',53334,0) -; - -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, PrintName,PO_PrintName,PO_Name,PO_Help,PO_Description,NAME,Help,Description, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.PrintName,t.PO_PrintName,t.PO_Name,t.PO_Help,t.PO_Description,t.NAME,t.Help,t.Description, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53334 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_COLUMN (AD_Org_ID,VERSION,UpdatedBy,Updated,SeqNo,NAME,IsUpdateable,IsTranslated,IsSyncDatabase,IsSelectionColumn,IsParent,IsMandatory,IsKey,IsIdentifier,IsEncrypted,IsAlwaysUpdateable,IsActive,FieldLength,EntityType,DefaultValue,CreatedBy,Created,ColumnName,AD_Table_ID,AD_Reference_ID,AD_Element_ID,AD_Column_ID,AD_Client_ID) VALUES (0,0,100,TO_DATE('2008-01-24 17:46:47','YYYY-MM-DD HH24:MI:SS'),0,'Generated Draft','Y','N','N','N','N','Y','N','N','N','N','Y',1,'D','N',100,TO_DATE('2008-01-24 17:46:47','YYYY-MM-DD HH24:MI:SS'),'IsGeneratedDraft',525,20,53334,54258,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54258 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -ALTER TABLE C_PAYSELECTIONCHECK ADD IsGeneratedDraft CHAR(1) DEFAULT 'N' CHECK (IsGeneratedDraft IN ('Y','N')) NOT NULL -; - -/* - --- The following SQL's are not executed by default --- they are provided to fix C_PaySelectionCheck if you're having the problem described --- in BUG 1871567 - Wrong value in Payment document - --- Mark as Generated in Draft the checks from payments still not processed - -UPDATE C_PAYSELECTIONCHECK - SET isgenerateddraft = 'Y' - WHERE isgenerateddraft = 'N' - AND c_payselectioncheck_id IN ( - SELECT psc.c_payselectioncheck_id - FROM C_PAYSELECTIONCHECK psc, C_PAYMENT p - WHERE psc.c_payment_id = p.c_payment_id - AND p.processed = 'N'); - --- Mark as Generated in Draft the checks from payments with different amounts - -UPDATE C_PAYSELECTIONCHECK - SET isgenerateddraft = 'Y' - WHERE isgenerateddraft = 'N' - AND c_payselectioncheck_id IN ( - SELECT psl.c_payselectioncheck_id - FROM C_PAYSELECTIONLINE psl, C_PAYMENT p - WHERE p.c_payment_id = psl.c_invoice_id - AND ( psl.openamt <> (p.payamt - p.discountamt) - OR psl.payamt <> p.payamt - ) - AND p.c_invoice_id > 0); - - --- Mark as Generated in Draft the checks from payment allocates with different amounts - -UPDATE C_PAYSELECTIONCHECK - SET isgenerateddraft = 'Y' - WHERE isgenerateddraft = 'N' - AND c_payselectioncheck_id IN ( - SELECT psl.c_payselectioncheck_id - FROM C_PAYSELECTIONLINE psl, C_PAYMENT p, C_PAYMENTALLOCATE pa - WHERE p.c_payment_id = psl.c_invoice_id - AND (p.c_invoice_id IS NULL OR p.c_invoice_id = 0) - AND p.c_payment_id = pa.c_payment_id - HAVING ( psl.openamt <> SUM (pa.amount - pa.discountamt) - OR psl.payamt <> SUM (pa.amount) - ) - GROUP BY psl.c_payselectioncheck_id, psl.openamt, psl.payamt); - -*/ -SELECT '078_FR1877902_EngineScript.sql' AS Filename FROM dual; --- Jan 24, 2008 10:27:22 PM COT --- 1877902 - Implement JSR 223: Scripting callout -INSERT INTO AD_MESSAGE (AD_Client_ID,AD_Message_ID,AD_Org_ID,Created,CreatedBy,EntityType,IsActive,MsgText,MsgTip,MsgType,Updated,UpdatedBy,VALUE) VALUES (0,53023,0,TO_DATE('2008-01-24 22:27:19','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Wrong Script Value - format for JSR 223 Script must be engine:scriptName where supported engines must be something like groovy, jython, beanshell',NULL,'E',TO_DATE('2008-01-24 22:27:19','YYYY-MM-DD HH24:MI:SS'),100,'WrongScriptValue') -; - -INSERT INTO AD_MESSAGE_TRL (AD_LANGUAGE,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_MESSAGE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=53023 AND EXISTS (SELECT * FROM AD_MESSAGE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Message_ID!=t.AD_Message_ID) -; -SELECT '079_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '080_BF_1879568.sql' AS Filename FROM dual; --- BF [ 1879568 ] CalloutMouvement QtyAvailable issues --- http://sourceforge.net/tracker/?func=detail&atid=879332&aid=1879568&group_id=176962 --- --- WARNING: if you already modified the Callout column, this update will do nothing, solve the issue manually -UPDATE AD_COLUMN SET Callout='org.compiere.model.CalloutMovement.locator' -WHERE AD_Column_ID=3591 AND Callout IS NULL; --- - - -SELECT '081_BF1846279.sql' AS Filename FROM dual; --- BF [ 1846279 ] No Translation for "name" in c_order_linetax_vt --- View: "c_order_linetax_vt" - -CREATE OR REPLACE VIEW C_ORDER_LINETAX_VT -(AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, - UPDATED, UPDATEDBY, AD_LANGUAGE, C_ORDER_ID, C_ORDERLINE_ID, - C_TAX_ID, TAXINDICATOR, C_BPARTNER_ID, C_BPARTNER_LOCATION_ID, BPNAME, - C_LOCATION_ID, LINE, M_PRODUCT_ID, QTYORDERED, QTYENTERED, - UOMSYMBOL, NAME, DESCRIPTION, DOCUMENTNOTE, UPC, - SKU, PRODUCTVALUE, RESOURCEDESCRIPTION, PRICELIST, PRICEENTEREDLIST, - DISCOUNT, PRICEACTUAL, PRICEENTERED, LINENETAMT, PRODUCTDESCRIPTION, - IMAGEURL, C_CAMPAIGN_ID, C_PROJECT_ID, C_ACTIVITY_ID, C_PROJECTPHASE_ID, - C_PROJECTTASK_ID) -AS -SELECT ol.AD_Client_ID, ol.AD_Org_ID, ol.IsActive, ol.Created, ol.CreatedBy, ol.Updated, ol.UpdatedBy, - uom.AD_LANGUAGE, - ol.C_Order_ID, ol.C_OrderLine_ID, ol.C_Tax_ID, t.TaxIndicator, - ol.C_BPartner_ID, ol.C_BPartner_Location_ID, bp.NAME AS BPName, bpl.C_Location_ID, - ol.Line, p.M_Product_ID, - CASE WHEN ol.QtyOrdered<>0 OR ol.M_Product_ID IS NOT NULL THEN ol.QtyOrdered END AS QtyOrdered, - CASE WHEN ol.QtyEntered<>0 OR ol.M_Product_ID IS NOT NULL THEN ol.QtyEntered END AS QtyEntered, - CASE WHEN ol.QtyEntered<>0 OR ol.M_Product_ID IS NOT NULL THEN uom.UOMSymbol END AS UOMSymbol, - COALESCE(pt.NAME,c.NAME,p.NAME||Productattribute(ol.M_AttributeSetInstance_ID), ol.Description) AS NAME, -- main line - CASE WHEN COALESCE(c.NAME,pt.NAME, p.NAME) IS NOT NULL THEN ol.Description END AS Description, -- second line - COALESCE(pt.DocumentNote, p.DocumentNote) AS DocumentNote, -- third line - p.UPC, p.SKU, COALESCE(pp.VendorProductNo,p.VALUE) AS ProductValue, - ra.Description AS ResourceDescription, -- forth line - CASE WHEN i.IsDiscountPrinted='Y' AND ol.PriceList<>0 - THEN ol.PriceList END AS PriceList, - CASE WHEN i.IsDiscountPrinted='Y' AND ol.PriceList<>0 AND ol.QtyEntered<>0 - THEN ol.PriceList*ol.QtyOrdered/ol.QtyEntered END AS PriceEnteredList, - CASE WHEN i.IsDiscountPrinted='Y' AND ol.PriceList>ol.PriceActual AND ol.PriceList<>0 - THEN (ol.PriceList-ol.PriceActual)/ol.PriceList*100 END AS Discount, - CASE WHEN ol.PriceActual<>0 OR ol.M_Product_ID IS NOT NULL THEN ol.PriceActual END AS PriceActual, - CASE WHEN ol.PriceEntered<>0 OR ol.M_Product_ID IS NOT NULL THEN ol.PriceEntered END AS PriceEntered, - CASE WHEN ol.LineNetAmt<>0 OR ol.M_Product_ID IS NOT NULL THEN ol.LineNetAmt END AS LineNetAmt, - pt.Description AS ProductDescription, p.ImageURL, - ol.C_Campaign_ID, ol.C_Project_ID, ol.C_Activity_ID, ol.C_ProjectPhase_ID, ol.C_ProjectTask_ID -FROM C_ORDERLINE ol - INNER JOIN C_UOM_TRL uom ON (ol.C_UOM_ID=uom.C_UOM_ID) - INNER JOIN C_ORDER i ON (ol.C_Order_ID=i.C_Order_ID) - LEFT OUTER JOIN M_PRODUCT p ON (ol.M_Product_ID=p.M_Product_ID) - LEFT OUTER JOIN M_PRODUCT_TRL pt ON (ol.M_Product_ID=pt.M_Product_ID AND uom.AD_LANGUAGE=pt.AD_LANGUAGE) - LEFT OUTER JOIN S_RESOURCEASSIGNMENT ra ON (ol.S_ResourceAssignment_ID=ra.S_ResourceAssignment_ID) - LEFT OUTER JOIN C_CHARGE c ON (ol.C_Charge_ID=c.C_Charge_ID) - LEFT OUTER JOIN C_BPARTNER_PRODUCT pp ON (ol.M_Product_ID=pp.M_Product_ID AND i.C_BPartner_ID=pp.C_BPartner_ID) - INNER JOIN C_BPARTNER bp ON (ol.C_BPartner_ID=bp.C_BPartner_ID) - INNER JOIN C_BPARTNER_LOCATION bpl ON (ol.C_BPartner_Location_ID=bpl.C_BPartner_Location_ID) - LEFT OUTER JOIN C_TAX_TRL t ON (ol.C_Tax_ID=t.C_Tax_ID AND uom.AD_LANGUAGE=t.AD_LANGUAGE) -UNION -SELECT ol.AD_Client_ID, ol.AD_Org_ID, ol.IsActive, ol.Created, ol.CreatedBy, ol.Updated, ol.UpdatedBy, - uom.AD_LANGUAGE, - ol.C_Order_ID, ol.C_OrderLine_ID, ol.C_Tax_ID, NULL, - NULL, NULL, NULL, NULL, - ol.Line+(b.Line/100) AS Line, p.M_Product_ID, - ol.QtyOrdered*b.BOMQty AS QtyInvoiced, ol.QtyEntered*b.BOMQty AS QtyEntered, uom.UOMSymbol, - COALESCE(pt.NAME, p.NAME) AS NAME, -- main - b.Description, - COALESCE(pt.DocumentNote, p.DocumentNote) AS DocumentNote, p.UPC, p.SKU, p.VALUE AS ProductValue, - NULL, NULL, NULL, NULL, NULL, NULL, NULL, pt.Description AS ProductDescription, p.ImageURL, - ol.C_Campaign_ID, ol.C_Project_ID, ol.C_Activity_ID, ol.C_ProjectPhase_ID, ol.C_ProjectTask_ID -FROM M_PRODUCT_BOM b -- BOM lines - INNER JOIN C_ORDERLINE ol ON (b.M_Product_ID=ol.M_Product_ID) - INNER JOIN M_PRODUCT bp ON (bp.M_Product_ID=ol.M_Product_ID -- BOM Product - AND bp.IsBOM='Y' AND bp.IsVerified='Y' AND bp.IsInvoicePrintDetails='Y') - INNER JOIN M_PRODUCT p ON (b.M_ProductBOM_ID=p.M_Product_ID) -- BOM line product - INNER JOIN C_UOM_TRL uom ON (p.C_UOM_ID=uom.C_UOM_ID) - INNER JOIN M_PRODUCT_TRL pt ON (b.M_ProductBOM_ID=pt.M_Product_ID AND uom.AD_LANGUAGE=pt.AD_LANGUAGE) -UNION -SELECT o.AD_Client_ID, o.AD_Org_ID, o.IsActive, o.Created, o.CreatedBy, o.Updated, o.UpdatedBy, - l.AD_LANGUAGE, o.C_Order_ID, NULL, NULL, NULL, - NULL, - NULL, NULL, NULL, - NULL, NULL, NULL, NULL, - NULL, NULL, - NULL, NULL, NULL, NULL, NULL, NULL, - NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, - NULL,NULL,NULL,NULL,NULL -FROM C_ORDER o, AD_LANGUAGE l -WHERE l.IsBaseLanguage='N' AND l.IsSystemLanguage='Y' -UNION -SELECT ot.AD_Client_ID, ot.AD_Org_ID, ot.IsActive, ot.Created, ot.CreatedBy, ot.Updated, ot.UpdatedBy, - t.AD_LANGUAGE, ot.C_Order_ID, NULL, ot.C_Tax_ID, t.TaxIndicator, - NULL, NULL, NULL, NULL, - NULL, NULL, - NULL, NULL, NULL, - t.NAME, - NULL, NULL, NULL, NULL, NULL, NULL, - NULL, NULL, NULL, - CASE WHEN ot.IsTaxIncluded='Y' THEN ot.TaxAmt ELSE ot.TaxBaseAmt END, - CASE WHEN ot.IsTaxIncluded='Y' THEN ot.TaxAmt ELSE ot.TaxBaseAmt END, - CASE WHEN ot.IsTaxIncluded='Y' THEN NULL ELSE ot.TaxAmt END, - NULL, NULL, - NULL,NULL,NULL,NULL,NULL -FROM C_ORDERTAX ot - INNER JOIN C_TAX_TRL t ON (ot.C_Tax_ID=t.C_Tax_ID); - -SELECT '082_BF1881876.sql' AS Filename FROM dual; --- Jan 29, 2008 10:48:50 AM COT --- [ adempiere-Bugs-1881876 ] Periods not shown when using auto period control -UPDATE AD_VAL_RULE SET Code='(EXISTS ( SELECT * FROM C_PeriodControl pc WHERE C_Period.C_Period_ID = pc.C_Period_ID AND pc.PeriodStatus = ''O'') OR EXISTS ( SELECT * FROM C_AcctSchema a, C_Period p WHERE C_Period.C_Period_ID = p.C_Period_ID AND a.AutoPeriodControl = ''Y'' AND ( (p.StartDate BETWEEN SYSDATE - a.Period_OpenHistory AND SYSDATE + a.Period_OpenFuture) OR (p.EndDate BETWEEN SYSDATE - a.Period_OpenHistory AND SYSDATE + a.Period_OpenFuture))))',Updated=TO_DATE('2008-01-29 10:48:50','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Val_Rule_ID=215 -; - - -SELECT '083_FR1876642.sql' AS Filename FROM dual; --- Jan 30, 2008 10:11:15 AM SGT --- [ 1876642 ] Add Collapsed by Default to Field Group -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53336,0,'IsCollapsedByDefault',TO_DATE('2008-01-30 10:11:13','YYYY-MM-DD HH24:MI:SS'),100,'Flag to set the initial state of collapsible field group.','U','Y','Collapsed By Default','Collapsed By Default',TO_DATE('2008-01-30 10:11:13','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Jan 30, 2008 10:11:16 AM SGT --- [ 1876642 ] Add Collapsed by Default to Field Group -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53336 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - --- Jan 30, 2008 12:07:42 PM SGT --- [ 1876642 ] Add Collapsed by Default to Field Group -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54259,53336,0,20,414,'IsCollapsedByDefault',TO_DATE('2008-01-30 12:07:41','YYYY-MM-DD HH24:MI:SS'),100,'N','Flag to set the initial state of collapsible field group.','D',1,'Y','N','N','N','N','N','N','N','N','N','Y','Collapsed By Default',0,TO_DATE('2008-01-30 12:07:41','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Jan 30, 2008 12:07:42 PM SGT --- [ 1876642 ] Add Collapsed by Default to Field Group -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54259 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Jan 30, 2008 12:09:43 PM SGT --- [ 1876642 ] Add Collapsed by Default to Field Group -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,DisplayLogic,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54259,54348,0,342,TO_DATE('2008-01-30 12:09:42','YYYY-MM-DD HH24:MI:SS'),100,'Flag to set the initial state of collapsible field group.',0,'@FieldGroupType@=''C''','D','Y','Y','Y','N','N','N','N','N','Collapsed By Default',70,0,TO_DATE('2008-01-30 12:09:42','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Jan 30, 2008 12:09:43 PM SGT --- [ 1876642 ] Add Collapsed by Default to Field Group -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54348 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- Jan 30, 2008 12:10:36 PM SGT --- [ 1876642 ] Add Collapsed by Default to Field Group -ALTER TABLE AD_FIELDGROUP ADD IsCollapsedByDefault CHAR(1) DEFAULT 'N' CHECK (IsCollapsedByDefault IN ('Y','N')) -; - - -SELECT '084_FR1876642_views.sql' AS Filename FROM dual; -CREATE OR REPLACE VIEW AD_FIELD_V -(AD_WINDOW_ID, AD_TAB_ID, AD_FIELD_ID, AD_TABLE_ID, AD_COLUMN_ID, - NAME, DESCRIPTION, HELP, ISDISPLAYED, DISPLAYLOGIC, - DISPLAYLENGTH, SEQNO, SORTNO, ISSAMELINE, ISHEADING, - ISFIELDONLY, ISREADONLY, ISENCRYPTEDFIELD, OBSCURETYPE, COLUMNNAME, - COLUMNSQL, FIELDLENGTH, VFORMAT, DEFAULTVALUE, ISKEY, - ISPARENT, ISMANDATORY, ISIDENTIFIER, ISTRANSLATED, AD_REFERENCE_VALUE_ID, - CALLOUT, AD_REFERENCE_ID, AD_VAL_RULE_ID, AD_PROCESS_ID, ISALWAYSUPDATEABLE, - READONLYLOGIC, MANDATORYLOGIC, ISUPDATEABLE, ISENCRYPTEDCOLUMN, ISSELECTIONCOLUMN, - TABLENAME, VALUEMIN, VALUEMAX, FIELDGROUP, VALIDATIONCODE, - INCLUDED_TAB_ID, FIELDGROUPTYPE, IsCollapsedByDefault) -AS -SELECT t.AD_Window_ID, f.AD_Tab_ID, f.AD_Field_ID, tbl.AD_Table_ID, f.AD_Column_ID, - f.NAME, f.Description, f.Help, f.IsDisplayed, f.DisplayLogic, f.DisplayLength, - f.SeqNo, f.SortNo, f.IsSameLine, f.IsHeading, f.IsFieldOnly, f.IsReadOnly, - f.IsEncrypted AS IsEncryptedField, f.ObscureType, - c.ColumnName, c.ColumnSQL, c.FieldLength, c.VFormat, - COALESCE(f.DefaultValue, c.DefaultValue) AS DefaultValue, - c.IsKey, c.IsParent, - COALESCE(f.IsMandatory, c.IsMandatory) AS IsMandatory, - c.IsIdentifier, c.IsTranslated, c.AD_Reference_Value_ID, - c.Callout, COALESCE(f.AD_Reference_ID, c.AD_Reference_ID) AS AD_Reference_ID, - c.AD_Val_Rule_ID, c.AD_Process_ID, c.IsAlwaysUpdateable, - c.ReadOnlyLogic, c.MandatoryLogic, c.IsUpdateable, c.IsEncrypted AS IsEncryptedColumn, - c.IsSelectionColumn, - tbl.TableName, c.ValueMin, c.ValueMax, - fg.NAME AS FieldGroup, vr.Code AS ValidationCode, - f.Included_Tab_ID, fg.FieldGroupType, fg.IsCollapsedByDefault -FROM AD_FIELD f - INNER JOIN AD_TAB t ON (f.AD_Tab_ID = t.AD_Tab_ID) - LEFT OUTER JOIN AD_FIELDGROUP fg ON (f.AD_FieldGroup_ID = fg.AD_FieldGroup_ID) - LEFT OUTER JOIN AD_COLUMN c ON (f.AD_Column_ID = c.AD_Column_ID) - INNER JOIN AD_TABLE tbl ON (c.AD_Table_ID = tbl.AD_Table_ID) - INNER JOIN AD_REFERENCE r ON (c.AD_Reference_ID = r.AD_Reference_ID) - LEFT OUTER JOIN AD_VAL_RULE vr ON (c.AD_Val_Rule_ID=vr.AD_Val_Rule_ID) -WHERE f.IsActive = 'Y' - AND c.IsActive = 'Y' -; - -CREATE OR REPLACE VIEW AD_FIELD_VT -(AD_LANGUAGE, AD_WINDOW_ID, AD_TAB_ID, AD_FIELD_ID, AD_TABLE_ID, - AD_COLUMN_ID, NAME, DESCRIPTION, HELP, ISDISPLAYED, - DISPLAYLOGIC, DISPLAYLENGTH, SEQNO, SORTNO, ISSAMELINE, - ISHEADING, ISFIELDONLY, ISREADONLY, ISENCRYPTEDFIELD, OBSCURETYPE, - COLUMNNAME, COLUMNSQL, FIELDLENGTH, VFORMAT, DEFAULTVALUE, - ISKEY, ISPARENT, ISMANDATORY, ISIDENTIFIER, ISTRANSLATED, - AD_REFERENCE_VALUE_ID, CALLOUT, AD_REFERENCE_ID, AD_VAL_RULE_ID, AD_PROCESS_ID, - ISALWAYSUPDATEABLE, READONLYLOGIC, MANDATORYLOGIC, ISUPDATEABLE, ISENCRYPTEDCOLUMN, - ISSELECTIONCOLUMN, TABLENAME, VALUEMIN, VALUEMAX, FIELDGROUP, - VALIDATIONCODE, INCLUDED_TAB_ID, FIELDGROUPTYPE, IsCollapsedByDefault) -AS -SELECT trl.AD_LANGUAGE, t.AD_Window_ID, f.AD_Tab_ID, f.AD_Field_ID, tbl.AD_Table_ID, f.AD_Column_ID, - trl.NAME, trl.Description, trl.Help, f.IsDisplayed, f.DisplayLogic, f.DisplayLength, - f.SeqNo, f.SortNo, f.IsSameLine, f.IsHeading, f.IsFieldOnly, f.IsReadOnly, - f.IsEncrypted AS IsEncryptedField, f.ObscureType, - c.ColumnName, c.ColumnSQL, c.FieldLength, c.VFormat, - COALESCE(f.DefaultValue, c.DefaultValue) AS DefaultValue, - c.IsKey, c.IsParent, - COALESCE(f.IsMandatory, c.IsMandatory) AS IsMandatory, - c.IsIdentifier, c.IsTranslated, c.AD_Reference_Value_ID, - c.Callout, COALESCE(f.AD_Reference_ID, c.AD_Reference_ID) AS AD_Reference_ID, - c.AD_Val_Rule_ID, c.AD_Process_ID, c.IsAlwaysUpdateable, - c.ReadOnlyLogic, c.MandatoryLogic, c.IsUpdateable, c.IsEncrypted AS IsEncryptedColumn, c.IsSelectionColumn, - tbl.TableName, c.ValueMin, c.ValueMax, - fgt.NAME AS FieldGroup, vr.Code AS ValidationCode, - f.Included_Tab_ID, fg.FieldGroupType, fg.IsCollapsedByDefault -FROM AD_FIELD f - INNER JOIN AD_FIELD_TRL trl ON (f.AD_Field_ID = trl.AD_Field_ID) - INNER JOIN AD_TAB t ON (f.AD_Tab_ID = t.AD_Tab_ID) - LEFT OUTER JOIN AD_FIELDGROUP fg ON (f.AD_FieldGroup_ID = fg.AD_FieldGroup_ID) - LEFT OUTER JOIN AD_FIELDGROUP_TRL fgt ON - (f.AD_FieldGroup_ID = fgt.AD_FieldGroup_ID AND trl.AD_LANGUAGE=fgt.AD_LANGUAGE) - LEFT OUTER JOIN AD_COLUMN c ON (f.AD_Column_ID = c.AD_Column_ID) - INNER JOIN AD_TABLE tbl ON (c.AD_Table_ID = tbl.AD_Table_ID) - INNER JOIN AD_REFERENCE r ON (c.AD_Reference_ID = r.AD_Reference_ID) - LEFT OUTER JOIN AD_VAL_RULE vr ON (c.AD_Val_Rule_ID=vr.AD_Val_Rule_ID) -WHERE f.IsActive = 'Y' - AND c.IsActive = 'Y' -; - -SELECT '085_FR1884105.sql' AS Filename FROM dual; --- Feb 1, 2008 12:15:41 PM SGT --- [ 1884105 ] Show preview of all open window -INSERT INTO AD_MESSAGE (AD_Client_ID,AD_Message_ID,AD_Org_ID,Created,CreatedBy,EntityType,IsActive,MsgText,MsgTip,MsgType,Updated,UpdatedBy,VALUE) VALUES (0,53024,0,TO_DATE('2008-02-01 12:15:39','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Show All Windows',NULL,'I',TO_DATE('2008-02-01 12:15:39','YYYY-MM-DD HH24:MI:SS'),100,'ShowAllWindow') -; - --- Feb 1, 2008 12:15:41 PM SGT --- [ 1884105 ] Show preview of all open window -INSERT INTO AD_MESSAGE_TRL (AD_LANGUAGE,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_MESSAGE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=53024 AND EXISTS (SELECT * FROM AD_MESSAGE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Message_ID!=t.AD_Message_ID) -; - - -SELECT '086_FR1879470_ModelValidatorScript.sql' AS Filename FROM dual; --- Feb 1, 2008 1:37:41 AM COT --- 1879470 - Implement Table and Document ModelValidator script JSR 223 -INSERT INTO AD_REFERENCE (AD_Client_ID,AD_Org_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,ValidationType) VALUES (0,0,53237,TO_DATE('2008-02-01 01:37:35','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','EventModelValidator',TO_DATE('2008-02-01 01:37:35','YYYY-MM-DD HH24:MI:SS'),100,'L') -; - -INSERT INTO AD_REFERENCE_TRL (AD_LANGUAGE,AD_Reference_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Reference_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REFERENCE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Reference_ID=53237 AND EXISTS (SELECT * FROM AD_REFERENCE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Reference_ID!=t.AD_Reference_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53299,53237,TO_DATE('2008-02-01 01:38:15','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Table Before New',TO_DATE('2008-02-01 01:38:15','YYYY-MM-DD HH24:MI:SS'),100,'TBN') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53299 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53300,53237,TO_DATE('2008-02-01 01:38:32','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Table Before Change',TO_DATE('2008-02-01 01:38:32','YYYY-MM-DD HH24:MI:SS'),100,'TBC') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53300 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53301,53237,TO_DATE('2008-02-01 01:38:45','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Table Before Delete',TO_DATE('2008-02-01 01:38:45','YYYY-MM-DD HH24:MI:SS'),100,'TBD') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53301 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53302,53237,TO_DATE('2008-02-01 01:39:11','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Table After New',TO_DATE('2008-02-01 01:39:11','YYYY-MM-DD HH24:MI:SS'),100,'TAN') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53302 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53303,53237,TO_DATE('2008-02-01 01:39:27','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Table After Change',TO_DATE('2008-02-01 01:39:27','YYYY-MM-DD HH24:MI:SS'),100,'TAC') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53303 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53304,53237,TO_DATE('2008-02-01 01:39:43','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Table After Delete',TO_DATE('2008-02-01 01:39:43','YYYY-MM-DD HH24:MI:SS'),100,'TAD') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53304 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53305,53237,TO_DATE('2008-02-01 01:40:06','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document Before Prepare',TO_DATE('2008-02-01 01:40:06','YYYY-MM-DD HH24:MI:SS'),100,'DBPR') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53305 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53306,53237,TO_DATE('2008-02-01 01:40:20','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document Before Void',TO_DATE('2008-02-01 01:40:20','YYYY-MM-DD HH24:MI:SS'),100,'DBVO') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53306 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53307,53237,TO_DATE('2008-02-01 01:40:45','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document Before Close',TO_DATE('2008-02-01 01:40:45','YYYY-MM-DD HH24:MI:SS'),100,'DBCL') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53307 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53308,53237,TO_DATE('2008-02-01 01:41:05','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document Before Reactivate',TO_DATE('2008-02-01 01:41:05','YYYY-MM-DD HH24:MI:SS'),100,'DBAC') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53308 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53309,53237,TO_DATE('2008-02-01 01:41:24','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document Before Reverse Correct',TO_DATE('2008-02-01 01:41:24','YYYY-MM-DD HH24:MI:SS'),100,'DBRC') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53309 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53310,53237,TO_DATE('2008-02-01 01:41:37','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document Before Reverse Accrual',TO_DATE('2008-02-01 01:41:37','YYYY-MM-DD HH24:MI:SS'),100,'DBRA') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53310 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53311,53237,TO_DATE('2008-02-01 01:41:55','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document Before Complete',TO_DATE('2008-02-01 01:41:55','YYYY-MM-DD HH24:MI:SS'),100,'DBCO') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53311 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53312,53237,TO_DATE('2008-02-01 01:42:08','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document Before Post',TO_DATE('2008-02-01 01:42:08','YYYY-MM-DD HH24:MI:SS'),100,'DBPO') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53312 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53313,53237,TO_DATE('2008-02-01 01:42:25','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document After Prepare',TO_DATE('2008-02-01 01:42:25','YYYY-MM-DD HH24:MI:SS'),100,'DAPR') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53313 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53314,53237,TO_DATE('2008-02-01 01:42:43','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document After Void',TO_DATE('2008-02-01 01:42:43','YYYY-MM-DD HH24:MI:SS'),100,'DAVO') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53314 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53315,53237,TO_DATE('2008-02-01 01:42:58','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document After Close',TO_DATE('2008-02-01 01:42:58','YYYY-MM-DD HH24:MI:SS'),100,'DACL') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53315 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53316,53237,TO_DATE('2008-02-01 01:43:11','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document After Reactivate',TO_DATE('2008-02-01 01:43:11','YYYY-MM-DD HH24:MI:SS'),100,'DAAC') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53316 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53317,53237,TO_DATE('2008-02-01 01:43:37','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document After Reverse Correct',TO_DATE('2008-02-01 01:43:37','YYYY-MM-DD HH24:MI:SS'),100,'DARC') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53317 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53318,53237,TO_DATE('2008-02-01 01:43:52','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document After Reverse Accrual',TO_DATE('2008-02-01 01:43:52','YYYY-MM-DD HH24:MI:SS'),100,'DARA') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53318 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53319,53237,TO_DATE('2008-02-01 01:44:12','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document After Complete',TO_DATE('2008-02-01 01:44:12','YYYY-MM-DD HH24:MI:SS'),100,'DACO') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53319 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53320,53237,TO_DATE('2008-02-01 01:44:32','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document After Post',TO_DATE('2008-02-01 01:44:32','YYYY-MM-DD HH24:MI:SS'),100,'DAPO') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53320 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_TABLE (AD_Client_ID,AD_Org_ID,AD_Table_ID,AD_Window_ID,AccessLevel,CopyColumnsFromTable,Created,CreatedBy,Description,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,LoadSeq,NAME,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53059,100,'4','N',TO_DATE('2008-02-01 01:47:37','YYYY-MM-DD HH24:MI:SS'),100,'Script model validator for tables','D','N','Y','N','Y','N','N','N',0,'Table Script Validator','L','AD_Table_ScriptValidator',TO_DATE('2008-02-01 01:47:37','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE_TRL (AD_LANGUAGE,AD_Table_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Table_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TABLE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53059 AND EXISTS (SELECT * FROM AD_TABLE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Table_ID!=t.AD_Table_ID) -; - -INSERT INTO AD_SEQUENCE (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,NAME,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53076,TO_DATE('2008-02-01 01:47:44','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table AD_Table_ScriptValidator',1,'Y','N','Y','Y','AD_Table_ScriptValidator','N',1000000,TO_DATE('2008-02-01 01:47:44','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54260,102,0,19,53059,'AD_Client_ID',TO_DATE('2008-02-01 01:49:24','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Client_ID@','Client/Tenant for this installation.','D',22,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','N','Client',0,TO_DATE('2008-02-01 01:49:24','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54260 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54261,113,0,19,53059,104,'AD_Org_ID',TO_DATE('2008-02-01 01:49:27','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Org_ID@','Organizational entity within client','D',22,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','N','Organization',0,TO_DATE('2008-02-01 01:49:27','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54261 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54262,245,0,16,53059,'Created',TO_DATE('2008-02-01 01:49:28','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',7,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','N','Created',0,TO_DATE('2008-02-01 01:49:28','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54262 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54263,246,0,18,110,53059,'CreatedBy',TO_DATE('2008-02-01 01:49:30','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',22,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','N','Created By',0,TO_DATE('2008-02-01 01:49:30','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54263 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54264,275,0,10,53059,'Description',TO_DATE('2008-02-01 01:49:30','YYYY-MM-DD HH24:MI:SS'),100,'Optional short description of the record','D',255,'A description is limited to 255 characters.','Y','N','N','N','N','N','N','N','N','N','Y','Description',0,TO_DATE('2008-02-01 01:49:30','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54264 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54265,326,0,14,53059,'Help',TO_DATE('2008-02-01 01:49:31','YYYY-MM-DD HH24:MI:SS'),100,'Comment or Hint','D',2000,'The Help field contains a hint, comment or help about the use of this item.','Y','N','N','N','N','N','N','N','N','N','Y','Comment/Help',0,TO_DATE('2008-02-01 01:49:31','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54265 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54266,348,0,20,53059,'IsActive',TO_DATE('2008-02-01 01:49:33','YYYY-MM-DD HH24:MI:SS'),100,'Y','The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','N','N','N','N','Y','N','N','N','N','Y','Active',0,TO_DATE('2008-02-01 01:49:33','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54266 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53337,0,'AD_Table_ScriptValidator_ID',TO_DATE('2008-02-01 01:49:34','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Table Script Validator','Table Script Validator',TO_DATE('2008-02-01 01:49:34','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53337 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54267,53337,0,13,53059,'AD_Table_ScriptValidator_ID',TO_DATE('2008-02-01 01:49:34','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','Y','Y','N','N','N','N','N','Table Script Validator',0,TO_DATE('2008-02-01 01:49:34','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54267 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54268,469,0,10,53059,'Name',TO_DATE('2008-02-01 01:49:37','YYYY-MM-DD HH24:MI:SS'),100,'Alphanumeric identifier of the entity','D',60,'The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.','Y','N','N','Y','N','Y','N','N','N','N','Y','Name',1,TO_DATE('2008-02-01 01:49:37','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54268 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54269,607,0,16,53059,'Updated',TO_DATE('2008-02-01 01:49:39','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','N','Updated',0,TO_DATE('2008-02-01 01:49:39','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54269 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54270,608,0,18,110,53059,'UpdatedBy',TO_DATE('2008-02-01 01:49:40','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',22,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','N','Updated By',0,TO_DATE('2008-02-01 01:49:40','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54270 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54271,620,0,10,53059,'Value',TO_DATE('2008-02-01 01:49:41','YYYY-MM-DD HH24:MI:SS'),100,'Search key for the record in the format required - must be unique','D',40,'A search key allows you a fast method of finding a particular record. -IF you leave THE search KEY empty, THE SYSTEM automatically creates a NUMERIC NUMBER. THE document SEQUENCE used FOR this fallback NUMBER IS DEFINED IN THE "Maintain Sequence" window WITH THE NAME "DocumentNo_", WHERE TableName IS THE actual NAME OF THE TABLE (e.g. C_ORDER).','Y','N','N','N','N','Y','N','N','N','N','Y','Search KEY',0,TO_DATE('2008-02-01 01:49:41','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54271 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -UPDATE AD_COLUMN SET AD_Element_ID=126, AD_Reference_ID=19, ColumnName='AD_Table_ID', Description='Database Table information', Help='The Database Table provides the information of the table definition', IsParent='Y', IsUpdateable='N', NAME='Table',Updated=TO_DATE('2008-02-01 01:51:21','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54271 -; - -UPDATE AD_COLUMN_TRL SET IsTranslated='N' WHERE AD_Column_ID=54271 -; - -UPDATE AD_FIELD SET NAME='Table', Description='Database Table information', Help='The Database Table provides the information of the table definition' WHERE AD_Column_ID=54271 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_COLUMN SET FieldLength=10, IsUpdateable='N',Updated=TO_DATE('2008-02-01 01:51:30','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54271 -; - -UPDATE AD_FIELD SET NAME='Table', Description='Database Table information', Help='The Database Table provides the information of the table definition' WHERE AD_Column_ID=54271 AND IsCentrallyMaintained='Y' -; - -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53338,0,'EventModelValidator',TO_DATE('2008-02-01 01:52:19','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Event Model Validator','Event Model Validator',TO_DATE('2008-02-01 01:52:19','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53338 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -UPDATE AD_COLUMN SET AD_Element_ID=53338, AD_Reference_ID=17, AD_Reference_Value_ID=53237, ColumnName='EventModelValidator', Description=NULL, FieldLength=4, Help=NULL, NAME='Event Model Validator',Updated=TO_DATE('2008-02-01 01:52:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54268 -; - -UPDATE AD_COLUMN_TRL SET IsTranslated='N' WHERE AD_Column_ID=54268 -; - -UPDATE AD_FIELD SET NAME='Event Model Validator', Description=NULL, Help=NULL WHERE AD_Column_ID=54268 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_COLUMN SET IsIdentifier='Y', IsUpdateable='N',Updated=TO_DATE('2008-02-01 01:53:08','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54271 -; - -UPDATE AD_FIELD SET NAME='Table', Description='Database Table information', Help='The Database Table provides the information of the table definition' WHERE AD_Column_ID=54271 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_COLUMN SET AD_Element_ID=53332, AD_Reference_ID=19, ColumnName='AD_Rule_ID', Description=NULL, FieldLength=10, Help=NULL, NAME='Rule',Updated=TO_DATE('2008-02-01 01:53:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54265 -; - -UPDATE AD_COLUMN_TRL SET IsTranslated='N' WHERE AD_Column_ID=54265 -; - -UPDATE AD_FIELD SET NAME='Rule', Description=NULL, Help=NULL WHERE AD_Column_ID=54265 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_COLUMN SET AD_Element_ID=566, AD_Reference_ID=11, ColumnName='SeqNo', DefaultValue='0', Description='Method of ordering records; lowest number comes first', FieldLength=22, Help='The Sequence indicates the order of records', IsMandatory='Y', NAME='Sequence',Updated=TO_DATE('2008-02-01 01:55:07','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54264 -; - -UPDATE AD_COLUMN_TRL SET IsTranslated='N' WHERE AD_Column_ID=54264 -; - -UPDATE AD_FIELD SET NAME='Sequence', Description='Method of ordering records; lowest number comes first', Help='The Sequence indicates the order of records' WHERE AD_Column_ID=54264 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_COLUMN SET IsMandatory='Y',Updated=TO_DATE('2008-02-01 01:55:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54265 -; - -UPDATE AD_FIELD SET NAME='Rule', Description=NULL, Help=NULL WHERE AD_Column_ID=54265 AND IsCentrallyMaintained='Y' -; - -CREATE TABLE AD_Table_ScriptValidator (AD_Client_ID NUMBER(10) DEFAULT NULL NOT NULL, AD_Org_ID NUMBER(10) DEFAULT NULL NOT NULL, AD_Rule_ID NUMBER(10) NOT NULL, AD_Table_ID NUMBER(10) NOT NULL, AD_Table_ScriptValidator_ID NUMBER(10) NOT NULL, Created DATE NOT NULL, CreatedBy NUMBER(10) NOT NULL, EventModelValidator VARCHAR2(4) NOT NULL, IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL, SeqNo NUMBER(10) DEFAULT 0 NOT NULL, Updated DATE NOT NULL, UpdatedBy NUMBER(10) NOT NULL, CONSTRAINT AD_Table_ScriptValidator_Key PRIMARY KEY (AD_Table_ScriptValidator_ID)) -; - -INSERT INTO AD_TAB (AD_Client_ID,AD_Column_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,Created,CreatedBy,EntityType,HasTree,ImportFields,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,NAME,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,54271,0,53069,53059,100,TO_DATE('2008-02-01 01:58:32','YYYY-MM-DD HH24:MI:SS'),100,'D','N','N','Y','N','N','Y','N','Y','N','N','Table Script Validator','N',50,1,TO_DATE('2008-02-01 01:58:32','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TAB_TRL (AD_LANGUAGE,AD_Tab_ID, CommitWarning,Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TAB t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53069 AND EXISTS (SELECT * FROM AD_TAB_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54266,54349,0,53069,TO_DATE('2008-02-01 01:58:39','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','Y','Y','N','N','N','N','N','Active',TO_DATE('2008-02-01 01:58:39','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54349 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54260,54350,0,53069,TO_DATE('2008-02-01 01:58:42','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',22,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','N','Client',TO_DATE('2008-02-01 01:58:42','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54350 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54268,54351,0,53069,TO_DATE('2008-02-01 01:58:43','YYYY-MM-DD HH24:MI:SS'),100,4,'D','Y','Y','Y','N','N','N','N','N','Event Model Validator',TO_DATE('2008-02-01 01:58:43','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54351 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54261,54352,0,53069,TO_DATE('2008-02-01 01:58:43','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',22,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','N','N','Organization',TO_DATE('2008-02-01 01:58:43','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54352 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54265,54353,0,53069,TO_DATE('2008-02-01 01:58:45','YYYY-MM-DD HH24:MI:SS'),100,10,'D','Y','Y','Y','N','N','N','N','N','Rule',TO_DATE('2008-02-01 01:58:45','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54353 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54264,54354,0,53069,TO_DATE('2008-02-01 01:58:46','YYYY-MM-DD HH24:MI:SS'),100,'Method of ordering records; lowest number comes first',22,'D','The Sequence indicates the order of records','Y','Y','Y','N','N','N','N','N','Sequence',TO_DATE('2008-02-01 01:58:46','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54354 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54271,54355,0,53069,TO_DATE('2008-02-01 01:58:47','YYYY-MM-DD HH24:MI:SS'),100,'Database Table information',10,'D','The Database Table provides the information of the table definition','Y','Y','Y','N','N','N','N','N','Table',TO_DATE('2008-02-01 01:58:47','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54355 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54267,54356,0,53069,TO_DATE('2008-02-01 01:58:48','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','N','N','N','N','N','N','Table Script Validator',TO_DATE('2008-02-01 01:58:48','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54356 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -UPDATE AD_FIELD SET SeqNo=10,IsDisplayed='Y' WHERE AD_Field_ID=54350 -; - -UPDATE AD_FIELD SET SeqNo=20,IsDisplayed='Y' WHERE AD_Field_ID=54352 -; - -UPDATE AD_FIELD SET SeqNo=30,IsDisplayed='Y' WHERE AD_Field_ID=54355 -; - -UPDATE AD_FIELD SET SeqNo=40,IsDisplayed='Y' WHERE AD_Field_ID=54351 -; - -UPDATE AD_FIELD SET SeqNo=50,IsDisplayed='Y' WHERE AD_Field_ID=54353 -; - -UPDATE AD_FIELD SET SeqNo=60,IsDisplayed='Y' WHERE AD_Field_ID=54354 -; - -UPDATE AD_FIELD SET SeqNo=70,IsDisplayed='Y' WHERE AD_Field_ID=54349 -; - -UPDATE AD_FIELD SET IsSameLine='Y',Updated=TO_DATE('2008-02-01 01:59:17','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54352 -; - -UPDATE AD_FIELD SET DisplayLength=40,Updated=TO_DATE('2008-02-01 01:59:29','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54351 -; - -UPDATE AD_FIELD SET DisplayLength=40,Updated=TO_DATE('2008-02-01 01:59:34','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54353 -; - -UPDATE AD_FIELD SET IsSameLine='Y',Updated=TO_DATE('2008-02-01 01:59:40','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54349 -; - -UPDATE AD_FIELD SET DisplayLength=40,Updated=TO_DATE('2008-02-01 01:59:46','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54355 -; - -INSERT INTO AD_VAL_RULE (AD_Client_ID,AD_Org_ID,AD_Val_Rule_ID,Code,Created,CreatedBy,EntityType,IsActive,NAME,TYPE,Updated,UpdatedBy) VALUES (0,0,52008,'EventType IN (''D'', ''T'')',TO_DATE('2008-02-01 03:39:00','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','EventType Document or Table','S',TO_DATE('2008-02-01 03:39:00','YYYY-MM-DD HH24:MI:SS'),100) -; - -UPDATE AD_COLUMN SET AD_Val_Rule_ID=52008,Updated=TO_DATE('2008-02-01 03:39:24','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54265 -; - -UPDATE AD_FIELD SET NAME='Rule', Description=NULL, Help=NULL WHERE AD_Column_ID=54265 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_COLUMN SET IsMandatory='Y',Updated=TO_DATE('2008-02-01 03:43:28','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54255 -; - -UPDATE AD_COLUMN SET IsMandatory='Y',Updated=TO_DATE('2008-02-01 03:43:38','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54253 -; - -UPDATE AD_COLUMN SET IsMandatory='Y',Updated=TO_DATE('2008-02-01 03:43:48','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54254 -; - -ALTER TABLE AD_Table_ScriptValidator ADD CONSTRAINT ADRule_ADTableScriptValidator FOREIGN KEY (AD_Rule_ID) REFERENCES AD_RULE -; - -ALTER TABLE AD_Table_ScriptValidator ADD CONSTRAINT ADTable_ADTableScriptValidator FOREIGN KEY (AD_Table_ID) REFERENCES AD_TABLE -; -SELECT '087_BF1869844.sql' AS Filename FROM dual; --- [ 1869844 ] CLIENT_ID not ReadOnly any more ?!? -UPDATE AD_COLUMN SET ad_val_rule_id = 129 -WHERE ad_column_id IN ( -SELECT ad_column_id - FROM AD_TABLE t, AD_COLUMN c - WHERE t.ad_table_id = c.ad_table_id - AND columnname = 'AD_Client_ID' - AND t.accesslevel IN (1, 2, 3) - AND c.ad_val_rule_id IS NULL); -SELECT '088_BF1621517.sql' AS Filename FROM dual; --- Fix [ 1621517 ] Duplicate vendor invoice document numbers permitted - -/* -WARNING - The create index on this script could fail if you have already wrong data on your DB -If this script fails you need to detect the duplicate data and change the DocumentNo column to a unique value - -To review your duplicate data you can execute next query: - -SELECT c1.c_invoice_id, c2.c_invoice_id, c1.c_bpartner_id, c1.documentno, - c1.c_doctypetarget_id - FROM C_INVOICE c1, C_INVOICE c2 - WHERE c1.c_bpartner_id = c2.c_bpartner_id - AND c1.documentno = c2.documentno - AND c1.c_doctypetarget_id = c2.c_doctypetarget_id - AND c1.c_invoice_id <> c2.c_invoice_id; - -*/ - -CREATE UNIQUE INDEX c_invoice_documentno_target ON C_INVOICE - (c_bpartner_id, documentno, c_doctypetarget_id); - -DROP INDEX c_invoice_bpartner; - -SELECT '089_FR1883270.sql' AS Filename FROM dual; - --- Feb 1, 2008 4:02:32 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,MandatoryLogic,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54272,1580,0,10,115,'DateColumn',TO_DATE('2008-02-01 16:02:30','YYYY-MM-DD HH24:MI:SS'),100,'Fully qualified date column','D',60,'The Date Column indicates the date to be used when calculating this measurement','Y','N','N','N','N','N','N','N','N','N','Y','@StartNewYear@=Y','Date Column',0,TO_DATE('2008-02-01 16:02:30','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Feb 1, 2008 4:02:32 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54272 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Feb 1, 2008 4:02:37 PM SGT --- [ 1883270 ] Enhance Document No Formatting -ALTER TABLE AD_SEQUENCE ADD DateColumn NVARCHAR2(60) -; - --- Feb 1, 2008 4:05:04 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,DisplayLogic,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54272,54357,0,146,TO_DATE('2008-02-01 16:05:01','YYYY-MM-DD HH24:MI:SS'),100,'Fully qualified date column',0,'@IsAutoSequence@=Y & @IsTableID@=N & @StartNewYear@=Y','D','The Date Column indicates the date to be used when calculating this measurement','Y','Y','Y','N','N','N','N','N','Date Column',180,0,TO_DATE('2008-02-01 16:05:01','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 1, 2008 4:05:04 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54357 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- Feb 1, 2008 4:05:22 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET SeqNo=0,IsDisplayed='N' WHERE AD_Field_ID=3055 -; - --- Feb 1, 2008 4:05:22 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET SeqNo=0,IsDisplayed='N' WHERE AD_Field_ID=322 -; - --- Feb 1, 2008 4:05:22 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET SeqNo=10,IsDisplayed='Y' WHERE AD_Field_ID=323 -; - --- Feb 1, 2008 4:05:22 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET SeqNo=20,IsDisplayed='Y' WHERE AD_Field_ID=2019 -; - --- Feb 1, 2008 4:05:23 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET SeqNo=30,IsDisplayed='Y' WHERE AD_Field_ID=324 -; - --- Feb 1, 2008 4:05:23 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET SeqNo=40,IsDisplayed='Y' WHERE AD_Field_ID=325 -; - --- Feb 1, 2008 4:05:23 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET SeqNo=50,IsDisplayed='Y' WHERE AD_Field_ID=326 -; - --- Feb 1, 2008 4:05:23 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET SeqNo=60,IsDisplayed='Y' WHERE AD_Field_ID=330 -; - --- Feb 1, 2008 4:05:23 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET SeqNo=70,IsDisplayed='Y' WHERE AD_Field_ID=331 -; - --- Feb 1, 2008 4:05:23 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET SeqNo=80,IsDisplayed='Y' WHERE AD_Field_ID=635 -; - --- Feb 1, 2008 4:05:23 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET SeqNo=90,IsDisplayed='Y' WHERE AD_Field_ID=1554 -; - --- Feb 1, 2008 4:05:23 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET SeqNo=100,IsDisplayed='Y' WHERE AD_Field_ID=329 -; - --- Feb 1, 2008 4:05:23 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET SeqNo=110,IsDisplayed='Y' WHERE AD_Field_ID=335 -; - --- Feb 1, 2008 4:05:23 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET SeqNo=120,IsDisplayed='Y' WHERE AD_Field_ID=1555 -; - --- Feb 1, 2008 4:05:23 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET SeqNo=130,IsDisplayed='Y' WHERE AD_Field_ID=54357 -; - --- Feb 1, 2008 4:05:23 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET SeqNo=140,IsDisplayed='Y' WHERE AD_Field_ID=332 -; - --- Feb 1, 2008 4:05:23 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET SeqNo=150,IsDisplayed='Y' WHERE AD_Field_ID=333 -; - --- Feb 1, 2008 4:05:23 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET SeqNo=160,IsDisplayed='Y' WHERE AD_Field_ID=334 -; - --- Feb 1, 2008 4:06:20 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET DisplayLength=60,Updated=TO_DATE('2008-02-01 16:06:20','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=332 -; - --- Feb 1, 2008 4:06:36 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET DisplayLength=60, IsSameLine='N',Updated=TO_DATE('2008-02-01 16:06:36','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=333 -; - --- Feb 1, 2008 4:06:57 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_COLUMN SET FieldLength=255,Updated=TO_DATE('2008-02-01 16:06:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=223 -; - --- Feb 1, 2008 4:06:57 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET NAME='Prefix', Description='Prefix before the sequence number', Help='The Prefix indicates the characters to print in front of the document number.' WHERE AD_Column_ID=223 AND IsCentrallyMaintained='Y' -; - --- Feb 1, 2008 4:07:04 PM SGT --- [ 1883270 ] Enhance Document No Formatting -ALTER TABLE AD_SEQUENCE MODIFY Prefix NVARCHAR2(255) DEFAULT NULL -; - --- Feb 1, 2008 4:07:16 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_COLUMN SET FieldLength=255,Updated=TO_DATE('2008-02-01 16:07:16','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=224 -; - --- Feb 1, 2008 4:07:16 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET NAME='Suffix', Description='Suffix after the number', Help='The Suffix indicates the characters to append to the document number.' WHERE AD_Column_ID=224 AND IsCentrallyMaintained='Y' -; - --- Feb 1, 2008 4:07:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -ALTER TABLE AD_SEQUENCE MODIFY Suffix NVARCHAR2(255) DEFAULT NULL -; - --- Feb 2, 2008 12:41:35 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_PROCESS (AD_Client_ID,AD_Org_ID,AD_Process_ID,AccessLevel,Classname,Created,CreatedBy,EntityType,IsActive,IsBetaFunctionality,IsDirectPrint,IsReport,IsServerProcess,NAME,ShowHelp,Statistic_Count,Statistic_Seconds,Updated,UpdatedBy,VALUE) VALUES (0,0,53068,'3','org.adempiere.process.UpdateSequenceNo',TO_DATE('2008-02-02 12:41:31','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','N','N','N','N','Update Sequence No','Y',0,0,TO_DATE('2008-02-02 12:41:31','YYYY-MM-DD HH24:MI:SS'),100,'Sequence_No_Update') -; - --- Feb 2, 2008 12:41:35 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_PROCESS_TRL (AD_LANGUAGE,AD_Process_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_ID=53068 AND EXISTS (SELECT * FROM AD_PROCESS_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_ID!=t.AD_Process_ID) -; - --- Feb 2, 2008 12:41:35 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_PROCESS_ACCESS (AD_Client_ID,AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,53068,0,TO_DATE('2008-02-02 12:41:35','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-02-02 12:41:35','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 2, 2008 12:41:35 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_PROCESS_ACCESS (AD_Client_ID,AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,53068,102,TO_DATE('2008-02-02 12:41:35','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-02-02 12:41:35','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 2, 2008 12:41:35 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_PROCESS_ACCESS (AD_Client_ID,AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,53068,103,TO_DATE('2008-02-02 12:41:35','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-02-02 12:41:35','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 2, 2008 12:41:35 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_PROCESS_ACCESS (AD_Client_ID,AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,53068,50001,TO_DATE('2008-02-02 12:41:35','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-02-02 12:41:35','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 2, 2008 12:42:54 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_PROCESS_PARA (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,NAME,SeqNo,Updated,UpdatedBy) VALUES (0,636,0,53068,53129,10,'CalendarYear',TO_DATE('2008-02-02 12:42:52','YYYY-MM-DD HH24:MI:SS'),100,'D',4,'Y','Y','Y','N','Year',10,TO_DATE('2008-02-02 12:42:52','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 2, 2008 12:42:54 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_PROCESS_PARA_TRL (AD_LANGUAGE,AD_Process_Para_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_Para_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS_PARA t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53129 AND EXISTS (SELECT * FROM AD_PROCESS_PARA_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - --- Feb 2, 2008 12:43:57 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_MENU (AD_Client_ID,AD_Menu_ID,AD_Org_ID,AD_Process_ID,Action,Created,CreatedBy,EntityType,IsActive,IsReadOnly,IsSOTrx,IsSummary,NAME,Updated,UpdatedBy) VALUES (0,53087,0,53068,'P',TO_DATE('2008-02-02 12:43:56','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','N','N','N','Update Sequence No',TO_DATE('2008-02-02 12:43:56','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 2, 2008 12:43:57 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_MENU_TRL (AD_LANGUAGE,AD_Menu_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Menu_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_MENU t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Menu_ID=53087 AND EXISTS (SELECT * FROM AD_MENU_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Menu_ID!=t.AD_Menu_ID) -; - --- Feb 2, 2008 12:43:57 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_TREENODEMM (AD_Client_ID,AD_Org_ID, IsActive,Created,CreatedBy,Updated,UpdatedBy, AD_Tree_ID, Node_ID, Parent_ID, SeqNo) SELECT t.AD_Client_ID,0, 'Y', SYSDATE, 0, SYSDATE, 0,t.AD_Tree_ID, 53087, 0, 999 FROM AD_TREE t WHERE t.AD_Client_ID=0 AND t.IsActive='Y' AND t.IsAllNodes='Y' AND t.TreeType='MM' AND NOT EXISTS (SELECT * FROM AD_TREENODEMM e WHERE e.AD_Tree_ID=t.AD_Tree_ID AND Node_ID=53087) -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=0, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=218 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=1, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=153 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=2, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=263 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=3, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=166 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=4, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=203 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=5, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=236 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=6, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=183 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=7, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=160 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=8, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=278 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=9, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=345 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=10, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=1000000 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=11, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=53083 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=0, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=265 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=1, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=104 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=2, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=105 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=3, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=384 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=4, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=111 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=5, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=106 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=6, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=117 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=7, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=418 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=8, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=102 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=9, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=103 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=10, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=270 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=11, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=121 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=12, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=409 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=13, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=151 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=14, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=53087 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=15, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=464 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=16, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=124 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=17, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=123 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=18, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=547 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=19, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=174 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=20, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=254 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=21, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=120 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=22, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=135 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=23, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=550 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=24, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=551 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=25, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=306 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=26, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=417 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=27, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=307 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TREENODEMM SET Parent_ID=164, SeqNo=28, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=393 -; - -CREATE OR REPLACE PROCEDURE NextIDByYear -( - p_AD_Sequence_ID IN NUMBER, - p_IncrementNo IN NUMBER, - p_CalendarYear IN CHAR, - o_NextID OUT NUMBER -) -AS -BEGIN - SELECT CurrentNext - INTO o_NextID - FROM AD_SEQUENCE_NO - WHERE AD_Sequence_ID=p_AD_Sequence_ID - AND CalendarYear = p_CalendarYear - FOR UPDATE OF CurrentNext; - -- - UPDATE AD_SEQUENCE_NO - SET CurrentNext = CurrentNext + p_IncrementNo - WHERE AD_Sequence_ID=p_AD_Sequence_ID - AND CalendarYear = p_CalendarYear; -EXCEPTION - WHEN OTHERS THEN - DBMS_OUTPUT.PUT_LINE(SQLERRM); -END NextIDByYear; -/ - - - -SELECT '090_FR1885485_ClearWindowSizes.sql' AS Filename FROM dual; --- [ 1885485 ] Some windows too little -UPDATE AD_WINDOW -SET winheight = NULL, winwidth = NULL -WHERE ad_window_id IN (140, 143, 181, 195, 240) -; -SELECT '091_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '092_FR1883270_seqNrPattern.sql' AS Filename FROM dual; --- Feb 11, 2008 7:27:37 PM CET --- [FR1883270 ] Enhance Document No Formatting -INSERT INTO AD_ELEMENT (AD_Org_ID,AD_Element_ID,ColumnName,Created,CreatedBy,Description,EntityType,IsActive,NAME,PrintName,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53342,'DecimalPattern',TO_DATE('2008-02-11 19:27:36','YYYY-MM-DD HH24:MI:SS'),100,NULL,'U','Y','Decimal Pattern','Decimal Pattern',TO_DATE('2008-02-11 19:27:36','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- Feb 11, 2008 7:27:37 PM CET --- [FR1883270 ] Enhance Document No Formatting -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53342 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - --- Feb 11, 2008 7:27:38 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_ELEMENT SET Description=NULL,Updated=TO_DATE('2008-02-11 19:27:38','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=53342 -; - --- Feb 11, 2008 7:27:38 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_ELEMENT_TRL SET IsTranslated='N' WHERE AD_Element_ID=53342 -; - --- Feb 11, 2008 7:27:38 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_COLUMN SET ColumnName='DecimalPattern', NAME='Decimal Pattern', Description=NULL, Help=NULL WHERE AD_Element_ID=53342 -; - --- Feb 11, 2008 7:27:38 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET NAME='Decimal Pattern', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_COLUMN WHERE AD_Element_ID=53342) AND IsCentrallyMaintained='Y' -; - --- Feb 11, 2008 7:27:38 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_PROCESS_PARA SET ColumnName='DecimalPattern', NAME='Decimal Pattern', Description=NULL, Help=NULL, AD_Element_ID=53342 WHERE UPPER(ColumnName)='DECIMALPATTERN' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - --- Feb 11, 2008 7:27:38 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_PROCESS_PARA SET ColumnName='DecimalPattern', NAME='Decimal Pattern', Description=NULL, Help=NULL WHERE AD_Element_ID=53342 AND IsCentrallyMaintained='Y' -; - --- Feb 11, 2008 7:27:38 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Decimal Pattern', NAME='Decimal Pattern' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=53342) -; - --- Feb 11, 2008 7:27:38 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Decimal Pattern', NAME='Decimal Pattern' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=53342) -; - --- Feb 11, 2008 7:27:49 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_ELEMENT SET Description='Java Decimal Pattern',Updated=TO_DATE('2008-02-11 19:27:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=53342 -; - --- Feb 11, 2008 7:27:49 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_ELEMENT_TRL SET IsTranslated='N' WHERE AD_Element_ID=53342 -; - --- Feb 11, 2008 7:27:49 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_COLUMN SET ColumnName='DecimalPattern', NAME='Decimal Pattern', Description='Java Decimal Pattern', Help=NULL WHERE AD_Element_ID=53342 -; - --- Feb 11, 2008 7:27:49 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET NAME='Decimal Pattern', Description='Java Decimal Pattern', Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_COLUMN WHERE AD_Element_ID=53342) AND IsCentrallyMaintained='Y' -; - --- Feb 11, 2008 7:27:49 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_PROCESS_PARA SET ColumnName='DecimalPattern', NAME='Decimal Pattern', Description='Java Decimal Pattern', Help=NULL, AD_Element_ID=53342 WHERE UPPER(ColumnName)='DECIMALPATTERN' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - --- Feb 11, 2008 7:27:49 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_PROCESS_PARA SET ColumnName='DecimalPattern', NAME='Decimal Pattern', Description='Java Decimal Pattern', Help=NULL WHERE AD_Element_ID=53342 AND IsCentrallyMaintained='Y' -; - --- Feb 11, 2008 7:27:49 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Decimal Pattern', NAME='Decimal Pattern' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=53342) -; - --- Feb 11, 2008 7:27:49 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Decimal Pattern', NAME='Decimal Pattern' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=53342) -; - --- Feb 11, 2008 7:27:53 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_ELEMENT SET Help='Option Date pattern in Java notation. Examples: dd.MM.yyyy - dd/MM/yyyy If the pattern for your language is not correct, please create a Adempiere support request with the correct information',Updated=TO_DATE('2008-02-11 19:27:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=2673 -; - --- Feb 11, 2008 7:27:53 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_ELEMENT_TRL SET IsTranslated='N' WHERE AD_Element_ID=2673 -; - --- Feb 11, 2008 7:27:53 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_COLUMN SET ColumnName='DatePattern', NAME='Date Pattern', Description='Java Date Pattern', Help='Option Date pattern in Java notation. Examples: dd.MM.yyyy - dd/MM/yyyy If the pattern for your language is not correct, please create a Adempiere support request with the correct information' WHERE AD_Element_ID=2673 -; - --- Feb 11, 2008 7:27:53 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET NAME='Date Pattern', Description='Java Date Pattern', Help='Option Date pattern in Java notation. Examples: dd.MM.yyyy - dd/MM/yyyy If the pattern for your language is not correct, please create a Adempiere support request with the correct information' WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_COLUMN WHERE AD_Element_ID=2673) AND IsCentrallyMaintained='Y' -; - --- Feb 11, 2008 7:27:53 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_PROCESS_PARA SET ColumnName='DatePattern', NAME='Date Pattern', Description='Java Date Pattern', Help='Option Date pattern in Java notation. Examples: dd.MM.yyyy - dd/MM/yyyy If the pattern for your language is not correct, please create a Adempiere support request with the correct information', AD_Element_ID=2673 WHERE UPPER(ColumnName)='DATEPATTERN' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - --- Feb 11, 2008 7:27:53 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_PROCESS_PARA SET ColumnName='DatePattern', NAME='Date Pattern', Description='Java Date Pattern', Help='Option Date pattern in Java notation. Examples: dd.MM.yyyy - dd/MM/yyyy If the pattern for your language is not correct, please create a Adempiere support request with the correct information' WHERE AD_Element_ID=2673 AND IsCentrallyMaintained='Y' -; - --- Feb 11, 2008 7:27:53 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Date Pattern', NAME='Date Pattern' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=2673) -; - --- Feb 11, 2008 7:27:53 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Date Pattern', NAME='Date Pattern' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=2673) -; - --- Feb 11, 2008 7:29:00 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_ELEMENT SET EntityType='D', Help='Option Decimal pattern in Java notation. Examples: 0000 will format 23 to 0023',Updated=TO_DATE('2008-02-11 19:29:00','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=53342 -; - --- Feb 11, 2008 7:29:00 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_ELEMENT_TRL SET IsTranslated='N' WHERE AD_Element_ID=53342 -; - --- Feb 11, 2008 7:29:00 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_COLUMN SET ColumnName='DecimalPattern', NAME='Decimal Pattern', Description='Java Decimal Pattern', Help='Option Decimal pattern in Java notation. Examples: 0000 will format 23 to 0023' WHERE AD_Element_ID=53342 -; - --- Feb 11, 2008 7:29:00 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET NAME='Decimal Pattern', Description='Java Decimal Pattern', Help='Option Decimal pattern in Java notation. Examples: 0000 will format 23 to 0023' WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_COLUMN WHERE AD_Element_ID=53342) AND IsCentrallyMaintained='Y' -; - --- Feb 11, 2008 7:29:00 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_PROCESS_PARA SET ColumnName='DecimalPattern', NAME='Decimal Pattern', Description='Java Decimal Pattern', Help='Option Decimal pattern in Java notation. Examples: 0000 will format 23 to 0023', AD_Element_ID=53342 WHERE UPPER(ColumnName)='DECIMALPATTERN' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - --- Feb 11, 2008 7:29:00 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_PROCESS_PARA SET ColumnName='DecimalPattern', NAME='Decimal Pattern', Description='Java Decimal Pattern', Help='Option Decimal pattern in Java notation. Examples: 0000 will format 23 to 0023' WHERE AD_Element_ID=53342 AND IsCentrallyMaintained='Y' -; - --- Feb 11, 2008 7:29:00 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Decimal Pattern', NAME='Decimal Pattern' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=53342) -; - --- Feb 11, 2008 7:29:00 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_PRINTFORMATITEM pi SET PrintName='Decimal Pattern', NAME='Decimal Pattern' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_COLUMN c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=53342) -; - --- Feb 11, 2008 7:30:34 PM CET --- [FR1883270 ] Enhance Document No Formatting -INSERT INTO AD_COLUMN (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,AD_Client_ID,VERSION,AD_Column_ID) VALUES (0,53342,10,115,'DecimalPattern',TO_DATE('2008-02-11 19:30:30','YYYY-MM-DD HH24:MI:SS'),100,'Java Decimal Pattern','D',40,'Option Decimal pattern in Java notation. Examples: 0000 will format 23 to 0023','Y','N','N','N','N','N','N','N','N','N','Y','Decimal Pattern',0,TO_DATE('2008-02-11 19:30:30','YYYY-MM-DD HH24:MI:SS'),100,0,0,54309) -; - --- Feb 11, 2008 7:30:34 PM CET --- [FR1883270 ] Enhance Document No Formatting -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54309 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Feb 11, 2008 7:30:46 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_COLUMN SET NAME='DecimalPattern',Updated=TO_DATE('2008-02-11 19:30:46','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54309 -; - --- Feb 11, 2008 7:30:46 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_COLUMN_TRL SET IsTranslated='N' WHERE AD_Column_ID=54309 -; - --- Feb 11, 2008 7:30:46 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET NAME='DecimalPattern', Description='Java Decimal Pattern', Help='Option Decimal pattern in Java notation. Examples: 0000 will format 23 to 0023' WHERE AD_Column_ID=54309 AND IsCentrallyMaintained='Y' -; - --- Feb 11, 2008 7:30:59 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_COLUMN SET NAME='Decimal Pattern',Updated=TO_DATE('2008-02-11 19:30:59','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54309 -; - --- Feb 11, 2008 7:30:59 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_COLUMN_TRL SET IsTranslated='N' WHERE AD_Column_ID=54309 -; - --- Feb 11, 2008 7:31:00 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET NAME='Decimal Pattern', Description='Java Decimal Pattern', Help='Option Decimal pattern in Java notation. Examples: 0000 will format 23 to 0023' WHERE AD_Column_ID=54309 AND IsCentrallyMaintained='Y' -; - --- Feb 11, 2008 7:31:06 PM CET --- [FR1883270 ] Enhance Document No Formatting -ALTER TABLE AD_SEQUENCE ADD DecimalPattern NVARCHAR2(40) -; - --- Feb 11, 2008 7:36:44 PM CET --- [FR1883270 ] Enhance Document No Formatting -INSERT INTO AD_FIELD (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,AD_Client_ID,UpdatedBy) VALUES (54309,0,54391,146,TO_DATE('2008-02-11 19:36:43','YYYY-MM-DD HH24:MI:SS'),100,'Java Decimal Pattern',0,'D','Option Decimal pattern in Java notation. Examples: 0000 will format 23 to 0023','Y','Y','Y','N','N','N','N','N','Decimal Pattern',105,0,TO_DATE('2008-02-11 19:36:43','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- Feb 11, 2008 7:36:44 PM CET --- [FR1883270 ] Enhance Document No Formatting -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54391 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- Feb 11, 2008 7:37:13 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET DisplayLength=14,Updated=TO_DATE('2008-02-11 19:37:13','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54391 -; - --- Feb 11, 2008 7:37:28 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_FIELD SET IsSameLine='Y',Updated=TO_DATE('2008-02-11 19:37:28','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54391 -; - - -SELECT '093_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '094_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '095_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '096_FRs1783027_1755177.sql' AS Filename FROM dual; --- Feb 12, 2008 9:21:09 PM COT --- 1755177 - ad_changelog should have an action field - 1783027 - Add descriptive info to AD_Session -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,ColumnSQL,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54349,275,0,10,566,'Description',NULL,TO_DATE('2008-02-12 21:21:07','YYYY-MM-DD HH24:MI:SS'),100,'Optional short description of the record','D',255,'A description is limited to 255 characters.','Y','N','N','N','N','N','N','N','N','N','Y','Description',0,TO_DATE('2008-02-12 21:21:07','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54349 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54350,123,0,19,566,'AD_Role_ID',TO_DATE('2008-02-12 21:21:57','YYYY-MM-DD HH24:MI:SS'),100,'Responsibility Role','D',10,'The Role determines security and access a user who has this Role will have in the System.','Y','N','N','N','N','N','N','N','N','N','Y','Role',0,TO_DATE('2008-02-12 21:21:57','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54350 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53344,0,'LoginDate',TO_DATE('2008-02-12 21:25:05','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Login date','Login date',TO_DATE('2008-02-12 21:25:05','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53344 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54351,53344,0,15,566,'LoginDate',TO_DATE('2008-02-12 21:25:40','YYYY-MM-DD HH24:MI:SS'),100,'D',10,'Y','N','N','N','N','N','N','N','N','N','Y','Login date',0,TO_DATE('2008-02-12 21:25:40','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54351 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -ALTER TABLE AD_SESSION ADD Description NVARCHAR2(255) -; - -ALTER TABLE AD_SESSION ADD AD_Role_ID NUMBER(10) -; - -ALTER TABLE AD_SESSION ADD LoginDate DATE -; - -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53345,0,'EventChangeLog',TO_DATE('2008-02-12 21:27:16','YYYY-MM-DD HH24:MI:SS'),100,'Type of Event in Change Log','D','Y','Event Change Log','Event Change Log',TO_DATE('2008-02-12 21:27:16','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53345 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_REFERENCE (AD_Client_ID,AD_Org_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,ValidationType) VALUES (0,0,53238,TO_DATE('2008-02-12 21:27:47','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','EventChangeLog',TO_DATE('2008-02-12 21:27:47','YYYY-MM-DD HH24:MI:SS'),100,'L') -; - -INSERT INTO AD_REFERENCE_TRL (AD_LANGUAGE,AD_Reference_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Reference_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REFERENCE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Reference_ID=53238 AND EXISTS (SELECT * FROM AD_REFERENCE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Reference_ID!=t.AD_Reference_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53321,53238,TO_DATE('2008-02-12 21:28:05','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Insert',TO_DATE('2008-02-12 21:28:05','YYYY-MM-DD HH24:MI:SS'),100,'I') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53321 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53322,53238,TO_DATE('2008-02-12 21:28:11','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Delete',TO_DATE('2008-02-12 21:28:11','YYYY-MM-DD HH24:MI:SS'),100,'D') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53322 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53323,53238,TO_DATE('2008-02-12 21:28:16','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Update',TO_DATE('2008-02-12 21:28:16','YYYY-MM-DD HH24:MI:SS'),100,'U') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53323 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54352,53345,0,17,53238,580,'EventChangeLog',TO_DATE('2008-02-12 21:28:37','YYYY-MM-DD HH24:MI:SS'),100,'Type of Event in Change Log','D',1,'Y','N','N','N','N','N','N','N','N','N','Y','Event Change Log',0,TO_DATE('2008-02-12 21:28:37','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54352 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -ALTER TABLE AD_CHANGELOG ADD EventChangeLog CHAR(1) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54349,54393,0,475,TO_DATE('2008-02-12 21:29:38','YYYY-MM-DD HH24:MI:SS'),100,'Optional short description of the record',255,'D','A description is limited to 255 characters.','Y','Y','Y','N','N','N','N','N','Description',TO_DATE('2008-02-12 21:29:38','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54393 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54351,54394,0,475,TO_DATE('2008-02-12 21:29:40','YYYY-MM-DD HH24:MI:SS'),100,10,'D','Y','Y','Y','N','N','N','N','N','Login date',TO_DATE('2008-02-12 21:29:40','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54394 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54350,54395,0,475,TO_DATE('2008-02-12 21:29:40','YYYY-MM-DD HH24:MI:SS'),100,'Responsibility Role',10,'D','The Role determines security and access a user who has this Role will have in the System.','Y','Y','Y','N','N','N','N','N','Role',TO_DATE('2008-02-12 21:29:40','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54395 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -UPDATE AD_FIELD SET SeqNo=90,IsDisplayed='Y' WHERE AD_Field_ID=54394 -; - -UPDATE AD_FIELD SET SeqNo=100,IsDisplayed='Y' WHERE AD_Field_ID=54395 -; - -UPDATE AD_FIELD SET SeqNo=110,IsDisplayed='Y' WHERE AD_Field_ID=54393 -; - -UPDATE AD_FIELD SET SeqNo=120,IsDisplayed='Y' WHERE AD_Field_ID=6622 -; - -UPDATE AD_FIELD SET IsSameLine='Y',Updated=TO_DATE('2008-02-12 21:30:20','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54394 -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54352,54396,0,487,TO_DATE('2008-02-12 21:30:57','YYYY-MM-DD HH24:MI:SS'),100,'Type of Event in Change Log',1,'D','Y','Y','Y','N','N','N','N','N','Event Change Log',TO_DATE('2008-02-12 21:30:57','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54396 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -UPDATE AD_FIELD SET SeqNo=130,IsDisplayed='Y' WHERE AD_Field_ID=54396 -; - -UPDATE AD_FIELD SET SeqNo=140,IsDisplayed='Y' WHERE AD_Field_ID=6770 -; - -UPDATE AD_FIELD SET SeqNo=150,IsDisplayed='Y' WHERE AD_Field_ID=6763 -; - -UPDATE AD_FIELD SET SeqNo=160,IsDisplayed='Y' WHERE AD_Field_ID=12357 -; - -UPDATE AD_FIELD SET SeqNo=170,IsDisplayed='Y' WHERE AD_Field_ID=10951 -; - -UPDATE AD_FIELD SET SeqNo=180,IsDisplayed='Y' WHERE AD_Field_ID=10950 -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54352,54397,0,488,TO_DATE('2008-02-12 21:33:19','YYYY-MM-DD HH24:MI:SS'),100,'Type of Event in Change Log',1,'D','Y','Y','Y','N','N','N','N','N','Event Change Log',TO_DATE('2008-02-12 21:33:19','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54397 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -UPDATE AD_FIELD SET SeqNo=130,IsDisplayed='Y' WHERE AD_Field_ID=54397 -; - -UPDATE AD_FIELD SET SeqNo=140,IsDisplayed='Y' WHERE AD_Field_ID=6780 -; - -UPDATE AD_FIELD SET SeqNo=150,IsDisplayed='Y' WHERE AD_Field_ID=6773 -; - -UPDATE AD_FIELD SET SeqNo=160,IsDisplayed='Y' WHERE AD_Field_ID=12356 -; - -UPDATE AD_FIELD SET SeqNo=170,IsDisplayed='Y' WHERE AD_Field_ID=10948 -; - -UPDATE AD_FIELD SET SeqNo=180,IsDisplayed='Y' WHERE AD_Field_ID=10947 -; - -UPDATE AD_SESSION - SET description = - (SELECT MAX (description) - FROM AD_CHANGELOG - WHERE AD_CHANGELOG.ad_session_id = AD_SESSION.ad_session_id - AND AD_CHANGELOG.description IS NOT NULL) - WHERE description IS NULL - AND EXISTS ( - SELECT 1 - FROM AD_CHANGELOG - WHERE AD_CHANGELOG.ad_session_id = AD_SESSION.ad_session_id - AND AD_CHANGELOG.description IS NOT NULL); - -UPDATE AD_CHANGELOG - SET description = NULL; -SELECT '097_1851190.sql' AS Filename FROM dual; --- Feb 12, 2008 11:33:32 PM COT --- 1851190 - Running outdated client can cause data corruption -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53346,0,'LastBuildInfo',TO_DATE('2008-02-12 23:33:30','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Last Build Info','Last Build Info',TO_DATE('2008-02-12 23:33:30','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53346 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54353,53346,0,10,531,'LastBuildInfo',TO_DATE('2008-02-12 23:34:02','YYYY-MM-DD HH24:MI:SS'),100,'D',255,'Y','N','N','N','N','N','N','N','N','N','Y','Last Build Info',0,TO_DATE('2008-02-12 23:34:02','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54353 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53347,0,'IsFailOnBuildDiffer',TO_DATE('2008-02-12 23:34:52','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Fail if Build Differ','Fail if Build Differ',TO_DATE('2008-02-12 23:34:52','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53347 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54354,53347,0,20,531,'IsFailOnBuildDiffer',TO_DATE('2008-02-12 23:35:26','YYYY-MM-DD HH24:MI:SS'),100,'N','D',1,'Y','N','N','N','N','Y','N','N','N','N','Y','Fail if Build Differ',0,TO_DATE('2008-02-12 23:35:26','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54354 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -ALTER TABLE AD_SYSTEM ADD LastBuildInfo NVARCHAR2(255) -; - -UPDATE AD_FIELD SET NAME='Fail if Build Differ', Description=NULL, Help=NULL WHERE AD_Column_ID=54354 AND IsCentrallyMaintained='Y' -; - -ALTER TABLE AD_SYSTEM ADD IsFailOnBuildDiffer CHAR(1) DEFAULT 'N' CHECK (IsFailOnBuildDiffer IN ('Y','N')) NOT NULL -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54354,54398,0,440,TO_DATE('2008-02-13 00:07:59','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','N','Fail if Build Differ',TO_DATE('2008-02-13 00:07:59','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54398 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,UpdatedBy) VALUES (0,54353,54399,0,440,TO_DATE('2008-02-13 00:08:02','YYYY-MM-DD HH24:MI:SS'),100,255,'D','Y','Y','Y','N','N','N','N','N','Last Build Info',TO_DATE('2008-02-13 00:08:02','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54399 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -UPDATE AD_FIELD SET SeqNo=260,Updated=TO_DATE('2008-02-13 00:08:23','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54399 -; - -UPDATE AD_FIELD SET SeqNo=270,Updated=TO_DATE('2008-02-13 00:08:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54398 -; - -UPDATE AD_FIELD SET SeqNo=240,IsDisplayed='Y' WHERE AD_Field_ID=54236 -; - -UPDATE AD_FIELD SET SeqNo=250,IsDisplayed='Y' WHERE AD_Field_ID=54399 -; - -UPDATE AD_FIELD SET SeqNo=260,IsDisplayed='Y' WHERE AD_Field_ID=54398 -; - -UPDATE AD_FIELD SET SeqNo=270,IsDisplayed='Y' WHERE AD_Field_ID=12870 -; - -UPDATE AD_FIELD SET SeqNo=280,IsDisplayed='Y' WHERE AD_Field_ID=12871 -; - -INSERT INTO AD_MESSAGE (AD_Client_ID,AD_Message_ID,AD_Org_ID,Created,CreatedBy,EntityType,IsActive,MsgText,MsgTip,MsgType,Updated,UpdatedBy,VALUE) VALUES (0,53025,0,TO_DATE('2008-02-13 00:10:26','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Build Version Error','The program assumes build version {0}, but database has build version {1}. -This IS likely TO cause hard TO fix errors. -Please contact ADMINISTRATOR.','E',TO_DATE('2008-02-13 00:10:26','YYYY-MM-DD HH24:MI:SS'),100,'BuildVersionError') -; - -INSERT INTO AD_MESSAGE_TRL (AD_LANGUAGE,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_MESSAGE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=53025 AND EXISTS (SELECT * FROM AD_MESSAGE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Message_ID!=t.AD_Message_ID) -; - - -SELECT '098_BF1892475.sql' AS Filename FROM dual; --- Feb 13, 2008 4:16:25 PM SGT --- [ 1892475 ] AD_Reference list is hardcoded to always sort by name -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,Help,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53348,0,'IsOrderByValue',TO_DATE('2008-02-13 16:16:22','YYYY-MM-DD HH24:MI:SS'),100,'Order list using the value column instead of the name column','D','Order list using the value column instead of the name column','Y','Order By Value','Order By Value',TO_DATE('2008-02-13 16:16:22','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 13, 2008 4:16:25 PM SGT --- [ 1892475 ] AD_Reference list is hardcoded to always sort by name -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53348 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - --- Feb 13, 2008 4:17:15 PM SGT --- [ 1892475 ] AD_Reference list is hardcoded to always sort by name -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54355,53348,0,20,102,'IsOrderByValue',TO_DATE('2008-02-13 16:17:13','YYYY-MM-DD HH24:MI:SS'),100,'N','Order list using the value column instead of the name column','D',1,'Order list using the value column instead of the name column','Y','N','N','N','N','N','N','N','N','N','Y','Order By Value',0,TO_DATE('2008-02-13 16:17:13','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Feb 13, 2008 4:17:15 PM SGT --- [ 1892475 ] AD_Reference list is hardcoded to always sort by name -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54355 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Feb 13, 2008 4:17:19 PM SGT --- [ 1892475 ] AD_Reference list is hardcoded to always sort by name -ALTER TABLE AD_REFERENCE ADD IsOrderByValue CHAR(1) DEFAULT 'N' -; - --- Feb 13, 2008 4:19:22 PM SGT --- [ 1892475 ] AD_Reference list is hardcoded to always sort by name -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,DisplayLogic,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54355,54400,0,102,TO_DATE('2008-02-13 16:19:20','YYYY-MM-DD HH24:MI:SS'),100,'Order list using the value column instead of the name column',0,'@ValidationType@=L','U','Order list using the value column instead of the name column','Y','Y','Y','N','N','N','N','N','Order By Value',110,0,TO_DATE('2008-02-13 16:19:20','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 13, 2008 4:19:22 PM SGT --- [ 1892475 ] AD_Reference list is hardcoded to always sort by name -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54400 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - - -SELECT '099_FR1887651.sql' AS Filename FROM dual; --- Feb 13, 2008 4:39:57 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54356,121,0,18,4,107,115,'AD_Reference_Value_ID',TO_DATE('2008-02-13 16:39:55','YYYY-MM-DD HH24:MI:SS'),100,'Required to specify, if data type is Table or List','D',22,'The Reference Value indicates where the reference values are stored. It must be specified if the data type is Table or List. ','Y','N','N','N','N','N','N','N','N','N','Y','Reference Key',0,TO_DATE('2008-02-13 16:39:55','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Feb 13, 2008 4:39:57 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54356 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Feb 13, 2008 4:40:01 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -ALTER TABLE AD_FIELD ADD AD_Reference_Value_ID NUMBER(10) DEFAULT NULL -; - --- Feb 13, 2008 4:41:01 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54357,139,0,19,107,'AD_Val_Rule_ID',TO_DATE('2008-02-13 16:41:00','YYYY-MM-DD HH24:MI:SS'),100,'Dynamic Validation Rule','D',22,'These rules define how an entry is determined to valid. You can use variables for dynamic (context sensitive) validation.','Y','N','N','N','N','N','N','N','N','N','Y','Dynamic Validation',0,TO_DATE('2008-02-13 16:41:00','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Feb 13, 2008 4:41:01 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54357 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Feb 13, 2008 4:41:12 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -ALTER TABLE AD_FIELD ADD AD_Val_Rule_ID NUMBER(10) DEFAULT NULL -; - --- Feb 13, 2008 4:46:04 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,DisplayLogic,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54357,54401,0,107,TO_DATE('2008-02-13 16:46:03','YYYY-MM-DD HH24:MI:SS'),100,'Dynamic Validation Rule',14,'@AD_Reference_ID@=17 | @AD_Reference_ID@=18 | @AD_Reference_ID@=19 | @AD_Reference_ID@=28 | @AD_Reference_ID@=30','D','These rules define how an entry is determined to valid. You can use variables for dynamic (context sensitive) validation.','Y','Y','Y','N','N','N','N','Y','Dynamic Validation',280,0,TO_DATE('2008-02-13 16:46:03','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 13, 2008 4:46:04 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54401 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- Feb 13, 2008 4:46:48 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,DisplayLogic,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54356,54402,0,107,TO_DATE('2008-02-13 16:46:47','YYYY-MM-DD HH24:MI:SS'),100,'Required to specify, if data type is Table or List',14,'@AD_Reference_ID@=17 | @AD_Reference_ID@=18 | @AD_Reference_ID@=30 | @AD_Reference_ID@=28','D','The Reference Value indicates where the reference values are stored. It must be specified if the data type is Table or List. ','Y','Y','Y','N','N','N','N','N','Reference Key',290,0,TO_DATE('2008-02-13 16:46:47','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 13, 2008 4:46:48 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54402 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- Feb 13, 2008 4:47:27 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -UPDATE AD_FIELD SET IsSameLine='N',Updated=TO_DATE('2008-02-13 16:47:27','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=13424 -; - --- Feb 13, 2008 4:48:21 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -UPDATE AD_FIELD SET SeqNo=250,IsDisplayed='Y' WHERE AD_Field_ID=54401 -; - --- Feb 13, 2008 4:48:21 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -UPDATE AD_FIELD SET SeqNo=260,IsDisplayed='Y' WHERE AD_Field_ID=54402 -; - --- Feb 13, 2008 4:48:21 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -UPDATE AD_FIELD SET SeqNo=270,IsDisplayed='Y' WHERE AD_Field_ID=13424 -; - --- Feb 13, 2008 4:48:21 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -UPDATE AD_FIELD SET SeqNo=280,IsDisplayed='Y' WHERE AD_Field_ID=53280 -; - - -SELECT '100_FR1892335.sql' AS Filename FROM dual; --- Feb 13, 2008 4:58:56 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,Help,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53349,0,'InfoFactoryClass',TO_DATE('2008-02-13 16:58:53','YYYY-MM-DD HH24:MI:SS'),100,'Fully qualified class name that implements the InfoFactory interface','D','Fully qualified class name that implements the InfoFactory interface. This can be use to provide custom Info class for column.','Y','Info Factory Class','Info Factory Class',TO_DATE('2008-02-13 16:58:53','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 13, 2008 4:58:56 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53349 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - --- Feb 13, 2008 4:59:45 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54358,53349,0,10,101,'InfoFactoryClass',TO_DATE('2008-02-13 16:59:44','YYYY-MM-DD HH24:MI:SS'),100,'Fully qualified class name that implements the InfoFactory interface','D',255,'Fully qualified class name that implements the InfoFactory interface. This can be use to provide custom Info class for column.','Y','N','N','N','N','N','N','N','N','N','Y','Info Factory Class',0,TO_DATE('2008-02-13 16:59:44','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Feb 13, 2008 4:59:46 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54358 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Feb 13, 2008 4:59:50 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -ALTER TABLE AD_COLUMN ADD InfoFactoryClass NVARCHAR2(255) -; - --- Feb 13, 2008 5:01:42 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54359,53349,0,10,107,'InfoFactoryClass',TO_DATE('2008-02-13 17:01:39','YYYY-MM-DD HH24:MI:SS'),100,'Fully qualified class name that implements the InfoFactory interface','D',255,'Fully qualified class name that implements the InfoFactory interface. This can be use to provide custom Info class for column.','Y','N','N','N','N','N','N','N','N','N','Y','Info Factory Class',0,TO_DATE('2008-02-13 17:01:39','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Feb 13, 2008 5:01:42 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54359 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Feb 13, 2008 5:01:47 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -ALTER TABLE AD_FIELD ADD InfoFactoryClass NVARCHAR2(255) -; - --- Feb 13, 2008 5:07:51 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,DisplayLogic,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54358,54403,0,101,TO_DATE('2008-02-13 17:07:44','YYYY-MM-DD HH24:MI:SS'),100,'Fully qualified class name that implements the InfoFactory interface',14,'@AD_Reference_ID@=30','D','Fully qualified class name that implements the InfoFactory interface. This can be use to provide custom Info class for column.','Y','Y','Y','N','N','N','N','Y','Info Factory Class',350,0,TO_DATE('2008-02-13 17:07:44','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 13, 2008 5:07:51 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54403 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- Feb 13, 2008 5:08:32 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_FIELD SET SeqNo=180,IsDisplayed='Y' WHERE AD_Field_ID=54403 -; - --- Feb 13, 2008 5:08:32 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_FIELD SET SeqNo=190,IsDisplayed='Y' WHERE AD_Field_ID=2574 -; - --- Feb 13, 2008 5:08:32 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_FIELD SET SeqNo=200,IsDisplayed='Y' WHERE AD_Field_ID=2573 -; - --- Feb 13, 2008 5:08:32 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_FIELD SET SeqNo=210,IsDisplayed='Y' WHERE AD_Field_ID=160 -; - --- Feb 13, 2008 5:08:32 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_FIELD SET SeqNo=220,IsDisplayed='Y' WHERE AD_Field_ID=161 -; - --- Feb 13, 2008 5:08:32 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_FIELD SET SeqNo=230,IsDisplayed='Y' WHERE AD_Field_ID=162 -; - --- Feb 13, 2008 5:08:32 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_FIELD SET SeqNo=240,IsDisplayed='Y' WHERE AD_Field_ID=166 -; - --- Feb 13, 2008 5:08:32 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_FIELD SET SeqNo=250,IsDisplayed='Y' WHERE AD_Field_ID=2370 -; - --- Feb 13, 2008 5:08:32 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_FIELD SET SeqNo=260,IsDisplayed='Y' WHERE AD_Field_ID=169 -; - --- Feb 13, 2008 5:08:32 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_FIELD SET SeqNo=270,IsDisplayed='Y' WHERE AD_Field_ID=10128 -; - --- Feb 13, 2008 5:08:32 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_FIELD SET SeqNo=280,IsDisplayed='Y' WHERE AD_Field_ID=4941 -; - --- Feb 13, 2008 5:08:32 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_FIELD SET SeqNo=290,IsDisplayed='Y' WHERE AD_Field_ID=50188 -; - --- Feb 13, 2008 5:08:32 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_FIELD SET SeqNo=300,IsDisplayed='Y' WHERE AD_Field_ID=168 -; - --- Feb 13, 2008 5:08:32 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_FIELD SET SeqNo=310,IsDisplayed='Y' WHERE AD_Field_ID=159 -; - --- Feb 13, 2008 5:08:33 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_FIELD SET SeqNo=320,IsDisplayed='Y' WHERE AD_Field_ID=825 -; - --- Feb 13, 2008 5:08:33 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_FIELD SET SeqNo=330,IsDisplayed='Y' WHERE AD_Field_ID=4940 -; - --- Feb 13, 2008 5:08:33 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_FIELD SET SeqNo=340,IsDisplayed='Y' WHERE AD_Field_ID=167 -; - --- Feb 13, 2008 5:08:33 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_FIELD SET SeqNo=350,IsDisplayed='Y' WHERE AD_Field_ID=5121 -; - --- Feb 13, 2008 5:08:33 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_FIELD SET SeqNo=360,IsDisplayed='Y' WHERE AD_Field_ID=5122 -; - -CREATE OR REPLACE VIEW AD_FIELD_V -(AD_WINDOW_ID, AD_TAB_ID, AD_FIELD_ID, AD_TABLE_ID, AD_COLUMN_ID, - NAME, DESCRIPTION, HELP, ISDISPLAYED, DISPLAYLOGIC, - DISPLAYLENGTH, SEQNO, SORTNO, ISSAMELINE, ISHEADING, - ISFIELDONLY, ISREADONLY, ISENCRYPTEDFIELD, OBSCURETYPE, COLUMNNAME, - COLUMNSQL, FIELDLENGTH, VFORMAT, DEFAULTVALUE, ISKEY, - ISPARENT, ISMANDATORY, ISIDENTIFIER, ISTRANSLATED, AD_REFERENCE_VALUE_ID, - CALLOUT, AD_REFERENCE_ID, AD_VAL_RULE_ID, AD_PROCESS_ID, ISALWAYSUPDATEABLE, - READONLYLOGIC, MANDATORYLOGIC, ISUPDATEABLE, ISENCRYPTEDCOLUMN, ISSELECTIONCOLUMN, - TABLENAME, VALUEMIN, VALUEMAX, FIELDGROUP, VALIDATIONCODE, - INCLUDED_TAB_ID, FIELDGROUPTYPE, IsCollapsedByDefault, InfoFactoryClass) -AS -SELECT t.AD_Window_ID, f.AD_Tab_ID, f.AD_Field_ID, tbl.AD_Table_ID, f.AD_Column_ID, - f.NAME, f.Description, f.Help, f.IsDisplayed, f.DisplayLogic, f.DisplayLength, - f.SeqNo, f.SortNo, f.IsSameLine, f.IsHeading, f.IsFieldOnly, f.IsReadOnly, - f.IsEncrypted AS IsEncryptedField, f.ObscureType, - c.ColumnName, c.ColumnSQL, c.FieldLength, c.VFormat, - COALESCE(f.DefaultValue, c.DefaultValue) AS DefaultValue, - c.IsKey, c.IsParent, - COALESCE(f.IsMandatory, c.IsMandatory) AS IsMandatory, - c.IsIdentifier, c.IsTranslated, COALESCE(f.AD_Reference_Value_ID, c.AD_Reference_Value_ID) AS AD_Reference_Value_ID, - c.Callout, COALESCE(f.AD_Reference_ID, c.AD_Reference_ID) AS AD_Reference_ID, - COALESCE(f.AD_Val_Rule_ID, c.AD_Val_Rule_ID) AS AD_Val_Rule_ID, c.AD_Process_ID, c.IsAlwaysUpdateable, - c.ReadOnlyLogic, c.MandatoryLogic, c.IsUpdateable, c.IsEncrypted AS IsEncryptedColumn, - c.IsSelectionColumn, - tbl.TableName, c.ValueMin, c.ValueMax, - fg.NAME AS FieldGroup, vr.Code AS ValidationCode, - f.Included_Tab_ID, fg.FieldGroupType, fg.IsCollapsedByDefault, - COALESCE(f.InfoFactoryClass, c.InfoFactoryClass) AS InfoFactoryClass -FROM AD_FIELD f - INNER JOIN AD_TAB t ON (f.AD_Tab_ID = t.AD_Tab_ID) - LEFT OUTER JOIN AD_FIELDGROUP fg ON (f.AD_FieldGroup_ID = fg.AD_FieldGroup_ID) - LEFT OUTER JOIN AD_COLUMN c ON (f.AD_Column_ID = c.AD_Column_ID) - INNER JOIN AD_TABLE tbl ON (c.AD_Table_ID = tbl.AD_Table_ID) - INNER JOIN AD_REFERENCE r ON (c.AD_Reference_ID = r.AD_Reference_ID) - LEFT OUTER JOIN AD_VAL_RULE vr ON (vr.AD_Val_Rule_ID = COALESCE(f.AD_Val_Rule_ID, c.AD_Val_Rule_ID)) -WHERE f.IsActive = 'Y' - AND c.IsActive = 'Y' -; - -CREATE OR REPLACE VIEW AD_FIELD_VT -(AD_LANGUAGE, AD_WINDOW_ID, AD_TAB_ID, AD_FIELD_ID, AD_TABLE_ID, - AD_COLUMN_ID, NAME, DESCRIPTION, HELP, ISDISPLAYED, - DISPLAYLOGIC, DISPLAYLENGTH, SEQNO, SORTNO, ISSAMELINE, - ISHEADING, ISFIELDONLY, ISREADONLY, ISENCRYPTEDFIELD, OBSCURETYPE, - COLUMNNAME, COLUMNSQL, FIELDLENGTH, VFORMAT, DEFAULTVALUE, - ISKEY, ISPARENT, ISMANDATORY, ISIDENTIFIER, ISTRANSLATED, - AD_REFERENCE_VALUE_ID, CALLOUT, AD_REFERENCE_ID, AD_VAL_RULE_ID, AD_PROCESS_ID, - ISALWAYSUPDATEABLE, READONLYLOGIC, MANDATORYLOGIC, ISUPDATEABLE, ISENCRYPTEDCOLUMN, - ISSELECTIONCOLUMN, TABLENAME, VALUEMIN, VALUEMAX, FIELDGROUP, - VALIDATIONCODE, INCLUDED_TAB_ID, FIELDGROUPTYPE, IsCollapsedByDefault, InfoFactoryClass) -AS -SELECT trl.AD_LANGUAGE, t.AD_Window_ID, f.AD_Tab_ID, f.AD_Field_ID, tbl.AD_Table_ID, f.AD_Column_ID, - trl.NAME, trl.Description, trl.Help, f.IsDisplayed, f.DisplayLogic, f.DisplayLength, - f.SeqNo, f.SortNo, f.IsSameLine, f.IsHeading, f.IsFieldOnly, f.IsReadOnly, - f.IsEncrypted AS IsEncryptedField, f.ObscureType, - c.ColumnName, c.ColumnSQL, c.FieldLength, c.VFormat, - COALESCE(f.DefaultValue, c.DefaultValue) AS DefaultValue, - c.IsKey, c.IsParent, - COALESCE(f.IsMandatory, c.IsMandatory) AS IsMandatory, - c.IsIdentifier, c.IsTranslated, COALESCE(f.AD_Reference_Value_ID, c.AD_Reference_Value_ID) AS AD_Reference_Value_ID, - c.Callout, COALESCE(f.AD_Reference_ID, c.AD_Reference_ID) AS AD_Reference_ID, - COALESCE(f.AD_Val_Rule_ID, c.AD_Val_Rule_ID) AS AD_Val_Rule_ID, c.AD_Process_ID, c.IsAlwaysUpdateable, - c.ReadOnlyLogic, c.MandatoryLogic, c.IsUpdateable, c.IsEncrypted AS IsEncryptedColumn, c.IsSelectionColumn, - tbl.TableName, c.ValueMin, c.ValueMax, - fgt.NAME AS FieldGroup, vr.Code AS ValidationCode, - f.Included_Tab_ID, fg.FieldGroupType, fg.IsCollapsedByDefault, - COALESCE(f.InfoFactoryClass, c.InfoFactoryClass) AS InfoFactoryClass -FROM AD_FIELD f - INNER JOIN AD_FIELD_TRL trl ON (f.AD_Field_ID = trl.AD_Field_ID) - INNER JOIN AD_TAB t ON (f.AD_Tab_ID = t.AD_Tab_ID) - LEFT OUTER JOIN AD_FIELDGROUP fg ON (f.AD_FieldGroup_ID = fg.AD_FieldGroup_ID) - LEFT OUTER JOIN AD_FIELDGROUP_TRL fgt ON - (f.AD_FieldGroup_ID = fgt.AD_FieldGroup_ID AND trl.AD_LANGUAGE=fgt.AD_LANGUAGE) - LEFT OUTER JOIN AD_COLUMN c ON (f.AD_Column_ID = c.AD_Column_ID) - INNER JOIN AD_TABLE tbl ON (c.AD_Table_ID = tbl.AD_Table_ID) - INNER JOIN AD_REFERENCE r ON (c.AD_Reference_ID = r.AD_Reference_ID) - LEFT OUTER JOIN AD_VAL_RULE vr ON (vr.AD_Val_Rule_ID=COALESCE(f.AD_Val_Rule_ID, c.AD_Val_Rule_ID)) -WHERE f.IsActive = 'Y' - AND c.IsActive = 'Y' -; - -SELECT '101_FR1892819.sql' AS Filename FROM dual; --- Review optional scripts at the end - --- Feb 13, 2008 10:31:57 AM COT --- 1892819 - Field Phone Format -UPDATE AD_COLUMN SET Callout='org.adempiere.model.CalloutBPartnerLocation.formatPhone',Updated=TO_DATE('2008-02-13 10:31:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=2959 -; - --- Please uncomment following lines if you prefer to preserve old functionality - this is: not formatting phones - -/* - -UPDATE C_Country SET ExpressionPhone=NULL,Updated=TO_DATE('2008-02-13 10:32:55','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_Country_ID=100 -; - -UPDATE C_Country SET ExpressionPhone=NULL,Updated=TO_DATE('2008-02-13 10:33:18','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_Country_ID=122 -; - -*/ -SELECT '102_FR1639204.sql' AS Filename FROM dual; --- Feb 14, 2008 11:57:23 PM COT --- 1639204 - Delete Old Notes is deleting all notes -INSERT INTO AD_PROCESS_PARA (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,NAME,SeqNo,Updated,UpdatedBy) VALUES (0,2407,0,241,53130,11,'KeepLogDays',TO_DATE('2008-02-14 23:57:19','YYYY-MM-DD HH24:MI:SS'),100,'7','Number of days to keep the log entries','U',0,'Older Log entries may be deleted','Y','Y','N','N','Days to keep Log',20,TO_DATE('2008-02-14 23:57:19','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_PROCESS_PARA_TRL (AD_LANGUAGE,AD_Process_Para_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_Para_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS_PARA t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53130 AND EXISTS (SELECT * FROM AD_PROCESS_PARA_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_SCHEDULER_PARA (AD_Client_ID,AD_Org_ID,AD_Process_Para_ID,AD_Scheduler_ID,Created,CreatedBy,IsActive,ParameterDefault,Updated,UpdatedBy) VALUES (0,0,53130,100,TO_DATE('2008-02-14 23:57:39','YYYY-MM-DD HH24:MI:SS'),100,'Y','7',TO_DATE('2008-02-14 23:57:39','YYYY-MM-DD HH24:MI:SS'),100) -; - -UPDATE AD_COLUMN SET IsParent='Y', IsUpdateable='N',Updated=TO_DATE('2008-02-14 23:59:15','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=11396 -; -SELECT '103_BF1713137.sql' AS Filename FROM dual; --- Feb 15, 2008 12:34:59 AM COT --- 1713137 - Can't create nodes, transitions or conditions on client -UPDATE AD_COLUMN SET DefaultValue='@#AD_Client_ID@',Updated=TO_DATE('2008-02-15 00:34:59','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=11570 -; - -UPDATE AD_COLUMN SET DefaultValue='@#AD_Client_ID@',Updated=TO_DATE('2008-02-15 00:35:08','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=434 -; - -UPDATE AD_COLUMN SET DefaultValue='@#AD_Client_ID@',Updated=TO_DATE('2008-02-15 00:35:15','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=755 -; - -UPDATE AD_COLUMN SET DefaultValue='@#AD_Client_ID@',Updated=TO_DATE('2008-02-15 00:35:25','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=10434 -; - -UPDATE AD_COLUMN SET DefaultValue='@#AD_Client_ID@',Updated=TO_DATE('2008-02-15 00:35:47','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=10486 -; - -UPDATE AD_COLUMN SET DefaultValue='@#AD_Client_ID@',Updated=TO_DATE('2008-02-15 00:36:05','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=1207 -; -SELECT '104_FR1894573.sql' AS Filename FROM dual; --- FR [ 1894573 ] Alert Processor Improvements -INSERT INTO AD_SYSCONFIG (AD_SYSCONFIG_ID,AD_CLIENT_ID,AD_ORG_ID,CREATED,UPDATED,CREATEDBY,UPDATEDBY,ISACTIVE,NAME,VALUE,DESCRIPTION,ENTITYTYPE,CONFIGURATIONLEVEL) -VALUES (50014,0,0,TO_DATE('15-02-2008','DD-MM-RRRR'),TO_DATE('15-02-2008','DD-MM-RRRR'),0,0,'Y','ALERT_SEND_ATTACHMENT_AS_XLS','Y','Send alert results as Excel attachments','D','C'); - -SELECT '105_FR1894640.sql' AS Filename FROM dual; --- 18.02.2008 12:02:24 EET --- FR [ 1894640 ] Report Engine: Excel Export support -INSERT INTO AD_MESSAGE (AD_Client_ID,AD_Message_ID,AD_Org_ID,Created,CreatedBy,EntityType,IsActive,MsgText,MsgType,Updated,UpdatedBy,VALUE) VALUES (0,53026,0,TO_DATE('2008-02-18 12:02:11','YYYY-MM-DD HH24:MI:SS'),0,'D','Y','xls - Excel file','E',TO_DATE('2008-02-18 12:02:11','YYYY-MM-DD HH24:MI:SS'),0,'FileXLS') -; - --- 18.02.2008 12:02:24 EET --- FR [ 1894640 ] Report Engine: Excel Export support -INSERT INTO AD_MESSAGE_TRL (AD_LANGUAGE,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_MESSAGE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=53026 AND EXISTS (SELECT * FROM AD_MESSAGE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Message_ID!=t.AD_Message_ID) -; - -SELECT '106_BF1759431.sql' AS Filename FROM dual; - --- Feb 21, 2008 12:53:15 PM CET --- Updated by Karsten Thiemann -INSERT INTO AD_MESSAGE (AD_Org_ID,VALUE,UpdatedBy,Updated,MsgType,MsgTip,MsgText,IsActive,EntityType,CreatedBy,Created,AD_Message_ID,AD_Client_ID) VALUES (0,'FromSameWarehouseOnly',100,TO_DATE('2008-02-21 12:53:13','YYYY-MM-DD HH24:MI:SS'),'I','Show only orders with the same warehouse as selected in the material receipt','Only from same warehouse','Y','D',100,TO_DATE('2008-02-21 12:53:13','YYYY-MM-DD HH24:MI:SS'),53027,0) -; - --- Feb 21, 2008 12:53:15 PM CET --- Updated by Karsten Thiemann -INSERT INTO AD_MESSAGE_TRL (AD_LANGUAGE,AD_Message_ID, MsgTip,MsgText, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Message_ID, t.MsgTip,t.MsgText, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_MESSAGE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=53027 AND EXISTS (SELECT * FROM AD_MESSAGE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Message_ID!=t.AD_Message_ID) -; - - -SELECT '107_BR1902656.sql' AS Filename FROM dual; --- Feb 26, 2008 9:21:21 PM COT --- 1902656 - Hard to find process in Role window -UPDATE AD_COLUMN SET IsIdentifier='Y',SeqNo=2,Updated=TO_DATE('2008-02-26 21:21:28','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=2809 -; -SELECT '108_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '109_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '110_FR_1866483JasperFinancialReports.sql' AS Filename FROM dual; --- Jan 7, 2008 9:37:36 PM COT --- 1866483 - Jasper on Financial Reports - --- Is convenient to allow executing the configured financial report with adempiere reporter, and jasper --- Exporting to CSV have different results from Jasper than from Adempiere reporter - -UPDATE AD_FIELD SET DisplayLogic=NULL,Updated=TO_DATE('2008-02-27 12:57:48','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=4737 -; - -UPDATE AD_FIELD SET SeqNo=150,IsDisplayed='Y' WHERE AD_Field_ID=54235 -; - -UPDATE AD_FIELD SET SeqNo=140,IsDisplayed='Y' WHERE AD_Field_ID=6265 -; - - -SELECT '111_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '112_BF1907259.sql' AS Filename FROM dual; --- [ 1907259 ] Function charat wrong in 331b - --- just for postgres -SELECT '113_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '114_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '115_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '116_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '117-FR1834749.sql' AS Filename FROM dual; --- [FR 1834749 ] Control applied migration scripts -CREATE TABLE ad_migrationscript ( - ad_client_id NUMBER(10) NOT NULL, - ad_migrationscript_id NUMBER(10) NOT NULL, - ad_org_id NUMBER(10) NOT NULL, - created DATE NOT NULL, - createdby NUMBER(10) NOT NULL, - description VARCHAR2(2000) NULL, - developername VARCHAR2(60) NULL, - isactive CHAR(1) NOT NULL, - NAME VARCHAR2(60) NOT NULL, - projectname VARCHAR2(60) NOT NULL, - reference VARCHAR2(2000) NULL, - releaseno VARCHAR2(4) NOT NULL, - scriptroll CHAR(1) NULL, - status CHAR(2) NOT NULL, - url VARCHAR2(2000) NULL, - updated DATE NOT NULL, - updatedby NUMBER(10) NOT NULL, - isapply CHAR(1) NOT NULL, - CHECK (IsActive IN ('Y','N')), - CONSTRAINT ad_migrationscript_KEY PRIMARY KEY(ad_migrationscript_id) -); - -ALTER TABLE ad_migrationscript - ADD CONSTRAINT ad_migrationscript_isapply_chk - CHECK (IsApply IN ('Y','N')); - -ALTER TABLE ad_migrationscript - ADD CONSTRAINT ad_migrationscript_isact_chk - CHECK (IsActive IN ('Y','N')); - --- 15/02/2008 14h57min19s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_ELEMENT (AD_Org_ID,AD_Element_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53350,'AD_MigrationScript_ID',TO_DATE('2008-02-15 14:57:10','YYYY-MM-DD HH24:MI:SS'),100,'A','Y','Migration Script','Table to check wether the migration script has been applied',TO_DATE('2008-02-15 14:57:10','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 14h57min19s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53350 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - --- 15/02/2008 14h58min2s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_ELEMENT (AD_Org_ID,AD_Element_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53351,'DeveloperName',TO_DATE('2008-02-15 14:57:57','YYYY-MM-DD HH24:MI:SS'),100,'A','Y','Developer Name','Developer Name',TO_DATE('2008-02-15 14:57:57','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 14h58min2s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53351 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - --- 15/02/2008 14h59min12s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_ELEMENT (AD_Org_ID,AD_Element_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53352,'isApply',TO_DATE('2008-02-15 14:59:10','YYYY-MM-DD HH24:MI:SS'),100,'A','Y','Apply Script','Apply Script',TO_DATE('2008-02-15 14:59:10','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 14h59min12s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53352 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - --- 15/02/2008 15h0min37s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_ELEMENT (AD_Org_ID,AD_Element_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53353,'ScriptRoll',TO_DATE('2008-02-15 15:00:34','YYYY-MM-DD HH24:MI:SS'),100,'A','Y','Roll the Script','Roll the Script',TO_DATE('2008-02-15 15:00:34','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h0min37s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53353 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - --- 15/02/2008 15h1min44s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_TABLE (AD_Org_ID,AD_Client_ID,AD_Table_ID,CopyColumnsFromTable,Created,CreatedBy,Description,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,LoadSeq,NAME,ReplicationType,TableName,Updated,AccessLevel,UpdatedBy) VALUES (0,0,53064,'N',TO_DATE('2008-02-15 15:01:41','YYYY-MM-DD HH24:MI:SS'),100,'Migration Scripts for the System','A','N','Y','N','Y','N','N','N',0,'Migration Script','L','AD_MigrationScript',TO_DATE('2008-02-15 15:01:41','YYYY-MM-DD HH24:MI:SS'),'4',100) -; - --- 15/02/2008 15h1min44s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_TABLE_TRL (AD_LANGUAGE,AD_Table_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Table_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TABLE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53064 AND EXISTS (SELECT * FROM AD_TABLE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Table_ID!=t.AD_Table_ID) -; - --- 15/02/2008 15h1min47s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_SEQUENCE (AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,NAME,StartNewYear,StartNo,Updated,UpdatedBy,AD_Client_ID) VALUES (0,53081,TO_DATE('2008-02-15 15:01:44','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table AD_MigrationScript',1,'Y','N','Y','Y','AD_MigrationScript','N',1000000,TO_DATE('2008-02-15 15:01:44','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- 15/02/2008 15h2min44s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION,AD_Client_ID,AD_Column_ID) VALUES (0,53350,13,53064,'AD_MigrationScript_ID',TO_DATE('2008-02-15 15:02:38','YYYY-MM-DD HH24:MI:SS'),100,'A',10,'Y','N','N','N','Y','Y','N','N','N','N','Migration Script',TO_DATE('2008-02-15 15:02:38','YYYY-MM-DD HH24:MI:SS'),100,0,0,54360) -; - --- 15/02/2008 15h2min44s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54360 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h2min46s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION,AD_Client_ID,AD_Column_ID) VALUES (0,102,19,53064,'AD_Client_ID',TO_DATE('2008-02-15 15:02:44','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.','A',10,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','Client',TO_DATE('2008-02-15 15:02:44','YYYY-MM-DD HH24:MI:SS'),100,0,0,54361) -; - --- 15/02/2008 15h2min46s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54361 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h2min48s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION,AD_Client_ID,AD_Column_ID) VALUES (0,113,19,53064,'AD_Org_ID',TO_DATE('2008-02-15 15:02:46','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client','A',10,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','Organization',TO_DATE('2008-02-15 15:02:46','YYYY-MM-DD HH24:MI:SS'),100,0,0,54362) -; - --- 15/02/2008 15h2min48s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54362 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h2min50s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION,AD_Client_ID,AD_Column_ID) VALUES (0,348,20,53064,'IsActive',TO_DATE('2008-02-15 15:02:48','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system','A',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','N','N','N','N','Y','N','N','N','Y','Active',TO_DATE('2008-02-15 15:02:48','YYYY-MM-DD HH24:MI:SS'),100,0,0,54363) -; - --- 15/02/2008 15h2min50s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54363 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h2min53s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION,AD_Client_ID,AD_Column_ID) VALUES (0,245,16,53064,'Created',TO_DATE('2008-02-15 15:02:50','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','A',29,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','Created',TO_DATE('2008-02-15 15:02:50','YYYY-MM-DD HH24:MI:SS'),100,0,0,54364) -; - --- 15/02/2008 15h2min53s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54364 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h2min54s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN (AD_Org_ID,AD_Reference_Value_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION,AD_Client_ID,AD_Column_ID) VALUES (0,110,246,18,53064,'CreatedBy',TO_DATE('2008-02-15 15:02:53','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','A',10,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','Created By',TO_DATE('2008-02-15 15:02:53','YYYY-MM-DD HH24:MI:SS'),100,0,0,54365) -; - --- 15/02/2008 15h2min54s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54365 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h2min57s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION,AD_Client_ID,AD_Column_ID) VALUES (0,607,16,53064,'Updated',TO_DATE('2008-02-15 15:02:54','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','A',29,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','Updated',TO_DATE('2008-02-15 15:02:54','YYYY-MM-DD HH24:MI:SS'),100,0,0,54366) -; - --- 15/02/2008 15h2min57s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54366 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h2min58s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN (AD_Org_ID,AD_Reference_Value_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION,AD_Client_ID,AD_Column_ID) VALUES (0,110,608,18,53064,'UpdatedBy',TO_DATE('2008-02-15 15:02:57','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','A',10,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','Updated By',TO_DATE('2008-02-15 15:02:57','YYYY-MM-DD HH24:MI:SS'),100,0,0,54367) -; - --- 15/02/2008 15h2min58s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54367 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h3min0s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION,AD_Client_ID,AD_Column_ID) VALUES (0,469,10,53064,'Name',TO_DATE('2008-02-15 15:02:58','YYYY-MM-DD HH24:MI:SS'),100,'Alphanumeric identifier of the entity','A',60,'The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.','Y','N','N','Y','N','Y','N','N','N','Y','Name',1,TO_DATE('2008-02-15 15:02:58','YYYY-MM-DD HH24:MI:SS'),100,0,0,54368) -; - --- 15/02/2008 15h3min0s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54368 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h3min2s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION,AD_Client_ID,AD_Column_ID) VALUES (0,275,14,53064,'Description',TO_DATE('2008-02-15 15:03:00','YYYY-MM-DD HH24:MI:SS'),100,'Optional short description of the record','A',2000,'A description is limited to 255 characters.','Y','N','N','N','N','N','N','N','N','Y','Description',TO_DATE('2008-02-15 15:03:00','YYYY-MM-DD HH24:MI:SS'),100,0,0,54369) -; - --- 15/02/2008 15h3min2s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54369 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h3min3s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION,AD_Client_ID,AD_Column_ID) VALUES (0,2161,10,53064,'ProjectName',TO_DATE('2008-02-15 15:03:02','YYYY-MM-DD HH24:MI:SS'),100,'Name of the Project','A',60,'Y','N','N','N','N','Y','N','N','N','Y','Project',TO_DATE('2008-02-15 15:03:02','YYYY-MM-DD HH24:MI:SS'),100,0,0,54370) -; - --- 15/02/2008 15h3min3s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54370 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h3min5s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION,AD_Client_ID,AD_Column_ID) VALUES (0,2122,10,53064,'ReleaseNo',TO_DATE('2008-02-15 15:03:03','YYYY-MM-DD HH24:MI:SS'),100,'Internal Release Number','A',10,'Y','N','N','N','N','Y','N','N','N','Y','Release No',TO_DATE('2008-02-15 15:03:03','YYYY-MM-DD HH24:MI:SS'),100,0,0,54371) -; - --- 15/02/2008 15h3min5s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54371 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h3min8s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION,AD_Client_ID,AD_Column_ID) VALUES (0,53351,10,53064,'DeveloperName',TO_DATE('2008-02-15 15:03:05','YYYY-MM-DD HH24:MI:SS'),100,'A',60,'Y','N','N','N','N','Y','N','N','N','Y','Developer Name',TO_DATE('2008-02-15 15:03:05','YYYY-MM-DD HH24:MI:SS'),100,0,0,54372) -; - --- 15/02/2008 15h3min8s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54372 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h3min9s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION,AD_Client_ID,AD_Column_ID) VALUES (0,539,14,53064,'Reference',TO_DATE('2008-02-15 15:03:08','YYYY-MM-DD HH24:MI:SS'),100,'Reference for this record','A',2000,'The Reference displays the source document number.','Y','N','N','N','N','N','N','N','N','Y','Reference',TO_DATE('2008-02-15 15:03:08','YYYY-MM-DD HH24:MI:SS'),100,0,0,54373) -; - --- 15/02/2008 15h3min9s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54373 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h3min11s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION,AD_Client_ID,AD_Column_ID) VALUES (0,983,14,53064,'URL',TO_DATE('2008-02-15 15:03:10','YYYY-MM-DD HH24:MI:SS'),100,'Full URL address - e.g. http://www.adempiere.org','A',2000,'The URL defines an fully qualified web address like http://www.adempiere.org','Y','N','N','N','N','N','N','N','N','Y','URL',TO_DATE('2008-02-15 15:03:10','YYYY-MM-DD HH24:MI:SS'),100,0,0,54374) -; - --- 15/02/2008 15h3min11s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54374 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h3min13s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION,AD_Client_ID,AD_Column_ID) VALUES (0,53352,20,53064,'isApply',TO_DATE('2008-02-15 15:03:11','YYYY-MM-DD HH24:MI:SS'),100,'A',1,'Y','N','N','N','N','Y','N','N','N','Y','Apply Script',TO_DATE('2008-02-15 15:03:11','YYYY-MM-DD HH24:MI:SS'),100,0,0,54375) -; - --- 15/02/2008 15h3min13s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54375 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h3min15s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION,AD_Client_ID,AD_Column_ID) VALUES (0,3020,17,53064,'Status',TO_DATE('2008-02-15 15:03:13','YYYY-MM-DD HH24:MI:SS'),100,'Status of the currently running check','A',2,'Status of the currently running check','Y','N','N','N','N','Y','N','N','N','Y','Status',TO_DATE('2008-02-15 15:03:13','YYYY-MM-DD HH24:MI:SS'),100,0,0,54376) -; - --- 15/02/2008 15h3min15s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54376 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h3min17s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION,AD_Client_ID,AD_Column_ID) VALUES (0,53353,20,53064,'ScriptRoll',TO_DATE('2008-02-15 15:03:15','YYYY-MM-DD HH24:MI:SS'),100,'A',1,'Y','N','N','N','N','Y','N','N','N','Y','Roll the Script',TO_DATE('2008-02-15 15:03:15','YYYY-MM-DD HH24:MI:SS'),100,0,0,54377) -; - --- 15/02/2008 15h3min17s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54377 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h5min11s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_COLUMN SET AD_Reference_Value_ID=50002, AD_Reference_ID=17,Updated=TO_DATE('2008-02-15 15:05:11','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54371 -; - --- 15/02/2008 15h5min11s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET NAME='Release No', Description='Internal Release Number', Help=NULL WHERE AD_Column_ID=54371 AND IsCentrallyMaintained='Y' -; - --- 15/02/2008 15h5min48s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_REF_LIST (AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,Description,EntityType,IsActive,NAME,Updated,UpdatedBy,AD_Client_ID,VALUE) VALUES (0,50002,53324,TO_DATE('2008-02-15 15:05:46','YYYY-MM-DD HH24:MI:SS'),100,'Release 3.3.0','A','Y','Release 3.3.0',TO_DATE('2008-02-15 15:05:46','YYYY-MM-DD HH24:MI:SS'),100,0,'Release 3.3.0') -; - --- 15/02/2008 15h5min49s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53324 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 15/02/2008 15h6min12s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_REF_LIST (AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,Description,EntityType,IsActive,NAME,Updated,UpdatedBy,AD_Client_ID,VALUE) VALUES (0,50002,53325,TO_DATE('2008-02-15 15:06:06','YYYY-MM-DD HH24:MI:SS'),100,'Release 3.3.1','A','Y','Release 3.3.1',TO_DATE('2008-02-15 15:06:06','YYYY-MM-DD HH24:MI:SS'),100,0,'Release 3.3.1') -; - --- 15/02/2008 15h6min12s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53325 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 15/02/2008 15h6min38s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_REF_LIST (AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,Description,EntityType,IsActive,NAME,Updated,UpdatedBy,AD_Client_ID,VALUE) VALUES (0,50002,53326,TO_DATE('2008-02-15 15:06:36','YYYY-MM-DD HH24:MI:SS'),100,'Release 3.3.2','A','Y','Release 3.3.2',TO_DATE('2008-02-15 15:06:36','YYYY-MM-DD HH24:MI:SS'),100,0,'Release 3.3.2') -; - --- 15/02/2008 15h6min38s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53326 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 15/02/2008 15h7min21s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_REF_LIST SET Description='Release 3.1.0', NAME='Release 3.1.0', VALUE='Release 3.1.0',Updated=TO_DATE('2008-02-15 15:07:21','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Ref_List_ID=53324 -; - --- 15/02/2008 15h7min22s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_REF_LIST_TRL SET IsTranslated='N' WHERE AD_Ref_List_ID=53324 -; - --- 15/02/2008 15h7min30s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_REF_LIST SET Description='Release 3.2.0', NAME='Release 3.2.0', VALUE='Release 3.2.0',Updated=TO_DATE('2008-02-15 15:07:30','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Ref_List_ID=53325 -; - --- 15/02/2008 15h7min30s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_REF_LIST_TRL SET IsTranslated='N' WHERE AD_Ref_List_ID=53325 -; - --- 15/02/2008 15h7min39s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_REF_LIST SET Description='Release 3.3.0', NAME='Release 3.3.0', VALUE='Release 3.3.0',Updated=TO_DATE('2008-02-15 15:07:39','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Ref_List_ID=53326 -; - --- 15/02/2008 15h7min39s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_REF_LIST_TRL SET IsTranslated='N' WHERE AD_Ref_List_ID=53326 -; - --- 15/02/2008 15h8min3s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_COLUMN SET FieldLength=40,Updated=TO_DATE('2008-02-15 15:08:03','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54371 -; - --- 15/02/2008 15h8min4s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET NAME='Release No', Description='Internal Release Number', Help=NULL WHERE AD_Column_ID=54371 AND IsCentrallyMaintained='Y' -; - --- 15/02/2008 15h8min7s PYST --- [FR 1834749 ] Control applied migration scripts -ALTER TABLE AD_MigrationScript MODIFY ReleaseNo CHAR(40) DEFAULT NULL -; - --- 15/02/2008 15h8min41s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_REFERENCE (AD_Org_ID,AD_Reference_ID,Created,CreatedBy,Description,EntityType,IsActive,NAME,Updated,UpdatedBy,ValidationType,AD_Client_ID) VALUES (0,53239,TO_DATE('2008-02-15 15:08:39','YYYY-MM-DD HH24:MI:SS'),100,'Migration Script Status','A','Y','MigrationScriptStatus',TO_DATE('2008-02-15 15:08:39','YYYY-MM-DD HH24:MI:SS'),100,'L',0) -; - --- 15/02/2008 15h8min41s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_REFERENCE_TRL (AD_LANGUAGE,AD_Reference_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Reference_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REFERENCE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Reference_ID=53239 AND EXISTS (SELECT * FROM AD_REFERENCE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Reference_ID!=t.AD_Reference_ID) -; - --- 15/02/2008 15h10min9s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_REF_LIST (AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,Description,EntityType,IsActive,NAME,Updated,UpdatedBy,AD_Client_ID,VALUE) VALUES (0,53239,53327,TO_DATE('2008-02-15 15:10:08','YYYY-MM-DD HH24:MI:SS'),100,'In Progress','A','Y','In Progress',TO_DATE('2008-02-15 15:10:08','YYYY-MM-DD HH24:MI:SS'),100,0,'IP') -; - --- 15/02/2008 15h10min9s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53327 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 15/02/2008 15h10min22s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_REF_LIST (AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,Description,EntityType,IsActive,NAME,Updated,UpdatedBy,AD_Client_ID,VALUE) VALUES (0,53239,53328,TO_DATE('2008-02-15 15:10:21','YYYY-MM-DD HH24:MI:SS'),100,'Completed','A','Y','Completed',TO_DATE('2008-02-15 15:10:21','YYYY-MM-DD HH24:MI:SS'),100,0,'CO') -; - --- 15/02/2008 15h10min22s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53328 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 15/02/2008 15h10min33s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_REF_LIST (AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,Description,EntityType,IsActive,NAME,Updated,UpdatedBy,AD_Client_ID,VALUE) VALUES (0,53239,53329,TO_DATE('2008-02-15 15:10:32','YYYY-MM-DD HH24:MI:SS'),100,'Error','A','Y','Error',TO_DATE('2008-02-15 15:10:32','YYYY-MM-DD HH24:MI:SS'),100,0,'ER') -; - --- 15/02/2008 15h10min33s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53329 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 15/02/2008 15h10min42s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_COLUMN SET AD_Reference_Value_ID=53239,Updated=TO_DATE('2008-02-15 15:10:42','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54376 -; - --- 15/02/2008 15h10min43s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET NAME='Status', Description='Status of the currently running check', Help='Status of the currently running check' WHERE AD_Column_ID=54376 AND IsCentrallyMaintained='Y' -; - --- 15/02/2008 15h10min53s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_COLUMN SET AD_Reference_ID=40,Updated=TO_DATE('2008-02-15 15:10:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54374 -; - --- 15/02/2008 15h10min53s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET NAME='URL', Description='Full URL address - e.g. http://www.adempiere.org', Help='The URL defines an fully qualified web address like http://www.adempiere.org' WHERE AD_Column_ID=54374 AND IsCentrallyMaintained='Y' -; - --- 15/02/2008 15h11min21s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_COLUMN SET AD_Reference_ID=28,Updated=TO_DATE('2008-02-15 15:11:21','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54377 -; - --- 15/02/2008 15h11min22s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET NAME='Roll the Script', Description=NULL, Help=NULL WHERE AD_Column_ID=54377 AND IsCentrallyMaintained='Y' -; - --- 15/02/2008 15h17min10s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_PROCESS (AD_Org_ID,AD_Process_ID,Classname,Created,CreatedBy,EntityType,IsActive,IsBetaFunctionality,IsDirectPrint,IsReport,IsServerProcess,NAME,ShowHelp,Statistic_Count,Statistic_Seconds,Updated,UpdatedBy,VALUE,AccessLevel,AD_Client_ID) VALUES (0,53069,'org.adempiere.process.ApplyMigrationScripts',TO_DATE('2008-02-15 15:17:08','YYYY-MM-DD HH24:MI:SS'),100,'A','Y','N','N','N','N','Apply Migration Scripts','Y',0,0,TO_DATE('2008-02-15 15:17:08','YYYY-MM-DD HH24:MI:SS'),100,'ApplyMigrationScripts','4',0) -; - --- 15/02/2008 15h17min10s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_PROCESS_TRL (AD_LANGUAGE,AD_Process_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_ID=53069 AND EXISTS (SELECT * FROM AD_PROCESS_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_ID!=t.AD_Process_ID) -; - --- 15/02/2008 15h17min10s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_PROCESS_ACCESS (AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53069,0,TO_DATE('2008-02-15 15:17:10','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-02-15 15:17:10','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h17min10s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_PROCESS_ACCESS (AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53069,102,TO_DATE('2008-02-15 15:17:10','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-02-15 15:17:10','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h17min11s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_PROCESS_ACCESS (AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53069,103,TO_DATE('2008-02-15 15:17:11','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-02-15 15:17:11','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h17min11s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_PROCESS_ACCESS (AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53069,50001,TO_DATE('2008-02-15 15:17:11','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-02-15 15:17:11','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h40min25s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION,AD_Client_ID,AD_Column_ID) VALUES (0,2295,39,53064,'FileName',TO_DATE('2008-02-15 15:40:24','YYYY-MM-DD HH24:MI:SS'),100,'Name of the local file or URL','A',500,'Name of a file in the local directory space - or URL (file://.., http://.., ftp://..)','Y','N','N','N','N','Y','N','N','N','N','Y','File Name',0,TO_DATE('2008-02-15 15:40:24','YYYY-MM-DD HH24:MI:SS'),100,0,0,54378) -; - --- 15/02/2008 15h40min25s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54378 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h40min28s PYST --- [FR 1834749 ] Control applied migration scripts -ALTER TABLE AD_MigrationScript ADD FileName NVARCHAR2(500) NOT NULL -; - --- 15/02/2008 15h41min59s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_WINDOW (AD_Org_ID,AD_Window_ID,Created,CreatedBy,EntityType,IsActive,IsBetaFunctionality,IsDefault,IsSOTrx,NAME,Processing,Updated,UpdatedBy,WindowType,WinHeight,AD_Client_ID,WinWidth) VALUES (0,53019,TO_DATE('2008-02-15 15:41:58','YYYY-MM-DD HH24:MI:SS'),100,'A','Y','N','N','N','Migration Scripts','N',TO_DATE('2008-02-15 15:41:58','YYYY-MM-DD HH24:MI:SS'),100,'M',0,0,0) -; - --- 15/02/2008 15h41min59s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_WINDOW_TRL (AD_LANGUAGE,AD_Window_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Window_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_WINDOW t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Window_ID=53019 AND EXISTS (SELECT * FROM AD_WINDOW_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Window_ID!=t.AD_Window_ID) -; - --- 15/02/2008 15h41min59s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_WINDOW_ACCESS (AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,AD_Client_ID,UpdatedBy) VALUES (0,0,53019,TO_DATE('2008-02-15 15:41:59','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-02-15 15:41:59','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h41min59s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_WINDOW_ACCESS (AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,AD_Client_ID,UpdatedBy) VALUES (0,102,53019,TO_DATE('2008-02-15 15:41:59','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-02-15 15:41:59','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h41min59s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_WINDOW_ACCESS (AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,AD_Client_ID,UpdatedBy) VALUES (0,103,53019,TO_DATE('2008-02-15 15:41:59','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-02-15 15:41:59','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h41min59s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_WINDOW_ACCESS (AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,AD_Client_ID,UpdatedBy) VALUES (0,50001,53019,TO_DATE('2008-02-15 15:41:59','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-02-15 15:41:59','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h42min9s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_WINDOW_ACCESS SET IsActive='N',Updated=TO_DATE('2008-02-15 15:42:09','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Role_ID=102 AND AD_Window_ID=53019 -; - --- 15/02/2008 15h42min19s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_WINDOW_ACCESS SET IsReadWrite='N',Updated=TO_DATE('2008-02-15 15:42:19','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Role_ID=102 AND AD_Window_ID=53019 -; - --- 15/02/2008 15h42min22s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_WINDOW_ACCESS SET IsActive='N', IsReadWrite='N',Updated=TO_DATE('2008-02-15 15:42:22','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Role_ID=103 AND AD_Window_ID=53019 -; - --- 15/02/2008 15h42min25s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_WINDOW_ACCESS SET IsActive='N', IsReadWrite='N',Updated=TO_DATE('2008-02-15 15:42:25','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Role_ID=50001 AND AD_Window_ID=53019 -; - --- 15/02/2008 15h43min38s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_TAB (AD_Org_ID,Created,CreatedBy,EntityType,HasTree,ImportFields,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,NAME,Processing,SeqNo,TabLevel,Updated,UpdatedBy,AD_Client_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID) VALUES (0,TO_DATE('2008-02-15 15:43:36','YYYY-MM-DD HH24:MI:SS'),100,'A','N','N','Y','N','N','Y','N','N','N','N','Migration Scripts','N',10,0,TO_DATE('2008-02-15 15:43:36','YYYY-MM-DD HH24:MI:SS'),100,0,53073,53064,53019) -; - --- 15/02/2008 15h43min38s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_TAB_TRL (AD_LANGUAGE,AD_Tab_ID, Description,Help,NAME,CommitWarning, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Tab_ID, t.Description,t.Help,t.NAME,t.CommitWarning, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TAB t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53073 AND EXISTS (SELECT * FROM AD_TAB_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - --- 15/02/2008 15h45min27s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,AD_Client_ID,UpdatedBy) VALUES (54363,0,54404,53073,TO_DATE('2008-02-15 15:45:25','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'A','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','Y','Y','N','N','N','N','N','Active',TO_DATE('2008-02-15 15:45:25','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min27s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54404 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h45min28s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,AD_Client_ID,UpdatedBy) VALUES (54375,0,54405,53073,TO_DATE('2008-02-15 15:45:27','YYYY-MM-DD HH24:MI:SS'),100,1,'A','Y','Y','Y','N','N','N','N','N','Apply Script',TO_DATE('2008-02-15 15:45:27','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min28s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54405 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h45min30s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,AD_Client_ID,UpdatedBy) VALUES (54361,0,54406,53073,TO_DATE('2008-02-15 15:45:29','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',10,'A','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','N','Client',TO_DATE('2008-02-15 15:45:29','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min30s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54406 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h45min31s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,AD_Client_ID,UpdatedBy) VALUES (54369,0,54407,53073,TO_DATE('2008-02-15 15:45:30','YYYY-MM-DD HH24:MI:SS'),100,'Optional short description of the record',2000,'A','A description is limited to 255 characters.','Y','Y','Y','N','N','N','N','N','Description',TO_DATE('2008-02-15 15:45:30','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min31s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54407 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h45min32s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,AD_Client_ID,UpdatedBy) VALUES (54372,0,54408,53073,TO_DATE('2008-02-15 15:45:31','YYYY-MM-DD HH24:MI:SS'),100,60,'A','Y','Y','Y','N','N','N','N','N','Developer Name',TO_DATE('2008-02-15 15:45:31','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min32s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54408 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h45min33s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,AD_Client_ID,UpdatedBy) VALUES (54378,0,54409,53073,TO_DATE('2008-02-15 15:45:32','YYYY-MM-DD HH24:MI:SS'),100,'Name of the local file or URL',500,'A','Name of a file in the local directory space - or URL (file://.., http://.., ftp://..)','Y','Y','Y','N','N','N','N','N','File Name',TO_DATE('2008-02-15 15:45:32','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min33s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54409 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h45min34s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,AD_Client_ID,UpdatedBy) VALUES (54360,0,54410,53073,TO_DATE('2008-02-15 15:45:33','YYYY-MM-DD HH24:MI:SS'),100,10,'A','Y','Y','N','N','N','N','N','N','Migration Script',TO_DATE('2008-02-15 15:45:33','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min34s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54410 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h45min35s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,AD_Client_ID,UpdatedBy) VALUES (54368,0,54411,53073,TO_DATE('2008-02-15 15:45:34','YYYY-MM-DD HH24:MI:SS'),100,'Alphanumeric identifier of the entity',60,'A','The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.','Y','Y','Y','N','N','N','N','N','Name',TO_DATE('2008-02-15 15:45:34','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min35s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54411 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h45min36s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,AD_Client_ID,UpdatedBy) VALUES (54362,0,54412,53073,TO_DATE('2008-02-15 15:45:35','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',10,'A','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','N','N','Organization',TO_DATE('2008-02-15 15:45:35','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min37s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54412 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h45min38s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,AD_Client_ID,UpdatedBy) VALUES (54370,0,54413,53073,TO_DATE('2008-02-15 15:45:37','YYYY-MM-DD HH24:MI:SS'),100,'Name of the Project',60,'A','Y','Y','Y','N','N','N','N','N','Project',TO_DATE('2008-02-15 15:45:37','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min38s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54413 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h45min39s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,AD_Client_ID,UpdatedBy) VALUES (54373,0,54414,53073,TO_DATE('2008-02-15 15:45:38','YYYY-MM-DD HH24:MI:SS'),100,'Reference for this record',2000,'A','The Reference displays the source document number.','Y','Y','Y','N','N','N','N','N','Reference',TO_DATE('2008-02-15 15:45:38','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min39s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54414 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h45min40s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,AD_Client_ID,UpdatedBy) VALUES (54371,0,54415,53073,TO_DATE('2008-02-15 15:45:39','YYYY-MM-DD HH24:MI:SS'),100,'Internal Release Number',40,'A','Y','Y','Y','N','N','N','N','N','Release No',TO_DATE('2008-02-15 15:45:39','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min40s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54415 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h45min41s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,AD_Client_ID,UpdatedBy) VALUES (54377,0,54416,53073,TO_DATE('2008-02-15 15:45:40','YYYY-MM-DD HH24:MI:SS'),100,1,'A','Y','Y','Y','N','N','N','N','N','Roll the Script',TO_DATE('2008-02-15 15:45:40','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min41s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54416 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h45min42s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,AD_Client_ID,UpdatedBy) VALUES (54376,0,54417,53073,TO_DATE('2008-02-15 15:45:41','YYYY-MM-DD HH24:MI:SS'),100,'Status of the currently running check',2,'A','Status of the currently running check','Y','Y','Y','N','N','N','N','N','Status',TO_DATE('2008-02-15 15:45:41','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min42s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54417 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h45min43s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,Updated,AD_Client_ID,UpdatedBy) VALUES (54374,0,54418,53073,TO_DATE('2008-02-15 15:45:42','YYYY-MM-DD HH24:MI:SS'),100,'Full URL address - e.g. http://www.adempiere.org',2000,'A','The URL defines an fully qualified web address like http://www.adempiere.org','Y','Y','Y','N','N','N','N','N','URL',TO_DATE('2008-02-15 15:45:42','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min44s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54418 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h47min20s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET SeqNo=10,IsDisplayed='Y' WHERE AD_Field_ID=54406 -; - --- 15/02/2008 15h47min20s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET SeqNo=20,IsDisplayed='Y' WHERE AD_Field_ID=54412 -; - --- 15/02/2008 15h47min20s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET SeqNo=30,IsDisplayed='Y' WHERE AD_Field_ID=54404 -; - --- 15/02/2008 15h47min20s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET SeqNo=40,IsDisplayed='Y' WHERE AD_Field_ID=54411 -; - --- 15/02/2008 15h47min20s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET SeqNo=50,IsDisplayed='Y' WHERE AD_Field_ID=54409 -; - --- 15/02/2008 15h47min20s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET SeqNo=60,IsDisplayed='Y' WHERE AD_Field_ID=54408 -; - --- 15/02/2008 15h47min20s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET SeqNo=70,IsDisplayed='Y' WHERE AD_Field_ID=54405 -; - --- 15/02/2008 15h47min20s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET SeqNo=80,IsDisplayed='Y' WHERE AD_Field_ID=54413 -; - --- 15/02/2008 15h47min20s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET SeqNo=90,IsDisplayed='Y' WHERE AD_Field_ID=54407 -; - --- 15/02/2008 15h47min20s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET SeqNo=100,IsDisplayed='Y' WHERE AD_Field_ID=54414 -; - --- 15/02/2008 15h47min20s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET SeqNo=110,IsDisplayed='Y' WHERE AD_Field_ID=54418 -; - --- 15/02/2008 15h47min20s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET SeqNo=120,IsDisplayed='Y' WHERE AD_Field_ID=54415 -; - --- 15/02/2008 15h47min20s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET SeqNo=130,IsDisplayed='Y' WHERE AD_Field_ID=54417 -; - --- 15/02/2008 15h47min20s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET SeqNo=140,IsDisplayed='Y' WHERE AD_Field_ID=54416 -; - --- 15/02/2008 15h47min37s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET DisplayLength=50,Updated=TO_DATE('2008-02-15 15:47:37','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54409 -; - --- 15/02/2008 15h47min43s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET DisplayLength=14,Updated=TO_DATE('2008-02-15 15:47:43','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54411 -; - --- 15/02/2008 15h47min44s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET DisplayLength=14,Updated=TO_DATE('2008-02-15 15:47:44','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54409 -; - --- 15/02/2008 15h47min46s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET DisplayLength=14,Updated=TO_DATE('2008-02-15 15:47:46','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54406 -; - --- 15/02/2008 15h47min50s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET DisplayLength=14,Updated=TO_DATE('2008-02-15 15:47:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54412 -; - --- 15/02/2008 15h47min51s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET DisplayLength=14,Updated=TO_DATE('2008-02-15 15:47:51','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54408 -; - --- 15/02/2008 15h47min55s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET DisplayLength=14,Updated=TO_DATE('2008-02-15 15:47:55','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54413 -; - --- 15/02/2008 15h48min1s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET DisplayLength=14,Updated=TO_DATE('2008-02-15 15:48:01','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54407 -; - --- 15/02/2008 15h48min2s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET DisplayLength=14,Updated=TO_DATE('2008-02-15 15:48:02','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54414 -; - --- 15/02/2008 15h48min4s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET DisplayLength=14,Updated=TO_DATE('2008-02-15 15:48:04','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54418 -; - --- 15/02/2008 15h48min8s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET DisplayLength=14,Updated=TO_DATE('2008-02-15 15:48:08','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54415 -; - --- 15/02/2008 15h48min37s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET IsSameLine='Y',Updated=TO_DATE('2008-02-15 15:48:37','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54412 -; - --- 15/02/2008 15h48min47s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET IsSameLine='Y',Updated=TO_DATE('2008-02-15 15:48:47','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54408 -; - --- 15/02/2008 15h48min51s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET IsSameLine='Y',Updated=TO_DATE('2008-02-15 15:48:51','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54418 -; - --- 15/02/2008 15h48min53s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET IsSameLine='Y',Updated=TO_DATE('2008-02-15 15:48:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54417 -; - --- 15/02/2008 15h49min23s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_MENU (AD_Org_ID,AD_Client_ID,AD_Menu_ID,AD_Window_ID,Created,CreatedBy,EntityType,IsActive,IsReadOnly,IsSOTrx,IsSummary,NAME,Updated,Action,UpdatedBy) VALUES (0,0,53089,53019,TO_DATE('2008-02-15 15:49:21','YYYY-MM-DD HH24:MI:SS'),100,'A','Y','N','N','N','Migration Scripts',TO_DATE('2008-02-15 15:49:21','YYYY-MM-DD HH24:MI:SS'),'W',100) -; - --- 15/02/2008 15h49min23s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_MENU_TRL (AD_LANGUAGE,AD_Menu_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Menu_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_MENU t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Menu_ID=53089 AND EXISTS (SELECT * FROM AD_MENU_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Menu_ID!=t.AD_Menu_ID) -; - --- 15/02/2008 15h49min23s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_TREENODEMM (AD_Client_ID,AD_Org_ID, IsActive,Created,CreatedBy,Updated,UpdatedBy, AD_Tree_ID, Node_ID, Parent_ID, SeqNo) SELECT t.AD_Client_ID,0, 'Y', SYSDATE, 0, SYSDATE, 0,t.AD_Tree_ID, 53089, 0, 999 FROM AD_TREE t WHERE t.AD_Client_ID=0 AND t.IsActive='Y' AND t.IsAllNodes='Y' AND t.TreeType='MM' AND NOT EXISTS (SELECT * FROM AD_TREENODEMM e WHERE e.AD_Tree_ID=t.AD_Tree_ID AND Node_ID=53089) -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=0, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=218 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=1, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=153 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=2, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=263 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=3, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=166 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=4, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=203 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=5, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=236 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=6, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=183 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=7, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=160 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=8, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=278 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=9, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=345 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=10, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=1000000 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=0, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=586 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=1, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=138 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=2, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=139 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=3, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=249 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=4, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=141 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=5, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=589 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=6, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=216 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=7, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=140 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=8, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=142 -; - --- 15/02/2008 15h49min34s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=9, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=53012 -; - --- 15/02/2008 15h49min34s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=10, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=143 -; - --- 15/02/2008 15h49min34s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=11, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=201 -; - --- 15/02/2008 15h49min34s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=12, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=176 -; - --- 15/02/2008 15h49min34s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=13, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=53086 -; - --- 15/02/2008 15h49min34s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=14, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=239 -; - --- 15/02/2008 15h49min34s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=15, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=517 -; - --- 15/02/2008 15h49min34s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=16, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=499 -; - --- 15/02/2008 15h49min34s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=17, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=53089 -; - --- 15/02/2008 15h49min34s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=18, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=50001 -; - --- 15/02/2008 15h50min37s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_PROCESS (AD_Org_ID,AD_Process_ID,Classname,Created,CreatedBy,EntityType,IsActive,IsBetaFunctionality,IsDirectPrint,IsReport,IsServerProcess,NAME,ShowHelp,Statistic_Count,Statistic_Seconds,Updated,UpdatedBy,VALUE,AccessLevel,AD_Client_ID) VALUES (0,53070,'org.adempiere.process.PrepareMigrationScripts',TO_DATE('2008-02-15 15:50:36','YYYY-MM-DD HH24:MI:SS'),100,'A','Y','N','N','N','N','Prepare Migration Scripts','Y',0,0,TO_DATE('2008-02-15 15:50:36','YYYY-MM-DD HH24:MI:SS'),100,'PrepareMigrationScripts','4',0) -; - --- 15/02/2008 15h50min37s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_PROCESS_TRL (AD_LANGUAGE,AD_Process_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_ID=53070 AND EXISTS (SELECT * FROM AD_PROCESS_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_ID!=t.AD_Process_ID) -; - --- 15/02/2008 15h50min37s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_PROCESS_ACCESS (AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53070,0,TO_DATE('2008-02-15 15:50:37','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-02-15 15:50:37','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h50min37s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_PROCESS_ACCESS (AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53070,102,TO_DATE('2008-02-15 15:50:37','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-02-15 15:50:37','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h50min37s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_PROCESS_ACCESS (AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53070,103,TO_DATE('2008-02-15 15:50:37','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-02-15 15:50:37','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h50min37s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_PROCESS_ACCESS (AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53070,50001,TO_DATE('2008-02-15 15:50:37','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_DATE('2008-02-15 15:50:37','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h52min26s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_PROCESS_PARA (AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,NAME,SeqNo,Updated,UpdatedBy,AD_Client_ID,AD_Element_ID) VALUES (0,53070,53131,38,'ScriptsPath',TO_DATE('2008-02-15 15:52:24','YYYY-MM-DD HH24:MI:SS'),100,'A',500,'Y','Y','Y','N','Scripts Path',10,TO_DATE('2008-02-15 15:52:24','YYYY-MM-DD HH24:MI:SS'),100,0,50022) -; - --- 15/02/2008 15h52min26s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_PROCESS_PARA_TRL (AD_LANGUAGE,AD_Process_Para_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_Para_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS_PARA t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53131 AND EXISTS (SELECT * FROM AD_PROCESS_PARA_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - --- 15/02/2008 15h52min37s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_PROCESS_ACCESS SET IsActive='N', IsReadWrite='N',Updated=TO_DATE('2008-02-15 15:52:37','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_ID=53070 AND AD_Role_ID=102 -; - --- 15/02/2008 15h52min39s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_PROCESS_ACCESS SET IsActive='N', IsReadWrite='N',Updated=TO_DATE('2008-02-15 15:52:39','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_ID=53070 AND AD_Role_ID=103 -; - --- 15/02/2008 15h52min42s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_PROCESS_ACCESS SET IsActive='N', IsReadWrite='N',Updated=TO_DATE('2008-02-15 15:52:42','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_ID=53070 AND AD_Role_ID=50001 -; - --- 15/02/2008 15h53min13s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_MENU (AD_Org_ID,AD_Client_ID,AD_Menu_ID,AD_Process_ID,Created,CreatedBy,EntityType,IsActive,IsReadOnly,IsSOTrx,IsSummary,NAME,Updated,Action,UpdatedBy) VALUES (0,0,53090,53070,TO_DATE('2008-02-15 15:53:12','YYYY-MM-DD HH24:MI:SS'),100,'A','Y','N','N','N','Prepare Migration Scripts',TO_DATE('2008-02-15 15:53:12','YYYY-MM-DD HH24:MI:SS'),'P',100) -; - --- 15/02/2008 15h53min13s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_MENU_TRL (AD_LANGUAGE,AD_Menu_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Menu_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_MENU t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Menu_ID=53090 AND EXISTS (SELECT * FROM AD_MENU_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Menu_ID!=t.AD_Menu_ID) -; - --- 15/02/2008 15h53min13s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_TREENODEMM (AD_Client_ID,AD_Org_ID, IsActive,Created,CreatedBy,Updated,UpdatedBy, AD_Tree_ID, Node_ID, Parent_ID, SeqNo) SELECT t.AD_Client_ID,0, 'Y', SYSDATE, 0, SYSDATE, 0,t.AD_Tree_ID, 53090, 0, 999 FROM AD_TREE t WHERE t.AD_Client_ID=0 AND t.IsActive='Y' AND t.IsAllNodes='Y' AND t.TreeType='MM' AND NOT EXISTS (SELECT * FROM AD_TREENODEMM e WHERE e.AD_Tree_ID=t.AD_Tree_ID AND Node_ID=53090) -; - --- 15/02/2008 15h53min15s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=0, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=218 -; - --- 15/02/2008 15h53min15s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=1, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=153 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=2, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=263 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=3, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=166 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=4, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=203 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=5, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=236 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=6, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=183 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=7, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=160 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=8, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=278 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=9, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=345 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=0, SeqNo=10, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=1000000 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=0, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=586 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=1, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=138 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=2, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=139 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=3, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=249 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=4, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=141 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=5, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=589 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=6, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=216 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=7, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=140 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=8, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=142 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=9, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=53012 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=10, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=143 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=11, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=201 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=12, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=176 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=13, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=53086 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=14, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=239 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=15, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=517 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=16, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=499 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=17, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=53089 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=18, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=53090 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TREENODEMM SET Parent_ID=153, SeqNo=19, Updated=SYSDATE WHERE AD_Tree_ID=10 AND Node_ID=50001 -; - - - - - - - - - - - --- 15/02/2008 17h46min17s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_COLUMN SET IsMandatory='N',Updated=TO_DATE('2008-02-15 17:46:17','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54372 -; - --- 15/02/2008 17h46min17s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET NAME='Developer Name', Description=NULL, Help=NULL WHERE AD_Column_ID=54372 AND IsCentrallyMaintained='Y' -; - --- 15/02/2008 17h46min21s PYST --- [FR 1834749 ] Control applied migration scripts -ALTER TABLE AD_MigrationScript MODIFY DeveloperName NVARCHAR2(60) DEFAULT NULL -; - - - - - - --- 15/02/2008 17h46min36s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_COLUMN SET IsMandatory='N',Updated=TO_DATE('2008-02-15 17:46:36','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54375 -; - --- 15/02/2008 17h46min37s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET NAME='Apply Script', Description=NULL, Help=NULL WHERE AD_Column_ID=54375 AND IsCentrallyMaintained='Y' -; - --- 15/02/2008 17h46min38s PYST --- [FR 1834749 ] Control applied migration scripts -ALTER TABLE AD_MigrationScript MODIFY isApply CHAR(1) DEFAULT NULL -; - --- 15/02/2008 17h46min38s PYST --- [FR 1834749 ] Control applied migration scripts -ALTER TABLE AD_MigrationScript MODIFY isApply NULL -; - --- 15/02/2008 17h51min7s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_COLUMN SET IsMandatory='N',Updated=TO_DATE('2008-02-15 17:51:07','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54371 -; - --- 15/02/2008 17h51min7s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET NAME='Release No', Description='Internal Release Number', Help=NULL WHERE AD_Column_ID=54371 AND IsCentrallyMaintained='Y' -; - --- 15/02/2008 17h52min47s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_COLUMN SET AD_Reference_ID=36, FieldLength=0, IsUpdateable='N',Updated=TO_DATE('2008-02-15 17:52:47','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54360 -; - --- 15/02/2008 17h52min47s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET NAME='Migration Script', Description=NULL, Help=NULL WHERE AD_Column_ID=54360 AND IsCentrallyMaintained='Y' -; - --- 15/02/2008 17h52min57s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_COLUMN SET AD_Reference_ID=13, FieldLength=10, IsUpdateable='N',Updated=TO_DATE('2008-02-15 17:52:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54360 -; - --- 15/02/2008 17h52min57s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET NAME='Migration Script', Description=NULL, Help=NULL WHERE AD_Column_ID=54360 AND IsCentrallyMaintained='Y' -; - --- 15/02/2008 17h56min31s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION,AD_Client_ID,AD_Column_ID) VALUES (0,1718,23,53064,'Script',TO_DATE('2008-02-15 17:56:26','YYYY-MM-DD HH24:MI:SS'),100,'Dynamic Java Language Script to calculate result','A',0,'Use Java language constructs to define the result of the calculation','Y','N','N','N','N','N','N','N','N','N','N','Script',0,TO_DATE('2008-02-15 17:56:26','YYYY-MM-DD HH24:MI:SS'),100,0,0,54379) -; - --- 15/02/2008 17h56min31s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54379 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 17h56min37s PYST --- [FR 1834749 ] Control applied migration scripts -ALTER TABLE AD_MigrationScript ADD Script BLOB -; - --- 15/02/2008 17h56min45s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_COLUMN SET FieldLength=0,Updated=TO_DATE('2008-02-15 17:56:45','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54379 -; - --- 15/02/2008 17h56min45s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET NAME='Script', Description='Dynamic Java Language Script to calculate result', Help='Use Java language constructs to define the result of the calculation' WHERE AD_Column_ID=54379 AND IsCentrallyMaintained='Y' -; - --- 18/02/2008 11h12min22s BRST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_COLUMN SET IsMandatory='Y', FieldLength=20,Updated=TO_DATE('2008-02-18 11:12:22','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54371 -; - --- 18/02/2008 11h12min22s BRST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET NAME='Release No', Description='Internal Release Number', Help=NULL WHERE AD_Column_ID=54371 AND IsCentrallyMaintained='Y' -; - --- 18/02/2008 11h12min24s BRST --- [FR 1834749 ] Control applied migration scripts -ALTER TABLE AD_MigrationScript MODIFY ReleaseNo CHAR(20) DEFAULT NULL -; - - - - - - --- 18/02/2008 11h12min47s BRST --- [FR 1834749 ] Control applied migration scripts -ALTER TABLE AD_MigrationScript MODIFY ReleaseNo CHAR(20) DEFAULT NULL -; - - - - - - --- 18/02/2008 11h13min44s BRST --- [FR 1834749 ] Control applied migration scripts -ALTER TABLE AD_MigrationScript MODIFY IsActive CHAR(1) DEFAULT NULL -; - --- 18/02/2008 11h14min27s BRST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_COLUMN SET IsUpdateable='N',Updated=TO_DATE('2008-02-18 11:14:27','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54376 -; - --- 18/02/2008 11h14min27s BRST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET NAME='Status', Description='Status of the currently running check', Help='Status of the currently running check' WHERE AD_Column_ID=54376 AND IsCentrallyMaintained='Y' -; - --- 18/02/2008 11h14min29s BRST --- [FR 1834749 ] Control applied migration scripts -ALTER TABLE AD_MigrationScript MODIFY Status CHAR(2) DEFAULT NULL -; - --- 18/02/2008 11h14min50s BRST --- [FR 1834749 ] Control applied migration scripts -ALTER TABLE AD_MigrationScript MODIFY isApply CHAR(1) DEFAULT NULL -; - --- 18/02/2008 11h16min1s BRST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD (IsEncrypted,AD_Org_ID,UpdatedBy,IsDisplayed,IsCentrallyMaintained,IsActive,Created,AD_Client_ID,AD_Field_ID,Description,DisplayLength,AD_Column_ID,IsFieldOnly,CreatedBy,Help,Updated,NAME,AD_Tab_ID,IsSameLine,IsHeading,IsReadOnly,EntityType) VALUES ('N',0,100,'Y','Y','Y',TO_DATE('2008-02-18 11:15:59','YYYY-MM-DD HH24:MI:SS'),0,54419,'Dynamic Java Language Script to calculate result',0,54379,'N',100,'Use Java language constructs to define the result of the calculation',TO_DATE('2008-02-18 11:15:59','YYYY-MM-DD HH24:MI:SS'),'Script',53073,'N','N','N','A') -; - --- 18/02/2008 11h16min2s BRST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54419 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 18/02/2008 11h16min32s BRST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET DisplayLength=35,Updated=TO_DATE('2008-02-18 11:16:32','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54419 -; - --- 18/02/2008 11h17min4s BRST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET DisplayLength=30,Updated=TO_DATE('2008-02-18 11:17:04','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54419 -; - --- 18/02/2008 11h18min50s BRST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_COLUMN SET AD_Reference_ID=28,Updated=TO_DATE('2008-02-18 11:18:50','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54375 -; - --- 18/02/2008 11h18min50s BRST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET NAME='Apply Script', Description=NULL, Help=NULL WHERE AD_Column_ID=54375 AND IsCentrallyMaintained='Y' -; - --- 18/02/2008 11h18min52s BRST --- [FR 1834749 ] Control applied migration scripts -ALTER TABLE AD_MigrationScript MODIFY isApply CHAR(1) DEFAULT NULL -; - --- 18/02/2008 11h19min1s BRST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_COLUMN SET AD_Reference_ID=20,Updated=TO_DATE('2008-02-18 11:19:01','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54375 -; - --- 18/02/2008 11h19min1s BRST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET NAME='Apply Script', Description=NULL, Help=NULL WHERE AD_Column_ID=54375 AND IsCentrallyMaintained='Y' -; - --- 18/02/2008 11h19min3s BRST --- [FR 1834749 ] Control applied migration scripts -ALTER TABLE AD_MigrationScript MODIFY isApply CHAR(1) DEFAULT NULL -; - --- Feb 18, 2008 11:32:12 AM BRST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_COLUMN SET AD_Reference_Value_ID=NULL, FieldLength=4, AD_Reference_ID=14,Updated=TO_DATE('2008-02-18 11:32:12','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54371 -; - --- Feb 18, 2008 11:32:12 AM BRST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET NAME='Release No', Description='Internal Release Number', Help=NULL WHERE AD_Column_ID=54371 AND IsCentrallyMaintained='Y' -; - --- Feb 18, 2008 11:32:29 AM BRST --- [FR 1834749 ] Control applied migration scripts -ALTER TABLE AD_MigrationScript MODIFY ReleaseNo NVARCHAR2(4) DEFAULT NULL -; - --- Feb 18, 2008 11:32:48 AM BRST --- [FR 1834749 ] Control applied migration scripts -ALTER TABLE AD_MigrationScript MODIFY ReleaseNo NVARCHAR2(4) DEFAULT NULL -; - - - - - - - - - - - - - - - - - - - - --- Feb 18, 2008 11:34:43 AM BRST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_COLUMN SET IsMandatory='Y',Updated=TO_DATE('2008-02-18 11:34:43','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54375 -; - --- Feb 18, 2008 11:34:43 AM BRST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_FIELD SET NAME='Apply Script', Description=NULL, Help=NULL WHERE AD_Column_ID=54375 AND IsCentrallyMaintained='Y' -; - --- Feb 18, 2008 11:34:45 AM BRST --- [FR 1834749 ] Control applied migration scripts -ALTER TABLE AD_MigrationScript MODIFY isApply CHAR(1) DEFAULT NULL -; - --- Feb 18, 2008 11:34:46 AM BRST --- [FR 1834749 ] Control applied migration scripts -ALTER TABLE AD_MigrationScript MODIFY isApply NOT NULL -; - --- Feb 18, 2008 11:34:57 AM BRST --- [FR 1834749 ] Control applied migration scripts -ALTER TABLE AD_MigrationScript MODIFY isApply CHAR(1) DEFAULT NULL -; - - - - - - --- Feb 18, 2008 3:04:58 PM BRST --- Default comment for updating dictionary -UPDATE AD_COLUMN SET IsMandatory='N',Updated=TO_DATE('2008-02-18 15:04:58','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54377 -; - --- Feb 18, 2008 3:04:58 PM BRST --- Default comment for updating dictionary -UPDATE AD_FIELD SET NAME='Roll the Script', Description=NULL, Help=NULL WHERE AD_Column_ID=54377 AND IsCentrallyMaintained='Y' -; - --- Feb 18, 2008 3:05:00 PM BRST --- Default comment for updating dictionary -ALTER TABLE AD_MigrationScript MODIFY ScriptRoll CHAR(1) DEFAULT NULL -; - --- Feb 18, 2008 3:07:50 PM BRST --- Default comment for updating dictionary -UPDATE AD_COLUMN SET AD_Process_ID=53069,Updated=TO_DATE('2008-02-18 15:07:50','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54377 -; - --- Feb 18, 2008 3:07:50 PM BRST --- Default comment for updating dictionary -UPDATE AD_FIELD SET NAME='Roll the Script', Description=NULL, Help=NULL WHERE AD_Column_ID=54377 AND IsCentrallyMaintained='Y' -; - --- Feb 18, 2008 3:07:52 PM BRST --- Default comment for updating dictionary -ALTER TABLE AD_MigrationScript MODIFY ScriptRoll CHAR(1) DEFAULT NULL -; - -SELECT '118_FR1909210.sql' AS Filename FROM dual; --- Mar 6, 2008 6:40:40 PM CST --- Change P_String -UPDATE AD_COLUMN SET FieldLength=255,Updated=TO_DATE('2008-03-06 18:40:40','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Column_ID=2791 -; - --- Mar 6, 2008 6:40:40 PM CST --- Change P_String -UPDATE AD_FIELD SET NAME='Process String', Description='Process Parameter', Help=NULL WHERE AD_Column_ID=2791 AND IsCentrallyMaintained='Y' -; - --- Mar 6, 2008 6:40:45 PM CST --- Change P_String -ALTER TABLE AD_PINSTANCE_PARA MODIFY P_String NVARCHAR2(255) DEFAULT NULL -; - --- Mar 6, 2008 6:41:54 PM CST --- Change P_String -UPDATE AD_COLUMN SET FieldLength=255,Updated=TO_DATE('2008-03-06 18:41:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Column_ID=2792 -; - --- Mar 6, 2008 6:41:54 PM CST --- Change P_String -UPDATE AD_FIELD SET NAME='Process String To', Description='Process Parameter', Help=NULL WHERE AD_Column_ID=2792 AND IsCentrallyMaintained='Y' -; - --- Mar 6, 2008 6:41:58 PM CST --- Change P_String -ALTER TABLE AD_PINSTANCE_PARA MODIFY P_String_To NVARCHAR2(255) DEFAULT NULL -; - - -SELECT '119_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '120_BF1909248.sql' AS Filename FROM dual; --- Mar 6, 2008 9:59:53 PM COT --- [ 1909248 ] Translation columns different from original - -/* -SELECT u.table_name, ut.table_name, u.column_name, u.data_type, ut.data_type, - u.data_length, ut.data_length, u.data_precision, ut.data_precision, - u.data_scale, ut.data_scale, u.nullable, ut.nullable - FROM user_tab_columns u, user_tab_columns ut - WHERE ut.table_name = u.table_name || '_TRL' - AND u.column_name = ut.column_name - AND ( u.data_type <> ut.data_type - OR u.data_length <> ut.data_length - OR NVL (u.data_precision, 0) <> NVL (ut.data_precision, 0) - OR NVL (u.data_scale, 0) <> NVL (ut.data_scale, 0) - OR u.nullable <> ut.nullable - ); - -SELECT t.tablename, tt.tablename, c.columnname, c.ad_reference_id, - ct.ad_reference_id, c.fieldlength, ct.fieldlength, c.ismandatory, - ct.ismandatory - FROM AD_TABLE t, AD_COLUMN c, AD_TABLE tt, AD_COLUMN ct - WHERE t.ad_table_id = c.ad_table_id - AND tt.ad_table_id = ct.ad_table_id - AND tt.tablename = t.tablename || '_Trl' - AND c.columnname = ct.columnname - AND ( c.fieldlength <> ct.fieldlength - OR c.ismandatory <> ct.ismandatory - ) - AND c.columnname NOT IN - (t.tablename || '_ID', - 'Updated', - 'IsActive', - 'AD_Client_ID', - 'AD_Org_ID', - 'UpdatedBy', - 'Created', - 'CreatedBy', - 'AD_Language' - ); -*/ - - -UPDATE AD_COLUMN SET IsMandatory='N',Updated=TO_DATE('2008-03-06 21:59:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=14614 -; - -ALTER TABLE R_MAILTEXT_TRL MODIFY MailHeader NVARCHAR2(2000) DEFAULT NULL -; - -ALTER TABLE R_MAILTEXT_TRL MODIFY MailHeader NULL -; - -UPDATE AD_COLUMN SET FieldLength=0, IsMandatory='N',Updated=TO_DATE('2008-03-06 22:16:21','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=15268 -; - -ALTER TABLE CM_CONTAINER_ELEMENT_TRL MODIFY ContentHTML NULL -; - -UPDATE AD_COLUMN SET FieldLength=0, IsMandatory='N',Updated=TO_DATE('2008-03-06 22:17:43','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=15380 -; - -ALTER TABLE CM_CSTAGE_ELEMENT_TRL MODIFY ContentHTML NULL -; - -UPDATE AD_COLUMN SET FieldLength=510,Updated=TO_DATE('2008-03-06 22:19:16','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=1410 -; - -UPDATE AD_COLUMN SET FieldLength=510,Updated=TO_DATE('2008-03-06 22:21:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=3330 -; - -ALTER TABLE M_PRODUCT_TRL MODIFY NAME NVARCHAR2(510) DEFAULT NULL -; - -UPDATE AD_COLUMN SET FieldLength=60,Updated=TO_DATE('2008-03-06 22:26:03','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=1410 -; - -UPDATE AD_COLUMN SET FieldLength=60,Updated=TO_DATE('2008-03-06 22:26:19','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=3330 -; - -UPDATE AD_COLUMN SET IsMandatory='Y',Updated=TO_DATE('2008-03-06 22:26:45','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=2596 -; - -ALTER TABLE AD_ELEMENT MODIFY AD_Org_ID NUMBER(10) DEFAULT NULL -; - -ALTER TABLE AD_ELEMENT MODIFY AD_Org_ID NOT NULL -; - -ALTER TABLE AD_ELEMENT MODIFY Created DATE DEFAULT NULL -; - -ALTER TABLE AD_ELEMENT MODIFY Created DATE DEFAULT NULL -; - -UPDATE AD_COLUMN SET IsMandatory='Y',Updated=TO_DATE('2008-03-06 22:28:07','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=2599 -; - -ALTER TABLE AD_ELEMENT MODIFY CreatedBy NUMBER(10) DEFAULT NULL -; - -ALTER TABLE AD_ELEMENT MODIFY CreatedBy NOT NULL -; - -ALTER TABLE AD_ELEMENT MODIFY NAME NVARCHAR2(60) DEFAULT NULL -; - -ALTER TABLE AD_ELEMENT MODIFY NAME NOT NULL -; - -UPDATE AD_COLUMN SET IsMandatory='Y',Updated=TO_DATE('2008-03-06 22:28:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=2601 -; - -ALTER TABLE AD_ELEMENT MODIFY UpdatedBy NUMBER(10) DEFAULT NULL -; - -ALTER TABLE AD_ELEMENT MODIFY UpdatedBy NOT NULL -; - -UPDATE AD_COLUMN SET FieldLength=60,Updated=TO_DATE('2008-03-06 22:30:23','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=14613 -; - -UPDATE AD_COLUMN SET FieldLength=0,Updated=TO_DATE('2008-03-06 22:30:52','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=15380 -; - -UPDATE AD_COLUMN SET FieldLength=0,Updated=TO_DATE('2008-03-06 22:31:23','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=15268 -; - -UPDATE AD_COLUMN SET FieldLength=0,Updated=TO_DATE('2008-03-06 22:31:40','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=15268 -; - -UPDATE AD_COLUMN SET FieldLength=0,Updated=TO_DATE('2008-03-06 22:32:37','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=15366 -; - -UPDATE AD_COLUMN SET FieldLength=0,Updated=TO_DATE('2008-03-06 22:32:51','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=15257 -; - -UPDATE AD_COLUMN SET IsMandatory='N',Updated=TO_DATE('2008-03-06 22:34:13','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=15394 -; - -UPDATE AD_COLUMN SET IsMandatory='Y',Updated=TO_DATE('2008-03-06 22:34:32','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=15588 -; - -UPDATE AD_COLUMN SET IsMandatory='Y',Updated=TO_DATE('2008-03-06 22:34:41','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=15589 -; - -UPDATE AD_COLUMN SET IsMandatory='Y',Updated=TO_DATE('2008-03-06 22:35:03','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=15307 -; - -UPDATE AD_COLUMN SET IsMandatory='Y',Updated=TO_DATE('2008-03-06 22:35:05','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=15308 -; - -SELECT '121_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '122_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '123_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '124_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '125_FR1920314.sql' AS Filename FROM dual; --- Mar 19, 2008 7:17:07 PM COT --- 1920314 - Make configurable the changelog for insert -INSERT INTO AD_SYSCONFIG (AD_Client_ID,AD_Org_ID,AD_SysConfig_ID,ConfigurationLevel,Created,CreatedBy,Description,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,50015,'C',TO_DATE('2008-03-19 19:17:05','YYYY-MM-DD HH24:MI:SS'),100,'Keep change log for inserts: Y - Yes, N - No, K - just the key _ID','D','Y','SYSTEM_INSERT_CHANGELOG',TO_DATE('2008-03-19 19:17:05','YYYY-MM-DD HH24:MI:SS'),100,'Y') -; - - -SELECT '126_BF1912484.sql' AS Filename FROM dual; --- Mar 12, 2008 11:40:54 AM CET --- [ 1912484 ] Custom replenish doesn't work -INSERT INTO AD_COLUMN (NAME,IsMandatory,IsTranslated,Description,IsIdentifier,SeqNo,Help,VERSION,IsActive,AD_Table_ID,AD_Column_ID,ColumnName,AD_Client_ID,AD_Org_ID,FieldLength,IsParent,Created,IsSyncDatabase,AD_Reference_ID,CreatedBy,Updated,AD_Element_ID,IsUpdateable,IsKey,IsSelectionColumn,UpdatedBy,IsAlwaysUpdateable,IsEncrypted,EntityType) VALUES ('Updated','Y','N','Date this record was updated','N',0,'The Updated field indicates the date that this record was updated.',1.000000000000,'Y',364,54677,'Updated',0,0,7,'N',TO_DATE('2008-03-12 11:40:52','YYYY-MM-DD HH24:MI:SS'),'N',16,100,TO_DATE('2008-03-12 11:40:52','YYYY-MM-DD HH24:MI:SS'),607,'N','N','N',100,'N','N','D') -; - --- Mar 12, 2008 11:40:54 AM CET --- [ 1912484 ] Custom replenish doesn't work -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54677 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Mar 12, 2008 11:41:39 AM CET --- [ 1912484 ] Custom replenish doesn't work -UPDATE AD_FIELD SET NAME='Updated', Description='Date this record was updated', Help='The Updated field indicates the date that this record was updated.' WHERE AD_Column_ID=54677 AND IsCentrallyMaintained='Y' -; - --- Mar 12, 2008 11:41:44 AM CET --- [ 1912484 ] Custom replenish doesn't work -ALTER TABLE T_REPLENISH ADD Updated DATE -; - --- Mar 12, 2008 11:42:57 AM CET --- [ 1912484 ] Custom replenish doesn't work -INSERT INTO AD_COLUMN (NAME,IsMandatory,IsTranslated,Description,IsIdentifier,SeqNo,Help,AD_Reference_Value_ID,VERSION,IsActive,AD_Table_ID,AD_Column_ID,ColumnName,AD_Client_ID,AD_Org_ID,FieldLength,IsParent,Created,IsSyncDatabase,AD_Reference_ID,CreatedBy,Updated,AD_Element_ID,IsUpdateable,IsKey,IsSelectionColumn,UpdatedBy,IsAlwaysUpdateable,IsEncrypted,EntityType) VALUES ('Updated By','Y','N','User who updated this records','N',0,'The Updated By field indicates the user who updated this record.',110,1.000000000000,'Y',364,54678,'UpdatedBy',0,0,22,'N',TO_DATE('2008-03-12 11:42:57','YYYY-MM-DD HH24:MI:SS'),'N',18,100,TO_DATE('2008-03-12 11:42:57','YYYY-MM-DD HH24:MI:SS'),608,'N','N','N',100,'N','N','D') -; - --- Mar 12, 2008 11:42:57 AM CET --- [ 1912484 ] Custom replenish doesn't work -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54678 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Mar 12, 2008 11:43:10 AM CET --- [ 1912484 ] Custom replenish doesn't work -UPDATE AD_FIELD SET NAME='Updated By', Description='User who updated this records', Help='The Updated By field indicates the user who updated this record.' WHERE AD_Column_ID=54678 AND IsCentrallyMaintained='Y' -; - --- Mar 12, 2008 11:43:13 AM CET --- [ 1912484 ] Custom replenish doesn't work -ALTER TABLE T_REPLENISH ADD UpdatedBy NUMBER(10) -; - - -SELECT '127_BF1913443.sql' AS Filename FROM dual; --- Mar 13, 2008 11:51:15 AM CET -UPDATE AD_VAL_RULE SET Code='( -EXISTS ( - /* UOM is a default UOM and no product selected */ - SELECT * - FROM C_UOM uu - WHERE C_UOM.C_UOM_ID=uu.C_UOM_ID AND IsDefault=''Y'' AND @M_Product_ID@=0 -) -OR EXISTS ( - /* UOM is the products UOM */ - SELECT * - FROM M_PRODUCT p - WHERE C_UOM.C_UOM_ID=p.C_UOM_ID AND @M_Product_ID@=p.M_Product_ID -) -OR EXISTS ( - /* For the products UOM there is a conversion that is explicitly bound to the product */ - SELECT * - FROM M_PRODUCT p INNER JOIN C_UOM_CONVERSION c ON (p.C_UOM_ID=c.C_UOM_ID AND p.M_PRODUCT_ID=c.M_Product_ID) - WHERE C_UOM.C_UOM_ID=c.C_UOM_TO_ID AND @M_Product_ID@=p.M_Product_ID -) -OR EXISTS ( - /* For the products UOM there is a conversion that is not bound to any product explicitly */ - SELECT * - FROM M_PRODUCT p INNER JOIN C_UOM_CONVERSION c ON (p.C_UOM_ID=c.C_UOM_ID AND c.M_Product_ID IS NULL) - WHERE C_UOM.C_UOM_ID=c.C_UOM_TO_ID AND @M_Product_ID@=p.M_Product_ID -))',Updated=TO_DATE('2008-03-13 11:51:15','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Val_Rule_ID=210 -; - - -SELECT '128_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '129_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '130_FR1924635.sql' AS Filename FROM dual; --- [ 1924635 ] Performance enhancement - Indexes on M_CostDetail - -DROP INDEX M_COSTDETAIL_PRODUCT; - -CREATE INDEX M_COSTDETAIL_PRODUCT ON M_COSTDETAIL (M_PRODUCT_ID, processed); - -CREATE INDEX M_COSTDETAIL_ASI ON M_COSTDETAIL (M_AttributeSetInstance_ID); -SELECT '131_FR1924645.sql' AS Filename FROM dual; --- [ 1924645 ] Index ad_wf_activity_status too slow - -DROP INDEX ad_wf_activity_status; - -CREATE INDEX AD_WF_ACTIVITY_STATUS ON AD_WF_ACTIVITY(WFSTATE, PROCESSED); - -SELECT '132_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '133_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '134_placeholder_branch350.sql' AS Filename FROM dual; - -SELECT '135_version340s.sql' AS Filename FROM dual; -UPDATE AD_SYSTEM - SET releaseno = '340s', - VERSION = '2008-03-26' - WHERE ad_system_id = 0 AND ad_client_id = 0; - - - -SELECT '01_add_missing_Translations.sql' AS Filename FROM dual; -DECLARE - ins VARCHAR2 (2000); - sel VARCHAR2 (2000); - inssel VARCHAR2 (4001); - table_id NUMBER; -BEGIN - ins := RPAD (' ', 2000, ' '); - sel := RPAD (' ', 2000, ' '); - inssel := RPAD (' ', 4001, ' '); - DBMS_OUTPUT.PUT_LINE ('Start'); - - FOR t IN (SELECT ad_table_id, - SUBSTR (tablename, 1, LENGTH (tablename) - 4) tablename - FROM AD_TABLE - WHERE tablename LIKE '%_Trl' AND isactive = 'Y' - AND isview = 'N') - LOOP - ins := - 'INSERT INTO ' - || t.tablename - || '_TRL (' - || 'ad_language,ad_client_id,ad_org_id,created,createdby,updated,updatedby,isactive,istranslated,' - || t.tablename - || '_id'; - sel := - 'SELECT l.ad_language,t.ad_client_id,t.ad_org_id,t.created,t.createdby,t.updated,t.updatedby,t.isactive,''N'' as istranslated,' - || t.tablename - || '_id'; - - SELECT ad_table_id - INTO table_id - FROM AD_TABLE - WHERE tablename = t.tablename; - - FOR c IN (SELECT col.columnname - FROM AD_COLUMN col INNER JOIN AD_TABLE tab - ON (col.ad_table_id = tab.ad_table_id) - WHERE col.ad_table_id = table_id - AND col.istranslated = 'Y' - AND col.isactive = 'Y' - ORDER BY 1) - LOOP - ins := TRIM (ins) || ',' || TRIM (c.columnname); - sel := TRIM (sel) || ',t.' || TRIM (c.columnname); - END LOOP; - - ins := TRIM (ins) || ')'; - sel := - TRIM (sel) - || ' from ' - || t.tablename - || ' t, ad_language l WHERE l.issystemlanguage=''Y'' AND NOT EXISTS (SELECT 1 FROM ' - || t.tablename - || '_TRL b WHERE b.' - || t.tablename - || '_id=t.' - || t.tablename - || '_id AND b.AD_LANGUAGE=l.AD_LANGUAGE)'; - inssel := TRIM (ins) || ' ' || TRIM (sel); - - DBMS_OUTPUT.PUT_LINE (inssel); - EXECUTE IMMEDIATE inssel; - END LOOP; - - DBMS_OUTPUT.PUT_LINE ('End'); - -END; -/ -SELECT '02_SynchronizeTerminology.sql' AS Filename FROM dual; --- Synchronize Terminology - -/* --- take account of the output for these two selects - -SELECT DISTINCT columnname, NAME, description, HELP, entitytype - FROM AD_COLUMN c - WHERE NOT EXISTS (SELECT 1 - FROM AD_ELEMENT e - WHERE UPPER (c.columnname) = UPPER (e.columnname)); - -SELECT DISTINCT columnname, NAME, description, HELP, entitytype - FROM AD_PROCESS_PARA p - WHERE NOT EXISTS (SELECT 1 - FROM AD_ELEMENT e - WHERE UPPER (p.columnname) = UPPER (e.columnname)); - -*/ --- execute - -INSERT INTO AD_ELEMENT_TRL - (ad_element_id, AD_LANGUAGE, ad_client_id, ad_org_id, isactive, - created, createdby, updated, updatedby, NAME, printname, - description, HELP, istranslated) - SELECT m.ad_element_id, l.AD_LANGUAGE, m.ad_client_id, m.ad_org_id, - m.isactive, m.created, m.createdby, m.updated, m.updatedby, m.NAME, - m.printname, m.description, m.HELP, 'N' - FROM AD_ELEMENT m, AD_LANGUAGE l - WHERE l.isactive = 'Y' - AND l.issystemlanguage = 'Y' - AND ad_element_id || AD_LANGUAGE NOT IN ( - SELECT ad_element_id || AD_LANGUAGE - FROM AD_ELEMENT_TRL); - -UPDATE AD_COLUMN c - SET ad_element_id = (SELECT ad_element_id - FROM AD_ELEMENT e - WHERE UPPER (c.columnname) = UPPER (e.columnname)) - WHERE ad_element_id IS NULL; - -DELETE AD_ELEMENT_TRL - WHERE ad_element_id IN ( - SELECT ad_element_id - FROM AD_ELEMENT e - WHERE NOT EXISTS ( - SELECT 1 - FROM AD_COLUMN c - WHERE UPPER (e.columnname) = - UPPER (c.columnname)) - AND NOT EXISTS ( - SELECT 1 - FROM AD_PROCESS_PARA p - WHERE UPPER (e.columnname) = - UPPER (p.columnname))); - -DELETE AD_ELEMENT e - WHERE NOT EXISTS (SELECT 1 - FROM AD_COLUMN c - WHERE UPPER (e.columnname) = UPPER (c.columnname)) - AND NOT EXISTS (SELECT 1 - FROM AD_PROCESS_PARA p - WHERE UPPER (e.columnname) = UPPER (p.columnname)); - -UPDATE AD_COLUMN c - SET (columnname, NAME, description, HELP) = - (SELECT columnname, NAME, description, HELP - FROM AD_ELEMENT e - WHERE c.ad_element_id = e.ad_element_id), - updated = SYSDATE - WHERE EXISTS ( - SELECT 1 - FROM AD_ELEMENT e - WHERE c.ad_element_id = e.ad_element_id - AND ( c.columnname <> e.columnname - OR c.NAME <> e.NAME - OR NVL (c.description, ' ') <> NVL (e.description, ' ') - OR NVL (c.HELP, ' ') <> NVL (e.HELP, ' ') - )); - -UPDATE AD_FIELD f - SET (NAME, description, HELP) = - (SELECT e.NAME, e.description, e.HELP - FROM AD_ELEMENT e, AD_COLUMN c - WHERE e.ad_element_id = c.ad_element_id - AND c.ad_column_id = f.ad_column_id), - updated = SYSDATE - WHERE f.iscentrallymaintained = 'Y' - AND f.isactive = 'Y' - AND EXISTS ( - SELECT 1 - FROM AD_ELEMENT e, AD_COLUMN c - WHERE f.ad_column_id = c.ad_column_id - AND c.ad_element_id = e.ad_element_id - AND c.ad_process_id IS NULL - AND ( f.NAME <> e.NAME - OR NVL (f.description, ' ') <> NVL (e.description, ' ') - OR NVL (f.HELP, ' ') <> NVL (e.HELP, ' ') - )); - -UPDATE AD_FIELD_TRL trl - SET NAME = - (SELECT e.NAME - FROM AD_ELEMENT_TRL e, AD_COLUMN c, AD_FIELD f - WHERE e.AD_LANGUAGE = trl.AD_LANGUAGE - AND e.ad_element_id = c.ad_element_id - AND c.ad_column_id = f.ad_column_id - AND f.ad_field_id = trl.ad_field_id), - description = - (SELECT e.description - FROM AD_ELEMENT_TRL e, AD_COLUMN c, AD_FIELD f - WHERE e.AD_LANGUAGE = trl.AD_LANGUAGE - AND e.ad_element_id = c.ad_element_id - AND c.ad_column_id = f.ad_column_id - AND f.ad_field_id = trl.ad_field_id), - HELP = - (SELECT e.HELP - FROM AD_ELEMENT_TRL e, AD_COLUMN c, AD_FIELD f - WHERE e.AD_LANGUAGE = trl.AD_LANGUAGE - AND e.ad_element_id = c.ad_element_id - AND c.ad_column_id = f.ad_column_id - AND f.ad_field_id = trl.ad_field_id), - istranslated = - (SELECT e.istranslated - FROM AD_ELEMENT_TRL e, AD_COLUMN c, AD_FIELD f - WHERE e.AD_LANGUAGE = trl.AD_LANGUAGE - AND e.ad_element_id = c.ad_element_id - AND c.ad_column_id = f.ad_column_id - AND f.ad_field_id = trl.ad_field_id), - updated = SYSDATE - WHERE EXISTS ( - SELECT 1 - FROM AD_FIELD f, AD_ELEMENT_TRL e, AD_COLUMN c - WHERE trl.ad_field_id = f.ad_field_id - AND f.ad_column_id = c.ad_column_id - AND c.ad_element_id = e.ad_element_id - AND c.ad_process_id IS NULL - AND trl.AD_LANGUAGE = e.AD_LANGUAGE - AND f.iscentrallymaintained = 'Y' - AND f.isactive = 'Y' - AND ( trl.NAME <> e.NAME - OR NVL (trl.description, ' ') <> NVL (e.description, ' ') - OR NVL (trl.HELP, ' ') <> NVL (e.HELP, ' ') - )); - -UPDATE AD_FIELD f - SET NAME = - (SELECT e.po_name - FROM AD_ELEMENT e, AD_COLUMN c - WHERE e.ad_element_id = c.ad_element_id - AND c.ad_column_id = f.ad_column_id), - description = - (SELECT e.po_description - FROM AD_ELEMENT e, AD_COLUMN c - WHERE e.ad_element_id = c.ad_element_id - AND c.ad_column_id = f.ad_column_id), - HELP = - (SELECT e.po_help - FROM AD_ELEMENT e, AD_COLUMN c - WHERE e.ad_element_id = c.ad_element_id - AND c.ad_column_id = f.ad_column_id), - updated = SYSDATE - WHERE f.iscentrallymaintained = 'Y' - AND f.isactive = 'Y' - AND EXISTS ( - SELECT 1 - FROM AD_ELEMENT e, AD_COLUMN c - WHERE f.ad_column_id = c.ad_column_id - AND c.ad_element_id = e.ad_element_id - AND c.ad_process_id IS NULL - AND ( f.NAME <> e.po_name - OR NVL (f.description, ' ') <> NVL (e.po_description, ' ') - OR NVL (f.HELP, ' ') <> NVL (e.po_help, ' ') - ) - AND e.po_name IS NOT NULL) - AND EXISTS ( - SELECT 1 - FROM AD_TAB t, AD_WINDOW w - WHERE f.ad_tab_id = t.ad_tab_id - AND t.ad_window_id = w.ad_window_id - AND w.issotrx = 'N'); - -UPDATE AD_FIELD_TRL trl - SET NAME = - (SELECT e.po_name - FROM AD_ELEMENT_TRL e, AD_COLUMN c, AD_FIELD f - WHERE e.AD_LANGUAGE = trl.AD_LANGUAGE - AND e.ad_element_id = c.ad_element_id - AND c.ad_column_id = f.ad_column_id - AND f.ad_field_id = trl.ad_field_id), - description = - (SELECT e.po_description - FROM AD_ELEMENT_TRL e, AD_COLUMN c, AD_FIELD f - WHERE e.AD_LANGUAGE = trl.AD_LANGUAGE - AND e.ad_element_id = c.ad_element_id - AND c.ad_column_id = f.ad_column_id - AND f.ad_field_id = trl.ad_field_id), - HELP = - (SELECT e.po_help - FROM AD_ELEMENT_TRL e, AD_COLUMN c, AD_FIELD f - WHERE e.AD_LANGUAGE = trl.AD_LANGUAGE - AND e.ad_element_id = c.ad_element_id - AND c.ad_column_id = f.ad_column_id - AND f.ad_field_id = trl.ad_field_id), - istranslated = - (SELECT e.istranslated - FROM AD_ELEMENT_TRL e, AD_COLUMN c, AD_FIELD f - WHERE e.AD_LANGUAGE = trl.AD_LANGUAGE - AND e.ad_element_id = c.ad_element_id - AND c.ad_column_id = f.ad_column_id - AND f.ad_field_id = trl.ad_field_id), - updated = SYSDATE - WHERE EXISTS ( - SELECT 1 - FROM AD_FIELD f, AD_ELEMENT_TRL e, AD_COLUMN c - WHERE trl.ad_field_id = f.ad_field_id - AND f.ad_column_id = c.ad_column_id - AND c.ad_element_id = e.ad_element_id - AND c.ad_process_id IS NULL - AND trl.AD_LANGUAGE = e.AD_LANGUAGE - AND f.iscentrallymaintained = 'Y' - AND f.isactive = 'Y' - AND ( trl.NAME <> e.po_name - OR NVL (trl.description, ' ') <> NVL (e.po_description, ' ') - OR NVL (trl.HELP, ' ') <> NVL (e.po_help, ' ') - ) - AND e.po_name IS NOT NULL) - AND EXISTS ( - SELECT 1 - FROM AD_FIELD f, AD_TAB t, AD_WINDOW w - WHERE trl.ad_field_id = f.ad_field_id - AND f.ad_tab_id = t.ad_tab_id - AND t.ad_window_id = w.ad_window_id - AND w.issotrx = 'N'); - -UPDATE AD_FIELD f - SET NAME = - (SELECT p.NAME - FROM AD_PROCESS p, AD_COLUMN c - WHERE p.ad_process_id = c.ad_process_id - AND c.ad_column_id = f.ad_column_id), - description = - (SELECT p.description - FROM AD_PROCESS p, AD_COLUMN c - WHERE p.ad_process_id = c.ad_process_id - AND c.ad_column_id = f.ad_column_id), - HELP = - (SELECT p.HELP - FROM AD_PROCESS p, AD_COLUMN c - WHERE p.ad_process_id = c.ad_process_id - AND c.ad_column_id = f.ad_column_id), - updated = SYSDATE - WHERE f.iscentrallymaintained = 'Y' - AND f.isactive = 'Y' - AND EXISTS ( - SELECT 1 - FROM AD_PROCESS p, AD_COLUMN c - WHERE c.ad_process_id = p.ad_process_id - AND f.ad_column_id = c.ad_column_id - AND ( f.NAME <> p.NAME - OR NVL (f.description, ' ') <> NVL (p.description, ' ') - OR NVL (f.HELP, ' ') <> NVL (p.HELP, ' ') - )); - -UPDATE AD_FIELD_TRL trl - SET NAME = - (SELECT p.NAME - FROM AD_PROCESS_TRL p, AD_COLUMN c, AD_FIELD f - WHERE p.ad_process_id = c.ad_process_id - AND c.ad_column_id = f.ad_column_id - AND f.ad_field_id = trl.ad_field_id - AND p.AD_LANGUAGE = trl.AD_LANGUAGE), - description = - (SELECT p.description - FROM AD_PROCESS_TRL p, AD_COLUMN c, AD_FIELD f - WHERE p.ad_process_id = c.ad_process_id - AND c.ad_column_id = f.ad_column_id - AND f.ad_field_id = trl.ad_field_id - AND p.AD_LANGUAGE = trl.AD_LANGUAGE), - HELP = - (SELECT p.HELP - FROM AD_PROCESS_TRL p, AD_COLUMN c, AD_FIELD f - WHERE p.ad_process_id = c.ad_process_id - AND c.ad_column_id = f.ad_column_id - AND f.ad_field_id = trl.ad_field_id - AND p.AD_LANGUAGE = trl.AD_LANGUAGE), - istranslated = - (SELECT p.istranslated - FROM AD_PROCESS_TRL p, AD_COLUMN c, AD_FIELD f - WHERE p.ad_process_id = c.ad_process_id - AND c.ad_column_id = f.ad_column_id - AND f.ad_field_id = trl.ad_field_id - AND p.AD_LANGUAGE = trl.AD_LANGUAGE), - updated = SYSDATE - WHERE EXISTS ( - SELECT 1 - FROM AD_PROCESS_TRL p, AD_COLUMN c, AD_FIELD f - WHERE c.ad_process_id = p.ad_process_id - AND f.ad_column_id = c.ad_column_id - AND f.ad_field_id = trl.ad_field_id - AND p.AD_LANGUAGE = trl.AD_LANGUAGE - AND f.iscentrallymaintained = 'Y' - AND f.isactive = 'Y' - AND ( trl.NAME <> p.NAME - OR NVL (trl.description, ' ') <> NVL (p.description, ' ') - OR NVL (trl.HELP, ' ') <> NVL (p.HELP, ' ') - )); - -/* --- check for element errors -SELECT UPPER (e.columnname), COUNT (*) - FROM AD_ELEMENT e -GROUP BY UPPER (e.columnname) - HAVING COUNT (*) > 1; - -SELECT ROWID, ad_element_id, columnname, - (SELECT COUNT (*) - FROM AD_COLUMN c - WHERE c.ad_element_id = AD_ELEMENT.ad_element_id) cnt - FROM AD_ELEMENT - WHERE UPPER (columnname) IN (SELECT UPPER (e.columnname) - FROM AD_ELEMENT e - GROUP BY UPPER (e.columnname) - HAVING COUNT (*) > 1) -ORDER BY UPPER (columnname), columnname; -*/ - -UPDATE AD_PROCESS_PARA f - SET columnname = (SELECT e.columnname - FROM AD_ELEMENT e - -- WHERE UPPER (e.columnname) = UPPER (f.columnname)) - WHERE e.columnname = f.columnname) -- Temporary patch Fixed Assets are broking it - WHERE f.iscentrallymaintained = 'Y' - AND f.isactive = 'Y' - AND EXISTS ( - SELECT 1 - FROM AD_ELEMENT e - WHERE UPPER (e.columnname) = UPPER (f.columnname) - AND e.columnname <> f.columnname); - -UPDATE AD_PROCESS_PARA p - SET iscentrallymaintained = 'N' - WHERE iscentrallymaintained <> 'N' - AND NOT EXISTS (SELECT 1 - FROM AD_ELEMENT e - WHERE p.columnname = e.columnname); - -UPDATE AD_PROCESS_PARA f - SET NAME = (SELECT e.NAME - FROM AD_ELEMENT e - WHERE e.columnname = f.columnname), - description = (SELECT e.description - FROM AD_ELEMENT e - WHERE e.columnname = f.columnname), - HELP = (SELECT e.HELP - FROM AD_ELEMENT e - WHERE e.columnname = f.columnname), - updated = SYSDATE - WHERE f.iscentrallymaintained = 'Y' - AND f.isactive = 'Y' - AND EXISTS ( - SELECT 1 - FROM AD_ELEMENT e - WHERE e.columnname = f.columnname - AND ( f.NAME <> e.NAME - OR NVL (f.description, ' ') <> NVL (e.description, ' ') - OR NVL (f.HELP, ' ') <> NVL (e.HELP, ' ') - )); - -UPDATE AD_PROCESS_PARA_TRL trl - SET NAME = - (SELECT et.NAME - FROM AD_ELEMENT_TRL et, AD_ELEMENT e, AD_PROCESS_PARA f - WHERE et.AD_LANGUAGE = trl.AD_LANGUAGE - AND et.ad_element_id = e.ad_element_id - AND e.columnname = f.columnname - AND f.ad_process_para_id = trl.ad_process_para_id), - description = - (SELECT et.description - FROM AD_ELEMENT_TRL et, AD_ELEMENT e, AD_PROCESS_PARA f - WHERE et.AD_LANGUAGE = trl.AD_LANGUAGE - AND et.ad_element_id = e.ad_element_id - AND e.columnname = f.columnname - AND f.ad_process_para_id = trl.ad_process_para_id), - HELP = - (SELECT et.HELP - FROM AD_ELEMENT_TRL et, AD_ELEMENT e, AD_PROCESS_PARA f - WHERE et.AD_LANGUAGE = trl.AD_LANGUAGE - AND et.ad_element_id = e.ad_element_id - AND e.columnname = f.columnname - AND f.ad_process_para_id = trl.ad_process_para_id), - istranslated = - (SELECT et.istranslated - FROM AD_ELEMENT_TRL et, AD_ELEMENT e, AD_PROCESS_PARA f - WHERE et.AD_LANGUAGE = trl.AD_LANGUAGE - AND et.ad_element_id = e.ad_element_id - AND e.columnname = f.columnname - AND f.ad_process_para_id = trl.ad_process_para_id), - updated = SYSDATE - WHERE EXISTS ( - SELECT 1 - FROM AD_ELEMENT_TRL et, AD_ELEMENT e, AD_PROCESS_PARA f - WHERE et.AD_LANGUAGE = trl.AD_LANGUAGE - AND et.ad_element_id = e.ad_element_id - AND e.columnname = f.columnname - AND f.ad_process_para_id = trl.ad_process_para_id - AND f.iscentrallymaintained = 'Y' - AND f.isactive = 'Y' - AND ( trl.NAME <> et.NAME - OR NVL (trl.description, ' ') <> NVL (et.description, ' ') - OR NVL (trl.HELP, ' ') <> NVL (et.HELP, ' ') - )); - -UPDATE AD_WF_NODE n - SET NAME = (SELECT w.NAME - FROM AD_WINDOW w - WHERE w.ad_window_id = n.ad_window_id), - description = (SELECT w.description - FROM AD_WINDOW w - WHERE w.ad_window_id = n.ad_window_id), - HELP = (SELECT w.HELP - FROM AD_WINDOW w - WHERE w.ad_window_id = n.ad_window_id) - WHERE n.iscentrallymaintained = 'Y' - AND EXISTS ( - SELECT 1 - FROM AD_WINDOW w - WHERE w.ad_window_id = n.ad_window_id - AND ( w.NAME <> n.NAME - OR NVL (w.description, ' ') <> NVL (n.description, ' ') - OR NVL (w.HELP, ' ') <> NVL (n.HELP, ' ') - )); - -UPDATE AD_WF_NODE_TRL trl - SET NAME = - (SELECT t.NAME - FROM AD_WINDOW_TRL t, AD_WF_NODE n - WHERE trl.ad_wf_node_id = n.ad_wf_node_id - AND n.ad_window_id = t.ad_window_id - AND trl.AD_LANGUAGE = t.AD_LANGUAGE), - description = - (SELECT t.description - FROM AD_WINDOW_TRL t, AD_WF_NODE n - WHERE trl.ad_wf_node_id = n.ad_wf_node_id - AND n.ad_window_id = t.ad_window_id - AND trl.AD_LANGUAGE = t.AD_LANGUAGE), - HELP = - (SELECT t.HELP - FROM AD_WINDOW_TRL t, AD_WF_NODE n - WHERE trl.ad_wf_node_id = n.ad_wf_node_id - AND n.ad_window_id = t.ad_window_id - AND trl.AD_LANGUAGE = t.AD_LANGUAGE) - WHERE EXISTS ( - SELECT 1 - FROM AD_WINDOW_TRL t, AD_WF_NODE n - WHERE trl.ad_wf_node_id = n.ad_wf_node_id - AND n.ad_window_id = t.ad_window_id - AND trl.AD_LANGUAGE = t.AD_LANGUAGE - AND n.iscentrallymaintained = 'Y' - AND n.isactive = 'Y' - AND ( trl.NAME <> t.NAME - OR NVL (trl.description, ' ') <> NVL (t.description, ' ') - OR NVL (trl.HELP, ' ') <> NVL (t.HELP, ' ') - )); - -UPDATE AD_WF_NODE n - SET (NAME, description, HELP) = (SELECT f.NAME, f.description, f.HELP - FROM AD_FORM f - WHERE f.ad_form_id = n.ad_form_id) - WHERE n.iscentrallymaintained = 'Y' - AND EXISTS ( - SELECT 1 - FROM AD_FORM f - WHERE f.ad_form_id = n.ad_form_id - AND ( f.NAME <> n.NAME - OR NVL (f.description, ' ') <> NVL (n.description, ' ') - OR NVL (f.HELP, ' ') <> NVL (n.HELP, ' ') - )); - -UPDATE AD_WF_NODE_TRL trl - SET (NAME, description, HELP) = - (SELECT t.NAME, t.description, t.HELP - FROM AD_FORM_TRL t, AD_WF_NODE n - WHERE trl.ad_wf_node_id = n.ad_wf_node_id - AND n.ad_form_id = t.ad_form_id - AND trl.AD_LANGUAGE = t.AD_LANGUAGE) - WHERE EXISTS ( - SELECT 1 - FROM AD_FORM_TRL t, AD_WF_NODE n - WHERE trl.ad_wf_node_id = n.ad_wf_node_id - AND n.ad_form_id = t.ad_form_id - AND trl.AD_LANGUAGE = t.AD_LANGUAGE - AND n.iscentrallymaintained = 'Y' - AND n.isactive = 'Y' - AND ( trl.NAME <> t.NAME - OR NVL (trl.description, ' ') <> NVL (t.description, ' ') - OR NVL (trl.HELP, ' ') <> NVL (t.HELP, ' ') - )); - -UPDATE AD_WF_NODE n - SET (NAME, description, HELP) = (SELECT f.NAME, f.description, f.HELP - FROM AD_PROCESS f - WHERE f.ad_process_id = n.ad_process_id) - WHERE n.iscentrallymaintained = 'Y' - AND EXISTS ( - SELECT 1 - FROM AD_PROCESS f - WHERE f.ad_process_id = n.ad_process_id - AND ( f.NAME <> n.NAME - OR NVL (f.description, ' ') <> NVL (n.description, ' ') - OR NVL (f.HELP, ' ') <> NVL (n.HELP, ' ') - )); - -UPDATE AD_WF_NODE_TRL trl - SET (NAME, description, HELP) = - (SELECT t.NAME, t.description, t.HELP - FROM AD_PROCESS_TRL t, AD_WF_NODE n - WHERE trl.ad_wf_node_id = n.ad_wf_node_id - AND n.ad_process_id = t.ad_process_id - AND trl.AD_LANGUAGE = t.AD_LANGUAGE) - WHERE EXISTS ( - SELECT 1 - FROM AD_PROCESS_TRL t, AD_WF_NODE n - WHERE trl.ad_wf_node_id = n.ad_wf_node_id - AND n.ad_process_id = t.ad_process_id - AND trl.AD_LANGUAGE = t.AD_LANGUAGE - AND n.iscentrallymaintained = 'Y' - AND n.isactive = 'Y' - AND ( trl.NAME <> t.NAME - OR NVL (trl.description, ' ') <> NVL (t.description, ' ') - OR NVL (trl.HELP, ' ') <> NVL (t.HELP, ' ') - )); - -UPDATE AD_PRINTFORMATITEM pfi - SET NAME = - (SELECT e.NAME - FROM AD_ELEMENT e, AD_COLUMN c - WHERE e.ad_element_id = c.ad_element_id - AND c.ad_column_id = pfi.ad_column_id) - WHERE pfi.iscentrallymaintained = 'Y' - AND EXISTS ( - SELECT 1 - FROM AD_ELEMENT e, AD_COLUMN c - WHERE e.ad_element_id = c.ad_element_id - AND c.ad_column_id = pfi.ad_column_id - AND e.NAME <> pfi.NAME) - AND EXISTS ( - SELECT 1 - FROM AD_CLIENT - WHERE ad_client_id = pfi.ad_client_id - AND ismultilingualdocument = 'Y'); - -UPDATE AD_PRINTFORMATITEM pfi - SET printname = - (SELECT e.printname - FROM AD_ELEMENT e, AD_COLUMN c - WHERE e.ad_element_id = c.ad_element_id - AND c.ad_column_id = pfi.ad_column_id) - WHERE pfi.iscentrallymaintained = 'Y' - AND EXISTS ( - SELECT 1 - FROM AD_ELEMENT e, AD_COLUMN c, AD_PRINTFORMAT pf - WHERE e.ad_element_id = c.ad_element_id - AND c.ad_column_id = pfi.ad_column_id - AND LENGTH (pfi.printname) > 0 - AND e.printname <> pfi.printname - AND pf.ad_printformat_id = pfi.ad_printformat_id - AND pf.isform = 'N' - AND istablebased = 'Y') - AND EXISTS ( - SELECT 1 - FROM AD_CLIENT - WHERE ad_client_id = pfi.ad_client_id - AND ismultilingualdocument = 'Y'); - -UPDATE AD_PRINTFORMATITEM_TRL trl - SET printname = - (SELECT e.printname - FROM AD_ELEMENT_TRL e, AD_COLUMN c, AD_PRINTFORMATITEM pfi - WHERE e.AD_LANGUAGE = trl.AD_LANGUAGE - AND e.ad_element_id = c.ad_element_id - AND c.ad_column_id = pfi.ad_column_id - AND pfi.ad_printformatitem_id = trl.ad_printformatitem_id) - WHERE EXISTS ( - SELECT 1 - FROM AD_ELEMENT_TRL e, - AD_COLUMN c, - AD_PRINTFORMATITEM pfi, - AD_PRINTFORMAT pf - WHERE e.AD_LANGUAGE = trl.AD_LANGUAGE - AND e.ad_element_id = c.ad_element_id - AND c.ad_column_id = pfi.ad_column_id - AND pfi.ad_printformatitem_id = trl.ad_printformatitem_id - AND pfi.iscentrallymaintained = 'Y' - AND LENGTH (pfi.printname) > 0 - AND (e.printname <> trl.printname OR trl.printname IS NULL) - AND pf.ad_printformat_id = pfi.ad_printformat_id - AND pf.isform = 'N' - AND istablebased = 'Y') - AND EXISTS ( - SELECT 1 - FROM AD_CLIENT - WHERE ad_client_id = trl.ad_client_id - AND ismultilingualdocument = 'Y'); - -UPDATE AD_PRINTFORMATITEM_TRL trl - SET printname = - (SELECT pfi.printname - FROM AD_PRINTFORMATITEM pfi - WHERE pfi.ad_printformatitem_id = trl.ad_printformatitem_id) - WHERE EXISTS ( - SELECT 1 - FROM AD_PRINTFORMATITEM pfi, AD_PRINTFORMAT pf - WHERE pfi.ad_printformatitem_id = trl.ad_printformatitem_id - AND pfi.iscentrallymaintained = 'Y' - AND LENGTH (pfi.printname) > 0 - AND pfi.printname <> trl.printname - AND pf.ad_printformat_id = pfi.ad_printformat_id - AND pf.isform = 'N' - AND pf.istablebased = 'Y') - AND EXISTS ( - SELECT 1 - FROM AD_CLIENT - WHERE ad_client_id = trl.ad_client_id - AND ismultilingualdocument = 'N'); - -UPDATE AD_PRINTFORMATITEM_TRL trl - SET printname = NULL - WHERE printname IS NOT NULL - AND EXISTS ( - SELECT 1 - FROM AD_PRINTFORMATITEM pfi - WHERE pfi.ad_printformatitem_id = trl.ad_printformatitem_id - AND pfi.iscentrallymaintained = 'Y' - AND (LENGTH (pfi.printname) = 0 OR pfi.printname IS NULL)); - -UPDATE AD_MENU m - SET NAME = (SELECT NAME - FROM AD_WINDOW w - WHERE m.ad_window_id = w.ad_window_id), - description = (SELECT description - FROM AD_WINDOW w - WHERE m.ad_window_id = w.ad_window_id) - WHERE ad_window_id IS NOT NULL AND action = 'W'; - -UPDATE AD_MENU_TRL mt - SET NAME = - (SELECT wt.NAME - FROM AD_WINDOW_TRL wt, AD_MENU m - WHERE mt.ad_menu_id = m.ad_menu_id - AND m.ad_window_id = wt.ad_window_id - AND mt.AD_LANGUAGE = wt.AD_LANGUAGE), - description = - (SELECT wt.description - FROM AD_WINDOW_TRL wt, AD_MENU m - WHERE mt.ad_menu_id = m.ad_menu_id - AND m.ad_window_id = wt.ad_window_id - AND mt.AD_LANGUAGE = wt.AD_LANGUAGE), - istranslated = - (SELECT wt.istranslated - FROM AD_WINDOW_TRL wt, AD_MENU m - WHERE mt.ad_menu_id = m.ad_menu_id - AND m.ad_window_id = wt.ad_window_id - AND mt.AD_LANGUAGE = wt.AD_LANGUAGE) - WHERE EXISTS ( - SELECT 1 - FROM AD_WINDOW_TRL wt, AD_MENU m - WHERE mt.ad_menu_id = m.ad_menu_id - AND m.ad_window_id = wt.ad_window_id - AND mt.AD_LANGUAGE = wt.AD_LANGUAGE - AND m.ad_window_id IS NOT NULL - AND m.action = 'W'); - -UPDATE AD_MENU m - SET NAME = (SELECT p.NAME - FROM AD_PROCESS p - WHERE m.ad_process_id = p.ad_process_id), - description = (SELECT p.description - FROM AD_PROCESS p - WHERE m.ad_process_id = p.ad_process_id) - WHERE m.ad_process_id IS NOT NULL AND m.action IN ('R', 'P'); - -UPDATE AD_MENU_TRL mt - SET NAME = - (SELECT pt.NAME - FROM AD_PROCESS_TRL pt, AD_MENU m - WHERE mt.ad_menu_id = m.ad_menu_id - AND m.ad_process_id = pt.ad_process_id - AND mt.AD_LANGUAGE = pt.AD_LANGUAGE), - description = - (SELECT pt.description - FROM AD_PROCESS_TRL pt, AD_MENU m - WHERE mt.ad_menu_id = m.ad_menu_id - AND m.ad_process_id = pt.ad_process_id - AND mt.AD_LANGUAGE = pt.AD_LANGUAGE), - istranslated = - (SELECT pt.istranslated - FROM AD_PROCESS_TRL pt, AD_MENU m - WHERE mt.ad_menu_id = m.ad_menu_id - AND m.ad_process_id = pt.ad_process_id - AND mt.AD_LANGUAGE = pt.AD_LANGUAGE) - WHERE EXISTS ( - SELECT 1 - FROM AD_PROCESS_TRL pt, AD_MENU m - WHERE mt.ad_menu_id = m.ad_menu_id - AND m.ad_process_id = pt.ad_process_id - AND mt.AD_LANGUAGE = pt.AD_LANGUAGE - AND m.ad_process_id IS NOT NULL - AND action IN ('R', 'P')); - -UPDATE AD_MENU m - SET NAME = (SELECT NAME - FROM AD_FORM f - WHERE m.ad_form_id = f.ad_form_id), - description = (SELECT description - FROM AD_FORM f - WHERE m.ad_form_id = f.ad_form_id) - WHERE ad_form_id IS NOT NULL AND action = 'X'; - -UPDATE AD_MENU_TRL mt - SET NAME = - (SELECT ft.NAME - FROM AD_FORM_TRL ft, AD_MENU m - WHERE mt.ad_menu_id = m.ad_menu_id - AND m.ad_form_id = ft.ad_form_id - AND mt.AD_LANGUAGE = ft.AD_LANGUAGE), - description = - (SELECT ft.description - FROM AD_FORM_TRL ft, AD_MENU m - WHERE mt.ad_menu_id = m.ad_menu_id - AND m.ad_form_id = ft.ad_form_id - AND mt.AD_LANGUAGE = ft.AD_LANGUAGE), - istranslated = - (SELECT ft.istranslated - FROM AD_FORM_TRL ft, AD_MENU m - WHERE mt.ad_menu_id = m.ad_menu_id - AND m.ad_form_id = ft.ad_form_id - AND mt.AD_LANGUAGE = ft.AD_LANGUAGE) - WHERE EXISTS ( - SELECT 1 - FROM AD_FORM_TRL ft, AD_MENU m - WHERE mt.ad_menu_id = m.ad_menu_id - AND m.ad_form_id = ft.ad_form_id - AND mt.AD_LANGUAGE = ft.AD_LANGUAGE - AND m.ad_form_id IS NOT NULL - AND action = 'X'); - -UPDATE AD_MENU m - SET NAME = (SELECT p.NAME - FROM AD_WORKFLOW p - WHERE m.ad_workflow_id = p.ad_workflow_id), - description = (SELECT p.description - FROM AD_WORKFLOW p - WHERE m.ad_workflow_id = p.ad_workflow_id) - WHERE m.ad_workflow_id IS NOT NULL AND m.action = 'F'; - -UPDATE AD_MENU_TRL mt - SET NAME = - (SELECT pt.NAME - FROM AD_WORKFLOW_TRL pt, AD_MENU m - WHERE mt.ad_menu_id = m.ad_menu_id - AND m.ad_workflow_id = pt.ad_workflow_id - AND mt.AD_LANGUAGE = pt.AD_LANGUAGE), - description = - (SELECT pt.description - FROM AD_WORKFLOW_TRL pt, AD_MENU m - WHERE mt.ad_menu_id = m.ad_menu_id - AND m.ad_workflow_id = pt.ad_workflow_id - AND mt.AD_LANGUAGE = pt.AD_LANGUAGE), - istranslated = - (SELECT pt.istranslated - FROM AD_WORKFLOW_TRL pt, AD_MENU m - WHERE mt.ad_menu_id = m.ad_menu_id - AND m.ad_workflow_id = pt.ad_workflow_id - AND mt.AD_LANGUAGE = pt.AD_LANGUAGE) - WHERE EXISTS ( - SELECT 1 - FROM AD_WORKFLOW_TRL pt, AD_MENU m - WHERE mt.ad_menu_id = m.ad_menu_id - AND m.ad_workflow_id = pt.ad_workflow_id - AND mt.AD_LANGUAGE = pt.AD_LANGUAGE - AND m.ad_workflow_id IS NOT NULL - AND action = 'F'); - -UPDATE AD_MENU m - SET NAME = (SELECT NAME - FROM AD_TASK f - WHERE m.ad_task_id = f.ad_task_id), - description = (SELECT description - FROM AD_TASK f - WHERE m.ad_task_id = f.ad_task_id) - WHERE ad_task_id IS NOT NULL AND action = 'T'; - -UPDATE AD_MENU_TRL mt - SET NAME = - (SELECT ft.NAME - FROM AD_TASK_TRL ft, AD_MENU m - WHERE mt.ad_menu_id = m.ad_menu_id - AND m.ad_task_id = ft.ad_task_id - AND mt.AD_LANGUAGE = ft.AD_LANGUAGE), - description = - (SELECT ft.description - FROM AD_TASK_TRL ft, AD_MENU m - WHERE mt.ad_menu_id = m.ad_menu_id - AND m.ad_task_id = ft.ad_task_id - AND mt.AD_LANGUAGE = ft.AD_LANGUAGE), - istranslated = - (SELECT ft.istranslated - FROM AD_TASK_TRL ft, AD_MENU m - WHERE mt.ad_menu_id = m.ad_menu_id - AND m.ad_task_id = ft.ad_task_id - AND mt.AD_LANGUAGE = ft.AD_LANGUAGE) - WHERE EXISTS ( - SELECT 1 - FROM AD_TASK_TRL ft, AD_MENU m - WHERE mt.ad_menu_id = m.ad_menu_id - AND m.ad_task_id = ft.ad_task_id - AND mt.AD_LANGUAGE = ft.AD_LANGUAGE - AND m.ad_task_id IS NOT NULL - AND action = 'T'); - -UPDATE AD_COLUMN c - SET (NAME, description, HELP) = (SELECT e.NAME, e.description, e.HELP - FROM AD_ELEMENT e - WHERE c.ad_element_id = e.ad_element_id) - WHERE EXISTS (SELECT 1 - FROM AD_ELEMENT e - WHERE c.ad_element_id = e.ad_element_id AND c.NAME <> e.NAME); - -UPDATE AD_COLUMN_TRL ct - SET NAME = - (SELECT e.NAME - FROM AD_COLUMN c INNER JOIN AD_ELEMENT_TRL e - ON (c.ad_element_id = e.ad_element_id) - WHERE ct.ad_column_id = c.ad_column_id - AND ct.AD_LANGUAGE = e.AD_LANGUAGE) - WHERE EXISTS ( - SELECT 1 - FROM AD_COLUMN c INNER JOIN AD_ELEMENT_TRL e - ON (c.ad_element_id = e.ad_element_id) - WHERE ct.ad_column_id = c.ad_column_id - AND ct.AD_LANGUAGE = e.AD_LANGUAGE - AND ct.NAME <> e.NAME); - -UPDATE AD_TABLE t - SET (NAME, description) = (SELECT e.NAME, e.description - FROM AD_ELEMENT e - WHERE t.tablename || '_ID' = e.columnname) - WHERE EXISTS (SELECT 1 - FROM AD_ELEMENT e - WHERE t.tablename || '_ID' = e.columnname AND t.NAME <> e.NAME); - -UPDATE AD_TABLE_TRL tt - SET NAME = - (SELECT e.NAME - FROM AD_TABLE t INNER JOIN AD_ELEMENT ex - ON (t.tablename || '_ID' = ex.columnname) - INNER JOIN AD_ELEMENT_TRL e - ON (ex.ad_element_id = e.ad_element_id) - WHERE tt.ad_table_id = t.ad_table_id - AND tt.AD_LANGUAGE = e.AD_LANGUAGE) - WHERE EXISTS ( - SELECT 1 - FROM AD_TABLE t INNER JOIN AD_ELEMENT ex - ON (t.tablename || '_ID' = ex.columnname) - INNER JOIN AD_ELEMENT_TRL e - ON (ex.ad_element_id = e.ad_element_id) - WHERE tt.ad_table_id = t.ad_table_id - AND tt.AD_LANGUAGE = e.AD_LANGUAGE - AND tt.NAME <> e.NAME); - -UPDATE AD_TABLE t - SET (NAME, description) = - (SELECT e.NAME || ' Trl', e.description - FROM AD_ELEMENT e - WHERE SUBSTR (t.tablename, 1, LENGTH (t.tablename) - 4) || '_ID' = - e.columnname) - WHERE tablename LIKE '%_Trl' - AND EXISTS ( - SELECT 1 - FROM AD_ELEMENT e - WHERE SUBSTR (t.tablename, 1, LENGTH (t.tablename) - 4) || '_ID' = - e.columnname - AND t.NAME <> e.NAME); - -UPDATE AD_TABLE_TRL tt - SET NAME = - (SELECT e.NAME || ' **' - FROM AD_TABLE t INNER JOIN AD_ELEMENT ex - ON (SUBSTR (t.tablename, 1, LENGTH (t.tablename) - 4) - || '_ID' = ex.columnname - ) - INNER JOIN AD_ELEMENT_TRL e - ON (ex.ad_element_id = e.ad_element_id) - WHERE tt.ad_table_id = t.ad_table_id - AND tt.AD_LANGUAGE = e.AD_LANGUAGE) - WHERE EXISTS ( - SELECT 1 - FROM AD_TABLE t INNER JOIN AD_ELEMENT ex - ON (SUBSTR (t.tablename, 1, LENGTH (t.tablename) - 4) - || '_ID' = ex.columnname - ) - INNER JOIN AD_ELEMENT_TRL e - ON (ex.ad_element_id = e.ad_element_id) - WHERE tt.ad_table_id = t.ad_table_id - AND tt.AD_LANGUAGE = e.AD_LANGUAGE - AND t.tablename LIKE '%_Trl' - AND tt.NAME <> e.NAME); - - - -SELECT '03_update_sequences.sql' AS Filename FROM dual; --- TODO: Currently not inserting new sequences -DECLARE - cmdsys VARCHAR2 (1000); - cmdnosys VARCHAR2 (1000); - cmdseq VARCHAR2 (1000); - cmdupd VARCHAR2 (1000); - currentnextsys NUMBER (10); - currentnext NUMBER (10); - currentseqsys NUMBER (10); - currentseq NUMBER (10); -BEGIN - DBMS_OUTPUT.PUT_LINE ('Start'); - - FOR r IN (SELECT tablename - FROM AD_TABLE t - WHERE EXISTS ( - SELECT 1 - FROM AD_COLUMN c - WHERE t.ad_table_id = c.ad_table_id - AND c.columnname = t.tablename || '_ID') - ORDER BY 1) - LOOP - cmdsys := - 'SELECT MAX (' - || r.tablename - || '_id) currentnextsys FROM ' - || r.tablename - || ' where ' - || r.tablename - || '_id<1000000'; - - BEGIN - EXECUTE IMMEDIATE cmdsys - INTO currentnextsys; - EXCEPTION - WHEN OTHERS - THEN - DBMS_OUTPUT.PUT_LINE ('Table not found'); - DBMS_OUTPUT.PUT_LINE (cmdsys); - GOTO next_iteration; - END; - - IF currentnextsys IS NULL - THEN - currentnextsys := 0; - END IF; - - SELECT DECODE (SIGN (currentnextsys - 50000), - -1, 50000, - NVL (currentnextsys + 1, 50000) - ) - INTO currentnextsys - FROM DUAL; - - cmdnosys := - 'SELECT MAX (' - || r.tablename - || '_id) currentnext FROM ' - || r.tablename - || ' where ' - || r.tablename - || '_id>=1000000'; - - EXECUTE IMMEDIATE cmdnosys - INTO currentnext; - - IF currentnext IS NULL - THEN - currentnext := 0; - END IF; - - SELECT DECODE (SIGN (currentnext - 1000000), - -1, 1000000, - NVL (currentnext + 1, 1000000) - ) - INTO currentnext - FROM DUAL; - - cmdseq := - 'SELECT currentnext, currentnextsys FROM AD_Sequence ' - || 'WHERE Name = ''' - || r.tablename - || ''' AND istableid = ''Y'''; - - EXECUTE IMMEDIATE cmdseq - INTO currentseq, currentseqsys; - - IF currentnextsys <> currentseqsys OR currentnext <> currentseq - THEN - DBMS_OUTPUT.PUT_LINE ( r.tablename - || ' sys=' - || currentnextsys - || ' nosys=' - || currentnext - || ' seqsys=' - || currentseqsys - || ' seqnosys=' - || currentseq - ); - cmdupd := - 'update ad_sequence set currentnextsys = ' - || currentnextsys - || ', currentnext=' - || currentnext - || ' where name=''' - || r.tablename - || ''' and istableid=''Y'''; - DBMS_OUTPUT.PUT_LINE (cmdupd); - - EXECUTE IMMEDIATE cmdupd; - END IF; - - <> - NULL; - END LOOP; - - - DBMS_OUTPUT.PUT_LINE ('End'); -END; -/ - -SELECT '04_role_access_update.sql' AS Filename FROM dual; -DECLARE - roleaccesslevel VARCHAR2 (200); - roleaccesslevelwin VARCHAR2 (200); - sqlins VARCHAR2 (2000); -BEGIN - FOR r IN (SELECT ad_role_id, userlevel, NAME - FROM AD_ROLE - WHERE ismanual = 'N' - ORDER BY ad_role_id) - LOOP - DBMS_OUTPUT.PUT_LINE ('Role : ' || r.NAME || ' - ' || r.ad_role_id); - DELETE FROM AD_WINDOW_ACCESS - WHERE ad_role_id = r.ad_role_id; - - DELETE FROM AD_PROCESS_ACCESS - WHERE ad_role_id = r.ad_role_id; - - DELETE FROM AD_FORM_ACCESS - WHERE ad_role_id = r.ad_role_id; - - DELETE FROM AD_WORKFLOW_ACCESS - WHERE ad_role_id = r.ad_role_id; - - IF r.userlevel = 'S ' -- system - THEN - roleaccesslevel := '(''4'',''7'',''6'')'; - roleaccesslevelwin := roleaccesslevel; - ELSIF r.userlevel = ' C ' -- client - THEN - roleaccesslevel := '(''7'',''6'',''3'',''2'')'; - roleaccesslevelwin := roleaccesslevel; - ELSIF r.userlevel = ' CO' -- client + org - THEN - roleaccesslevel := '(''7'',''6'',''3'',''2'',''1'')'; - roleaccesslevelwin := roleaccesslevel; - ELSE -- org or others - roleaccesslevel := '(''3'',''1'',''7'')'; - roleaccesslevelwin := - roleaccesslevel || ' AND w.Name NOT LIKE ''%(all)%'''; - END IF; - - sqlins := - 'INSERT INTO AD_Window_Access (AD_Window_ID, AD_Role_ID, AD_Client_ID,AD_Org_ID,IsActive,Created,CreatedBy,Updated,UpdatedBy,IsReadWrite) SELECT DISTINCT w.AD_Window_ID, ' - || r.ad_role_id - || ',0,0,''Y'', SysDate,0, SysDate,0,''Y'' FROM AD_Window w INNER JOIN AD_Tab t ON (w.AD_Window_ID=t.AD_Window_ID) INNER JOIN AD_Table tt ON (t.AD_Table_ID=tt.AD_Table_ID) WHERE t.SeqNo=(SELECT MIN(SeqNo) FROM AD_Tab xt WHERE xt.AD_Window_ID=w.AD_Window_ID)AND tt.AccessLevel IN ' - || roleaccesslevelwin; - - -- DBMS_OUTPUT.PUT_LINE (sqlins); - EXECUTE IMMEDIATE sqlins; - - sqlins := - 'INSERT INTO AD_Process_Access (AD_Process_ID, AD_Role_ID, AD_Client_ID,AD_Org_ID,IsActive,Created,CreatedBy,Updated,UpdatedBy,IsReadWrite) SELECT DISTINCT p.AD_Process_ID, ' - || r.ad_role_id - || ',0,0,''Y'', SysDate,0, SysDate,0,''Y'' FROM AD_Process p WHERE AccessLevel IN ' - || roleaccesslevel; - - -- DBMS_OUTPUT.PUT_LINE (sqlins); - EXECUTE IMMEDIATE sqlins; - - sqlins := - 'INSERT INTO AD_Form_Access (AD_Form_ID, AD_Role_ID, AD_Client_ID,AD_Org_ID,IsActive,Created,CreatedBy,Updated,UpdatedBy,IsReadWrite) SELECT f.AD_Form_ID, ' - || r.ad_role_id - || ',0,0,''Y'', SysDate,0, SysDate,0,''Y'' FROM AD_Form f WHERE AccessLevel IN ' - || roleaccesslevel; - - -- DBMS_OUTPUT.PUT_LINE (sqlins); - EXECUTE IMMEDIATE sqlins; - - sqlins := - 'INSERT INTO AD_WorkFlow_Access (AD_WorkFlow_ID, AD_Role_ID, AD_Client_ID,AD_Org_ID,IsActive,Created,CreatedBy,Updated,UpdatedBy,IsReadWrite) SELECT w.AD_WorkFlow_ID, ' - || r.ad_role_id - || ',0,0,''Y'', SysDate,0, SysDate,0,''Y'' FROM AD_WorkFlow w WHERE AccessLevel IN ' - || roleaccesslevel; - - -- DBMS_OUTPUT.PUT_LINE (sqlins); - EXECUTE IMMEDIATE sqlins; - END LOOP; - - -END; -/ - -COMMIT; - -quit diff --git a/migration/All320-340/postgresql/320-340_pg.sql b/migration/All320-340/postgresql/320-340_pg.sql deleted file mode 100644 index d474cfca6f..0000000000 --- a/migration/All320-340/postgresql/320-340_pg.sql +++ /dev/null @@ -1,15984 +0,0 @@ -SELECT '001_add_brazilian_states.sql' AS Filename; ---Enable Brazil in country Table -UPDATE c_country SET hasregion = 'Y', regionname = 'Estado' WHERE c_country_id = 139; - - - ---Add Brazilian States -INSERT INTO c_region VALUES (441, 0, 0, 'Y', '2007-04-30 16:40:42', 0, '2007-04-30 16:40:42', 0, 'AC', 'Acre', 139, 'N'); -INSERT INTO c_region VALUES (442, 0, 0, 'Y', '2007-04-30 16:40:57', 0, '2007-04-30 16:40:57', 0, 'AL', 'Alagoas', 139, 'N'); -INSERT INTO c_region VALUES (443, 0, 0, 'Y', '2007-04-30 16:41:06', 0, '2007-04-30 16:41:06', 0, 'AP', 'Amapá', 139, 'N'); -INSERT INTO c_region VALUES (444, 0, 0, 'Y', '2007-04-30 16:41:19', 0, '2007-04-30 16:41:19', 0, 'AM', 'Amazonas', 139, 'N'); -INSERT INTO c_region VALUES (445, 0, 0, 'Y', '2007-04-30 16:41:29', 0, '2007-04-30 16:41:29', 0, 'BA', 'Bahia', 139, 'N'); -INSERT INTO c_region VALUES (446, 0, 0, 'Y', '2007-04-30 16:41:49', 0, '2007-04-30 16:41:49', 0, 'CE', 'Ceará°', 139, 'N'); -INSERT INTO c_region VALUES (447, 0, 0, 'Y', '2007-04-30 16:42:04', 0, '2007-04-30 16:42:04', 0, 'DF', 'Distrito Federal', 139, 'N'); -INSERT INTO c_region VALUES (448, 0, 0, 'Y', '2007-04-30 16:42:19', 0, '2007-04-30 16:42:19', 0, 'ES', 'Espírito Santo', 139, 'N'); -INSERT INTO c_region VALUES (449, 0, 0, 'Y', '2007-04-30 16:42:34', 0, '2007-04-30 16:42:34', 0, 'GO', 'Goiás', 139, 'N'); -INSERT INTO c_region VALUES (450, 0, 0, 'Y', '2007-04-30 16:42:40', 0, '2007-04-30 16:42:40', 0, 'MA', 'Maranhão', 139, 'N'); -INSERT INTO c_region VALUES (451, 0, 0, 'Y', '2007-04-30 16:42:49', 0, '2007-04-30 16:42:49', 0, 'MT', 'Mato Grosso', 139, 'N'); -INSERT INTO c_region VALUES (452, 0, 0, 'Y', '2007-04-30 16:43:00', 0, '2007-04-30 16:43:00', 0, 'MS', 'Mato Grosso do Sul', 139, 'N'); -INSERT INTO c_region VALUES (453, 0, 0, 'Y', '2007-04-30 16:43:11', 0, '2007-04-30 16:43:11', 0, 'MG', 'Minas Gerais', 139, 'N'); -INSERT INTO c_region VALUES (454, 0, 0, 'Y', '2007-04-30 16:43:21', 0, '2007-04-30 16:43:21', 0, 'PA', 'Pará', 139, 'N'); -INSERT INTO c_region VALUES (455, 0, 0, 'Y', '2007-04-30 16:43:31', 0, '2007-04-30 16:43:31', 0, 'PB', 'Paraíba', 139, 'N'); -INSERT INTO c_region VALUES (456, 0, 0, 'Y', '2007-04-30 16:43:40', 0, '2007-04-30 16:43:40', 0, 'PR', 'Paraná', 139, 'N'); -INSERT INTO c_region VALUES (457, 0, 0, 'Y', '2007-04-30 16:43:53', 0, '2007-04-30 16:43:53', 0, 'PE', 'Pernambuco', 139, 'N'); -INSERT INTO c_region VALUES (458, 0, 0, 'Y', '2007-04-30 16:44:03', 0, '2007-04-30 16:44:03', 0, 'PI', 'Piauí', 139, 'N'); -INSERT INTO c_region VALUES (459, 0, 0, 'Y', '2007-04-30 16:44:30', 0, '2007-04-30 16:44:30', 0, 'RJ', 'Rio de Janeiro', 139, 'N'); -INSERT INTO c_region VALUES (460, 0, 0, 'Y', '2007-04-30 16:44:43', 0, '2007-04-30 16:44:43', 0, 'RN', 'Rio Grande do Norte', 139, 'N'); -INSERT INTO c_region VALUES (461, 0, 0, 'Y', '2007-04-30 16:44:59', 0, '2007-04-30 16:44:59', 0, 'RS', 'Rio Grande do Sul', 139, 'N'); -INSERT INTO c_region VALUES (462, 0, 0, 'Y', '2007-04-30 16:45:07', 0, '2007-04-30 16:45:07', 0, 'RO', 'Rondônia', 139, 'N'); -INSERT INTO c_region VALUES (463, 0, 0, 'Y', '2007-04-30 16:45:20', 0, '2007-04-30 16:45:20', 0, 'RR', 'Roraima', 139, 'N'); -INSERT INTO c_region VALUES (464, 0, 0, 'Y', '2007-04-30 16:45:30', 0, '2007-04-30 16:45:30', 0, 'SC', 'Santa Catarina', 139, 'N'); -INSERT INTO c_region VALUES (465, 0, 0, 'Y', '2007-04-30 16:45:40', 0, '2007-04-30 16:45:40', 0, 'SP', 'Sõo Paulo', 139, 'N'); -INSERT INTO c_region VALUES (466, 0, 0, 'Y', '2007-04-30 16:45:53', 0, '2007-04-30 16:45:53', 0, 'SE', 'Sergipe', 139, 'N'); -INSERT INTO c_region VALUES (467, 0, 0, 'Y', '2007-04-30 16:46:03', 0, '2007-04-30 16:46:03', 0, 'TO', 'Tocantins', 139, 'N'); - - - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (c_region_id) + 1 - FROM C_REGION - WHERE c_region_id < 1000000) - WHERE NAME = 'C_Region'; - - - -SELECT '002_add_feature_1714090.sql' AS Filename; --- Feature Request --- juddm - add the ability to specific a shipment date (instead of current date) to the shipment generation process --- http://sourceforge.net/tracker/index.php?func=detail&aid=1714090&group_id=176962&atid=879335 - -INSERT INTO AD_PROCESS_PARA - (ad_process_para_id, ad_client_id, ad_org_id, isactive, created, - createdby, updated, updatedby, - NAME, description, - HELP, - ad_process_id, seqno, ad_reference_id, ad_reference_value_id, - ad_val_rule_id, columnname, iscentrallymaintained, fieldlength, - ismandatory, isrange, ad_element_id, entitytype - ) - VALUES (50019, 0, 0, 'Y', TO_TIMESTAMP ('2007-03-03', 'YYYY-MM-DD'), - 100, TO_TIMESTAMP ('2007-03-03', 'YYYY-MM-DD'), 100, - 'Shipment Date', 'Date printed on shipment', - 'The Shipment Date indicates the date printed on the shipment.', - 118, 15, 15, NULL, - NULL, 'MovementDate', 'N', 0, - 'Y', 'N', 1037, 'D' - ); - - - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_process_para_id) + 1 - FROM AD_PROCESS_PARA - WHERE ad_process_para_id < 1000000) - WHERE NAME = 'AD_Process_Para'; - - - -SELECT '003_make_feature_1714090_optional.sql' AS Filename; -UPDATE AD_PROCESS_PARA - SET defaultvalue = NULL, - ismandatory = 'N', - updated = TO_TIMESTAMP ('2007-05-07 20:55:59', 'YYYY-MM-DD HH24:MI:SS'), - updatedby = 100 - WHERE ad_process_para_id = 50019; - - - -SELECT '005_2pack_enhancements_message.sql' AS Filename; -ALTER TABLE AD_PACKAGE_EXP_DETAIL ADD ad_message_id NUMERIC(10,0); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, VERSION, entitytype, columnname, - ad_table_id, ad_reference_id, fieldlength, iskey, isparent, - ismandatory, isupdateable, isidentifier, seqno, istranslated, - isencrypted, isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (50213, 0, 0, 'Y', - TO_TIMESTAMP ('05/14/2007 19:48:41', 'MM/DD/YYYY HH24:MI:SS'), - TO_TIMESTAMP ('05/14/2007 19:48:41', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Message', 'System Message', - 'Information and Error messages', 0, 'D', 'AD_Message_ID', - 50006, 19, 22, 'N', 'N', - 'N', 'Y', 'N', 0, 'N', - 'N', 'N', 1752, 'N', - 'N' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, HELP, - iscentrallymaintained, ad_tab_id, ad_column_id, isdisplayed, - displaylogic, displaylength, isreadonly, seqno, issameline, - isheading, isfieldonly, isencrypted, entitytype - ) - VALUES (50183, 0, 0, 'Y', - TO_TIMESTAMP ('05/14/2007 19:51:35', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_TIMESTAMP ('05/14/2007 19:52:28', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Message', 'System Message', 'Information and Error messages', - 'Y', 50006, 50213, 'Y', - '@Type@=''MSG''', 22, 'N', 246, 'N', - 'N', 'N', 'N', 'D' - ); - -INSERT INTO AD_REF_LIST - (ad_ref_list_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - VALUE, NAME, ad_reference_id, entitytype - ) - VALUES (50043, 0, 0, 'Y', - TO_TIMESTAMP ('05/14/2007 19:54:20', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_TIMESTAMP ('05/14/2007 19:54:20', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'MSG', 'Message', 50004, 'D' - ); - - - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_column_id) + 1 - FROM AD_COLUMN - WHERE ad_column_id < 1000000) - WHERE NAME = 'AD_Column'; - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_field_id) + 1 - FROM AD_FIELD - WHERE ad_field_id < 1000000) - WHERE NAME = 'AD_Field'; - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_ref_list_id) + 1 - FROM AD_REF_LIST - WHERE ad_ref_list_id < 1000000) - WHERE NAME = 'AD_Ref_List'; - - - -SELECT '007_add_StoreArchiveOnFilesystem.sql' AS Filename; -INSERT INTO ad_element - (ad_element_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - columnname, entitytype, NAME, - printname - ) - VALUES (50071, 0, 0, 'Y', - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'StoreArchiveOnFileSystem', 'D', 'Store Archive On File System', - 'Store Archive On File System' - ); - - -INSERT INTO ad_column - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, VERSION, - entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, seqno, istranslated, isencrypted, - isselectioncolumn, ad_element_id, callout, issyncdatabase, - isalwaysupdateable - ) - VALUES (50214, 0, 0, 'Y', - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Store Archive On File System', 'Store Archive On File System', 1, - 'D', 'StoreArchiveOnFileSystem', 112, 20, - 1, 'N', 'N', 'Y', 'Y', - 'N', 0, 'N', 'N', - 'N', 50071, 'org.compiere.model.CalloutClient.storeArchiveOnFileSystem', 'N', - 'N' - ); - -INSERT INTO ad_field - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, iscentrallymaintained, seqno, ad_tab_id, - ad_column_id, isdisplayed, displaylength, isreadonly, - issameline, isheading, isfieldonly, isencrypted, entitytype - ) - VALUES (50184, 0, 0, 'Y', - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Store Archive On File System', 'Store Archive On File System', 'Y', 250, 145, - 50214, 'Y', 1, 'N', - 'N', 'N', 'N', 'N', 'D' - ); - - - -INSERT INTO ad_element - (ad_element_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - columnname, entitytype, NAME, - printname - ) - VALUES (50072, 0, 0, 'Y', - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'WindowsArchivePath', 'D', 'Windows Archive Path', - 'Windows Archive Path' - ); - - -INSERT INTO ad_column - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - help, VERSION, - entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, seqno, istranslated, isencrypted, - isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (50215, 0, 0, 'Y', - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Windows Archive Path', 'Windows Archive Path - If you change this value make sure to copy the archive entries to the new path!', - 'Path of the adempiere archive entries in the file system. If you change this value make sure to copy the archive entries to the new path!', 1, - 'D', 'WindowsArchivePath', 112, 10, - 255, 'N', 'N', 'N', 'Y', - 'N', 0, 'N', 'N', - 'N', 50072, 'N', - 'N' - ); - -INSERT INTO ad_field - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - help, - iscentrallymaintained, seqno, ad_tab_id, - ad_column_id, isdisplayed, displaylength, isreadonly, - issameline, isheading, isfieldonly, isencrypted, entitytype, displaylogic - ) - VALUES (50185, 0, 0, 'Y', - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Windows Archive Path', 'Windows Archive Path', - 'If you change this value make sure to copy the archive entries to the new path!', - 'Y', 260, 145, - 50215, 'Y', 1, 'N', - 'N', 'N', 'N', 'N', 'D','@StoreArchiveOnFileSystem@=''Y''' - ); - - -INSERT INTO ad_element - (ad_element_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - columnname, entitytype, NAME, - printname - ) - VALUES (50073, 0, 0, 'Y', - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'UnixArchivePath', 'D', 'Unix Archive Path', - 'Unix Archive Path' - ); - - -INSERT INTO ad_column - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - help, VERSION, - entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, seqno, istranslated, isencrypted, - isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (50216, 0, 0, 'Y', - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Unix Archive Path', 'Unix Archive Path - If you change this value make sure to copy the archive entries to the new path!', - 'Path of the adempiere archive entries in the file system. If you change this value make sure to copy the archive entries to the new path!', 1, - 'D', 'UnixArchivePath', 112, 10, - 255, 'N', 'N', 'N', 'Y', - 'N', 0, 'N', 'N', - 'N', 50073, 'N', - 'N' - ); - -INSERT INTO ad_field - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - help, - iscentrallymaintained, seqno, ad_tab_id, - ad_column_id, isdisplayed, displaylength, isreadonly, - issameline, isheading, isfieldonly, isencrypted, entitytype, displaylogic - ) - VALUES (50186, 0, 0, 'Y', - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Unix Archive Path', 'Unix Archive Path', - 'If you change this value make sure to copy the archive entries to the new path!', - 'Y', 270 ,145, - 50216, 'Y', 1, 'N', - 'Y', 'N', 'N', 'N', 'D','@StoreArchiveOnFileSystem@=''Y''' - ); - -INSERT INTO ad_message - (ad_message_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - value, msgtext, msgtype - ) - VALUES (50015, 0, 0, 'Y', - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'StoreArchiveWarning', - 'If you change the archive storage method, the old archive entries are no longer available to your client.','I' - ); - -INSERT INTO ad_message - (ad_message_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - value, msgtext, msgtype - ) - VALUES (50016, 0, 0, 'Y', - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'ArchivePathWarning','Make sure to copy the archive entries to the new path!','I' - ); - -INSERT INTO ad_message_trl - (ad_message_id, ad_language, ad_client_id, ad_org_id, isactive, - created, createdby, updated, updatedby, msgtext, msgtip, - istranslated) - SELECT m.ad_message_id, lang.ad_language, m.ad_client_id, m.ad_org_id, 'Y', - m.created, m.createdby, m.updated, m.updatedby, m.msgtext, m.msgtip, - 'N' - FROM ad_message m, ad_language lang - WHERE m.ad_message_id in (50015, 50016) - AND lang.issystemlanguage = 'Y' - AND lang.isbaselanguage = 'N' - AND NOT EXISTS ( - SELECT * - FROM ad_message_trl m2 - WHERE m2.ad_message_id = m.ad_message_id - AND m2.ad_language = lang.ad_language); - - - -UPDATE ad_sequence - SET currentnextsys = (SELECT MAX (ad_element_id) + 1 - FROM ad_element - WHERE ad_element_id < 1000000) - WHERE NAME = 'AD_Element'; - -UPDATE ad_sequence - SET currentnextsys = (SELECT MAX (ad_column_id) + 1 - FROM ad_column - WHERE ad_column_id < 1000000) - WHERE NAME = 'AD_Column'; - -UPDATE ad_sequence - SET currentnextsys = (SELECT MAX (ad_field_id) + 1 - FROM ad_field - WHERE ad_field_id < 1000000) - WHERE NAME = 'AD_Field'; - - UPDATE ad_sequence - SET currentnextsys = (SELECT MAX (ad_message_id) + 1 - FROM ad_message - WHERE ad_message_id < 1000000) - WHERE NAME = 'AD_Message'; - - -ALTER TABLE ad_client ADD StoreArchiveOnFilesystem CHAR(1) DEFAULT 'N' NOT NULL; -ALTER TABLE ad_client ADD WindowsArchivePath VARCHAR(255); -ALTER TABLE ad_client ADD UnixArchivePath VARCHAR(255); - - - -SELECT '008_2pack_enhancements_printformat.sql' AS Filename; -ALTER TABLE AD_PACKAGE_EXP_DETAIL ADD ad_printformat_id NUMERIC(10,0); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, VERSION, entitytype, columnname, - ad_table_id, ad_reference_id, fieldlength, iskey, isparent, - ismandatory, isupdateable, isidentifier, seqno, istranslated, - isencrypted, isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (50217, 0, 0, 'Y', - TO_TIMESTAMP ('05/25/2007 19:48:41', 'MM/DD/YYYY HH24:MI:SS'), - TO_TIMESTAMP ('05/25/2007 19:48:41', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Print Format', 'Data Print Format', - 'The print format determines how data is rendered for print.', 0, 'D', 'AD_PrintFormat_ID', - 50006, 19, 22, 'N', 'N', - 'N', 'Y', 'N', 0, 'N', - 'N', 'N', 1790, 'N', - 'N' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, HELP, - iscentrallymaintained, ad_tab_id, ad_column_id, isdisplayed, - displaylogic, displaylength, isreadonly, seqno, issameline, - isheading, isfieldonly, isencrypted, entitytype - ) - VALUES (50187, 0, 0, 'Y', - TO_TIMESTAMP ('05/25/2007 19:51:35', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_TIMESTAMP ('05/25/2007 19:52:28', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'PrintFormat', 'Print Format', 'Print Format', - 'Y', 50006, 50217, 'Y', - '@Type@=''PFT''', 22, 'N', 246, 'N', - 'N', 'N', 'N', 'D' - ); - -INSERT INTO AD_REF_LIST - (ad_ref_list_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - VALUE, NAME, ad_reference_id, entitytype - ) - VALUES (50044, 0, 0, 'Y', - TO_TIMESTAMP ('05/14/2007 19:54:20', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_TIMESTAMP ('05/14/2007 19:54:20', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'PFT', 'PrintFormat', 50004, 'D' - ); - - - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_column_id) + 1 - FROM AD_COLUMN - WHERE ad_column_id < 1000000) - WHERE NAME = 'AD_Column'; - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_field_id) + 1 - FROM AD_FIELD - WHERE ad_field_id < 1000000) - WHERE NAME = 'AD_Field'; - -UPDATE AD_SEQUENCE - SET currentnextsys = (SELECT MAX (ad_ref_list_id) + 1 - FROM AD_REF_LIST - WHERE ad_ref_list_id < 1000000) - WHERE NAME = 'AD_Ref_List'; - - - -SELECT '009_add_MandatoryLogic.sql' AS Filename; -INSERT INTO ad_element - (ad_element_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - columnname, entitytype, NAME, - printname - ) - VALUES (50074, 0, 0, 'Y', - TO_TIMESTAMP ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_TIMESTAMP ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'MandatoryLogic', 'D', 'Mandatory Logic', - 'Mandatory Logic' - ); - - -INSERT INTO ad_column - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - help, VERSION, - entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, seqno, istranslated, isencrypted, - isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (50218, 0, 0, 'Y', - TO_TIMESTAMP ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), - TO_TIMESTAMP ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Mandatory Logic', 'Logic to determine if field is mandatory (applies only when field is not mandatory in general)', - 'Logic to determine if field is mandatory (applies only when field is not mandatory in general). - format := {expression} [{logic} {expression}]
- expression := @{context}@{operand}{value} or @{context}@{operand}{value}
- logic := {|}|{&}
- context := any global or window context
- value := strings or numbers
- logic operators := AND or OR with the previous result from left to right
- operand := eq{=}, gt{>}, le{<}, not{~^!}
- Examples:
- @AD_Table_ID@=14 | @Language@!GERGER
- @PriceLimit@>10 | @PriceList@>@PriceActual@
- @Name@>J
- Strings may be in single quotes (optional)', 1, - 'D', 'MandatoryLogic', 101, 14, - 2000, 'N', 'N', 'N', 'Y', - 'N', 0, 'N', 'N', - 'N', 50074, 'N', - 'N' - ); - -INSERT INTO ad_field - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - help, - iscentrallymaintained, seqno, ad_tab_id, - ad_column_id, isdisplayed, displaylength, isreadonly, - issameline, isheading, isfieldonly, isencrypted, entitytype - ) - VALUES (50188, 0, 0, 'Y', - TO_TIMESTAMP ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_TIMESTAMP ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Mandatory Logic', 'Logic to determine if field is mandatory (applies only when field is not mandatory in general)', - 'Logic to determine if field is mandatory (applies only when field is not mandatory in general). - format := {expression} [{logic} {expression}]
- expression := @{context}@{operand}{value} or @{context}@{operand}{value}
- logic := {|}|{&}
- context := any global or window context
- value := strings or numbers
- logic operators := AND or OR with the previous result from left to right
- operand := eq{=}, gt{>}, le{<}, not{~^!}
- Examples:
- @AD_Table_ID@=14 | @Language@!GERGER
- @PriceLimit@>10 | @PriceList@>@PriceActual@
- @Name@>J
- Strings may be in single quotes (optional)', - 'Y', 275 ,101, - 50218, 'Y', 60, 'N', - 'N', 'N', 'N', 'N', 'D' - ); - - - -UPDATE ad_sequence - SET currentnextsys = (SELECT MAX (ad_element_id) + 1 - FROM ad_element - WHERE ad_element_id < 1000000) - WHERE NAME = 'AD_Element'; - -UPDATE ad_sequence - SET currentnextsys = (SELECT MAX (ad_column_id) + 1 - FROM ad_column - WHERE ad_column_id < 1000000) - WHERE NAME = 'AD_Column'; - -UPDATE ad_sequence - SET currentnextsys = (SELECT MAX (ad_field_id) + 1 - FROM ad_field - WHERE ad_field_id < 1000000) - WHERE NAME = 'AD_Field'; - - - -ALTER TABLE ad_column ADD MandatoryLogic character varying(2000); - - - -DROP VIEW IF EXISTS AD_FIELD_V; - CREATE OR REPLACE VIEW AD_FIELD_V AS - SELECT t.AD_Window_ID, f.AD_Tab_ID, f.AD_Field_ID, tbl.AD_Table_ID, f.AD_Column_ID, - f.Name, f.Description, f.Help, f.IsDisplayed, f.DisplayLogic, f.DisplayLength, - f.SeqNo, f.SortNo, f.IsSameLine, f.IsHeading, f.IsFieldOnly, f.IsReadOnly, - f.IsEncrypted AS IsEncryptedField, f.ObscureType, - c.ColumnName, c.ColumnSQL, c.FieldLength, c.VFormat, c.DefaultValue, c.IsKey, c.IsParent, - COALESCE(f.IsMandatory, c.IsMandatory) AS IsMandatory, - c.IsIdentifier, c.IsTranslated, c.AD_Reference_Value_ID, - c.Callout, COALESCE(f.AD_Reference_ID, c.AD_Reference_ID) AS AD_Reference_ID, - c.AD_Val_Rule_ID, c.AD_Process_ID, c.IsAlwaysUpdateable, - c.ReadOnlyLogic, c.MandatoryLogic, c.IsUpdateable, c.IsEncrypted AS IsEncryptedColumn, - c.IsSelectionColumn, - tbl.TableName, c.ValueMin, c.ValueMax, - fg.Name AS FieldGroup, vr.Code AS ValidationCode -FROM AD_Field f - INNER JOIN AD_Tab t ON (f.AD_Tab_ID = t.AD_Tab_ID) - LEFT OUTER JOIN AD_FieldGroup fg ON (f.AD_FieldGroup_ID = fg.AD_FieldGroup_ID) - LEFT OUTER JOIN AD_Column c ON (f.AD_Column_ID = c.AD_Column_ID) - INNER JOIN AD_Table tbl ON (c.AD_Table_ID = tbl.AD_Table_ID) - INNER JOIN AD_Reference r ON (c.AD_Reference_ID = r.AD_Reference_ID) - LEFT OUTER JOIN AD_Val_Rule vr ON (c.AD_Val_Rule_ID=vr.AD_Val_Rule_ID) -WHERE f.IsActive = 'Y' - AND c.IsActive = 'Y'; - - DROP VIEW IF EXISTS AD_FIELD_VT; - CREATE OR REPLACE VIEW AD_FIELD_VT AS - SELECT trl.AD_Language, t.AD_Window_ID, f.AD_Tab_ID, f.AD_Field_ID, tbl.AD_Table_ID, f.AD_Column_ID, - trl.Name, trl.Description, trl.Help, f.IsDisplayed, f.DisplayLogic, f.DisplayLength, - f.SeqNo, f.SortNo, f.IsSameLine, f.IsHeading, f.IsFieldOnly, f.IsReadOnly, - f.IsEncrypted AS IsEncryptedField, f.ObscureType, - c.ColumnName, c.ColumnSQL, c.FieldLength, c.VFormat, c.DefaultValue, c.IsKey, c.IsParent, - COALESCE(f.IsMandatory, c.IsMandatory) AS IsMandatory, - c.IsIdentifier, c.IsTranslated, c.AD_Reference_Value_ID, - c.Callout, COALESCE(f.AD_Reference_ID, c.AD_Reference_ID) AS AD_Reference_ID, - c.AD_Val_Rule_ID, c.AD_Process_ID, c.IsAlwaysUpdateable, - c.ReadOnlyLogic, c.MandatoryLogic, c.IsUpdateable, c.IsEncrypted AS IsEncryptedColumn, c.IsSelectionColumn, - tbl.TableName, c.ValueMin, c.ValueMax, - fgt.Name AS FieldGroup, vr.Code AS ValidationCode - FROM AD_Field f - INNER JOIN AD_Field_Trl trl ON (f.AD_Field_ID = trl.AD_Field_ID) - INNER JOIN AD_Tab t ON (f.AD_Tab_ID = t.AD_Tab_ID) - LEFT OUTER JOIN AD_FieldGroup_Trl fgt ON - (f.AD_FieldGroup_ID = fgt.AD_FieldGroup_ID AND trl.AD_Language=fgt.AD_Language) - LEFT OUTER JOIN AD_Column c ON (f.AD_Column_ID = c.AD_Column_ID) - INNER JOIN AD_Table tbl ON (c.AD_Table_ID = tbl.AD_Table_ID) - INNER JOIN AD_Reference r ON (c.AD_Reference_ID = r.AD_Reference_ID) - LEFT OUTER JOIN AD_Val_Rule vr ON (c.AD_Val_Rule_ID=vr.AD_Val_Rule_ID) - WHERE f.IsActive = 'Y' - AND c.IsActive = 'Y'; - - - - -SELECT '010_add_printpreview_button.sql' AS Filename; -INSERT INTO ad_message - (ad_message_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - value, msgtext, msgtype - ) - VALUES (50017, 0, 0, 'Y', - TO_TIMESTAMP ('06/12/2007 18:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_TIMESTAMP ('06/12/2007 18:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'PrintPreview','Print preview','I' - ); - - - - UPDATE ad_sequence - SET currentnextsys = (SELECT MAX (ad_message_id) + 1 - FROM ad_message - WHERE ad_message_id < 1000000) - WHERE NAME = 'AD_Message'; - - - -SELECT '013_fix_istranslated.sql' AS Filename; -UPDATE AD_COLUMN - SET istranslated = 'N' - WHERE ad_column_id = 7604; - -UPDATE AD_COLUMN - SET istranslated = 'Y' - WHERE ad_column_id = 6256; - - - -SELECT '014_postcode_lookup.sql' AS Filename; ---- --- Feature 1741222 - Add Post code lookup infrastructure --- http://sourceforge.net/tracker/index.php?func=detail&aid=1741222&group_id=176962&atid=879335 --- - ---- Modify C_COUNTRY Table -ALTER TABLE C_COUNTRY ADD - IsPostcodeLookup CHAR(1) DEFAULT 'N' NOT NULL; -ALTER TABLE C_COUNTRY ADD - LookupClassname VARCHAR(255) DEFAULT NULL NULL; -ALTER TABLE C_COUNTRY ADD - LookupClientID VARCHAR(50) DEFAULT NULL NULL; -ALTER TABLE C_COUNTRY ADD - LookupPassword VARCHAR(50) DEFAULT NULL NULL; -ALTER TABLE C_COUNTRY ADD - LookupUrl VARCHAR(100) DEFAULT NULL NULL; - --- Add Postcode Constraint -ALTER TABLE C_COUNTRY ADD CHECK (IsPostcodeLookup IN ('Y','N')); - --- Insert Element Definitions - -INSERT INTO ad_element VALUES (51000, 0, 0, 'Y', '2007-06-19 22:43:07', 100, '2007-06-19 23:09:22', 100, 'IsPostcodeLookup', 'D', 'IsPostcodeLookup', 'IsPostcodeLookup', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO ad_element VALUES (51001, 0, 0, 'Y', '2007-06-19 22:43:07', 100, '2007-06-19 23:09:54', 100, 'LookupClassName', 'D', 'LookupClassName', 'LookupClassName', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO ad_element VALUES (51002, 0, 0, 'Y', '2007-06-19 22:43:07', 100, '2007-06-19 23:10:06', 100, 'LookupClientID', 'D', 'LookupClientID', 'LookupClientID', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO ad_element VALUES (51003, 0, 0, 'Y', '2007-06-19 22:43:07', 100, '2007-06-19 23:10:19', 100, 'LookupUrl', 'D', 'LookupUrl', 'LookupUrl', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO ad_element VALUES (51004, 0, 0, 'Y', '2007-06-22 02:03:37', 100, '2007-06-22 02:04:31', 100, 'LookupPassword', 'D', 'LookupPassword', 'LookupPassword', NULL, NULL, NULL, NULL, NULL, NULL); - --- Insert Column Definitions -INSERT INTO ad_column VALUES (51000, 0, 0, 'Y', '2007-06-19 22:43:07', '2007-06-19 23:14:47', 100, 100, 'IsPostcodeLookup', NULL, NULL, 0, 'D', 'IsPostcodeLookup', 170, 20, NULL, NULL, 1, 'N', 'N', 'N', 'N', 'Y', NULL, 'N', NULL, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 51000, NULL, 'N', 'N', NULL, NULL); -INSERT INTO ad_column VALUES (51001, 0, 0, 'Y', '2007-06-19 22:43:07', '2007-06-19 23:04:48', 100, 100, 'LookupClassName', NULL, NULL, 0, 'D', 'LookupClassName', 170, 10, NULL, NULL, 255, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', NULL, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 51001, NULL, 'N', 'N', NULL, NULL); -INSERT INTO ad_column VALUES (51002, 0, 0, 'Y', '2007-06-19 22:43:07', '2007-06-19 23:04:48', 100, 100, 'LookupClientID', NULL, NULL, 0, 'D', 'LookupClientID', 170, 10, NULL, NULL, 50, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', NULL, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 51002, NULL, 'N', 'N', NULL, NULL); -INSERT INTO ad_column VALUES (51003, 0, 0, 'Y', '2007-06-19 22:43:07', '2007-06-19 23:04:48', 100, 100, 'LookupUrl', NULL, NULL, 0, 'D', 'LookupUrl', 170, 10, NULL, NULL, 100, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', NULL, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 51003, NULL, 'N', 'N', NULL, NULL); -INSERT INTO ad_column VALUES (51004, 0, 0, 'Y', '2007-06-22 02:03:37', '2007-06-22 02:05:17', 100, 100, 'LookupPassword', NULL, NULL, 0, 'D', 'LookupPassword', 170, 10, NULL, NULL, 50, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', NULL, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 51004, NULL, 'N', 'N', NULL, NULL); - --- Insert Field Definitions -INSERT INTO ad_field VALUES (51000, 0, 0, 'Y', '2007-06-19 23:17:05', 100, '2007-06-19 23:17:05', 100, 'IsPostcodeLookup', NULL, NULL, 'Y', 135, 51000, NULL, 'Y', NULL, 1, 'N', 220, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO ad_field VALUES (51001, 0, 0, 'Y', '2007-06-19 23:17:06', 100, '2007-06-20 09:10:31', 100, 'LookupClassName', NULL, NULL, 'Y', 135, 51001, NULL, 'Y', '@IsPostcodeLookup@ = ''Y''', 255, 'N', 260, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO ad_field VALUES (51002, 0, 0, 'Y', '2007-06-19 23:17:06', 100, '2007-06-20 09:10:17', 100, 'LookupClientID', NULL, NULL, 'Y', 135, 51002, NULL, 'Y', '@IsPostcodeLookup@ = ''Y''', 50, 'N', 240, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO ad_field VALUES (51003, 0, 0, 'Y', '2007-06-19 23:17:06', 100, '2007-06-20 09:10:12', 100, 'LookupUrl', NULL, NULL, 'Y', 135, 51003, NULL, 'Y', '@IsPostcodeLookup@ = ''Y''', 100, 'N', 230, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO ad_field VALUES (51004, 0, 0, 'Y', '2007-06-19 23:17:06', 100, '2007-06-22 02:07:11', 100, 'LookupPassword', NULL, NULL, 'Y', 135, 51004, NULL, 'Y', '@IsPostcodeLookup@ = ''Y''', 50, 'N', 250, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); - --- Update Sequences -UPDATE ad_sequence - SET currentnextsys = (SELECT MAX (ad_element_id) + 1 - FROM ad_element - WHERE ad_element_id < 1000000) - WHERE NAME = 'AD_Element'; - -UPDATE ad_sequence - SET currentnextsys = (SELECT MAX (ad_column_id) + 1 - FROM ad_column - WHERE ad_column_id < 1000000) - WHERE NAME = 'AD_Column'; - -UPDATE ad_sequence - SET currentnextsys = (SELECT MAX (ad_field_id) + 1 - FROM ad_field - WHERE ad_field_id < 1000000) - WHERE NAME = 'AD_Field'; - - -SELECT '015_postcode_lookup2.sql' AS Filename; - ---- --- FEATURE: 1741222 - Add Post code lookup infrastructure --- http://sourceforge.net/tracker/index.php?func=detail&aid=1741222&group_id=176962&atid=879335 --- Update additional fields per Carlos request - --- Update Element Definitions -UPDATE ad_element SET description = 'Does this country have a post code web service', help = 'Enable the IsPostcodeLookup if you wish to configure a post code lookup web service' WHERE ad_element_id = 51000; -UPDATE ad_element SET description = 'The class name of the postcode lookup plugin', help = 'Enter the class name of the post code lookup plugin for your postcode web service provider' WHERE ad_element_id = 51001; -UPDATE ad_element SET description = 'The ClientID or Login submitted to the Lookup URL', help ='Enter the ClientID or Login for your account provided by the post code web service provider' WHERE ad_element_id = 51002; -UPDATE ad_element SET description = 'The password submitted to the Lookup URL', help = 'Enter the password for your account provided by the post code web service provider' WHERE ad_element_id = 51004; -UPDATE ad_element SET description = 'The URL of the web service that the plugin connects to in order to retrieve postcode data', help = 'Enter the URL of the web service that the plugin connects to in order to retrieve postcode data' WHERE ad_element_id = 51003; - --- Update Column Definitions -UPDATE ad_column SET description = 'Does this country have a post code web service', help = 'Enable the IsPostcodeLookup if you wish to configure a post code lookup web service' WHERE ad_column_id = 51000; -UPDATE ad_column SET description = 'The class name of the postcode lookup plugin', help = 'Enter the class name of the post code lookup plugin for your postcode web service provider' WHERE ad_column_id = 51001; -UPDATE ad_column SET description = 'The ClientID or Login submitted to the Lookup URL', help = 'Enter the ClientID or Login for your account provided by the post code web service provider' WHERE ad_column_id = 51002; -UPDATE ad_column SET description = 'The password submitted to the Lookup URL', help = 'Enter the password for your account provided by the post code web service provider' WHERE ad_column_id = 51004; -UPDATE ad_column SET description = 'The URL of the web service that the plugin connects to in order to retrieve postcode data', help = 'Enter the URL of the web service that the plugin connects to in order to retrieve postcode data' WHERE ad_column_id = 51003; - --- Update Field Definitions -UPDATE ad_field SET seqno = 225 WHERE ad_field_id = 51000; - - - -SELECT '016_new_dashboard.sql' AS Filename; --- create new table - -CREATE TABLE PA_DASHBOARDCONTENT -( - pa_dashboardcontent_id NUMERIC(10) NOT NULL, - ad_client_id NUMERIC(10) NOT NULL, - ad_org_id NUMERIC(10) NOT NULL, - created TIMESTAMP NOT NULL, - createdby NUMERIC(10) NOT NULL, - updated TIMESTAMP NOT NULL, - updatedby NUMERIC(10) NOT NULL, - isactive CHAR(1) NOT NULL, - NAME VARCHAR(120) NOT NULL, - ad_window_id NUMERIC(10), - description VARCHAR(255), - html TEXT, - line NUMERIC, - pa_goal_id NUMERIC(10), - CHECK (isactive IN ('Y','N')), - CONSTRAINT pa_dashboardcontent_key - PRIMARY KEY - (pa_dashboardcontent_id) -); - --- dictionary additions - --- new table - -INSERT INTO AD_TABLE - (ad_table_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, tablename, isview, accesslevel, entitytype, - issecurityenabled, isdeleteable, ishighvolume, importtable, - ischangelog, replicationtype - ) - VALUES (50010, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:22:49', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:22:49', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Dashboard Content', 'PA_DashboardContent', 'N', '1', 'D', - 'N', 'Y', 'N', 'N', - 'N', 'L' - ); - --- new sequence - -INSERT INTO AD_SEQUENCE - (ad_sequence_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, isautosequence, incrementno, - startno, currentnext, currentnextsys, isaudited, istableid, - startnewyear - ) - VALUES (50015, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:22:49', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:22:49', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'PA_DashboardContent', 'Table PA_DashboardContent', 'Y', 1, - 1000000, 1000000, 50000, 'N', 'Y', - 'N' - ); - --- new elements - -INSERT INTO AD_ELEMENT - (ad_element_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - columnname, entitytype, NAME, printname - ) - VALUES (51005, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:01', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:01', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'HTML', 'D', 'HTML', 'HTML' - ); - -INSERT INTO AD_ELEMENT - (ad_element_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - columnname, entitytype, NAME, - printname - ) - VALUES (51006, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:07', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:07', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'PA_DashboardContent_ID', 'D', 'PA_DashboardContent_ID', - 'PA_DashboardContent_ID' - ); - --- new columns - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, - VERSION, entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, seqno, istranslated, isencrypted, - isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (51005, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:22:51', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/09/2007 14:22:51', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Name', 'Alphanumeric identifier of the entity', - 'The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.', - 0, 'D', 'Name', 50010, 10, - 120, 'N', 'N', 'Y', 'Y', - 'Y', 1, 'N', 'N', - 'N', 469, 'Y', - 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, - VERSION, entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, istranslated, isencrypted, isselectioncolumn, - ad_element_id, issyncdatabase, isalwaysupdateable - ) - VALUES (51006, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:22:53', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/09/2007 14:22:53', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Organization', 'Organizational entity within client', - 'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.', - 0, 'D', 'AD_Org_ID', 50010, 19, - 10, 'N', 'N', 'Y', 'N', - 'N', 'N', 'N', 'N', - 113, 'Y', 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, VERSION, - entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, istranslated, isencrypted, isselectioncolumn, - ad_element_id, issyncdatabase, isalwaysupdateable - ) - VALUES (51007, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:22:54', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/09/2007 14:22:54', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Window', 'Data entry or display window', - 'The Window field identifies a unique Window in the system.', 0, - 'D', 'AD_Window_ID', 50010, 19, - 22, 'N', 'N', 'N', 'Y', - 'N', 'N', 'N', 'N', - 143, 'Y', 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, - VERSION, entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, istranslated, isencrypted, isselectioncolumn, - ad_element_id, issyncdatabase, isalwaysupdateable - ) - VALUES (51008, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:22:55', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/09/2007 14:22:55', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Created', 'Date this record was created', - 'The Created field indicates the date that this record was created.', - 0, 'D', 'Created', 50010, 16, - 7, 'N', 'N', 'Y', 'N', - 'N', 'N', 'N', 'N', - 245, 'Y', 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, - VERSION, entitytype, columnname, ad_table_id, ad_reference_id, - ad_reference_value_id, fieldlength, iskey, isparent, - ismandatory, isupdateable, isidentifier, istranslated, - isencrypted, isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (51009, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:22:57', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/09/2007 14:22:57', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Created By', 'User who created this records', - 'The Created By field indicates the user who created this record.', - 0, 'D', 'CreatedBy', 50010, 18, - 110, 10, 'N', 'N', - 'Y', 'N', 'N', 'N', - 'N', 'N', 246, 'Y', - 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, VERSION, entitytype, - columnname, ad_table_id, ad_reference_id, fieldlength, iskey, - isparent, ismandatory, isupdateable, isidentifier, istranslated, - isencrypted, isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (51010, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:22:59', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/09/2007 14:22:59', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Description', 'Optional short description of the record', - 'A description is limited to 255 characters.', 0, 'D', - 'Description', 50010, 10, 255, 'N', - 'N', 'N', 'Y', 'N', 'N', - 'N', 'N', 275, 'Y', - 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, - VERSION, entitytype, columnname, ad_table_id, ad_reference_id, - ad_reference_value_id, fieldlength, iskey, isparent, - ismandatory, isupdateable, isidentifier, istranslated, - isencrypted, isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (51011, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:00', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/09/2007 14:23:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Updated By', 'User who updated this records', - 'The Updated By field indicates the user who updated this record.', - 0, 'D', 'UpdatedBy', 50010, 18, - 110, 10, 'N', 'N', - 'Y', 'N', 'N', 'N', - 'N', 'N', 608, 'Y', - 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, VERSION, entitytype, columnname, ad_table_id, - ad_reference_id, iskey, isparent, ismandatory, isupdateable, - isidentifier, istranslated, isencrypted, isselectioncolumn, - ad_element_id, issyncdatabase, isalwaysupdateable - ) - VALUES (51012, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:01', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/09/2007 14:23:01', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'HTML', 0, 'D', 'HTML', 50010, - 36, 'N', 'N', 'N', 'Y', - 'N', 'N', 'N', 'N', - 51005, 'Y', 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, - VERSION, entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, istranslated, isencrypted, isselectioncolumn, - ad_element_id, issyncdatabase, isalwaysupdateable - ) - VALUES (51013, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:03', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/09/2007 14:23:03', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Active', 'The record is active in the system', - 'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.', - 0, 'D', 'IsActive', 50010, 20, - 1, 'N', 'N', 'Y', 'Y', - 'N', 'N', 'N', 'N', - 348, 'Y', 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, - VERSION, entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, istranslated, isencrypted, isselectioncolumn, - ad_element_id, issyncdatabase, isalwaysupdateable - ) - VALUES (51014, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:04', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/09/2007 14:23:04', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Line No', 'Unique line for this document', - 'Indicates the unique line for a document. It will also control the display order of the lines within a document.', - 0, 'D', 'Line', 50010, 22, - 22, 'N', 'N', 'N', 'Y', - 'N', 'N', 'N', 'N', - 439, 'Y', 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, - VERSION, entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, istranslated, isencrypted, isselectioncolumn, - ad_element_id, issyncdatabase, isalwaysupdateable - ) - VALUES (51015, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:05', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/09/2007 14:23:05', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Goal', 'Performance Goal', - 'The Performance Goal indicates what this users performance will be measured against.', - 0, 'D', 'PA_Goal_ID', 50010, 19, - 22, 'N', 'N', 'N', 'Y', - 'N', 'N', 'N', 'N', - 1594, 'Y', 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, - VERSION, entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, istranslated, isencrypted, isselectioncolumn, - ad_element_id, issyncdatabase, isalwaysupdateable - ) - VALUES (51016, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:06', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/09/2007 14:23:06', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Updated', 'Date this record was updated', - 'The Updated field indicates the date that this record was updated.', - 0, 'D', 'Updated', 50010, 16, - 7, 'N', 'N', 'Y', 'N', - 'N', 'N', 'N', 'N', - 607, 'Y', 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, - VERSION, entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, istranslated, isencrypted, isselectioncolumn, - ad_element_id, issyncdatabase, isalwaysupdateable - ) - VALUES (51017, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:07', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/09/2007 14:23:07', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Client', 'Client/Tenant for this installation.', - 'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.', - 0, 'D', 'AD_Client_ID', 50010, 19, - 10, 'N', 'N', 'Y', 'N', - 'N', 'N', 'N', 'N', - 102, 'Y', 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, VERSION, entitytype, columnname, - ad_table_id, ad_reference_id, fieldlength, iskey, isparent, - ismandatory, isupdateable, isidentifier, istranslated, - isencrypted, isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (51018, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:07', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/09/2007 14:23:07', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'PA_DashboardContent_ID', 0, 'D', 'PA_DashboardContent_ID', - 50010, 13, 10, 'Y', 'N', - 'Y', 'N', 'N', 'N', - 'N', 'N', 51006, 'Y', - 'N' - ); - --- new window - -INSERT INTO AD_WINDOW - (ad_window_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, windowtype, issotrx, entitytype, processing, isdefault, - isbetafunctionality - ) - VALUES (50007, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:08', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:12', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Dashboard Content Edit', 'M', 'Y', 'D', 'N', 'N', - 'N' - ); - --- new menu - -INSERT INTO AD_MENU - (ad_menu_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, - NAME, updatedby, issummary, issotrx, isreadonly, action, - ad_window_id, entitytype - ) - VALUES (50010, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:30', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:30', 'MM/DD/YYYY HH24:MI:SS'), - 'Dashboard Content Edit', 100, 'N', 'N', 'N', 'W', - 50007, 'D' - ); - --- new menu in tree - -INSERT INTO AD_TREENODEMM - (ad_tree_id, node_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - parent_id, seqno - ) - VALUES (10, 50010, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:35', 'MM/DD/YYYY HH24:MI:SS'), 0, - TO_DATE ('07/09/2007 14:23:35', 'MM/DD/YYYY HH24:MI:SS'), 0, - 175, 0 - ); - --- access to new window - -INSERT INTO AD_WINDOW_ACCESS - (ad_window_id, ad_role_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - isreadwrite - ) - VALUES (50007, 0, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:08', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:08', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Y' - ); - -INSERT INTO AD_WINDOW_ACCESS - (ad_window_id, ad_role_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - isreadwrite - ) - VALUES (50007, 102, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:08', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:08', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Y' - ); - -INSERT INTO AD_WINDOW_ACCESS - (ad_window_id, ad_role_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - isreadwrite - ) - VALUES (50007, 103, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:08', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:08', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Y' - ); - -INSERT INTO AD_WINDOW_ACCESS - (ad_window_id, ad_role_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - isreadwrite - ) - VALUES (50007, 50001, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:08', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:08', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Y' - ); - --- new tab - -INSERT INTO AD_TAB - (ad_tab_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, ad_table_id, ad_window_id, seqno, tablevel, issinglerow, - isinfotab, istranslationtab, isreadonly, hastree, processing, - issorttab, entitytype, isinsertrecord, isadvancedtab - ) - VALUES (50010, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:08', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:15', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Edit', 50010, 50007, 10, 0, 'Y', - 'N', 'N', 'N', 'N', 'N', - 'N', 'D', 'Y', 'N' - ); - --- new fields - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - HELP, - iscentrallymaintained, ad_tab_id, ad_column_id, isdisplayed, - displaylength, isreadonly, seqno, sortno, issameline, isheading, - isfieldonly, isencrypted, entitytype - ) - VALUES (51005, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:09', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:17', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Client', 'Client/Tenant for this installation.', - 'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.', - 'Y', 50010, 51017, 'Y', - 10, 'N', 10, 0, 'N', 'N', - 'N', 'N', 'D' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - HELP, - iscentrallymaintained, ad_tab_id, ad_column_id, isdisplayed, - displaylength, isreadonly, seqno, sortno, issameline, isheading, - isfieldonly, isencrypted, entitytype - ) - VALUES (51006, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:10', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:18', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Organization', 'Organizational entity within client', - 'An organization is a unit of your client or legal entity - examples are store department. You can share data between organizations.', - 'Y', 50010, 51006, 'Y', - 10, 'N', 20, 0, 'Y', 'N', - 'N', 'N', 'D' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - HELP, - iscentrallymaintained, ad_tab_id, ad_column_id, isdisplayed, - displaylength, isreadonly, seqno, sortno, issameline, isheading, - isfieldonly, isencrypted, entitytype - ) - VALUES (51007, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:10', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:20', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Name', 'Alphanumeric identifier of the entity', - 'The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.', - 'Y', 50010, 51005, 'Y', - 120, 'N', 30, 0, 'N', 'N', - 'N', 'N', 'D' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - HELP, - iscentrallymaintained, ad_tab_id, ad_column_id, isdisplayed, - displaylength, isreadonly, seqno, sortno, issameline, isheading, - isfieldonly, isencrypted, entitytype - ) - VALUES (51008, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:10', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:22', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Active', 'The record is active in the system', - 'There are two methods of making records unavailable in the system: One is to delete the record the other is to de-activate the record. A de-activated record is not available for selection but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g. you cannot DELETE a Business Partner IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.', - 'Y', 50010, 51013, 'Y', - 1, 'N', 40, 0, 'N', 'N', - 'N', 'N', 'D' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - HELP, - iscentrallymaintained, ad_tab_id, ad_column_id, isdisplayed, - displaylength, isreadonly, seqno, sortno, issameline, isheading, - isfieldonly, isencrypted, entitytype - ) - VALUES (51009, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:10', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:23', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Line No', 'Unique line for this document', - 'Indicates the unique line for a document. It will also control the display order of the lines within a document.', - 'Y', 50010, 51014, 'Y', - 22, 'N', 50, 0, 'Y', 'N', - 'N', 'N', 'D' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - HELP, iscentrallymaintained, ad_tab_id, - ad_column_id, isdisplayed, displaylength, isreadonly, seqno, - sortno, issameline, isheading, isfieldonly, isencrypted, - entitytype - ) - VALUES (51010, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:11', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:24', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Description', 'Optional short description of the record', - 'A description is limited to 255 characters.', 'Y', 50010, - 51010, 'Y', 255, 'N', 60, - 0, 'N', 'N', 'N', 'N', - 'D' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, iscentrallymaintained, ad_tab_id, ad_column_id, - isdisplayed, displaylength, isreadonly, seqno, sortno, - issameline, isheading, isfieldonly, isencrypted, entitytype - ) - VALUES (51011, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:11', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:26', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'HTML', 'Y', 50010, 51012, - 'Y', 0, 'N', 70, 0, - 'N', 'N', 'N', 'N', 'D' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - HELP, - iscentrallymaintained, ad_tab_id, ad_column_id, isdisplayed, - displaylength, isreadonly, seqno, sortno, issameline, isheading, - isfieldonly, isencrypted, entitytype - ) - VALUES (51012, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:11', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:27', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Goal', 'Performance Goal', - 'The Performance Goal indicates what this users performance will be measured against.', - 'Y', 50010, 51015, 'Y', - 22, 'N', 80, 0, 'N', 'N', - 'N', 'N', 'D' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - HELP, - iscentrallymaintained, ad_tab_id, ad_column_id, isdisplayed, - displaylength, isreadonly, seqno, sortno, issameline, isheading, - isfieldonly, isencrypted, entitytype - ) - VALUES (51013, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:11', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:29', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Window', 'Data entry or display window', - 'The Window field identifies a unique Window in the system.', - 'Y', 50010, 51007, 'Y', - 22, 'N', 90, 0, 'Y', 'N', - 'N', 'N', 'D' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, iscentrallymaintained, ad_tab_id, ad_column_id, - isdisplayed, displaylength, isreadonly, seqno, sortno, - issameline, isheading, isfieldonly, isencrypted, entitytype - ) - VALUES (51014, 0, 0, 'Y', - TO_DATE ('07/09/2007 14:23:11', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/09/2007 14:23:30', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Dashboard Content', 'Y', 50010, 51018, - 'N', 10, 'N', 0, 0, - 'N', 'N', 'N', 'N', 'D' - ); - --- assign window to new table - -UPDATE AD_TABLE - SET ad_window_id = 50007 - WHERE ad_table_id = 50010; - - --- NOTE: Don't forget to run the three processes: --- 1 - Add missing translations --- 2 - Synchronize terminology --- 3 - Check sequences - - -SELECT '017_update_non_encrypted.sql' AS Filename; --- Please review before apply --- if you have any of this columns REALLY encrypted you must not apply this patch: --- AD_USER.EMailUserPW --- AD_USER.Password --- C_PAYMENTPROCESSOR.Password --- C_PAYMENTPROCESSOR.ProxyPassword - --- defining columns non encrypted by default as discussed here --- [ 1722235 ] ENCRYPTION FOR PASSWORD wrongly MANAGED --- https://sourceforge.net/tracker/?func=detail&atid=879332&aid=1722235&group_id=176962 - -UPDATE AD_COLUMN - SET isencrypted = 'N', - updated = TO_DATE ('07/10/2007 00:00:01', 'MM/DD/YYYY HH24:MI:SS') - WHERE ad_column_id IN (417, 5059, 5065, 7794); - - -SELECT '018_version330.sql' AS Filename; -UPDATE AD_SYSTEM - SET releaseno = '330', - VERSION = '2007-07-13' - WHERE ad_system_id = 0 AND ad_client_id = 0; - - - -SELECT '019_RMA_dml.sql' AS Filename; --- Element change - -INSERT INTO AD_ELEMENT - (AD_ELEMENT_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY,COLUMNNAME, ENTITYTYPE, NAME, PRINTNAME, DESCRIPTION, HELP, PO_NAME, PO_PRINTNAME, PO_DESCRIPTION, PO_HELP) -VALUES - (52000,0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'InOut_ID', 'D', 'Shipment/Receipt', 'Shipment/Receipt', 'MaterialShipment Document', 'The Material Shipment / Receipt ', 'Receipt', 'Receipt', 'Material Receipt Document', 'The Material Shipment / Receipt '); - - --- Rule - -INSERT INTO AD_VAL_RULE - (AD_VAL_RULE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, TYPE, CODE, ENTITYTYPE) -VALUES - (52000, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'M_InOutShipment/Receipt', NULL, 'S', 'M_InOut.MovementType IN (''C-'', ''V+'') AND M_InOut.DocStatus IN (''CO'', ''CL'')', 'D'); - -INSERT INTO AD_VAL_RULE - (AD_VAL_RULE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, TYPE, CODE, ENTITYTYPE) -VALUES - (52001, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'M_InOutShipment/Receipt (RMA)', NULL, 'S', 'M_InOutLine.M_InOut_ID=@InOut_ID@', 'D'); - - --- Processes - -INSERT INTO AD_PROCESS - (AD_PROCESS_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, VALUE, NAME, DESCRIPTION, HELP, ACCESSLEVEL, ENTITYTYPE, PROCEDURENAME, ISREPORT, ISDIRECTPRINT, AD_REPORTVIEW_ID, CLASSNAME, STATISTIC_COUNT,STATISTIC_SECONDS, AD_PRINTFORMAT_ID, WORKFLOWVALUE, AD_WORKFLOW_ID, ISBETAFUNCTIONALITY, ISSERVERPROCESS, SHOWHELP, JASPERREPORT) -VALUES - (52000, 0,0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'M_RMA_CreateOrder', 'Create Order From RMA', 'Creates an order based on this RMA Document. The RMA should be correct and completed.', 'Generate Order from RMA will create an order based on this RMA document.', '3', 'D', NULL, 'N', 'N', NULL, 'org.adempiere.process.RMACreateOrder', 0, 0, NULL, NULL, NULL, 'N', 'N', 'Y', NULL); - -INSERT INTO AD_PROCESS_ACCESS - (AD_PROCESS_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) -VALUES - (52000, 0, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Y'); - -INSERT INTO AD_PROCESS_ACCESS - (AD_PROCESS_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) -VALUES - (52000, 102, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Y'); - -INSERT INTO AD_PROCESS_ACCESS - (AD_PROCESS_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) -VALUES - (52000, 103, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Y'); - -INSERT INTO AD_PROCESS - (AD_PROCESS_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, VALUE, NAME, DESCRIPTION, HELP, ACCESSLEVEL, ENTITYTYPE, PROCEDURENAME, ISREPORT, ISDIRECTPRINT, AD_REPORTVIEW_ID, CLASSNAME, STATISTIC_COUNT,STATISTIC_SECONDS, AD_PRINTFORMAT_ID, WORKFLOWVALUE, AD_WORKFLOW_ID, ISBETAFUNCTIONALITY, ISSERVERPROCESS, SHOWHELP, JASPERREPORT) -VALUES - (52001, 0,0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'M_InOut_GenerateRMA (Manual)', 'Generate Shipments for Vendor RMA', 'Generate Shipments from open vendor RMA based on selection.', NULL, '3', 'D', NULL, 'N', 'N', NULL, 'org.adempiere.process.InOutGenerateRMA', 0, 0, NULL, NULL, NULL, 'N', 'N', 'Y', NULL); - -INSERT INTO AD_PROCESS_ACCESS - (AD_PROCESS_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) -VALUES - (52001, 0, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Y'); - -INSERT INTO AD_PROCESS_ACCESS - (AD_PROCESS_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) -VALUES - (52001, 102, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Y'); - -INSERT INTO AD_PROCESS_ACCESS - (AD_PROCESS_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) -VALUES - (52001, 103, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Y'); - - -INSERT INTO AD_PROCESS - (AD_PROCESS_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, VALUE, NAME, DESCRIPTION, HELP, ACCESSLEVEL, ENTITYTYPE, PROCEDURENAME, ISREPORT, ISDIRECTPRINT, AD_REPORTVIEW_ID, CLASSNAME, STATISTIC_COUNT,STATISTIC_SECONDS, AD_PRINTFORMAT_ID, WORKFLOWVALUE, AD_WORKFLOW_ID, ISBETAFUNCTIONALITY, ISSERVERPROCESS, SHOWHELP, JASPERREPORT) -VALUES - (52002, 0,0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'C_Invoice_GenerateRMA (Manual)', 'Generate Invoices for Vendor RMA', 'Generate Invoices from open vendor RMA based on selection.', NULL, '3', 'D', NULL, 'N', 'N', NULL, 'org.adempiere.process.InvoiceGenerateRMA', 0, 0, NULL, NULL, NULL, 'N', 'N', 'Y', NULL); - -INSERT INTO AD_PROCESS_ACCESS - (AD_PROCESS_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) -VALUES - (52002, 0, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Y'); - -INSERT INTO AD_PROCESS_ACCESS - (AD_PROCESS_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) -VALUES - (52002, 102, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Y'); - -INSERT INTO AD_PROCESS_ACCESS - (AD_PROCESS_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) -VALUES - (52002, 103, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Y'); - - --- Column Addition - -INSERT INTO AD_COLUMN - (AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, ISALWAYSUPDATEABLE, COLUMNSQL) -VALUES - (52000, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 100, 'Sales Transaction', 'This is a Sales Transaction', 'The Sales Transaction checkbox indicates if this item is a Sales Transaction.', 1, 'D', 'IsSOTrx', 661, 20, NULL, NULL, 1, '@IsSOTrx@', 'N', 'N', 'Y', 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 1106, NULL, 'N', 'N', NULL); - -INSERT INTO AD_COLUMN - (AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, ISALWAYSUPDATEABLE, COLUMNSQL) -VALUES - (52001, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 100, 'Amount', 'Amount', 'Amount', 1, 'D', 'Amt', 660, 12, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'Y', '@M_InOutLine_ID@!0', 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 160, NULL, 'N', 'N', NULL); - - -INSERT INTO AD_COLUMN - (AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, ISALWAYSUPDATEABLE, COLUMNSQL) -VALUES - (52002, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 100, 'Charge', 'Additional document charges', 'The Charge indicates a type of Charge (Handling, Shipping, Restocking)', 1, 'D', 'C_Charge_ID', 660, 19, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 968, NULL, 'N', 'N', NULL); - -INSERT INTO AD_COLUMN - (AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, ISALWAYSUPDATEABLE, COLUMNSQL) -VALUES - (52003, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 100, 'Line Amount', 'Line Extended Amount (Quantity * Actual Price) without Freight and Charges','Indicates the extended line amount based on the quantity and the actual price. Any additional charges or freight are not included. The Amount may or may not include tax. If the price list is inclusive tax, the line amount is the same as the line total.', 1, 'D', 'LineNetAmt', 660, 12, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 441, NULL, 'N', 'N', NULL); - -INSERT INTO AD_COLUMN - (AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, ISALWAYSUPDATEABLE, COLUMNSQL) -VALUES - (52004, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 100, 'Line No', 'Unique line for this document', 'Indicates the unique line for a document. It will also control the display order of the lines within a document.', 1, 'D', 'Line', 660, 11, NULL, NULL, 22, '@SQL=SELECT NVL(MAX(Line),0)+10 AS DefaultValue FROM M_RMALine WHERE M_RMA_ID=@M_RMA_ID@', 'N', 'N', 'N', 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 439, NULL, 'N', 'N', NULL); - -INSERT INTO AD_COLUMN - (AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, ISALWAYSUPDATEABLE, COLUMNSQL) -VALUES - (52005, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 100, 'Delivered Quantity', 'Delivered Quantity', 'The Delivered Quantity indicates the quantity of a product that has been delivered.', 1, 'D', 'QtyDelivered', 660, 29, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 528, NULL, 'N', 'N', NULL); - -INSERT INTO AD_COLUMN - (AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, ISALWAYSUPDATEABLE, COLUMNSQL) -VALUES - (52006, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 100, 'Generate To', 'Generate To', NULL, 0, 'D', 'GenerateTo', 661, 28, NULL, NULL, 1, NULL, 'N','N', 'N', 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 1491, 52000, 'N', 'N', NULL); - -INSERT INTO AD_COLUMN - (AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, ISALWAYSUPDATEABLE, COLUMNSQL) -VALUES - (52007, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 100, 'RMA', 'Return Material Authorization', 'A Return Material Authorization may be required to accept returns and to create Credit Memos', 1, 'D', 'M_RMA_ID', 318, 19, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 2412, NULL, 'N', 'N', NULL); - -INSERT INTO AD_COLUMN - (AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, ISALWAYSUPDATEABLE, COLUMNSQL) -VALUES - (52008, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 100, 'RMA Line', 'Return Material Authorization Line', 'Detail information about the returned goods', 1, 'D', 'M_RMALine_ID', 333, 19, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 2413, NULL, 'N', 'N', NULL); - -INSERT INTO AD_COLUMN - (AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, ISALWAYSUPDATEABLE, COLUMNSQL) -VALUES - (52009, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 100, 'RMA', 'Return Material Authorization', 'A Return Material Authorization may be required to accept returns and to create Credit Memos', 1, 'D', 'M_RMA_ID', 319, 19, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 2412, NULL, 'N', 'N', NULL); - -INSERT INTO AD_COLUMN - (AD_COLUMN_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, UPDATED, CREATEDBY, UPDATEDBY, NAME, DESCRIPTION, HELP, VERSION, ENTITYTYPE, COLUMNNAME, AD_TABLE_ID, AD_REFERENCE_ID, AD_REFERENCE_VALUE_ID, AD_VAL_RULE_ID, FIELDLENGTH, DEFAULTVALUE, ISKEY, ISPARENT, ISMANDATORY, ISUPDATEABLE, READONLYLOGIC, ISIDENTIFIER, SEQNO, ISTRANSLATED, ISENCRYPTED, CALLOUT, VFORMAT, VALUEMIN, VALUEMAX, ISSELECTIONCOLUMN, AD_ELEMENT_ID, AD_PROCESS_ID, ISSYNCDATABASE, ISALWAYSUPDATEABLE, COLUMNSQL) -VALUES - (52010, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 100, 'RMA Line', 'Return Material Authorization Line', 'Detail information about the returned goods', 0, 'D', 'M_RMALine_ID', 320, 19, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 2413, NULL, 'N', 'N', NULL); - - --- Field addition - -INSERT INTO AD_FIELD - (AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) -VALUES - (52000, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Create Order From RMA', 'Creates an order based on the RMA document', NULL, 'Y', 628, 52006, NULL, 'Y', '@Processed@=''Y'' & @C_Order_ID@=0 & @DocStatus@=''CO''', 1, 'N', 160, NULL, 'Y', 'N', 'N', 'N', 'D', NULL, NULL, NULL); - -INSERT INTO AD_FIELD - (AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) -VALUES - (52001, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Amount', 'Amount', 'Amount', 'Y', 629, 52001, NULL, 'Y', NULL, 22, 'N', 100, NULL, 'Y', 'N', 'N', 'N', 'D', NULL, NULL, NULL); - -INSERT INTO AD_FIELD - (AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) -VALUES - (52002, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Charge', 'Additional document charges', 'The Charge indicates a type of Charge (Handling, Shipping, Restocking)', 'Y', 629, 52002, NULL, 'Y', NULL, 22, 'N', 80, NULL, 'Y', 'N', 'N', 'N', 'D', NULL, NULL, NULL); - -INSERT INTO AD_FIELD - (AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) -VALUES - (52003, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Delivered Quantity', 'Delivered Quantity', 'The Delivered Quantity indicates the quantity of a product that has been delivered.', 'Y', 629, 52005, NULL, 'N', NULL, 22, 'N', 0, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); - -INSERT INTO AD_FIELD - (AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) -VALUES - (52004, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Line Amount', 'Line Extended Amount (Quantity * Actual Price) without Freight and Charges', 'Indicates the extended line amount based on the quantity and the actual price. Any additional charges or freight are not included. The Amount may or may not include tax. If the price list is inclusive tax, the line amount is the same as the line total.', 'Y', 629, 52003, NULL, 'Y', NULL, 22, 'Y', 110, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); - -INSERT INTO AD_FIELD - (AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) -VALUES - (52005, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Line No', 'Unique line for this document', 'Indicates the unique line for a document. It will also control the display order of the lines within a document.', 'Y', 629, 52004, NULL, 'Y', NULL, 22, 'N', 40, NULL, 'Y', 'N', 'N', 'N', 'D', NULL, NULL, NULL); - -INSERT INTO AD_FIELD(ad_field_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, help, iscentrallymaintained, ad_tab_id, ad_column_id, ad_fieldgroup_id, isdisplayed, displaylogic, displaylength, isreadonly, seqno, sortno, issameline, isheading, isfieldonly, isencrypted, entitytype, obscuretype, ad_reference_id, ismandatory) - VALUES(52007, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Sales Transaction', 'This is a Sales Transaction', 'The Sales Transaction checkbox indicates if this item is a Sales Transaction.', 'Y', 628, 52000, NULL, 'N', NULL, 1, 'N', NULL, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); - --- Update Field - -UPDATE AD_FIELD SET SeqNo=(SeqNo + 10) WHERE AD_Tab_ID=296 AND SeqNo > 40; - -INSERT INTO AD_FIELD -(ad_field_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, help, iscentrallymaintained, ad_tab_id, ad_column_id, ad_fieldgroup_id, isdisplayed, displaylogic, displaylength, isreadonly, seqno, sortno, issameline, isheading, isfieldonly, isencrypted, entitytype, obscuretype, ad_reference_id, ismandatory) - VALUES(52006, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'RMA', 'Return Material Authorization', 'A Return Material Authorization may be required to accept returns and to create Credit Memos', 'Y', 296, 52009, NULL, 'Y', '@M_RMA_ID@!0', 26, 'Y', 50, 0, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); - - --- Garden World RMA Fix - -INSERT INTO AD_SEQUENCE(ad_sequence_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, vformat, isautosequence, incrementno, startno, currentnext, currentnextsys, isaudited, istableid, prefix, suffix, startnewyear) - VALUES(52000, 11, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 0, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 0, 'Vendor Return Material', NULL, NULL, 'Y', 1, 990000, 990000, 900, 'N', 'N', NULL, NULL, 'N'); - -INSERT INTO AD_SEQUENCE(ad_sequence_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, vformat, isautosequence, incrementno, startno, currentnext, currentnextsys, isaudited, istableid, prefix, suffix, startnewyear) - VALUES(52001, 11, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 0, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 0, 'MM Vendor Return', 'MM Vendor Return', NULL, 'Y', 1, 590000, 590000, 59000, 'N', 'N', NULL, NULL, 'N'); - -INSERT INTO C_DOCTYPE(c_doctype_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, printname, description, docbasetype, issotrx, docsubtypeso, hasproforma, c_doctypeproforma_id, c_doctypeshipment_id, c_doctypeinvoice_id, isdocnocontrolled, docnosequence_id, gl_category_id, hascharges, documentnote, isdefault, documentcopies, ad_printformat_id, isdefaultcounterdoc, isshipconfirm, ispickqaconfirm, isintransit, issplitwhendifference, c_doctypedifference_id, iscreatecounter, isindexed) - VALUES(151, 11, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'MM Vendor Return', 'Vendor Return Material', NULL, 'MMS', 'Y', NULL, 'N', NULL, NULL, NULL, 'Y', 52001, 111, 'N', NULL, 'Y', 1, NULL, 'N', 'N', 'N', 'N', 'N', NULL, 'Y', 'Y'); - -INSERT INTO C_DOCTYPE(c_doctype_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, printname, description, docbasetype, issotrx, docsubtypeso, hasproforma, c_doctypeproforma_id, c_doctypeshipment_id, c_doctypeinvoice_id, isdocnocontrolled, docnosequence_id, gl_category_id, hascharges, documentnote, isdefault, documentcopies, ad_printformat_id, isdefaultcounterdoc, isshipconfirm, ispickqaconfirm, isintransit, issplitwhendifference, c_doctypedifference_id, iscreatecounter, isindexed) - VALUES(150, 11, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Vendor Return Material', 'Vendor Return Material Authorization', NULL, 'POO', 'N', 'RM', 'N', NULL, 151, 124, 'Y', 52000, 111, 'N', NULL, 'N', 1, NULL, 'N', 'N', 'N', 'N', 'N', NULL, 'Y', 'Y'); - --- Message Addition - -INSERT INTO AD_MESSAGE -(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52000, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'OrderOrRMA', 'Either Order or RMA can be process on this document.', NULL, 'E', 'D'); - -INSERT INTO AD_MESSAGE -(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52001, 0, 0, 'Y', TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE('07/05/2007 17:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'VendorRMA', 'Vendor RMA', NULL, 'I', 'D'); - --- Misc AD Updates - -UPDATE AD_COLUMN SET ColumnName='InOut_ID' WHERE AD_Column_ID=10842; - -UPDATE AD_COLUMN SET AD_Element_ID=52000 WHERE AD_Column_ID=10842; - -UPDATE AD_COLUMN SET AD_Reference_Value_ID=337 WHERE AD_Column_ID=10842; - -UPDATE AD_COLUMN SET AD_Val_Rule_ID=52000 WHERE AD_Column_ID=10842; - -UPDATE AD_TAB SET WhereClause='MovementType IN (''C+'', ''V+'')' WHERE AD_Tab_ID=296; - -UPDATE AD_TAB SET WhereClause='MovementType IN (''C-'', ''V-'')' WHERE AD_Tab_ID=257; - -UPDATE AD_COLUMN SET IsMandatory='N' WHERE AD_Column_ID=10829; - -UPDATE AD_COLUMN SET AD_Val_Rule_ID=52001 WHERE AD_Column_ID=10829; - -UPDATE AD_FIELD SET SeqNo=60, IsSameLine='N' WHERE AD_Field_ID=9310; - -UPDATE AD_FIELD SET SeqNo=20, IsSameLine='Y' WHERE AD_Field_ID=9311; - -UPDATE AD_FIELD SET SeqNo=70, IsSameLine='N' WHERE AD_Field_ID=9312; - -UPDATE AD_FIELD SET SeqNo=0, IsSameLine='N' WHERE AD_Field_ID=9313; - -UPDATE AD_FIELD SET SeqNo=30, IsSameLine='N' WHERE AD_Field_ID=9314; - -UPDATE AD_FIELD SET SeqNo=50, IsSameLine='N' WHERE AD_Field_ID=9315; - -UPDATE AD_FIELD SET SeqNo=90, IsSameLine='N' WHERE AD_Field_ID=9316; - -UPDATE AD_FIELD SET SeqNo=10, IsSameLine='N' WHERE AD_Field_ID=9317; - -UPDATE AD_FIELD SET SeqNo=0, IsSameLine='N' WHERE AD_Field_ID=10401; - -UPDATE AD_FIELD SET SeqNo=100, IsSameLine='Y' WHERE AD_Field_ID=52001; - -UPDATE AD_FIELD SET SeqNo=80, IsSameLine='Y' WHERE AD_Field_ID=52002; - -UPDATE AD_FIELD SET SeqNo=0, IsSameLine='N' WHERE AD_Field_ID=52003; - -UPDATE AD_FIELD SET SeqNo=110, IsSameLine='N' WHERE AD_Field_ID=52004; - -UPDATE AD_FIELD SET SeqNo=40, IsSameLine='Y' WHERE AD_Field_ID=52005; - -UPDATE AD_TAB SET IsSingleRow='Y' WHERE AD_Tab_ID=628; - -UPDATE AD_TAB SET IsSingleRow='Y' WHERE AD_Tab_ID=629; - -UPDATE C_DOCTYPE SET IsActive='Y' WHERE C_DocType_ID=149; - - -UPDATE AD_COLUMN SET Callout='org.adempiere.model.CalloutRMA.docType' WHERE AD_Column_ID=12118; - -UPDATE AD_COLUMN SET ReadOnlyLogic='@IsSOTrx@=''N''' WHERE AD_Column_ID=52006; - -UPDATE AD_FIELD SET DisplayLogic='@Processed@=''Y'' & @C_Order_ID@=0 & @DocStatus@=''CO'' & @IsSOTrx@=''Y''' -WHERE AD_Field_ID=52000; - -UPDATE AD_REF_TABLE SET WhereClause='C_DocType.DocBaseType IN (''SOO'', ''POO'') AND C_DocType.DocSubTypeSO=''RM'' AND C_DocType.AD_Client_ID=@#AD_Client_ID@' -WHERE AD_Reference_ID=321; - -UPDATE AD_VAL_RULE SET Code='M_InOutLine.M_InOut_ID=@InOut_ID@ AND NOT EXISTS (SELECT * FROM M_RMALine rl WHERE rl.M_InOutLine_ID=M_InOutLine.M_InOutLine_ID AND rl.M_RMA_ID=@M_RMA_ID@)' -WHERE AD_Val_Rule_ID=52001; - -UPDATE C_DOCTYPE SET NAME='MM Returns', IsSOTrx='N' WHERE C_DocType_ID=149; - - - - --- NOTE: Don't forget to run the three processes: --- 1 - Add missing translations --- 2 - Synchronize terminology --- 3 - Check sequences - -SELECT '020_RMA_Postgresql_ddl.sql' AS Filename; --- POSTGRESQL Changes - -ALTER TABLE C_Invoice ADD M_RMA_ID NUMERIC(10) DEFAULT NULL; - -ALTER TABLE C_InvoiceLine ADD M_RMALine_ID NUMERIC(10,0) DEFAULT NULL; - -ALTER TABLE M_InOut ADD M_RMA_ID NUMERIC(10,0) DEFAULT NULL; - -ALTER TABLE M_InOutLine ADD M_RMALine_ID NUMERIC(10,0) DEFAULT NULL; - -ALTER TABLE M_RMA ADD IsSOTrx CHAR(1) DEFAULT 'Y' CHECK (IsSOTrx IN ('Y', 'N')) NOT NULL; - -ALTER TABLE M_RMA RENAME M_InOut_ID TO InOut_ID; - -ALTER TABLE M_RMA ADD GenerateTo CHAR(1) DEFAULT NULL; - -ALTER TABLE M_RMALine ADD Amt NUMERIC; - -ALTER TABLE M_RMALine ADD C_Charge_ID NUMERIC(10,0); - -ALTER TABLE M_RMALine ADD Line NUMERIC(10,0) DEFAULT 0 NOT NULL; - -ALTER TABLE M_RMALine ADD LineNetAmt NUMERIC; - -ALTER TABLE M_RMALine ADD QtyDelivered NUMERIC; - -ALTER TABLE M_RMALine ALTER COLUMN M_InOutLine_ID DROP DEFAULT; - -ALTER TABLE M_RMALine ALTER COLUMN M_InOutLine_ID DROP NOT NULL; - - --- Constraints - -ALTER TABLE C_Invoice ADD CONSTRAINT mrma_cinvoice FOREIGN KEY (M_RMA_ID) REFERENCES M_RMA (M_RMA_ID); - -ALTER TABLE C_InvoiceLine ADD CONSTRAINT mrmaline_cinvoiceline FOREIGN KEY (M_RMALine_ID) REFERENCES M_RMALine (M_RMALine_ID); - -ALTER TABLE M_InOut ADD CONSTRAINT mrma_minout FOREIGN KEY (M_RMA_ID) REFERENCES M_RMA (M_RMA_ID); - -ALTER TABLE M_InOutLine ADD CONSTRAINT mrmaline_minoutline FOREIGN KEY (M_RMALine_ID) REFERENCES M_RMALine (M_RMALine_ID); - -SELECT '021_BF_1754751.sql' AS Filename; -UPDATE AD_WINDOW - SET windowtype = 'M' - WHERE ad_window_id = 319 AND windowtype = 'T'; - - -SELECT '022_BF_1746900.sql' AS Filename; --- Update help for "C_AcctSchema_Default_Copy" process - UPDATE AD_PROCESS - SET classname = 'org.compiere.process.AcctSchemaDefaultCopy', - help = 'Either add missing accounts - or copy and overwrite all default accounts. If you copy and overwrite the current default values, you may have to repeat previous updates (e.g. set the bank account asset accounts, ...). If no Accounting Schema is selected all Accounting Schemas will be updated / inserted.' - WHERE AD_Process_ID=108; - --- Update Accounting Schema parameter for "C_AcctSchema_Default_Copy" process -UPDATE AD_PROCESS_PARA - SET ismandatory = 'Y' - WHERE ad_process_para_id= 669; - --- Update help for "M_Product_Category_Acct_Copy" process -UPDATE AD_PROCESS - SET classname = 'org.compiere.process.ProductCategoryAcctCopy', - help = 'If you copy and overwrite the current default values, you may have to repeat previous updates (e.g. set the revenue account, ...). If no Accounting Schema is selected all Accounting Schemas will be updated / inserted for products of this category.' - WHERE AD_Process_ID=140; - --- Update help for "M_Product_Category_Acct_Copy" process (SPANISH translation) -UPDATE AD_PROCESS_TRL - SET help ='El proceso de copiar cuentas tomará las cuentas definidas para una categoría de producto y las copiará a cualquier producto que que haga referencia a esta categoría. Si una cuenta existe a nivel de producto sera sobreescrita. Si no selecciona un Esquema Contable serán actualizados para todos los que estén definidos.' - WHERE AD_Process_ID=140 - AND AD_LANGUAGE LIKE 'es_%'; - --- Update Accounting Schema parameter for "M_Product_Category_Acct_Copy" process. -UPDATE AD_PROCESS_PARA - SET ismandatory = 'Y' - WHERE AD_Process_Para_ID=668; - - UPDATE AD_PROCESS - SET classname = 'org.compiere.process.BPGroupAcctCopy' - WHERE AD_Process_ID=112; - - -SELECT '023_Reverse_BF_1740254.sql' AS Filename; --- --- [ 1740254 ] PriceList Version is empty in Product-Price tab --- http://sourceforge.net/tracker/index.php?func=detail&aid=1740254&group_id=176962&atid=879332 --- --- Column M_ProductPrice.M_PriceList_Version_ID: - --- Original File 012_BF_1740254.sql was deleted - the original file put the IsParent='N' --- restoring past value from IsParent because somebody could apply this patch into their system - -UPDATE AD_COLUMN SET IsParent='Y' WHERE AD_Column_ID=2760; - - - -SELECT '024_BF_1564496.sql' AS Filename; -UPDATE AD_COLUMN - SET callout = 'org.compiere.model.CalloutMovement.qty' - WHERE ad_column_id = 3594; - - -SELECT '025_Reverse_BF_1739541.sql' AS Filename; --- --- [ 1739541 ] Organization in Window "Role" problem --- http://sourceforge.net/tracker/index.php?func=detail&aid=1739541&group_id=176962&atid=879332 --- --- Original File 011_BF_1739541.sql was deleted - the original file put the IsParent='N' --- restoring past value from IsParent because somebody could apply this patch into their system --- --- Column AD_Role_OrgAccess.AD_Org_ID: -UPDATE AD_Column SET IsParent='Y' WHERE AD_Column_ID=5508 AND IsParent='N'; --- - - -SELECT '026_BF_1759181.sql' AS Filename; -/* - Fix bug in Application Dictionary - [ 1759181 ] AD_Color.ColorType is defined as Color and must be List -*/ - -UPDATE AD_COLUMN - SET ad_reference_id = 17 - WHERE ad_column_id = 6232 AND ad_reference_id = 27; - - -SELECT '001_BF_1760922.sql' AS Filename; -UPDATE AD_ELEMENT -SET Name = 'Package Version', -PrintName = 'Package Version' -wHERE AD_Element_ID = '50003'; - -UPDATE AD_COLUMN -SET Name = 'Package Version' -WHERE AD_Column_ID IN (50008, 50047, 50094); - -UPDATE AD_FIELD -SET Name = 'Package Version' -WHERE AD_Column_ID IN (50008, 50047, 50094); - -UPDATE AD_ELEMENT -SET Name = 'Update System Maintained Application Dictionary' -WHERE AD_Element_ID = 50032; - -UPDATE AD_COLUMN -SET Name = 'Update System Maintained Application Dictionary', -DefaultValue = 'Y' -WHERE AD_Column_ID = 50169; - -UPDATE AD_FIELD -SET Name = 'Update System Maintained Application Dictionary' -WHERE AD_Column_ID = 50169; - -UPDATE AD_ELEMENT -SET Name = 'Package Directory', -Description = 'Package directory, default to AdempiereHome/packages' -WHERE AD_Element_ID = 50033; - -UPDATE AD_COLUMN -SET Name = 'Package Directory', -Description = 'Package directory, default to AdempiereHome/packages' -WHERE AD_Column_ID = 50170; - -UPDATE AD_FIELD -SET Name = 'Package Directory', -Description = 'Package directory, default to AdempiereHome/packages' -WHERE AD_Column_ID = 50170; - -UPDATE AD_ELEMENT -SET Name = 'Package Source', -PrintName = 'Package Source', -Description = 'Fully qualified package source file name' -WHERE AD_Element_ID = 50035; - -UPDATE AD_Column -SET Name = 'Package Source', -IsMandatory = 'Y', -AD_Reference_ID = 39, -Description = 'Fully qualified package source file name' -WHERE AD_Column_ID = 50172; - -UPDATE AD_Field -SET Name = 'Package Source', -Description = 'Fully qualified package source file name' -WHERE AD_Column_ID = 50172; - -UPDATE AD_Element -SET Name = 'Package Source Type', -Description = 'Type of package source - file, ftp, webservice etc' -WHERE AD_Element_ID = 50036; - -UPDATE AD_Column -SET Name = 'Package Source Type', -Description = 'Type of package source - file, ftp, webservice etc' -WHERE AD_Column_ID = 50173; - -UPDATE AD_Field -SET Name = 'Package Source Type', -Description = 'Type of package source - file, ftp, webservice etc' -WHERE AD_Column_ID = 50173; - - - -SELECT '002_FR_1757535.sql' AS Filename; --- --- [ 1757535 ] "Item is already on Bar" should be translated --- http://sourceforge.net/tracker/index.php?func=detail&aid=1757535&group_id=176962&atid=879335 --- -INSERT INTO AD_Message ( - AD_MESSAGE_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY, - VALUE,MSGTEXT,MSGTIP, - MSGTYPE,ENTITYTYPE -) -values ( - 53002,0,0,'Y',to_date('2007-07-13 17:33:55', 'yyyy-mm-dd hh24.mi.ss'),0,to_date('2007-07-13 17:36:55', 'yyyy-mm-dd hh24.mi.ss'),0, - 'BookmarkExist','This Bookmark already exist','Selected Menu Item is already registered on Bookmarks Bar', - 'E','A' -); - --- --- NOTE: Don't forget to run: check sequence, add missing translations !!! --- - - -SELECT '003_BF_1763523.sql' AS Filename; --- --- BF [ 1763523 ] Translate errors from Cash Line --- http://sourceforge.net/tracker/index.php?func=detail&aid=1763523&group_id=176962&atid=879332 --- -insert into AD_Message ( - AD_MESSAGE_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY, - VALUE,MSGTEXT,MSGTIP,MSGTYPE,ENTITYTYPE) -values ( - 53003,0,0,'Y',to_date('30-07-2007','DD-MM-RRRR'),0,to_date('30-07-2007','DD-MM-RRRR'),0, - 'CannotDeleteCashGenInvoice','Cannot delete line with generated Invoice',null,'E','D' -); --- -insert into AD_Message ( - AD_MESSAGE_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY, - VALUE,MSGTEXT,MSGTIP,MSGTYPE,ENTITYTYPE) -values ( - 53004,0,0,'Y',to_date('30-07-2007','DD-MM-RRRR'),0,to_date('30-07-2007','DD-MM-RRRR'),0, - 'CannotChangeCashGenInvoice','Cannot change line with generated Invoice',null,'E','D' -); --- - --- --- NOTE: don't forget to run add missing translations and sequence check - -SELECT '004_BF_1746366.sql' AS Filename; -DELETE FROM AD_Ref_List - WHERE AD_Ref_List_ID=638; - -UPDATE AD_Ref_List - SET IsActive='N' - WHERE AD_Ref_List_ID IN (634,611); - - -SELECT '005_FR_1754879.sql' AS Filename; -INSERT INTO AD_MESSAGE - (ad_message_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - VALUE, msgtext, msgtype, entitytype - ) - VALUES (50018, 0, 0, 'Y', - TO_TIMESTAMP ('08/02/2007 00:15:12', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_TIMESTAMP ('08/02/2007 00:15:12', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'CC', 'CC', 'M', 'D' - ); - - - -SELECT '007_BF_1774758.sql' AS Filename; --- --- BF [ 1774758 ] No default Sales Representant in request window --- - -UPDATE AD_COLUMN - SET DefaultValue = '@#AD_User_ID@' - WHERE DefaultValue = '@AD_User_ID@' AND AD_Column_ID = 5432; - - - -SELECT '008_BF_1672847.sql' AS Filename; -update AD_Column -set isparent = 'N' -where AD_Column_ID in (13467, 13468); - -update ad_tab -set ad_column_id = null -where AD_Tab_ID=701; -SELECT '009_FR_1788114.sql' AS Filename; -UPDATE AD_VAL_RULE - SET code = - '(C_Order.DocStatus=''WP'' OR (C_Order.DocStatus=''CO'' AND EXISTS (SELECT * FROM C_DocType dt WHERE C_Order.C_DocType_ID=dt.C_DocType_ID AND (dt.DocSubTypeSO=''SO'' OR dt.DocBaseType=''POO'')) AND EXISTS (SELECT * FROM C_OrderLine ol WHERE C_Order.C_Order_ID=ol.C_Order_ID AND ol.QtyInvoiced<>ol.QtyOrdered)))' - WHERE ad_val_rule_id = 218; - - -SELECT '010_BF1788185.sql' AS Filename; -ALTER TABLE i_invoice ALTER COLUMN taxindicator TYPE varchar(10); - -ALTER TABLE i_order ALTER COLUMN taxindicator TYPE varchar(10); - -UPDATE AD_COLUMN - SET fieldlength = 10 - WHERE ad_column_id IN (8991, 9186); - - -SELECT '011_FR_1789836.sql' AS Filename; --- [ 1789836 ] Add fields to Import Invoice - allow import charges --- http://sourceforge.net/tracker/index.php?func=detail&aid=1789836&group_id=176962&atid=879335 - -ALTER TABLE I_INVOICE ADD COLUMN projectvalue VARCHAR(40) NULL; - -ALTER TABLE I_INVOICE ADD COLUMN activityvalue VARCHAR(40) NULL; - -ALTER TABLE I_INVOICE ADD COLUMN chargename VARCHAR(60) NULL; - -ALTER TABLE I_INVOICE ADD COLUMN c_charge_id NUMERIC(10,0) NULL; - -INSERT INTO AD_ELEMENT - (ad_element_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - columnname, entitytype, NAME, printname - ) - VALUES (53222, 0, 0, 'Y', - TO_TIMESTAMP ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_TIMESTAMP ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'ActivityValue', 'U', 'ActivityValue', 'ActivityValue' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, VERSION, entitytype, - columnname, ad_table_id, ad_reference_id, fieldlength, iskey, - isparent, ismandatory, isupdateable, isidentifier, istranslated, - isencrypted, isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (53241, 0, 0, 'Y', - TO_TIMESTAMP ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), - TO_TIMESTAMP ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Project Key', 'Key of the Project', 0, 'U', - 'ProjectValue', 598, 10, 40, 'N', - 'N', 'N', 'Y', 'N', 'N', - 'N', 'N', 2118, 'Y', - 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, - VERSION, entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, istranslated, isencrypted, isselectioncolumn, - ad_element_id, issyncdatabase, isalwaysupdateable - ) - VALUES (53242, 0, 0, 'Y', - TO_TIMESTAMP ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), - TO_TIMESTAMP ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Charge', 'Additional document charges', - 'The Charge indicates a type of Charge (Handling, Shipping, Restocking)', - 0, 'U', 'C_Charge_ID', 598, 19, - 10, 'N', 'N', 'N', 'Y', - 'N', 'N', 'N', 'N', - 968, 'Y', 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, VERSION, entitytype, columnname, ad_table_id, - ad_reference_id, fieldlength, iskey, isparent, ismandatory, - isupdateable, isidentifier, istranslated, isencrypted, - isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (53243, 0, 0, 'Y', - TO_TIMESTAMP ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), - TO_TIMESTAMP ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'ActivityValue', 0, 'U', 'ActivityValue', 598, - 10, 40, 'N', 'N', 'N', - 'Y', 'N', 'N', 'N', - 'N', 53222, 'Y', - 'N' - ); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, VERSION, entitytype, columnname, - ad_table_id, ad_reference_id, fieldlength, iskey, isparent, - ismandatory, isupdateable, isidentifier, istranslated, - isencrypted, isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (53244, 0, 0, 'Y', - TO_TIMESTAMP ('09/04/2007 22:54:46', 'MM/DD/YYYY HH24:MI:SS'), - TO_TIMESTAMP ('09/04/2007 22:54:46', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Charge Name', 'Name of the Charge', 0, 'U', 'ChargeName', - 598, 10, 60, 'N', 'N', - 'N', 'Y', 'N', 'N', - 'N', 'N', 2096, 'Y', - 'N' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, iscentrallymaintained, ad_tab_id, ad_column_id, - isdisplayed, displaylength, isreadonly, seqno, sortno, - issameline, isheading, isfieldonly, isencrypted, entitytype - ) - VALUES (53251, 0, 0, 'Y', - TO_TIMESTAMP ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_TIMESTAMP ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'ActivityValue', 'Y', 510, 53243, - 'Y', 40, 'N', 498, 0, - 'N', 'N', 'N', 'N', 'U' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, iscentrallymaintained, ad_tab_id, - ad_column_id, ad_fieldgroup_id, isdisplayed, displaylength, - isreadonly, seqno, sortno, issameline, isheading, isfieldonly, - isencrypted, entitytype - ) - VALUES (53252, 0, 0, 'Y', - TO_TIMESTAMP ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_TIMESTAMP ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Project Key', 'Key of the Project', 'Y', 510, - 53241, 104, 'Y', 40, - 'N', 478, 0, 'N', 'N', 'N', - 'N', 'U' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - HELP, - iscentrallymaintained, ad_tab_id, ad_column_id, isdisplayed, - displaylength, isreadonly, seqno, sortno, issameline, isheading, - isfieldonly, isencrypted, entitytype - ) - VALUES (53253, 0, 0, 'Y', - TO_TIMESTAMP ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_TIMESTAMP ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Charge', 'Additional document charges', - 'The Charge indicates a type of Charge (Handling, Shipping, Restocking)', - 'Y', 510, 53242, 'Y', - 10, 'N', 392, 0, 'N', 'N', - 'N', 'N', 'U' - ); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, iscentrallymaintained, ad_tab_id, - ad_column_id, isdisplayed, displaylength, isreadonly, seqno, - sortno, issameline, isheading, isfieldonly, isencrypted, - entitytype - ) - VALUES (53254, 0, 0, 'Y', - TO_TIMESTAMP ('09/04/2007 22:54:47', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_TIMESTAMP ('09/04/2007 22:57:16', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Charge Name', 'Name of the Charge', 'Y', 510, - 53244, 'Y', 40, 'N', 394, - 0, 'Y', 'N', 'N', 'N', - 'U' - ); - - -SELECT '012_BR_1794352.sql' AS Filename; -UPDATE AD_COLUMN - SET ad_val_rule_id = 220 - WHERE ad_column_id = 5354; - - -SELECT '013_DocumentNo.sql' AS Filename; -CREATE FUNCTION documentNo(p_MPC_MRP_ID numeric) RETURNS character varying - - AS $$org.compiere.sqlj.Manufacturing.documentNo(int)$$ - LANGUAGE java; - - -ALTER FUNCTION adempiere.documentNo(p_MPC_MRP_ID numeric) OWNER TO postgres; - -SELECT '013_PosteritaDLL_PG.sql' AS Filename; --- Posterita SQL Scripts for PostgreSQL ---------------------------- --- SCRIPT STARTS HERE! ---------------------------- - ---- Table: U_WEB_PROPERTIES ------------------------------------------------------- -CREATE TABLE U_WEB_PROPERTIES - ( - U_Web_Properties_ID NUMERIC(10,0) NOT NULL , - AD_Client_ID NUMERIC(10,0) NOT NULL , - AD_Org_ID NUMERIC(10,0) NOT NULL , - IsActive CHAR(1) DEFAULT 'Y' NOT NULL , - Created TIMESTAMP DEFAULT NOW() NOT NULL , - CreatedBy INTEGER NOT NULL , - Updated TIMESTAMP DEFAULT NOW() NOT NULL , - UpdatedBy INTEGER NOT NULL , - U_Key VARCHAR(240) NOT NULL , - U_Value VARCHAR(240) NOT NULL , - primary key(U_Web_Properties_ID), - CHECK(IsActive IN ('Y', 'N')) - ); - ---- Table: U_RoleMenu ------------------------------------------------------- -CREATE TABLE U_RoleMenu - ( - U_RoleMenu_ID NUMERIC(10,0) NOT NULL , - AD_Client_ID NUMERIC(10,0) NOT NULL , - AD_Org_ID NUMERIC(10,0) NOT NULL , - IsActive CHAR(1) DEFAULT 'Y' NOT NULL, - Created TIMESTAMP DEFAULT NOW() NOT NULL, - CreatedBy INTEGER NOT NULL, - Updated TIMESTAMP DEFAULT NOW() NOT NULL, - UpdatedBy INTEGER NOT NULL, - AD_Role_ID NUMERIC(10,0) NOT NULL, - U_WebMenu_ID NUMERIC(10,0) NOT NULL, - primary key(U_RoleMenu_ID), - CHECK(IsActive IN ('Y', 'N')) - ); - ---- Table: U_WebMenu ------------------------------------------------------- -CREATE TABLE U_WebMenu - ( - U_WebMenu_ID NUMERIC(10,0) NOT NULL , - AD_Client_ID NUMERIC(10,0) NOT NULL , - AD_Org_ID NUMERIC(10,0) NOT NULL , - IsActive CHAR(1) DEFAULT 'Y' NOT NULL , - Created TIMESTAMP DEFAULT NOW() NOT NULL, - CreatedBy NUMERIC(10,0) NOT NULL , - Updated TIMESTAMP DEFAULT NOW() NOT NULL , - UpdatedBy NUMERIC(10,0) NOT NULL , - Name VARCHAR(120) NOT NULL , - MenuLink VARCHAR(510) NOT NULL , - Module VARCHAR(120) NOT NULL , - ParentMenu_ID NUMERIC(10,0) , - HasSubMenu CHAR(1) DEFAULT 'N' NOT NULL, - Description VARCHAR(200) , - ImageLink VARCHAR(510) , - Position VARCHAR(10) , - Help VARCHAR(2000) , - primary key(U_WebMenu_ID), - CHECK(IsActive IN ('Y', 'N')), - CHECK(HasSubMenu IN ('Y', 'N')) - ); - ---- Table: U_BlackListCheque ------------------------------------------------------- -CREATE TABLE U_BlackListCheque - ( - U_BlackListCheque_ID NUMERIC(10,0) NOT NULL , - AD_Client_ID NUMERIC(10,0) NOT NULL , - AD_Org_ID NUMERIC(10,0) NOT NULL , - IsActive CHAR(1) DEFAULT 'Y' NOT NULL, - Created TIMESTAMP DEFAULT NOW() NOT NULL , - CreatedBy NUMERIC(10,0) NOT NULL , - Updated TIMESTAMP DEFAULT NOW() NOT NULL , - UpdatedBy NUMERIC(10,0) NOT NULL , - BankName VARCHAR(120) NOT NULL , - ChequeNo VARCHAR(120) NOT NULL , - primary key(U_BlackListCheque_ID), - CHECK(IsActive IN ('Y', 'N')) - ); - - ---- Table: AD_PrintFormat ------------------------------------------------------------- - -ALTER TABLE AD_PrintFormat ADD COLUMN ClassName VARCHAR(240); - -ALTER TABLE AD_PrintFormat ADD COLUMN Args VARCHAR(510); - ----------------------------------------------------------------------------- - ---- Table: AD_User ------------------------------------------------------------- - -ALTER TABLE AD_User ADD COLUMN UserPIN VARCHAR(20); - -ALTER TABLE AD_User ALTER COLUMN UserPIN TYPE VARCHAR(20); - ----------------------------------------------------------------------------- - ---- Table: AD_Role ------------------------------------------------------------- - -ALTER TABLE AD_Role ADD COLUMN UserDiscount NUMERIC(22,2); - -ALTER TABLE AD_Role ALTER COLUMN UserDiscount TYPE numeric(22,2); - - ----------------------------------------------------------------------------- - ---- Table: C_Order ------------------------------------------------------------- - -ALTER TABLE C_Order ADD COLUMN OrderType VARCHAR(510); - -ALTER TABLE C_Order ADD COLUMN C_POS_ID NUMERIC(10,0); - -ALTER TABLE C_Order ADD COLUMN AmountTendered NUMERIC(22,2); - -ALTER TABLE C_Order ADD COLUMN AmountRefunded NUMERIC(22,2); - - - ----------------------------------------------------------------------------- - ---- Table: M_Product ----------------------------------------------------------- - -ALTER TABLE M_Product ADD COLUMN Group1 VARCHAR(255); - -ALTER TABLE M_Product ALTER COLUMN Group1 TYPE VARCHAR(255); - -ALTER TABLE M_Product ADD COLUMN Group2 VARCHAR(255); - -ALTER TABLE M_Product ALTER COLUMN Group2 TYPE VARCHAR(255); - ----------------------------------------------------------------------------- - ---- Table: U_WebMenu ------------------------------------------------------- -ALTER TABLE U_WebMenu ADD COLUMN Category VARCHAR(120); - -ALTER TABLE U_WebMenu ALTER COLUMN Category TYPE VARCHAR(120); - -ALTER TABLE U_WebMenu ADD COLUMN Sequence NUMERIC(10,0); - -ALTER TABLE U_WebMenu ALTER Sequence TYPE NUMERIC(10,0); - ----------------------------------------------------------------------------- - - ---- Table: C_POS --------------------------------------------------------------- - -ALTER TABLE C_POS ADD COLUMN CashDrawer VARCHAR(120); - -ALTER TABLE C_POS ALTER COLUMN CashDrawer TYPE VARCHAR(120); - - ----------------------------------------------------------------------------- - - - -SELECT '014_PosteritaDML_PG.sql' AS Filename; --- Sequence Changes -- -INSERT INTO AD_SEQUENCE(ad_sequence_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, vformat, isautosequence, incrementno, startno, currentnext, currentnextsys, isaudited, istableid, prefix, suffix, startnewyear) - VALUES(52002, 0, 0, 'Y', now(), 0, now(), 0, 'U_BlackListCheque', 'Table U_BlackListCheque', NULL, 'Y', 1, 1000000, 1000000, 100, 'N', 'Y', NULL, NULL, 'N'); -INSERT INTO AD_SEQUENCE(ad_sequence_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, vformat, isautosequence, incrementno, startno, currentnext, currentnextsys, isaudited, istableid, prefix, suffix, startnewyear) - VALUES(52003, 0, 0, 'Y', now(), 0, now(), 0, 'U_Web_Properties', 'Table U_Web_Properties', NULL, 'Y', 1, 1000000, 1000000, 100, 'N', 'Y', NULL, NULL, 'N'); -INSERT INTO AD_SEQUENCE(ad_sequence_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, vformat, isautosequence, incrementno, startno, currentnext, currentnextsys, isaudited, istableid, prefix, suffix, startnewyear) - VALUES(52004, 0, 0, 'Y', now(), 0, now(), 0, 'U_RoleMenu', 'Table U_RoleMenu', NULL, 'Y', 1, 1000000, 1000000, 100, 'N', 'Y', NULL, NULL, 'N'); -INSERT INTO AD_SEQUENCE(ad_sequence_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, vformat, isautosequence, incrementno, startno, currentnext, currentnextsys, isaudited, istableid, prefix, suffix, startnewyear) - VALUES(52005, 0, 0, 'Y', now(), 0, now(), 0, 'U_WebMenu', 'Table U_WebMenu', NULL, 'Y', 1, 1000000, 1000000, 100, 'N', 'Y', NULL, NULL, 'N'); - --- Element Changes -- -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52001, 0, 0, 'Y', now(), 0, now(), 0, 'U_BlackListCheque_ID', 'D', 'U_BlackListCheque_ID', 'U_BlackListCheque_ID', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52002, 0, 0, 'Y', now(), 0, now(), 0, 'BankName', 'D', 'BankName', 'BankName', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52003, 0, 0, 'Y', now(), 0, now(), 0, 'ChequeNo', 'D', 'ChequeNo', 'ChequeNo', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52004, 0, 0, 'Y', now(), 0, now(), 0, 'U_Web_Properties_ID', 'D', 'U_Web_Properties_ID', 'U_Web_Properties_ID', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52005, 0, 0, 'Y', now(), 0, now(), 0, 'U_Key', 'D', 'U_Key', 'U_Key', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52006, 0, 0, 'Y', now(), 0, now(), 0, 'U_Value', 'D', 'U_Value', 'U_Value', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52007, 0, 0, 'Y', now(), 0, now(), 0, 'U_RoleMenu_ID', 'D', 'U_RoleMenu_ID', 'U_RoleMenu_ID', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52008, 0, 0, 'Y', now(), 0, now(), 0, 'U_WebMenu_ID', 'D', 'U_WebMenu_ID', 'U_WebMenu_ID', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52009, 0, 0, 'Y', now(), 0, now(), 0, 'MenuLink', 'D', 'MenuLink', 'MenuLink', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52010, 0, 0, 'Y', now(), 0, now(), 0, 'Module', 'D', 'Module', 'Module', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52011, 0, 0, 'Y', now(), 0, now(), 0, 'ParentMenu_ID', 'D', 'ParentMenu_ID', 'ParentMenu_ID', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52012, 0, 0, 'Y', now(), 0, now(), 0, 'HasSubMenu', 'D', 'HasSubMenu', 'HasSubMenu', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52013, 0, 0, 'Y', now(), 0, now(), 0, 'ImageLink', 'D', 'ImageLink', 'ImageLink', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52014, 0, 0, 'Y', now(), 0, now(), 0, 'Position', 'D', 'Position', 'Position', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52015, 0, 0, 'Y', now(), 0, now(), 0, 'CashDrawer', 'D', 'CashDrawer', 'CashDrawer', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52016, 0, 0, 'Y', now(), 0, now(), 0, 'Sequence', 'D', 'Sequence', 'Sequence', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52017, 0, 0, 'Y', now(), 0, now(), 0, 'Category', 'D', 'Category', 'Category', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52018, 0, 0, 'Y', now(), 0, now(), 0, 'Group1', 'D', 'Group1', 'Group1', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52019, 0, 0, 'Y', now(), 0, now(), 0, 'Group2', 'D', 'Group2', 'Group2', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52020, 0, 0, 'Y', now(), 0, now(), 0, 'OrderType', 'D', 'OrderType', 'OrderType', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52021, 0, 0, 'Y', now(), 0, now(), 0, 'AmountTendered', 'D', 'AmountTendered', 'AmountTendered', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52022, 0, 0, 'Y', now(), 0, now(), 0, 'AmountRefunded', 'D', 'AmountRefunded', 'AmountRefunded', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52023, 0, 0, 'Y', now(), 0, now(), 0, 'UserPIN', 'D', 'UserPIN', 'UserPIN', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52024, 0, 0, 'Y', now(), 0, now(), 0, 'UserDiscount', 'D', 'UserDiscount', 'UserDiscount', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52025, 0, 0, 'Y', now(), 0, now(), 0, 'ClassName', 'D', 'ClassName', 'ClassName', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO AD_ELEMENT(ad_element_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, columnname, entitytype, NAME, printname, description, help, po_name, po_printname, po_description, po_help) - VALUES(52026, 0, 0, 'Y', now(), 0, now(), 0, 'Args', 'D', 'Args', 'Args', NULL, NULL, NULL, NULL, NULL, NULL); - --- Table Changes -- -INSERT INTO AD_TABLE(ad_table_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, help, tablename, isview, accesslevel, entitytype, ad_window_id, ad_val_rule_id, loadseq, issecurityenabled, isdeleteable, ishighvolume, importtable, ischangelog, replicationtype, po_window_id, copycolumnsfromtable) - VALUES(52000, 0, 0, 'Y', now(), 0, now(), 0, 'U_BlackListCheque', NULL, NULL, 'U_BlackListCheque', 'N', '3', 'D', NULL, NULL, NULL, 'N', 'Y', 'N', NULL, 'N', 'L', NULL, NULL); -INSERT INTO AD_TABLE(ad_table_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, help, tablename, isview, accesslevel, entitytype, ad_window_id, ad_val_rule_id, loadseq, issecurityenabled, isdeleteable, ishighvolume, importtable, ischangelog, replicationtype, po_window_id, copycolumnsfromtable) - VALUES(52001, 0, 0, 'Y', now(), 0, now(), 0, 'U_Web_Properties', NULL, NULL, 'U_Web_Properties', 'N', '3', 'D', NULL, NULL, NULL, 'N', 'Y', 'N', NULL, 'N', 'L', NULL, NULL); -INSERT INTO AD_TABLE(ad_table_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, help, tablename, isview, accesslevel, entitytype, ad_window_id, ad_val_rule_id, loadseq, issecurityenabled, isdeleteable, ishighvolume, importtable, ischangelog, replicationtype, po_window_id, copycolumnsfromtable) - VALUES(52002, 0, 0, 'Y', now(), 0, now(), 0, 'U_RoleMenu', NULL, NULL, 'U_RoleMenu', 'N', '3', 'D', NULL, NULL, NULL, 'N', 'Y', 'N', NULL, 'N', 'L', NULL, NULL); -INSERT INTO AD_TABLE(ad_table_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, help, tablename, isview, accesslevel, entitytype, ad_window_id, ad_val_rule_id, loadseq, issecurityenabled, isdeleteable, ishighvolume, importtable, ischangelog, replicationtype, po_window_id, copycolumnsfromtable) - VALUES(52003, 0, 0, 'Y', now(), 0, now(), 0, 'U_WebMenu', NULL, NULL, 'U_WebMenu', 'N', '4', 'D', NULL, NULL, NULL, 'N', 'Y', 'N', NULL, 'N', 'L', NULL, NULL); - --- Reference changes -- -INSERT INTO AD_REFERENCE(AD_REFERENCE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, VALIDATIONTYPE, VFORMAT, ENTITYTYPE) - VALUES(52000, 0, 0, 'Y', now(), 100, now(), 100, 'U_WebMenu_ID', NULL, NULL, 'T', NULL, 'D'); - --- Column Changes -- -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52011, 0, 0, 'Y', now(), now(), 0, 0, 'U_BlackListCheque_ID', NULL, NULL, 0, 'D', 'U_BlackListCheque_ID', 52000, 13, NULL, NULL, 22, NULL, 'Y', 'N', 'Y', 'N', NULL, 'N', 10, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52001, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52012, 0, 0, 'Y', now(), now(), 0, 0, 'AD_Client_ID', NULL, NULL, 0, 'D', 'AD_Client_ID', 52000, 19, NULL, 129, 22, '@AD_Client_ID@', 'N', 'N', 'Y', 'N', NULL, 'N', 20, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 102, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52013, 0, 0, 'Y', now(), now(), 0, 0, 'AD_Org_ID', NULL, NULL, 0, 'D', 'AD_Org_ID', 52000, 19, NULL, 104, 22, '@AD_Org_ID@', 'N', 'N', 'Y', 'N', NULL, 'N', 30, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 113, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52014, 0, 0, 'Y', now(), now(), 0, 0, 'IsActive', NULL, NULL, 0, 'D', 'IsActive', 52000, 20, NULL, NULL, 1, '''Y'' ', 'N', 'N', 'Y', 'Y', NULL, 'N', 40, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 348, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52015, 0, 0, 'Y', now(), now(), 0, 0, 'Created', NULL, NULL, 0, 'D', 'Created', 52000, 16, NULL, NULL, 7, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 50, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 245, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52016, 0, 0, 'Y', now(), now(), 0, 0, 'CreatedBy', NULL, NULL, 0, 'D', 'CreatedBy', 52000, 18, 110, NULL, 10, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 60, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 246, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52017, 0, 0, 'Y', now(), now(), 0, 0, 'Updated', NULL, NULL, 0, 'D', 'Updated', 52000, 16, NULL, NULL, 7, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 70, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 607, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52018, 0, 0, 'Y', now(), now(), 0, 0, 'UpdatedBy', NULL, NULL, 0, 'D', 'UpdatedBy', 52000, 18, 110, NULL, 10, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 80, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 608, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52019, 0, 0, 'Y', now(), now(), 0, 0, 'BankName', NULL, NULL, 0, 'D', 'BankName', 52000, 10, NULL, NULL, 120, NULL, 'N', 'N', 'Y', 'Y', NULL, 'N', 90, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52002, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52020, 0, 0, 'Y', now(), now(), 0, 0, 'ChequeNo', NULL, NULL, 0, 'D', 'ChequeNo', 52000, 10, NULL, NULL, 120, NULL, 'N', 'N', 'Y', 'Y', NULL, 'N', 100, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52003, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52021, 0, 0, 'Y', now(), now(), 0, 0, 'U_Web_Properties_ID', NULL, NULL, 0, 'D', 'U_Web_Properties_ID', 52001, 13, NULL, NULL, 22, NULL, 'Y', 'N', 'Y', 'N', NULL, 'N', 10, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52004, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52022, 0, 0, 'Y', now(), now(), 0, 0, 'AD_Client_ID', NULL, NULL, 0, 'D', 'AD_Client_ID', 52001, 19, NULL, 129, 22, '@AD_Client_ID@', 'N', 'N', 'Y', 'N', NULL, 'N', 20, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 102, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52023, 0, 0, 'Y', now(), now(), 0, 0, 'AD_Org_ID', NULL, NULL, 0, 'D', 'AD_Org_ID', 52001, 19, NULL, 104, 22, '@AD_Org_ID@', 'N', 'N', 'Y', 'N', NULL, 'N', 30, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 113, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52024, 0, 0, 'Y', now(), now(), 0, 0, 'IsActive', NULL, NULL, 0, 'D', 'IsActive', 52001, 20, NULL, NULL, 1, '''Y'' ', 'N', 'N', 'Y', 'Y', NULL, 'N', 40, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 348, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52025, 0, 0, 'Y', now(), now(), 0, 0, 'Created', NULL, NULL, 0, 'D', 'Created', 52001, 16, NULL, NULL, 7, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 50, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 245, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52026, 0, 0, 'Y', now(), now(), 0, 0, 'CreatedBy', NULL, NULL, 0, 'D', 'CreatedBy', 52001, 18, 110, NULL, NULL, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 60, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 246, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52027, 0, 0, 'Y', now(), now(), 0, 0, 'Updated', NULL, NULL, 0, 'D', 'Updated', 52001, 16, NULL, NULL, 7, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 70, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 607, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52028, 0, 0, 'Y', now(), now(), 0, 0, 'UpdatedBy', NULL, NULL, 0, 'D', 'UpdatedBy', 52001, 18, 110, NULL, NULL, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 80, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 608, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52029, 0, 0, 'Y', now(), now(), 0, 0, 'U_Key', NULL, NULL, 0, 'D', 'U_Key', 52001, 10, NULL, NULL, 240, NULL, 'N', 'N', 'Y', 'Y', NULL, 'N', 90, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52005, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52030, 0, 0, 'Y', now(), now(), 0, 0, 'U_Value', NULL, NULL, 0, 'D', 'U_Value', 52001, 10, NULL, NULL, 240, NULL, 'N', 'N', 'Y', 'Y', NULL, 'N', 100, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52006, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52031, 0, 0, 'Y', now(), now(), 0, 0, 'U_RoleMenu_ID', NULL, NULL, 0, 'D', 'U_RoleMenu_ID', 52002, 13, NULL, NULL, 22, NULL, 'Y', 'N', 'Y', 'N', NULL, 'N', 10, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52007, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52032, 0, 0, 'Y', now(), now(), 0, 0, 'AD_Client_ID', NULL, NULL, 0, 'D', 'AD_Client_ID', 52002, 19, NULL, 129, 22, '@AD_Client_ID@', 'N', 'N', 'Y', 'N', NULL, 'N', 20, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 102, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52033, 0, 0, 'Y', now(), now(), 0, 0, 'AD_Org_ID', NULL, NULL, 0, 'D', 'AD_Org_ID', 52002, 19, NULL, 104, 22, '@AD_Org_ID@', 'N', 'N', 'Y', 'N', NULL, 'N', 30, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 113, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52034, 0, 0, 'Y', now(), now(), 0, 0, 'IsActive', NULL, NULL, 0, 'D', 'IsActive', 52002, 20, NULL, NULL, 1, '''Y'' ', 'N', 'N', 'Y', 'Y', NULL, 'N', 40, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 348, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52035, 0, 0, 'Y', now(), now(), 0, 0, 'Created', NULL, NULL, 0, 'D', 'Created', 52002, 16, NULL, NULL, 7, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 50, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 245, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52036, 0, 0, 'Y', now(), now(), 0, 0, 'CreatedBy', NULL, NULL, 0, 'D', 'CreatedBy', 52002, 18, 110, NULL, NULL, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 60, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 246, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52037, 0, 0, 'Y', now(), now(), 0, 0, 'Updated', NULL, NULL, 0, 'D', 'Updated', 52002, 16, NULL, NULL, 7, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 70, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 607, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52038, 0, 0, 'Y', now(), now(), 0, 0, 'UpdatedBy', NULL, NULL, 0, 'D', 'UpdatedBy', 52002, 18, 110, NULL, NULL, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 80, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 608, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52039, 0, 0, 'Y', now(), now(), 0, 0, 'AD_Role_ID', NULL, NULL, 0, 'D', 'AD_Role_ID', 52002, 19, NULL, NULL, 10, NULL, 'N', 'N', 'Y', 'Y', NULL, 'N', 90, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 123, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52040, 0, 0, 'Y', now(), now(), 0, 0, 'U_WebMenu_ID', NULL, NULL, 0, 'D', 'U_WebMenu_ID', 52002, 19, NULL, NULL, 10, NULL, 'N', 'N', 'Y', 'Y', NULL, 'N', 100, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52008, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52041, 0, 0, 'Y', now(), now(), 0, 0, 'U_WebMenu_ID', NULL, NULL, 0, 'D', 'U_WebMenu_ID', 52003, 13, NULL, NULL, 22, NULL, 'Y', 'N', 'Y', 'N', NULL, 'N', 10, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52008, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52042, 0, 0, 'Y', now(), now(), 0, 0, 'AD_Client_ID', NULL, NULL, 0, 'D', 'AD_Client_ID', 52003, 19, NULL, 129, 22, '@AD_Client_ID@', 'N', 'N', 'Y', 'N', NULL, 'N', 20, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 102, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52043, 0, 0, 'Y', now(), now(), 0, 0, 'AD_Org_ID', NULL, NULL, 0, 'D', 'AD_Org_ID', 52003, 19, NULL, 104, 22, '@AD_Org_ID@', 'N', 'N', 'Y', 'N', NULL, 'N', 30, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 113, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52044, 0, 0, 'Y', now(), now(), 0, 0, 'IsActive', NULL, NULL, 0, 'D', 'IsActive', 52003, 20, NULL, NULL, 1, '''Y'' ', 'N', 'N', 'Y', 'Y', NULL, 'N', 40, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 348, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52045, 0, 0, 'Y', now(), now(), 0, 0, 'Created', NULL, NULL, 0, 'D', 'Created', 52003, 16, NULL, NULL, 7, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 50, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 245, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52046, 0, 0, 'Y', now(), now(), 0, 0, 'CreatedBy', NULL, NULL, 0, 'D', 'CreatedBy', 52003, 18, 110, NULL, 10, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 60, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 246, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52047, 0, 0, 'Y', now(), now(), 0, 0, 'Updated', NULL, NULL, 0, 'D', 'Updated', 52003, 16, NULL, NULL, 7, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 70, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 607, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52048, 0, 0, 'Y', now(), now(), 0, 0, 'UpdatedBy', NULL, NULL, 0, 'D', 'UpdatedBy', 52003, 18, 110, NULL, 10, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', 80, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 608, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52049, 0, 0, 'Y', now(), now(), 0, 0, 'Name', NULL, NULL, 0, 'D', 'Name', 52003, 10, NULL, NULL, 120, NULL, 'N', 'N', 'Y', 'Y', NULL, 'Y', 90, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 469, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52050, 0, 0, 'Y', now(), now(), 0, 0, 'MenuLink', NULL, NULL, 0, 'D', 'MenuLink', 52003, 10, NULL, NULL, 510, NULL, 'N', 'N', 'Y', 'Y', NULL, 'N', 100, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52009, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52051, 0, 0, 'Y', now(), now(), 0, 0, 'Module', NULL, NULL, 0, 'D', 'Module', 52003, 10, NULL, NULL, 120, NULL, 'N', 'N', 'Y', 'Y', NULL, 'N', 110, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52010, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52052, 0, 0, 'Y', now(), now(), 0, 0, 'ParentMenu_ID', NULL, NULL, 0, 'D', 'ParentMenu_ID', 52003, 18, 52000, NULL, 10, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 120, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52011, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52053, 0, 0, 'Y', now(), now(), 0, 0, 'HasSubMenu', NULL, NULL, 0, 'D', 'HasSubMenu', 52003, 20, NULL, NULL, 1, '''N''', 'N', 'N', 'Y', 'Y', NULL, 'N', 130, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52012, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52054, 0, 0, 'Y', now(), now(), 0, 0, 'Description', NULL, NULL, 0, 'D', 'Description', 52003, 10, NULL, NULL, 200, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 140, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 275, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52055, 0, 0, 'Y', now(), now(), 0, 0, 'ImageLink', NULL, NULL, 0, 'D', 'ImageLink', 52003, 10, NULL, NULL, 510, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 150, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52013, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52056, 0, 0, 'Y', now(), now(), 0, 0, 'Position', NULL, NULL, 0, 'D', 'Position', 52003, 10, NULL, NULL, 10, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 160, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52014, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52057, 0, 0, 'Y', now(), now(), 0, 0, 'Help', NULL, NULL, 0, 'D', 'Help', 52003, 10, NULL, NULL, 2000, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 170, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 326, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52058, 0, 0, 'Y', now(), now(), 0, 0, 'CashDrawer', NULL, NULL, 0, 'D', 'CashDrawer', 748, 10, NULL, NULL, 120, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 10, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52015, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52059, 0, 0, 'Y', now(), now(), 0, 0, 'Sequence', NULL, NULL, 0, 'D', 'Sequence', 52003, 22, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 10, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52016, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52060, 0, 0, 'Y', now(), now(), 0, 0, 'Category', NULL, NULL, 0, 'D', 'Category', 52003, 10, NULL, NULL, 120, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 20, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52017, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52061, 0, 0, 'Y', now(), now(), 0, 0, 'Group1', NULL, NULL, 0, 'D', 'Group1', 208, 10, NULL, NULL, 255, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 50, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52018, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52062, 0, 0, 'Y', now(), now(), 0, 0, 'Group2', NULL, NULL, 0, 'D', 'Group2', 208, 10, NULL, NULL, 255, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 60, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52019, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52063, 0, 0, 'Y', now(), now(), 0, 0, 'OrderType', NULL, NULL, 0, 'D', 'OrderType', 259, 10, NULL, NULL, 510, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 10, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52020, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52064, 0, 0, 'Y', now(), now(), 0, 0, 'AmountTendered', NULL, NULL, 0, 'D', 'AmountTendered', 259, 22, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 30, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52021, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52065, 0, 0, 'Y', now(), now(), 0, 0, 'AmountRefunded', NULL, NULL, 0, 'D', 'AmountRefunded', 259, 22, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 40, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52022, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52066, 0, 0, 'Y', now(), now(), 0, 0, 'UserPIN', NULL, NULL, 0, 'D', 'UserPIN', 114, 10, NULL, NULL, 20, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 10, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52023, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52067, 0, 0, 'Y', now(), now(), 0, 0, 'UserDiscount', NULL, NULL, 0, 'D', 'UserDiscount', 156, 22, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 20, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52024, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52068, 0, 0, 'Y', now(), now(), 0, 0, 'ClassName', NULL, NULL, 0, 'D', 'ClassName', 493, 10, NULL, NULL, 240, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 10, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52025, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52069, 0, 0, 'Y', now(), now(), 0, 0, 'Args', NULL, NULL, 0, 'D', 'Args', 493, 10, NULL, NULL, 510, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 20, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 52026, NULL, 'N', 'N', NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql) - VALUES(52070, 0, 0, 'Y', now(), now(), 0, 0, 'C_POS_ID', NULL, NULL, 0, 'D', 'C_POS_ID', 259, 19, NULL, NULL, 10, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 20, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 2581, NULL, 'N', 'N', NULL); - --- AD_Ref_table Changes -- - -INSERT INTO AD_REF_TABLE(AD_REFERENCE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, AD_TABLE_ID, AD_KEY, AD_DISPLAY, ISVALUEDISPLAYED, WHERECLAUSE, ORDERBYCLAUSE, ENTITYTYPE) - VALUES(52000, 0, 0, 'Y', now(), 100, now(), 100, 52003, 52041, 52049, 'N', NULL, NULL, 'D'); - --- Process Changes -- -INSERT INTO AD_PROCESS(ad_process_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, NAME, description, help, accesslevel, entitytype, procedurename, isreport, isdirectprint, ad_reportview_id, classname, statistic_count, statistic_seconds, ad_printformat_id, workflowvalue, ad_workflow_id, isbetafunctionality, isserverprocess, showhelp, jasperreport) - VALUES(52003, 0, 0, 'Y', now(), 100, now(), 100, 'U_RoleMenu_Update', 'Update Role Menu', NULL, NULL, '3', 'D', NULL, 'N', 'N', NULL, 'org.adempiere.process.UpdateRoleMenu', 0, 0, NULL, NULL, NULL, 'N', 'N', 'Y', NULL); - -INSERT INTO AD_PROCESS_PARA(ad_process_para_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, help, ad_process_id, seqno, ad_reference_id, ad_reference_value_id, ad_val_rule_id, columnname, iscentrallymaintained, fieldlength, ismandatory, isrange, defaultvalue, defaultvalue2, vformat, valuemin, valuemax, ad_element_id, entitytype) - VALUES(52000, 0, 0, 'Y', now(), 100, now(), 100, 'Role', NULL, NULL, 52003, 10, 30, NULL, NULL, 'AD_Role_ID', 'Y', 0, 'Y', 'N', NULL, NULL, NULL, NULL, NULL, 123, 'D'); - --- Process Access -- -INSERT INTO AD_PROCESS_ACCESS(ad_process_id, ad_role_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, isreadwrite) - VALUES(52003, 0, 0, 0, 'Y', now(), 100, now(), 100, 'Y'); -INSERT INTO AD_PROCESS_ACCESS(ad_process_id, ad_role_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, isreadwrite) - VALUES(52003, 102, 0, 0, 'Y', now(), 100, now(), 100, 'Y'); -INSERT INTO AD_PROCESS_ACCESS(ad_process_id, ad_role_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, isreadwrite) - VALUES(52003, 103, 0, 0, 'Y',now(), 100, now(), 100, 'Y'); - --- Menu Changes -- -INSERT INTO AD_MENU(ad_menu_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, NAME, updatedby, description, issummary, issotrx, isreadonly, action, ad_window_id, ad_workflow_id, ad_task_id, ad_process_id, ad_form_id, ad_workbench_id, entitytype) - VALUES(52000, 0, 0, 'Y', now(), 100, now(), 'Update Role Menu', 100, NULL, 'N', 'N', 'N', 'P', NULL, NULL, NULL, 52003, NULL, NULL, 'D'); -INSERT INTO AD_MENU(ad_menu_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, NAME, updatedby, description, issummary, issotrx, isreadonly, action, ad_window_id, ad_workflow_id, ad_task_id, ad_process_id, ad_form_id, ad_workbench_id, entitytype) - VALUES(52001, 0, 0, 'Y', now(), 100, now(), 'Posterita', 100, NULL, 'Y', 'N', 'N', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'D'); -INSERT INTO AD_TREENODEMM(ad_tree_id, node_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, parent_id, seqno) - VALUES(10, 52000, 0, 0, 'Y', now(), 0, now(), 0, 52001, 0); -INSERT INTO AD_TREENODEMM(ad_tree_id, node_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, parent_id, seqno) - VALUES(10, 52001, 0, 0, 'Y', now(), 0, now(), 0, 0, 10); - - - - --- Message Changes -- -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52003, 0, 0, 'Y', now(), 100, now(), 100, '1000_rupees', '1000 Rupees', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52004, 0, 0, 'Y', now(), 100, now(), 100, '100_dollars', '100 dollars', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52005, 0, 0, 'Y', now(), 100, now(), 100, '100_rupees', '100 Rupees', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52006, 0, 0, 'Y', now(), 100, now(), 100, '10_dollars', '10 dollars', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52007, 0, 0, 'Y', now(), 100, now(), 100, '10_rupees', '10 Rupees', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52008, 0, 0, 'Y', now(), 100, now(), 100, '1_cent', '1 cent', '1 cent', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52009, 0, 0, 'Y', now(), 100, now(), 100, '1_dollar', '1 dollar', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(520010, 0, 0, 'Y', now(), 100, now(), 100, '1_rupee', '1 Rupee', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52011, 0, 0, 'Y', now(), 100, now(), 100, '2000_rupees', '2000 Rupees', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52012, 0, 0, 'Y', now(), 100, now(), 100, '200_rupees', '200 Rupees', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52013, 0, 0, 'Y', now(), 100, now(), 100, '20_cents', '20 cents', '20 cents', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52014, 0, 0, 'Y', now(), 100, now(), 100, '20_dollars', '20 dollars', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52015, 0, 0, 'Y', now(), 100, now(), 100, '25_rupees', '25 Rupees', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52016, 0, 0, 'Y', now(), 100, now(), 100, '500_rupees', '500 Rupees', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52017, 0, 0, 'Y', now(), 100, now(), 100, '50_cents', '50 cents', '50 cents', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52018, 0, 0, 'Y', now(), 100, now(), 100, '50_dollars', '50 dollars', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52019, 0, 0, 'Y', now(), 100, now(), 100, '50_rupees', '50 Rupees', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52020, 0, 0, 'Y', now(), 100, now(), 100, '5_cents', '5 cents', '5 cents', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52021, 0, 0, 'Y', now(), 100, now(), 100, '5_dollars', '5 dollars', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52022, 0, 0, 'Y', now(), 100, now(), 100, '5_rupees', '5 Rupees', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52023, 0, 0, 'Y', now(), 100, now(), 100, 'Due0', 'Due 0', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52024, 0, 0, 'Y', now(), 100, now(), 100, 'Due0_30', 'Due 0-30', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52025, 0, 0, 'Y', now(), 100, now(), 100, 'account.type', 'Account Type', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52026, 0, 0, 'Y', now(), 100, now(), 100, 'accounts.receivable', 'Accounts Receivable-Trade', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52027, 0, 0, 'Y', now(), 100, now(), 100, 'activate', 'Activate', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52028, 0, 0, 'Y', now(), 100, now(), 100, 'activate.vendor', 'Activate Vendor', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52029, 0, 0, 'Y', now(), 100, now(), 100, 'actual.price', 'Actual Price', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52030, 0, 0, 'Y', now(), 100, now(), 100, 'add', 'Add', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52031, 0, 0, 'Y', now(), 100, now(), 100, 'add.black.listed.cheque', 'Add Black Listed Cheque', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52032, 0, 0, 'Y', now(), 100, now(), 100, 'add.customer.fidelity.card', 'Add Customer for fidelity card', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52033, 0, 0, 'Y', now(), 100, now(), 100, 'add.customer.for.fidelity.card', 'Add Customer for fidelity card', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52034, 0, 0, 'Y', now(), 100, now(), 100, 'add.record', 'Add Record', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52035, 0, 0, 'Y', now(), 100, now(), 100, 'add.to.cart', 'Add To Cart', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52036, 0, 0, 'Y', now(), 100, now(), 100, 'address', 'Address', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52037, 0, 0, 'Y', now(), 100, now(), 100, 'adjust.cash.book', 'Adjust Cash Book', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52038, 0, 0, 'Y', now(), 100, now(), 100, 'advanced', 'Advanced', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52039, 0, 0, 'Y', now(), 100, now(), 100, 'aging', 'Aging', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52040, 0, 0, 'Y', now(), 100, now(), 100, 'ajax.error', 'Some error occured while communicating with the server. Please try again.', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52041, 0, 0, 'Y', now(), 100, now(), 100, 'all', 'All', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52042, 0, 0, 'Y', now(), 100, now(), 100, 'all.products', 'All products', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52043, 0, 0, 'Y', now(), 100, now(), 100, 'amount.difference', 'Difference', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52044, 0, 0, 'Y', now(), 100, now(), 100, 'amount.expense', 'Expense', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52045, 0, 0, 'Y', now(), 100, now(), 100, 'amount.receipt', 'Receipt', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52046, 0, 0, 'Y', now(), 100, now(), 100, 'amount.refunded', 'Amount refunded', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52047, 0, 0, 'Y', now(), 100, now(), 100, 'amount.tendered', 'Amount Tendered', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52048, 0, 0, 'Y', now(), 100, now(), 100, 'amount.transfer', 'Transfer', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52049, 0, 0, 'Y', now(), 100, now(), 100, 'application.name', 'Application Name', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52050, 0, 0, 'Y', now(), 100, now(), 100, 'application.version', 'Application Version', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52051, 0, 0, 'Y', now(), 100, now(), 100, 'asset', 'Assets', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52052, 0, 0, 'Y', now(), 100, now(), 100, 'at.least.one', 'At least one', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52053, 0, 0, 'Y', now(), 100, now(), 100, 'attach.image', 'Attach Image', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52054, 0, 0, 'Y', now(), 100, now(), 100, 'attribute', 'Attribute', 'Attribute', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52055, 0, 0, 'Y', now(), 100, now(), 100, 'attribute.set', 'Attribute Set', 'Attribute Set', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52056, 0, 0, 'Y', now(), 100, now(), 100, 'available.menu', 'Available Menus', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52057, 0, 0, 'Y', now(), 100, now(), 100, 'back', 'Back', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52058, 0, 0, 'Y', now(), 100, now(), 100, 'barcode', 'Barcode', 'Barcode', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52059, 0, 0, 'Y', now(), 100, now(), 100, 'barcode.already.exists', 'Barcode already exists!', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52060, 0, 0, 'Y', now(), 100, now(), 100, 'black.listed.cheques', 'Black Listed Cheques', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52061, 0, 0, 'Y', now(), 100, now(), 100, 'bpartner.info', 'Business Partner Info', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52062, 0, 0, 'Y', now(), 100, now(), 100, 'bpartner.trx.details', 'Business Partner Trx Details', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52063, 0, 0, 'Y', now(), 100, now(), 100, 'brand', 'Brand', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52064, 0, 0, 'Y', now(), 100, now(), 100, 'cal.period.curr', 'Calculation Period And Curr.', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52065, 0, 0, 'Y', now(), 100, now(), 100, 'card', 'Card', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52066, 0, 0, 'Y', now(), 100, now(), 100, 'card.amount', 'Card Amount', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52067, 0, 0, 'Y', now(), 100, now(), 100, 'card.amt.entered', 'Card Amount Entered', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52068, 0, 0, 'Y', now(), 100, now(), 100, 'card.amt.tendered', 'Card amount tendered', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52069, 0, 0, 'Y', now(), 100, now(), 100, 'card.amt.total', 'Card Amount Total', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52070, 0, 0, 'Y', now(), 100, now(), 100, 'card.is.empty', 'The Cart is Empty !', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52071, 0, 0, 'Y', now(), 100, now(), 100, 'card.no', 'Card No', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52072, 0, 0, 'Y', now(), 100, now(), 100, 'card.total', 'Card Total', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52073, 0, 0, 'Y', now(), 100, now(), 100, 'cart.addmore', 'Add More', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52074, 0, 0, 'Y', now(), 100, now(), 100, 'cart.empty', 'Cart is empty!', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52075, 0, 0, 'Y', now(), 100, now(), 100, 'cart.has', 'Cart has', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52076, 0, 0, 'Y', now(), 100, now(), 100, 'cart.items', ' items', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52077, 0, 0, 'Y', now(), 100, now(), 100, 'cart.remove', 'Remove', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52078, 0, 0, 'Y', now(), 100, now(), 100, 'cash', 'Cash', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52079, 0, 0, 'Y', now(), 100, now(), 100, 'cash.amount', 'Cash Amount', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52080, 0, 0, 'Y', now(), 100, now(), 100, 'cash.book', 'Cash Book', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52081, 0, 0, 'Y', now(), 100, now(), 100, 'cash.book.adjust', 'The Cash Book has been adjusted.', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52082, 0, 0, 'Y', now(), 100, now(), 100, 'cash.book.adjusted', 'The Cash Book has been adjusted', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52083, 0, 0, 'Y', now(), 100, now(), 100, 'cash.book.history', 'Cash Book History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52084, 0, 0, 'Y', now(), 100, now(), 100, 'cash.line.detail', 'Cash Line Details', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52085, 0, 0, 'Y', now(), 100, now(), 100, 'cash.payment', 'Cash Payment', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52086, 0, 0, 'Y', now(), 100, now(), 100, 'cash.receipt', 'Cash Receipt', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52087, 0, 0, 'Y', now(), 100, now(), 100, 'cash.refunded', 'Cash refunded', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52088, 0, 0, 'Y', now(), 100, now(), 100, 'cash.tendered', 'Cash tendered', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52089, 0, 0, 'Y', now(), 100, now(), 100, 'cash.to.transfer', 'Cash to transfer', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52090, 0, 0, 'Y', now(), 100, now(), 100, 'cash.total', 'Cash Total', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52091, 0, 0, 'Y', now(), 100, now(), 100, 'cellphone', 'Cellphone', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52092, 0, 0, 'Y', now(), 100, now(), 100, 'checkout', 'Checkout', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52093, 0, 0, 'Y', now(), 100, now(), 100, 'cheque', 'Cheque', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52094, 0, 0, 'Y', now(), 100, now(), 100, 'cheque.amount', 'Cheque Amount', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52095, 0, 0, 'Y', now(), 100, now(), 100, 'cheque.amt.entered', 'Cheque Amount Entered', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52096, 0, 0, 'Y', now(), 100, now(), 100, 'cheque.amt.tendered', 'Cheque amount tendered', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52097, 0, 0, 'Y', now(), 100, now(), 100, 'cheque.amt.total', 'Cheque Amount Total', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52098, 0, 0, 'Y', now(), 100, now(), 100, 'cheque.no', 'Cheque No', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52099, 0, 0, 'Y', now(), 100, now(), 100, 'cheque.total', 'Cheque Total', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52100, 0, 0, 'Y', now(), 100, now(), 100, 'choose.attribute', 'Choose Attribute', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52101, 0, 0, 'Y', now(), 100, now(), 100, 'choose.your.till', 'Please choose your till number', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52102, 0, 0, 'Y', now(), 100, now(), 100, 'clear', 'Clear', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52103, 0, 0, 'Y', now(), 100, now(), 100, 'close', 'Close', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52104, 0, 0, 'Y', now(), 100, now(), 100, 'close.till', 'Close Till', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52105, 0, 0, 'Y', now(), 100, now(), 100, 'closed', 'Closed', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52106, 0, 0, 'Y', now(), 100, now(), 100, 'closing.balance', 'Closing Balance', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52107, 0, 0, 'Y', now(), 100, now(), 100, 'cogs', 'CoGS', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52108, 0, 0, 'Y', now(), 100, now(), 100, 'colour', 'Colour', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52109, 0, 0, 'Y', now(), 100, now(), 100, 'commission.details', 'Commission Details', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52110, 0, 0, 'Y', now(), 100, now(), 100, 'completed', 'Completed', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52111, 0, 0, 'Y', now(), 100, now(), 100, 'continue', 'Continue', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52112, 0, 0, 'Y', now(), 100, now(), 100, 'create.bpartner', 'Create Business Partner', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52113, 0, 0, 'Y', now(), 100, now(), 100, 'create.garment', 'Create Garment', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52114, 0, 0, 'Y', now(), 100, now(), 100, 'create.payment', 'Create Payment', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52115, 0, 0, 'Y', now(), 100, now(), 100, 'credit.check', 'Credit Check', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52116, 0, 0, 'Y', now(), 100, now(), 100, 'credit.details', 'Credit Details', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52117, 0, 0, 'Y', now(), 100, now(), 100, 'credit.hold', 'Credit Hold', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52118, 0, 0, 'Y', now(), 100, now(), 100, 'credit.memo', 'Credit Memo', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52119, 0, 0, 'Y', now(), 100, now(), 100, 'credit.ok', 'Credit OK', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52120, 0, 0, 'Y', now(), 100, now(), 100, 'credit.order', 'Credit Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52121, 0, 0, 'Y', now(), 100, now(), 100, 'credit.order.discount', 'Credit Order Discount', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52122, 0, 0, 'Y', now(), 100, now(), 100, 'credit.stop', 'Credit Stop', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52123, 0, 0, 'Y', now(), 100, now(), 100, 'credit.watch', 'Credit Watch', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52124, 0, 0, 'Y', now(), 100, now(), 100, 'current.month', 'Current Month', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52125, 0, 0, 'Y', now(), 100, now(), 100, 'current.till.amount', 'Current Till Amount', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52126, 0, 0, 'Y', now(), 100, now(), 100, 'current.week', 'Current Week', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52127, 0, 0, 'Y', now(), 100, now(), 100, 'current.year', 'Current Year', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52128, 0, 0, 'Y', now(), 100, now(), 100, 'custom', 'Custom', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52129, 0, 0, 'Y', now(), 100, now(), 100, 'custom.sales.reports', 'Custom Sales Report', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52130, 0, 0, 'Y', now(), 100, now(), 100, 'customer', 'Customer', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52131, 0, 0, 'Y', now(), 100, now(), 100, 'customer.id', 'Customer ID', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52132, 0, 0, 'Y', now(), 100, now(), 100, 'customer.info', 'Customer Info', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52133, 0, 0, 'Y', now(), 100, now(), 100, 'customer.returned.order', 'Customer Returned Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52134, 0, 0, 'Y', now(), 100, now(), 100, 'customervendor', 'Customer/Vendor', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52135, 0, 0, 'Y', now(), 100, now(), 100, 'date.created', 'Date Created', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52136, 0, 0, 'Y', now(), 100, now(), 100, 'date.from', 'From', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52137, 0, 0, 'Y', now(), 100, now(), 100, 'date.ordered', 'Date Ordered', 'Date Ordered', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52138, 0, 0, 'Y', now(), 100, now(), 100, 'date.range', 'Date Range', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52139, 0, 0, 'Y', now(), 100, now(), 100, 'date.to', 'to', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52140, 0, 0, 'Y', now(), 100, now(), 100, 'deactivate', 'De-activate', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52141, 0, 0, 'Y', now(), 100, now(), 100, 'deactivate.vendor', 'Deactivate Vendor', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52142, 0, 0, 'Y', now(), 100, now(), 100, 'dealer.name', 'Dealer Name', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52143, 0, 0, 'Y', now(), 100, now(), 100, 'default', 'Default', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52144, 0, 0, 'Y', now(), 100, now(), 100, 'delete', 'Delete', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52145, 0, 0, 'Y', now(), 100, now(), 100, 'delete.selected', 'Delete Selected', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52146, 0, 0, 'Y', now(), 100, now(), 100, 'design', 'Design', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52147, 0, 0, 'Y', now(), 100, now(), 100, 'discount.amt', 'Discount', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52148, 0, 0, 'Y', now(), 100, now(), 100, 'discounted.price', 'Discounted Price', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52149, 0, 0, 'Y', now(), 100, now(), 100, 'display', 'Display', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52150, 0, 0, 'Y', now(), 100, now(), 100, 'display.all.records', 'Do you want to display all records?', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52151, 0, 0, 'Y', now(), 100, now(), 100, 'doc.basis.type', 'Doc Basis Type', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52152, 0, 0, 'Y', now(), 100, now(), 100, 'download.csv', 'Download CSV', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52153, 0, 0, 'Y', now(), 100, now(), 100, 'drafted', 'Drafted', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52154, 0, 0, 'Y', now(), 100, now(), 100, 'dunning.letters.printed.successfully', 'Dunning letters have been printed successfully', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52155, 0, 0, 'Y', now(), 100, now(), 100, 'edit', 'Edit', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52156, 0, 0, 'Y', now(), 100, now(), 100, 'edit.attribute', 'Edit Attribute', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52157, 0, 0, 'Y', now(), 100, now(), 100, 'edit.black.listed.cheque', 'Edit Black Listed Cheque', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52158, 0, 0, 'Y', now(), 100, now(), 100, 'edit.customer', 'Edit Customer', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52159, 0, 0, 'Y', now(), 100, now(), 100, 'edit.price', 'Edit Price', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52160, 0, 0, 'Y', now(), 100, now(), 100, 'edit.price.list', 'Edit Price List', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52161, 0, 0, 'Y', now(), 100, now(), 100, 'edit.product', 'Edit Product', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52162, 0, 0, 'Y', now(), 100, now(), 100, 'edit.related.products', 'Edit related products details', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52163, 0, 0, 'Y', now(), 100, now(), 100, 'edit.role', 'Edit Role', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52164, 0, 0, 'Y', now(), 100, now(), 100, 'edit.user', 'Edit User', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52165, 0, 0, 'Y', now(), 100, now(), 100, 'edit.vendor', 'Edit Vendor', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52166, 0, 0, 'Y', now(), 100, now(), 100, 'enable.printing', 'Enable printing', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52167, 0, 0, 'Y', now(), 100, now(), 100, 'enter', 'ENTER', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52168, 0, 0, 'Y', now(), 100, now(), 100, 'excl.vat', '(excl. VAT)', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52169, 0, 0, 'Y', now(), 100, now(), 100, 'fast.moving.item', 'Fast Moving Items Report', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52170, 0, 0, 'Y', now(), 100, now(), 100, 'fast.moving.item.current.month', 'Fast Moving Items Report (Current Month)', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52171, 0, 0, 'Y', now(), 100, now(), 100, 'fast.moving.item.today', 'Fast Moving Items Report (Today)', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52172, 0, 0, 'Y', now(), 100, now(), 100, 'filter.by', 'Filter By', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52173, 0, 0, 'Y', now(), 100, now(), 100, 'filter.type', 'Choose the type of filter', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52174, 0, 0, 'Y', now(), 100, now(), 100, 'first', 'First', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52175, 0, 0, 'Y', now(), 100, now(), 100, 'fixed', 'Fixed', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52176, 0, 0, 'Y', now(), 100, now(), 100, 'float.amt.change', 'This is the float amount for today. Please Enter float amount for the next day if needs to be changed.', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52177, 0, 0, 'Y', now(), 100, now(), 100, 'footer.copyright', 'All Contents ©', '2006 Tamak ICT', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52178, 0, 0, 'Y', now(), 100, now(), 100, 'found.none', 'Found None', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52179, 0, 0, 'Y', now(), 100, now(), 100, 'from', 'From', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52180, 0, 0, 'Y', now(), 100, now(), 100, 'garment.template', 'Garment Template', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52181, 0, 0, 'Y', now(), 100, now(), 100, 'generate.commission', 'Generate Commission', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52182, 0, 0, 'Y', now(), 100, now(), 100, 'goods.received.note', 'Goods Received Note', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52183, 0, 0, 'Y', now(), 100, now(), 100, 'goods.returned.note', 'Goods Returned Note', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52184, 0, 0, 'Y', now(), 100, now(), 100, 'hide.details', 'Hide Details', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52185, 0, 0, 'Y', now(), 100, now(), 100, 'import.black.listed', 'Import Black Listed Cheques', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52186, 0, 0, 'Y', now(), 100, now(), 100, 'import.blacklisted.message1', 'This utility is to import the a list of Black Listed Cheques from a csv file into the system,
The csv file should look like the one shown below including the header:', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52187, 0, 0, 'Y', now(), 100, now(), 100, 'import.list', 'Import List', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52188, 0, 0, 'Y', now(), 100, now(), 100, 'import.product.message', 'This utility is to import the products and Stock in Hand from a csv file into the system,
For importing the garment products, the CSV file name should containg the word ''Garment''
The csv file should look like the one shown below including the header', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52189, 0, 0, 'Y', now(), 100, now(), 100, 'incl.vat', '(incl. VAT)', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52190, 0, 0, 'Y', now(), 100, now(), 100, 'inprogress', 'InProgress', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52191, 0, 0, 'Y', now(), 100, now(), 100, 'invalid', 'Invalid', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52192, 0, 0, 'Y', now(), 100, now(), 100, 'invoice.no', 'Invoice No', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52193, 0, 0, 'Y', now(), 100, now(), 100, 'invoke', 'Invoke', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52194, 0, 0, 'Y', now(), 100, now(), 100, 'invoke.customer.returned.order', 'Invoke', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52195, 0, 0, 'Y', now(), 100, now(), 100, 'invoke.partial', 'Invoke Partial POS Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52196, 0, 0, 'Y', now(), 100, now(), 100, 'items', 'Items', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52197, 0, 0, 'Y', now(), 100, now(), 100, 'last', 'Last', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52198, 0, 0, 'Y', now(), 100, now(), 100, 'last.2.months', 'Last 2 Months', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52199, 0, 0, 'Y', now(), 100, now(), 100, 'last.2.weeks', 'Last 2 Weeks', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52200, 0, 0, 'Y', now(), 100, now(), 100, 'last.3.months', 'Last 3 Months', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52201, 0, 0, 'Y', now(), 100, now(), 100, 'last.3.weeks', 'Last 3 Weeks', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52202, 0, 0, 'Y', now(), 100, now(), 100, 'last.6.month', 'Last 6 Months', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52203, 0, 0, 'Y', now(), 100, now(), 100, 'license.name', 'License Name', 'License Name', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52204, 0, 0, 'Y', now(), 100, now(), 100, 'license.valid', 'License Valid', 'License Valid', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52205, 0, 0, 'Y', now(), 100, now(), 100, 'licensed.distribution', 'Licensed Distribution', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52206, 0, 0, 'Y', now(), 100, now(), 100, 'licensed.module', 'Licensed Modules', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52207, 0, 0, 'Y', now(), 100, now(), 100, 'licensing.info', 'Licensing Information', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52208, 0, 0, 'Y', now(), 100, now(), 100, 'list', 'List', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52209, 0, 0, 'Y', now(), 100, now(), 100, 'login.home.all.contents', 'All content', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52210, 0, 0, 'Y', now(), 100, now(), 100, 'login.home.loginForgot', 'Forgot password?', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52211, 0, 0, 'Y', now(), 100, now(), 100, 'login.home.message1', 'Please enter your username and password', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52212, 0, 0, 'Y', now(), 100, now(), 100, 'login.home.message2', 'Please enter PIN', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52213, 0, 0, 'Y', now(), 100, now(), 100, 'login.home.password', 'Password', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52214, 0, 0, 'Y', now(), 100, now(), 100, 'login.home.username', 'Username', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52215, 0, 0, 'Y', now(), 100, now(), 100, 'login.password.backToLogin', ' ', ' Click Here to go back to the Login Screen', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52216, 0, 0, 'Y', now(), 100, now(), 100, 'login.password.passwordSent', 'Your password has been sent you should receive it in a few minutes', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52217, 0, 0, 'Y', now(), 100, now(), 100, 'marked.price', 'Marked Price', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52218, 0, 0, 'Y', now(), 100, now(), 100, 'max.active.users', 'Max Active Users', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52219, 0, 0, 'Y', now(), 100, now(), 100, 'max.sold.item', 'Max sold Item', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52220, 0, 0, 'Y', now(), 100, now(), 100, 'menus', 'Menus', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52221, 0, 0, 'Y', now(), 100, now(), 100, 'min.item.sold', 'Min Item Sold', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52222, 0, 0, 'Y', now(), 100, now(), 100, 'mixed', 'Mixed', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52223, 0, 0, 'Y', now(), 100, now(), 100, 'mobile', 'Moblie No', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52224, 0, 0, 'Y', now(), 100, now(), 100, 'model', 'Model', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52225, 0, 0, 'Y', now(), 100, now(), 100, 'month', 'Month', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52226, 0, 0, 'Y', now(), 100, now(), 100, 'net.amt', 'Net Amount', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52227, 0, 0, 'Y', now(), 100, now(), 100, 'net.cash.trx', 'Net Cash Trx', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52228, 0, 0, 'Y', now(), 100, now(), 100, 'net.transaction', 'Net Transaction', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52229, 0, 0, 'Y', now(), 100, now(), 100, 'new.attribute.value', 'New Attribute Value', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52230, 0, 0, 'Y', now(), 100, now(), 100, 'new.credit.order', 'New Credit Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52231, 0, 0, 'Y', now(), 100, now(), 100, 'new.customer', 'New Customer', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52232, 0, 0, 'Y', now(), 100, now(), 100, 'new.customer.return.order', 'New Customer Return Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52233, 0, 0, 'Y', now(), 100, now(), 100, 'new.goods.received.note', 'New Goods Receive Note', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52234, 0, 0, 'Y', now(), 100, now(), 100, 'new.goods.returned.note', 'New Goods Returned Note', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52235, 0, 0, 'Y', now(), 100, now(), 100, 'new.order', 'New Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52236, 0, 0, 'Y', now(), 100, now(), 100, 'new.price', 'New Price', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52237, 0, 0, 'Y', now(), 100, now(), 100, 'no', 'No', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52238, 0, 0, 'Y', now(), 100, now(), 100, 'no.customer.was.found.for', 'No customer was found for', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52239, 0, 0, 'Y', now(), 100, now(), 100, 'no.shipment', 'No Shipment', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52240, 0, 0, 'Y', now(), 100, now(), 100, 'no.vendor.was.found.for', 'No vendor was found for', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52241, 0, 0, 'Y', now(), 100, now(), 100, 'normal.template', 'Normal Template', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52242, 0, 0, 'Y', now(), 100, now(), 100, 'not.authorised.to.give.discount', 'It seems that you are not authorised to give discounts', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52243, 0, 0, 'Y', now(), 100, now(), 100, 'not.found', 'Not Found', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52244, 0, 0, 'Y', now(), 100, now(), 100, 'notes', 'Notes', 'Notes', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52245, 0, 0, 'Y', now(), 100, now(), 100, 'num.active.users', 'No of Active Users', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52246, 0, 0, 'Y', now(), 100, now(), 100, 'num.operations', 'Number of Operations', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52247, 0, 0, 'Y', now(), 100, now(), 100, 'old.attribute.value', 'Old Attribute Value', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52248, 0, 0, 'Y', now(), 100, now(), 100, 'open.invoices', 'Open Invoices', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52249, 0, 0, 'Y', now(), 100, now(), 100, 'opening.balance', 'Opening Balance', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52250, 0, 0, 'Y', now(), 100, now(), 100, 'order.no', 'Order No', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52251, 0, 0, 'Y', now(), 100, now(), 100, 'order.type', 'Order Type', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52252, 0, 0, 'Y', now(), 100, now(), 100, 'organisation.name', 'Organisations', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52253, 0, 0, 'Y', now(), 100, now(), 100, 'partial.pos.order', 'Partial POS Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52254, 0, 0, 'Y', now(), 100, now(), 100, 'partial.pos.order.history', 'Partial POS Order History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52255, 0, 0, 'Y', now(), 100, now(), 100, 'payment.allocation', 'Payment Allocation', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52256, 0, 0, 'Y', now(), 100, now(), 100, 'payment.by', 'Payment By', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52257, 0, 0, 'Y', now(), 100, now(), 100, 'payment.details', 'Payment Details', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52258, 0, 0, 'Y', now(), 100, now(), 100, 'payment.num', 'Payment No', 'Payment No', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52259, 0, 0, 'Y', now(), 100, now(), 100, 'payment.status', 'Payment Status', 'Payment Status', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52260, 0, 0, 'Y', now(), 100, now(), 100, 'payment.terms', 'Payment Terms', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52261, 0, 0, 'Y', now(), 100, now(), 100, 'payment.type', 'Payment Type', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52262, 0, 0, 'Y', now(), 100, now(), 100, 'periodic.cash.details', 'Periodic Cash Book Details', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52263, 0, 0, 'Y', now(), 100, now(), 100, 'please.enter.pin', 'Please enter PIN', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52264, 0, 0, 'Y', now(), 100, now(), 100, 'pmenu.administration', 'Administration', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52265, 0, 0, 'Y', now(), 100, now(), 100, 'pmenu.cash.sales', 'Cash Sales', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52266, 0, 0, 'Y', now(), 100, now(), 100, 'pmenu.credit.sales', 'Credit Sales', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52267, 0, 0, 'Y', now(), 100, now(), 100, 'pmenu.performance.analysis', 'Performance Analysis', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52268, 0, 0, 'Y', now(), 100, now(), 100, 'pmenu.purchases', 'Purchases', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52269, 0, 0, 'Y', now(), 100, now(), 100, 'pmenu.stock', 'Stock', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52270, 0, 0, 'Y', now(), 100, now(), 100, 'pos.info', 'POS Info', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52271, 0, 0, 'Y', now(), 100, now(), 100, 'pos.info.current.month', 'POS Info (Current Month)', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52272, 0, 0, 'Y', now(), 100, now(), 100, 'pos.info.custom', 'POS Info (Custom)', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52273, 0, 0, 'Y', now(), 100, now(), 100, 'pos.info.today', 'POS Info (Today)', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52274, 0, 0, 'Y', now(), 100, now(), 100, 'pos.name', 'POS Name', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52275, 0, 0, 'Y', now(), 100, now(), 100, 'pos.order', 'POS Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52276, 0, 0, 'Y', now(), 100, now(), 100, 'pos.order.history', 'POS Order History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52277, 0, 0, 'Y', now(), 100, now(), 100, 'posPassowrd.welcome', 'Welcome to Posterita POS', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52278, 0, 0, 'Y', now(), 100, now(), 100, 'postalAddr', 'Postal Address', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52279, 0, 0, 'Y', now(), 100, now(), 100, 'preference.themes', 'Themes', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52280, 0, 0, 'Y', now(), 100, now(), 100, 'preferences', 'Preferences', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52281, 0, 0, 'Y', now(), 100, now(), 100, 'prepared.order', 'Prepared Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52282, 0, 0, 'Y', now(), 100, now(), 100, 'prev', 'Prev', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52283, 0, 0, 'Y', now(), 100, now(), 100, 'print.barcode', 'Print Barcode', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52284, 0, 0, 'Y', now(), 100, now(), 100, 'print.dunning.letters', 'Print Dunning Letters', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52285, 0, 0, 'Y', now(), 100, now(), 100, 'print.fidelity.card', 'Print Fidelity Card', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52286, 0, 0, 'Y', now(), 100, now(), 100, 'print.order', 'Print Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52287, 0, 0, 'Y', now(), 100, now(), 100, 'print.pdf', 'Print PDF', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52288, 0, 0, 'Y', now(), 100, now(), 100, 'printer.enabled', 'Printer enabled', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52289, 0, 0, 'Y', now(), 100, now(), 100, 'printer.name', 'Printer name', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52290, 0, 0, 'Y', now(), 100, now(), 100, 'product.already.exists', 'Product name already exists!', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52291, 0, 0, 'Y', now(), 100, now(), 100, 'product.id', 'Product ID', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52292, 0, 0, 'Y', now(), 100, now(), 100, 'product.info', 'Product Info', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52293, 0, 0, 'Y', now(), 100, now(), 100, 'product.type.item', 'Item', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52294, 0, 0, 'Y', now(), 100, now(), 100, 'product.type.services', 'Services', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52295, 0, 0, 'Y', now(), 100, now(), 100, 'product.updated', 'The Products have been updated', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52296, 0, 0, 'Y', now(), 100, now(), 100, 'profit.margin', 'Profit Margin', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52297, 0, 0, 'Y', now(), 100, now(), 100, 'purchase.price', 'Purchase Price', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52298, 0, 0, 'Y', now(), 100, now(), 100, 'qty.received', 'Qty Received', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52299, 0, 0, 'Y', now(), 100, now(), 100, 'qty.returned.by.customer', 'Qty Returned By Customer', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52300, 0, 0, 'Y', now(), 100, now(), 100, 'qty.returned.to.supplier', 'Qty Returned to Supplier', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52301, 0, 0, 'Y', now(), 100, now(), 100, 'qty.sold', 'Qty Sold', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52302, 0, 0, 'Y', now(), 100, now(), 100, 'reason.message', 'Reason', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52303, 0, 0, 'Y', now(), 100, now(), 100, 'record.found', 'Records found', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52304, 0, 0, 'Y', now(), 100, now(), 100, 'records.per.page', 'records per page', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52305, 0, 0, 'Y', now(), 100, now(), 100, 'remote.printing', 'Remote printing', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52306, 0, 0, 'Y', now(), 100, now(), 100, 'remove.customer.fidelity.card', 'Remove Customer for fidelity card', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52307, 0, 0, 'Y', now(), 100, now(), 100, 'report.filter.settings', 'Report Filter Settings', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52308, 0, 0, 'Y', now(), 100, now(), 100, 'reprint', 'Reprint', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52309, 0, 0, 'Y', now(), 100, now(), 100, 'returned.order', 'Returned Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52310, 0, 0, 'Y', now(), 100, now(), 100, 'revenue', 'Revenue', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52311, 0, 0, 'Y', now(), 100, now(), 100, 'sales.details', 'Sales Details', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52312, 0, 0, 'Y', now(), 100, now(), 100, 'sales.order', 'Sales Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52313, 0, 0, 'Y', now(), 100, now(), 100, 'sales.price', 'Sales Price', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52314, 0, 0, 'Y', now(), 100, now(), 100, 'sales.reports', 'Sales Reports', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52315, 0, 0, 'Y', now(), 100, now(), 100, 'save', 'Save', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52316, 0, 0, 'Y', now(), 100, now(), 100, 'save.as.csv', 'Save as CSV', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52317, 0, 0, 'Y', now(), 100, now(), 100, 'search', 'Search', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52318, 0, 0, 'Y', now(), 100, now(), 100, 'search.customer', 'Search Customer', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52319, 0, 0, 'Y', now(), 100, now(), 100, 'search.customer.notfound', 'No customers were found for', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52320, 0, 0, 'Y', now(), 100, now(), 100, 'search.product', 'Search Product', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52321, 0, 0, 'Y', now(), 100, now(), 100, 'search.product.notfound', 'No products were found for:', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52322, 0, 0, 'Y', now(), 100, now(), 100, 'search.result.displaying', 'Displaying', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52323, 0, 0, 'Y', now(), 100, now(), 100, 'search.result.of', 'of', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52324, 0, 0, 'Y', now(), 100, now(), 100, 'search.result.to', 'to', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52325, 0, 0, 'Y', now(), 100, now(), 100, 'search.results', 'Search Results', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52326, 0, 0, 'Y', now(), 100, now(), 100, 'select', 'Select', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52327, 0, 0, 'Y', now(), 100, now(), 100, 'select.all', 'Select All', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52328, 0, 0, 'Y', now(), 100, now(), 100, 'select.bpartner.type', 'Select partner type', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52329, 0, 0, 'Y', now(), 100, now(), 100, 'select.range', 'Select Range', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52330, 0, 0, 'Y', now(), 100, now(), 100, 'selected.customers', 'Selected Customers', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52331, 0, 0, 'Y', now(), 100, now(), 100, 'settle.payment', 'Settle Payment', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52332, 0, 0, 'Y', now(), 100, now(), 100, 'settle.payment.message', 'NOTE:-The Cash Payments would have effect only when the cash book is closed', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52333, 0, 0, 'Y', now(), 100, now(), 100, 'shipment.no', 'Shipment No', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52334, 0, 0, 'Y', now(), 100, now(), 100, 'shipment.required', 'Shipment Required', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52335, 0, 0, 'Y', now(), 100, now(), 100, 'shipment.status', 'Shipment Status', 'Shipment Status', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52336, 0, 0, 'Y', now(), 100, now(), 100, 'show.details', 'Show Details', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52337, 0, 0, 'Y', now(), 100, now(), 100, 'size', 'Size', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52338, 0, 0, 'Y', now(), 100, now(), 100, 'slow.moving.item', 'Slow Moving Items', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52339, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.adjust.cashbook', 'Adjust Cash Book', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52340, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.adjust.inventory.id', 'Adjust Inventory', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52341, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.adjust.stock.id', 'Stock Adjustment', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52342, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.bpartner.sales.details', 'Business Partner Sales Details', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52343, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.bpartners', 'Business Partners', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52344, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.cash.sales', 'Cash Sales', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52345, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.cash.sales.customer.complusory', 'Cash Sales (Customer Compulsory)', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52346, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.cash.sales.history', 'Cash Sales History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52347, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.cash.sales.multiple.payments', 'Cash Sales (Discount/Multiple Payments)', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52348, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.cashbook.history', 'Cash Book History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52349, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.cashbook.report', 'Cash Book Report', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52350, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.check.repair.database.integrity', 'Check/Repair Database Integrity', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52351, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.close.till', 'Close Till', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52352, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.complete.prepared.order', 'Complete Prepared Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52353, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.create.unallocated.payment.id', 'Create General Payments', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52354, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.credit.memo.history.id', 'Credit Memo History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52355, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.credit.sales', 'Credit Sales', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52356, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.credit.sales.history', 'Credit Sales History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52357, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.creditmemo.from.creditorder.id', 'Invoke Credit Memo', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52358, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.current.money.in.terminal', 'Current Money in Terminal', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52359, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.customer.return.history.id', 'Customer Return History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52360, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.customer.returned.order', 'Customer Returned Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52361, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.customers', 'Customers', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52362, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.document.history', 'Document History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52363, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.dunning.letters', 'Dunning Letters', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52364, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.edit.product.attribute.value', 'Edit Product Attribute Value', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52365, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.fast.moving.items', 'Fast Moving Items', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52366, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.generate.commission', 'Generate Commission', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52367, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.goods.received.note', 'Goods Received Note', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52368, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.goods.received.note.history', 'Goods Received Note History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52369, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.goods.returned.note', 'Goods Returned Note', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52370, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.goods.returned.note.history', 'Goods Returned Note History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52371, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.inventory.history.id', 'Inventory History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52372, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.invoke.customer.returned.order', 'Invoke Customer Returned Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52373, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.logout', 'Logout', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52374, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.open.cashdrawer', 'Open Cash Drawer', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52375, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.order.history', 'Order History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52376, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.payment.allocation.history', 'Payment Allocations History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52377, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.payment.term', 'Payment Term', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52378, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.performance.analysis.report', 'Performance Analysis Report', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52379, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.preferences', 'Preferences', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52380, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.prepare.order', 'Prepare Order', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52381, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.prepared.order.history', 'Prepared Order History', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52382, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.products', 'Products', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52383, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.quick.cash.sales', 'Quick Cash Sales', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52384, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.role', 'Role', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52385, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.sales.report.per.terminal', 'Sales Report per Terminal', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52386, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.settle.payment.credit.sales', 'Settle Payment on a Credit Sales', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(523847, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.slow.moving.items', 'Slow Moving Items', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52388, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.stock', 'Stock', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52389, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.stock.movement', 'Stock Movement', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52390, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.tax', 'Tax', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52391, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.users', 'Users', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52392, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.vendors', 'Vendors', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52393, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.view.last.generated.commission', 'Last Generated Commission', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52394, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.view.licensing', 'Licensing', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52395, 0, 0, 'Y', now(), 100, now(), 100, 'status', 'Status', 'Status', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52396, 0, 0, 'Y', now(), 100, now(), 100, 'stock.in.hand', 'Stock in Hand', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52397, 0, 0, 'Y', now(), 100, now(), 100, 'stock.inquiry', 'Stock Inquiry', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52398, 0, 0, 'Y', now(), 100, now(), 100, 'stock.movement', 'Stock Movement', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52399, 0, 0, 'Y', now(), 100, now(), 100, 'stock.movement.report', 'Stock Movement Report', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52400, 0, 0, 'Y', now(), 100, now(), 100, 'submit', 'Submit', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52401, 0, 0, 'Y', now(), 100, now(), 100, 'summary.by.periods', 'Summary By Period', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52402, 0, 0, 'Y', now(), 100, now(), 100, 'switch.to.paging', 'Switch to Paging', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52403, 0, 0, 'Y', now(), 100, now(), 100, 'tamak.pos', 'Posterita POS', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52404, 0, 0, 'Y', now(), 100, now(), 100, 'tax.credit', 'Tax Credit', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52405, 0, 0, 'Y', now(), 100, now(), 100, 'tax.due', 'Tax Due', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52406, 0, 0, 'Y', now(), 100, now(), 100, 'texttile.products.only', 'Textile Products Only', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52407, 0, 0, 'Y', now(), 100, now(), 100, 'the.cart.has', 'The Cart has', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52408, 0, 0, 'Y', now(), 100, now(), 100, 'till.balance.entered', 'Till Balance Entered', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52409, 0, 0, 'Y', now(), 100, now(), 100, 'till.management', 'Till Mgt', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52410, 0, 0, 'Y', now(), 100, now(), 100, 'till.no', 'Till No', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52411, 0, 0, 'Y', now(), 100, now(), 100, 'time.hour', 'h', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52412, 0, 0, 'Y', now(), 100, now(), 100, 'time.minute', 'm', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52413, 0, 0, 'Y', now(), 100, now(), 100, 'to', 'To', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52414, 0, 0, 'Y', now(), 100, now(), 100, 'today', 'Today', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52415, 0, 0, 'Y', now(), 100, now(), 100, 'total', 'Total', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52416, 0, 0, 'Y', now(), 100, now(), 100, 'total.price', 'Total Price', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52417, 0, 0, 'Y', now(), 100, now(), 100, 'trade.revenue', 'Trade Revenue', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52418, 0, 0, 'Y', now(), 100, now(), 100, 'unallocated.payments', 'Unallocated Payments', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52419, 0, 0, 'Y', now(), 100, now(), 100, 'update.details', 'Update Details', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52420, 0, 0, 'Y', now(), 100, now(), 100, 'user', 'User', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52421, 0, 0, 'Y', now(), 100, now(), 100, 'user.details', 'User''s Details', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52422, 0, 0, 'Y', now(), 100, now(), 100, 'user.info', 'Information', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52423, 0, 0, 'Y', now(), 100, now(), 100, 'vat', 'VAT', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52424, 0, 0, 'Y', now(), 100, now(), 100, 'vendor.details', 'Vendor Details', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52425, 0, 0, 'Y', now(), 100, now(), 100, 'vendor.ref', 'Vendor Ref', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52426, 0, 0, 'Y', now(), 100, now(), 100, 'vendors', 'Vendors', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52427, 0, 0, 'Y', now(), 100, now(), 100, 'view', 'View', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52428, 0, 0, 'Y', now(), 100, now(), 100, 'view.attributes', 'View Attributes', 'View Attributes', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52429, 0, 0, 'Y', now(), 100, now(), 100, 'view.by', 'View By', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52430, 0, 0, 'Y', now(), 100, now(), 100, 'view.info', 'View Info', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52431, 0, 0, 'Y', now(), 100, now(), 100, 'view.product.cart', 'View Product Cart', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52432, 0, 0, 'Y', now(), 100, now(), 100, 'view.report', 'View Report', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52433, 0, 0, 'Y', now(), 100, now(), 100, 'view.role', 'View Role', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52434, 0, 0, 'Y', now(), 100, now(), 100, 'view.vendor', 'View Vendor', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52435, 0, 0, 'Y', now(), 100, now(), 100, 'year', 'Year', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52436, 0, 0, 'Y', now(), 100, now(), 100, 'yes', 'Yes', ' ', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52437, 0, 0, 'Y', now(), 100, now(), 100, 'price.x', 'Price(excl. VAT)', 'Prix(excl. TVA)', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52438, 0, 0, 'Y', now(), 100, now(), 100, 'LogOut', 'Log Out', 'Sortir', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52439, 0, 0, 'Y', now(), 100, now(), 100, 'smenu.price.check', 'Price Check', 'Verifier Prix', 'I', 'D'); -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(52440, 0, 0, 'Y', now(), 100, now(), 100, 'next', 'Next', 'Suivant', 'I', 'D'); - - -SELECT '015_PosteritaDML2_PG.sql' AS Filename; --- ad_Window Changes -- - -INSERT INTO AD_WINDOW(AD_WINDOW_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, WINDOWTYPE, ISSOTRX, ENTITYTYPE, PROCESSING, AD_IMAGE_ID, AD_COLOR_ID, ISDEFAULT, WINHEIGHT, WINWIDTH, ISBETAFUNCTIONALITY) - VALUES(52000, 0, 0, 'Y', now(), 100, now(), 100, 'Posterita Web Menu', 'To dynamically generate the menu links in posterita', NULL, 'M', 'Y', 'D', 'N', NULL, NULL, 'N', 0, 0, 'N'); -INSERT INTO AD_WINDOW(AD_WINDOW_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, WINDOWTYPE, ISSOTRX, ENTITYTYPE, PROCESSING, AD_IMAGE_ID, AD_COLOR_ID, ISDEFAULT, WINHEIGHT, WINWIDTH, ISBETAFUNCTIONALITY) - VALUES(52001, 0, 0, 'Y', now(), 100, now(), 100, 'Posterita Role Menu', 'Depending on Which Role, Different set of Menus are generated and made available.', NULL, 'M', 'Y', 'D', 'N', NULL, NULL, 'N', 0, 0, 'N'); -INSERT INTO AD_WINDOW(AD_WINDOW_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, WINDOWTYPE, ISSOTRX, ENTITYTYPE, PROCESSING, AD_IMAGE_ID, AD_COLOR_ID, ISDEFAULT, WINHEIGHT, WINWIDTH, ISBETAFUNCTIONALITY) - VALUES(52002, 0, 0, 'Y', now(), 100, now(), 100, 'Posterita Web Properties', 'Stores the message tags to be picked up from AD_MESSAGE ', NULL, 'M', 'Y', 'D', 'N', NULL, NULL, 'N', 0, 0, 'N'); -INSERT INTO AD_WINDOW(AD_WINDOW_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, WINDOWTYPE, ISSOTRX, ENTITYTYPE, PROCESSING, AD_IMAGE_ID, AD_COLOR_ID, ISDEFAULT, WINHEIGHT, WINWIDTH, ISBETAFUNCTIONALITY) - VALUES(52003, 0, 0, 'Y', now(), 100, now(), 100, 'Posterita BlackListCheque', 'Black Listed Cheque', NULL, 'M', 'Y', 'D', 'N', NULL, NULL, 'N', 0, 0, 'N'); ---- ad_Tab Changes --- -INSERT INTO AD_TAB(AD_TAB_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, AD_TABLE_ID, AD_WINDOW_ID, SEQNO, TABLEVEL, ISSINGLEROW, ISINFOTAB, ISTRANSLATIONTAB, ISREADONLY, AD_COLUMN_ID, HASTREE, WHERECLAUSE, ORDERBYCLAUSE, COMMITWARNING, AD_PROCESS_ID, PROCESSING, AD_IMAGE_ID, IMPORTFIELDS, AD_COLUMNSORTORDER_ID, AD_COLUMNSORTYESNO_ID, ISSORTTAB, ENTITYTYPE, INCLUDED_TAB_ID, READONLYLOGIC, DISPLAYLOGIC, ISINSERTRECORD, ISADVANCEDTAB) - VALUES(52000, 0, 0, 'Y', now(), 100, now(), 100, 'Web Menu', 'To dynamically generate the menu links in posterita', NULL, 52003, 52000, 10, 0, 'N', 'N', 'N', 'N', NULL, 'N', NULL, NULL, NULL, NULL, 'N', NULL, 'N', NULL, NULL, 'N', 'D', NULL, NULL, NULL, 'Y', 'N'); -INSERT INTO AD_TAB(AD_TAB_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, AD_TABLE_ID, AD_WINDOW_ID, SEQNO, TABLEVEL, ISSINGLEROW, ISINFOTAB, ISTRANSLATIONTAB, ISREADONLY, AD_COLUMN_ID, HASTREE, WHERECLAUSE, ORDERBYCLAUSE, COMMITWARNING, AD_PROCESS_ID, PROCESSING, AD_IMAGE_ID, IMPORTFIELDS, AD_COLUMNSORTORDER_ID, AD_COLUMNSORTYESNO_ID, ISSORTTAB, ENTITYTYPE, INCLUDED_TAB_ID, READONLYLOGIC, DISPLAYLOGIC, ISINSERTRECORD, ISADVANCEDTAB) - VALUES(52001, 0, 0, 'Y', now(), 100, now(), 100, 'Role Menu', 'Depending on Which Role, Different set of Menus are generated and made available.', NULL, 52002, 52001, 10, 0, 'N', 'N', 'N', 'N', NULL, 'N', NULL, NULL, NULL, NULL, 'N', NULL, 'N', NULL, NULL, 'N', 'D', NULL, NULL, NULL, 'Y', 'N'); -INSERT INTO AD_TAB(AD_TAB_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, AD_TABLE_ID, AD_WINDOW_ID, SEQNO, TABLEVEL, ISSINGLEROW, ISINFOTAB, ISTRANSLATIONTAB, ISREADONLY, AD_COLUMN_ID, HASTREE, WHERECLAUSE, ORDERBYCLAUSE, COMMITWARNING, AD_PROCESS_ID, PROCESSING, AD_IMAGE_ID, IMPORTFIELDS, AD_COLUMNSORTORDER_ID, AD_COLUMNSORTYESNO_ID, ISSORTTAB, ENTITYTYPE, INCLUDED_TAB_ID, READONLYLOGIC, DISPLAYLOGIC, ISINSERTRECORD, ISADVANCEDTAB) - VALUES(52002, 0, 0, 'Y', now(), 100, now(), 100, 'Web Properties', 'Stores the message tags to be picked up from AD_MESSAGE ', NULL, 52001, 52002, 10, 0, 'N', 'N', 'N', 'Y', NULL, 'N', NULL, NULL, NULL, NULL, 'N', NULL, 'N', NULL, NULL, 'N', 'D', NULL, NULL, NULL, 'N', 'N'); -INSERT INTO AD_TAB(AD_TAB_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, AD_TABLE_ID, AD_WINDOW_ID, SEQNO, TABLEVEL, ISSINGLEROW, ISINFOTAB, ISTRANSLATIONTAB, ISREADONLY, AD_COLUMN_ID, HASTREE, WHERECLAUSE, ORDERBYCLAUSE, COMMITWARNING, AD_PROCESS_ID, PROCESSING, AD_IMAGE_ID, IMPORTFIELDS, AD_COLUMNSORTORDER_ID, AD_COLUMNSORTYESNO_ID, ISSORTTAB, ENTITYTYPE, INCLUDED_TAB_ID, READONLYLOGIC, DISPLAYLOGIC, ISINSERTRECORD, ISADVANCEDTAB) - VALUES(52003, 0, 0, 'Y', now(), 100, now(), 100, 'BlackListCheque', 'Black Listed Cheque', NULL, 52000, 52003, 10, 0, 'N', 'N', 'N', 'N', NULL, 'N', NULL, NULL, NULL, NULL, 'N', NULL, 'N', NULL, NULL, 'N', 'D', NULL, NULL, NULL, 'Y', 'N'); - --- AD_Field Changes -- - -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52008, 0, 0, 'Y', now(), 100, now(), 100, 'Args', NULL, NULL, 'Y', 425, 52069, NULL, 'Y', NULL, 60, 'N', 210, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52009, 0, 0, 'Y', now(), 100, now(), 100, 'ClassName', NULL, NULL, 'Y', 425, 52068, NULL, 'Y', NULL, 60, 'N', 200, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52010, 0, 0, 'Y', now(), 100, now(), 100, 'UserPIN', NULL, NULL, 'Y', 118, 52066, NULL, 'Y', NULL, 20, 'N', 120, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52011, 0, 0, 'Y', now(), 100, now(), 100, 'AmountRefunded', NULL, NULL, 'Y', 186, 52065, NULL, 'N', NULL, 22, 'N', NULL, NULL, 'Y', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52012, 0, 0, 'Y', now(), 100, now(), 100, 'AmountTendered', NULL, NULL, 'Y', 186, 52064, NULL, 'N', NULL, 22, 'N', NULL, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52013, 0, 0, 'Y', now(), 100, now(), 100, 'Terminal', NULL, NULL, 'Y', 186, 52070, NULL, 'N', NULL, 10, 'N', NULL, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52014, 0, 0, 'Y', now(), 100, now(), 100, 'OrderType', NULL, NULL, 'Y', 186, 52063, NULL, 'Y', NULL, 510, 'N', NULL, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52015, 0, 0, 'Y', now(), 100, now(), 100, 'Group1', NULL, NULL, 'Y', 180, 52061, NULL, 'Y', NULL, 50, 'N', NULL, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52016, 0, 0, 'Y', now(), 100, now(), 100, 'Group2', NULL, NULL, 'Y', 180, 52062, NULL, 'Y', NULL, 50, 'N', NULL, NULL, 'Y', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52017, 0, 0, 'Y', now(), 100, now(), 100, 'CashDrawer', NULL, NULL, 'Y', 676, 52058, NULL, 'Y', NULL, 20, 'N', NULL, NULL, 'Y', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52018, 0, 0, 'Y', now(), 100, now(), 100, 'UserDiscount', NULL, NULL, 'Y', 119, 52067, NULL, 'Y', NULL, 22, 'N', 100, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52019, 0, 0, 'Y', now(), 100, now(), 100, 'Client', 'Client/Tenant for this installation.', 'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.', 'Y', 52000, 52042, NULL, 'Y', NULL, 22, 'N', 10, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52020, 0, 0, 'Y', now(), 100, now(), 100, 'Organization', 'Organizational entity within client', 'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.', 'Y', 52000, 52043, NULL, 'Y', NULL, 22, 'N', 20, NULL, 'Y', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52021, 0, 0, 'Y', now(), 100, now(), 100, 'Category', NULL, NULL, 'Y', 52000, 52060, NULL, 'Y', NULL, 120, 'N', 60, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52022, 0, 0, 'Y', now(), 100, now(), 100, 'Description', 'Optional short description of the record', 'A description is limited to 255 characters.', 'Y', 52000, 52054, NULL, 'Y', NULL, 200, 'N', 40, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52023, 0, 0, 'Y', now(), 100, now(), 100, 'HasSubMenu', NULL, NULL, 'Y', 52000, 52053, NULL, 'Y', NULL, 1, 'N', 70, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52024, 0, 0, 'Y', now(), 100, now(), 100, 'Comment/Help', 'Comment or Hint', 'The Help field contains a hint, comment or help about the use of this item.', 'Y', 52000, 52057, NULL, 'Y', NULL, 2000, 'N', 50, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52025, 0, 0, 'Y', now(), 100, now(), 100, 'ImageLink', NULL, NULL, 'Y', 52000, 52055, NULL, 'Y', NULL, 510, 'N', 90, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52026, 0, 0, 'Y', now(), 100, now(), 100, 'Active', 'The record is active in the system', 'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons for de-activating and not deleting records: -(1) The system requires the record for audit purposes. -(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries.', 'Y', 52000, 52044, NULL, 'Y', NULL, 1, 'N', 80, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52027, 0, 0, 'Y', now(), 100, now(), 100, 'MenuLink', NULL, NULL, 'Y', 52000, 52050, NULL, 'Y', NULL, 510, 'N', 100, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52028, 0, 0, 'Y', now(), 100, now(), 100, 'Module', NULL, NULL, 'Y', 52000, 52051, NULL, 'Y', NULL, 120, 'N', 110, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52029, 0, 0, 'Y', now(), 100, now(), 100, 'Name', 'Alphanumeric identifier of the entity', 'The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.', 'Y', 52000, 52049, NULL, 'Y', NULL, 120, 'N', 30, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52030, 0, 0, 'Y', now(), 100, now(), 100, 'ParentMenu_ID', NULL, NULL, 'Y', 52000, 52052, NULL, 'Y', NULL, 10, 'N', 120, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52031, 0, 0, 'Y', now(), 100, now(), 100, 'Position', NULL, NULL, 'Y', 52000, 52056, NULL, 'Y', NULL, 10, 'N', 130, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52032, 0, 0, 'Y', now(), 100, now(), 100, 'Sequence', NULL, NULL, 'Y', 52000, 52059, NULL, 'Y', NULL, 22, 'N', 140, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52033, 0, 0, 'Y', now(), 100, now(), 100, 'U_WebMenu_ID', NULL, NULL, 'Y', 52000, 52041, NULL, 'N', NULL, 22, 'N', NULL, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52034, 0, 0, 'Y', now(), 100, now(), 100, 'Client', 'Client/Tenant for this installation.', 'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.', 'Y', 52001, 52032, NULL, 'Y', NULL, 22, 'N', 10, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52035, 0, 0, 'Y', now(), 100, now(), 100, 'Organization', 'Organizational entity within client', 'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.', 'Y', 52001, 52033, NULL, 'Y', NULL, 22, 'N', 20, NULL, 'Y', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52036, 0, 0, 'Y', now(), 100, now(), 100, 'Role', 'Responsibility Role', 'The Role determines security and access a user who has this Role will have in the System.', 'Y', 52001, 52039, NULL, 'Y', NULL, 10, 'N', 40, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52037, 0, 0, 'Y', now(), 100, now(), 100, 'Active', 'The record is active in the system', 'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons for de-activating and not deleting records: -(1) The system requires the record for audit purposes. -(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries.', 'Y', 52001, 52034, NULL, 'Y', NULL, 1, 'N', 50, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52038, 0, 0, 'Y', now(), 100, now(), 100, 'U_RoleMenu_ID', NULL, NULL, 'Y', 52001, 52031, NULL, 'N', NULL, 22, 'N', NULL, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52039, 0, 0, 'Y', now(), 100, now(), 100, 'U_WebMenu_ID', NULL, NULL, 'Y', 52001, 52040, NULL, 'Y', NULL, 10, 'N', 30, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52040, 0, 0, 'Y', now(), 100, now(), 100, 'Client', 'Client/Tenant for this installation.', 'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.', 'Y', 52002, 52022, NULL, 'Y', NULL, 22, 'N', 30, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52041, 0, 0, 'Y', now(), 100, now(), 100, 'Organization', 'Organizational entity within client', 'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.', 'Y', 52002, 52023, NULL, 'Y', NULL, 22, 'N', 20, NULL, 'Y', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52042, 0, 0, 'Y', now(), 100, now(), 100, 'Active', 'The record is active in the system', 'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons for de-activating and not deleting records: -(1) The system requires the record for audit purposes. -(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries.', 'Y', 52002, 52024, NULL, 'Y', NULL, 1, 'N', 10, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52043, 0, 0, 'Y', now(), 100, now(), 100, 'U_Key', NULL, NULL, 'Y', 52002, 52029, NULL, 'Y', NULL, 240, 'N', 40, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52044, 0, 0, 'Y', now(), 100, now(), 100, 'U_Value', NULL, NULL, 'Y', 52002, 52030, NULL, 'Y', NULL, 240, 'N', 50, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52045, 0, 0, 'Y', now(), 100, now(), 100, 'U_Web_Properties_ID', NULL, NULL, 'Y', 52002, 52021, NULL, 'N', NULL, 22, 'N', NULL, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52046, 0, 0, 'Y', now(), 100, now(), 100, 'Client', 'Client/Tenant for this installation.', 'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.', 'Y', 52003, 52012, NULL, 'Y', NULL, 22, 'N', 10, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52047, 0, 0, 'Y', now(), 100, now(), 100, 'Organization', 'Organizational entity within client', 'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.', 'Y', 52003, 52013, NULL, 'Y', NULL, 22, 'N', 20, NULL, 'Y', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52048, 0, 0, 'Y', now(), 100, now(), 100, 'BankName', NULL, NULL, 'Y', 52003, 52019, NULL, 'Y', NULL, 120, 'N', 30, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52049, 0, 0, 'Y', now(), 100, now(), 100, 'ChequeNo', NULL, NULL, 'Y', 52003, 52020, NULL, 'Y', NULL, 120, 'N', 40, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52050, 0, 0, 'Y', now(), 100, now(), 100, 'Active', 'The record is active in the system', 'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons for de-activating and not deleting records: -(1) The system requires the record for audit purposes. -(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries.', 'Y', 52003, 52014, NULL, 'Y', NULL, 1, 'N', 50, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); -INSERT INTO AD_FIELD(AD_FIELD_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, NAME, DESCRIPTION, HELP, ISCENTRALLYMAINTAINED, AD_TAB_ID, AD_COLUMN_ID, AD_FIELDGROUP_ID, ISDISPLAYED, DISPLAYLOGIC, DISPLAYLENGTH, ISREADONLY, SEQNO, SORTNO, ISSAMELINE, ISHEADING, ISFIELDONLY, ISENCRYPTED, ENTITYTYPE, OBSCURETYPE, AD_REFERENCE_ID, ISMANDATORY) - VALUES(52051, 0, 0, 'Y', now(), 100, now(), 100, 'U_BlackListCheque_ID', NULL, NULL, 'Y', 52003, 52011, NULL, 'N', NULL, 22, 'N', NULL, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL); - --- AD_WindowAccess Changes -- -INSERT INTO AD_WINDOW_ACCESS(AD_WINDOW_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) - VALUES(52000, 0, 0, 0, 'Y', now(), 0, now(), 0, 'Y'); -INSERT INTO AD_WINDOW_ACCESS(AD_WINDOW_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) - VALUES(52001, 50001, 0, 0, 'Y', now(), 0, now(), 0, 'Y'); -INSERT INTO AD_WINDOW_ACCESS(AD_WINDOW_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) - VALUES(52001, 103, 11, 0, 'Y', now(), 100, now(), 100, 'Y'); -INSERT INTO AD_WINDOW_ACCESS(AD_WINDOW_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) - VALUES(52001, 102, 11, 0, 'Y', now(), 100, now(), 100, 'Y'); -INSERT INTO AD_WINDOW_ACCESS(AD_WINDOW_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) - VALUES(52002, 103, 11, 0, 'Y', now(), 100, now(), 100, 'Y'); -INSERT INTO AD_WINDOW_ACCESS(AD_WINDOW_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) - VALUES(52002, 50001, 0, 0, 'Y', now(), 0, now(), 0, 'Y'); -INSERT INTO AD_WINDOW_ACCESS(AD_WINDOW_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) - VALUES(52002, 102, 11, 0, 'Y', now(), 100, now(), 100, 'Y'); -INSERT INTO AD_WINDOW_ACCESS(AD_WINDOW_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) - VALUES(52003, 50001, 0, 0, 'Y', now(), 0, now(), 0, 'Y'); -INSERT INTO AD_WINDOW_ACCESS(AD_WINDOW_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) - VALUES(52003, 103, 11, 0, 'Y', now(), 100, now(), 100, 'Y'); -INSERT INTO AD_WINDOW_ACCESS(AD_WINDOW_ID, AD_ROLE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, ISREADWRITE) - VALUES(52003, 102, 11, 0, 'Y', now(), 100, now(), 100, 'Y'); - - --- AD_Menu Changes -- -INSERT INTO AD_MENU(AD_MENU_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, NAME, UPDATEDBY, DESCRIPTION, ISSUMMARY, ISSOTRX, ISREADONLY, ACTION, AD_WINDOW_ID, AD_WORKFLOW_ID, AD_TASK_ID, AD_PROCESS_ID, AD_FORM_ID, AD_WORKBENCH_ID, ENTITYTYPE) - VALUES(52002, 0, 0, 'Y', now(), 100, now(), 'Web Menu', 100, 'To dynamically generate the menu links in posterita', 'N', 'N', 'N', 'W', 52000, NULL, NULL, NULL, NULL, NULL, 'D'); -INSERT INTO AD_MENU(AD_MENU_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, NAME, UPDATEDBY, DESCRIPTION, ISSUMMARY, ISSOTRX, ISREADONLY, ACTION, AD_WINDOW_ID, AD_WORKFLOW_ID, AD_TASK_ID, AD_PROCESS_ID, AD_FORM_ID, AD_WORKBENCH_ID, ENTITYTYPE) - VALUES(52003, 0, 0, 'Y', now(), 100, now(), 'Role Menu', 100, NULL, 'N', 'N', 'N', 'W', 52001, NULL, NULL, NULL, NULL, NULL, 'D'); -INSERT INTO AD_MENU(AD_MENU_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, NAME, UPDATEDBY, DESCRIPTION, ISSUMMARY, ISSOTRX, ISREADONLY, ACTION, AD_WINDOW_ID, AD_WORKFLOW_ID, AD_TASK_ID, AD_PROCESS_ID, AD_FORM_ID, AD_WORKBENCH_ID, ENTITYTYPE) - VALUES(52004, 0, 0, 'Y', now(), 100, now(), 'Web Properties', 100, NULL, 'N', 'N', 'N', 'W', 52002, NULL, NULL, NULL, NULL, NULL, 'D'); -INSERT INTO AD_MENU(AD_MENU_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, NAME, UPDATEDBY, DESCRIPTION, ISSUMMARY, ISSOTRX, ISREADONLY, ACTION, AD_WINDOW_ID, AD_WORKFLOW_ID, AD_TASK_ID, AD_PROCESS_ID, AD_FORM_ID, AD_WORKBENCH_ID, ENTITYTYPE) - VALUES(52005, 0, 0, 'Y', now(), 100, now(), 'Black Listed Cheque', 100, NULL, 'N', 'N', 'N', 'W', 52003, NULL, NULL, NULL, NULL, NULL, 'D'); - --- AD_TREENODEMM Changes -- -INSERT INTO AD_TREENODEMM(AD_TREE_ID, NODE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, PARENT_ID, SEQNO) - VALUES(10, 52002, 0, 0, 'Y', now(), 0, now(), 0, 52001, 3); -INSERT INTO AD_TREENODEMM(AD_TREE_ID, NODE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, PARENT_ID, SEQNO) - VALUES(10, 52003, 0, 0, 'Y', now(), 0, now(), 0, 52001, 2); -INSERT INTO AD_TREENODEMM(AD_TREE_ID, NODE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, PARENT_ID, SEQNO) - VALUES(10, 52004, 0, 0, 'Y', now(), 0, now(), 0, 52001, 1); -INSERT INTO AD_TREENODEMM(AD_TREE_ID, NODE_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, PARENT_ID, SEQNO) - VALUES(10, 52005, 0, 0, 'Y', now(), 0, now(), 0, 52001, 0); - -SELECT '016_GridCollapseDetail.sql' AS Filename; ---@author - fer_luck @ centuryono ---Add Detail column ---The fields are already in the databse. Just needs to update them -update ad_field set seqno = seqno + 10 where ad_tab_id = 107 and seqno > 70; - -update ad_field -set ad_tab_id = 107, isdisplayed = 'Y', seqno = 80 -where ad_column_id = 8547; - ---It's not physically in the database, so here we create it -alter table ad_field add included_tab_id numeric(10); - ---Modify the views -drop view ad_field_v; -CREATE OR REPLACE VIEW AD_FIELD_V -(AD_WINDOW_ID, AD_TAB_ID, AD_FIELD_ID, AD_TABLE_ID, AD_COLUMN_ID, - NAME, DESCRIPTION, HELP, ISDISPLAYED, DISPLAYLOGIC, - DISPLAYLENGTH, SEQNO, SORTNO, ISSAMELINE, ISHEADING, - ISFIELDONLY, ISREADONLY, ISENCRYPTEDFIELD, OBSCURETYPE, COLUMNNAME, - COLUMNSQL, FIELDLENGTH, VFORMAT, DEFAULTVALUE, ISKEY, - ISPARENT, ISMANDATORY, ISIDENTIFIER, ISTRANSLATED, AD_REFERENCE_VALUE_ID, - CALLOUT, AD_REFERENCE_ID, AD_VAL_RULE_ID, AD_PROCESS_ID, ISALWAYSUPDATEABLE, - READONLYLOGIC, MANDATORYLOGIC, ISUPDATEABLE, ISENCRYPTEDCOLUMN, ISSELECTIONCOLUMN, TABLENAME, - VALUEMIN, VALUEMAX, FIELDGROUP, VALIDATIONCODE) -AS -SELECT t.AD_Window_ID, f.AD_Tab_ID, f.AD_Field_ID, tbl.AD_Table_ID, f.AD_Column_ID, - f.Name, f.Description, f.Help, f.IsDisplayed, f.DisplayLogic, f.DisplayLength, - f.SeqNo, f.SortNo, f.IsSameLine, f.IsHeading, f.IsFieldOnly, f.IsReadOnly, - f.IsEncrypted AS IsEncryptedField, f.ObscureType, - c.ColumnName, c.ColumnSQL, c.FieldLength, c.VFormat, c.DefaultValue, c.IsKey, c.IsParent, - COALESCE(f.IsMandatory, c.IsMandatory) AS IsMandatory, - c.IsIdentifier, c.IsTranslated, c.AD_Reference_Value_ID, - c.Callout, COALESCE(f.AD_Reference_ID, c.AD_Reference_ID) AS AD_Reference_ID, - c.AD_Val_Rule_ID, c.AD_Process_ID, c.IsAlwaysUpdateable, - c.ReadOnlyLogic, c.MandatoryLogic, c.IsUpdateable, c.IsEncrypted AS IsEncryptedColumn, - c.IsSelectionColumn, - tbl.TableName, c.ValueMin, c.ValueMax, - fg.Name AS FieldGroup, vr.Code AS ValidationCode, f.included_tab_id -FROM AD_Field f - INNER JOIN AD_Tab t ON (f.AD_Tab_ID = t.AD_Tab_ID) - LEFT OUTER JOIN AD_FieldGroup fg ON (f.AD_FieldGroup_ID = fg.AD_FieldGroup_ID) - LEFT OUTER JOIN AD_Column c ON (f.AD_Column_ID = c.AD_Column_ID) - INNER JOIN AD_Table tbl ON (c.AD_Table_ID = tbl.AD_Table_ID) - INNER JOIN AD_Reference r ON (c.AD_Reference_ID = r.AD_Reference_ID) - LEFT OUTER JOIN AD_Val_Rule vr ON (c.AD_Val_Rule_ID=vr.AD_Val_Rule_ID) -WHERE f.IsActive = 'Y' - AND c.IsActive = 'Y'; - - -drop view ad_field_vt; -CREATE OR REPLACE VIEW AD_FIELD_VT -(AD_LANGUAGE, AD_WINDOW_ID, AD_TAB_ID, AD_FIELD_ID, AD_TABLE_ID, - AD_COLUMN_ID, NAME, DESCRIPTION, HELP, ISDISPLAYED, - DISPLAYLOGIC, DISPLAYLENGTH, SEQNO, SORTNO, ISSAMELINE, - ISHEADING, ISFIELDONLY, ISREADONLY, ISENCRYPTEDFIELD, OBSCURETYPE, - COLUMNNAME, COLUMNSQL, FIELDLENGTH, VFORMAT, DEFAULTVALUE, - ISKEY, ISPARENT, ISMANDATORY, ISIDENTIFIER, ISTRANSLATED, - AD_REFERENCE_VALUE_ID, CALLOUT, AD_REFERENCE_ID, AD_VAL_RULE_ID, AD_PROCESS_ID, - ISALWAYSUPDATEABLE, READONLYLOGIC, MANDATORYLOGIC, ISUPDATEABLE, ISENCRYPTEDCOLUMN, ISSELECTIONCOLUMN, - TABLENAME, VALUEMIN, VALUEMAX, FIELDGROUP, VALIDATIONCODE) -AS -SELECT trl.AD_Language, t.AD_Window_ID, f.AD_Tab_ID, f.AD_Field_ID, tbl.AD_Table_ID, f.AD_Column_ID, - trl.Name, trl.Description, trl.Help, f.IsDisplayed, f.DisplayLogic, f.DisplayLength, - f.SeqNo, f.SortNo, f.IsSameLine, f.IsHeading, f.IsFieldOnly, f.IsReadOnly, - f.IsEncrypted AS IsEncryptedField, f.ObscureType, - c.ColumnName, c.ColumnSQL, c.FieldLength, c.VFormat, c.DefaultValue, c.IsKey, c.IsParent, - COALESCE(f.IsMandatory, c.IsMandatory) AS IsMandatory, - c.IsIdentifier, c.IsTranslated, c.AD_Reference_Value_ID, - c.Callout, COALESCE(f.AD_Reference_ID, c.AD_Reference_ID) AS AD_Reference_ID, - c.AD_Val_Rule_ID, c.AD_Process_ID, c.IsAlwaysUpdateable, - c.ReadOnlyLogic, c.MandatoryLogic, c.IsUpdateable, c.IsEncrypted AS IsEncryptedColumn, c.IsSelectionColumn, - tbl.TableName, c.ValueMin, c.ValueMax, - fgt.Name AS FieldGroup, vr.Code AS ValidationCode, f.included_tab_id -FROM AD_Field f - INNER JOIN AD_Field_Trl trl ON (f.AD_Field_ID = trl.AD_Field_ID) - INNER JOIN AD_Tab t ON (f.AD_Tab_ID = t.AD_Tab_ID) - LEFT OUTER JOIN AD_FieldGroup_Trl fgt ON - (f.AD_FieldGroup_ID = fgt.AD_FieldGroup_ID AND trl.AD_Language=fgt.AD_Language) - LEFT OUTER JOIN AD_Column c ON (f.AD_Column_ID = c.AD_Column_ID) - INNER JOIN AD_Table tbl ON (c.AD_Table_ID = tbl.AD_Table_ID) - INNER JOIN AD_Reference r ON (c.AD_Reference_ID = r.AD_Reference_ID) - LEFT OUTER JOIN AD_Val_Rule vr ON (c.AD_Val_Rule_ID=vr.AD_Val_Rule_ID) -WHERE f.IsActive = 'Y' - AND c.IsActive = 'Y'; - ---Add the Grid Collapse and Tabbed item navigation -INSERT INTO AD_ELEMENT - (ad_element_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - columnname, entitytype, NAME, printname - ) - VALUES (53002, 0, 0, 'Y', - TO_DATE ('07/18/2007 14:23:01', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/18/2007 14:23:01', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'FieldGroupType', 'D', 'Field Group Type', 'Field Group Type' - ); - -insert into ad_reference - (ad_reference_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, - name, description, help, - validationtype, entitytype) - VALUES (53000, 0, 0, 'Y', - TO_DATE ('07/18/2007 14:22:51', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/18/2007 14:22:51', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'AD_FieldGroup', 'Field Group Type', '', - 'L', 'D'); - -insert into ad_ref_list - (ad_ref_list_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, - value, name, - ad_reference_id, entitytype) -VALUES(53000, 0, 0, 'Y', - TO_DATE ('07/18/2007 14:22:51', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/18/2007 14:22:51', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, - 'T', 'Tab', - 53000, 'D'); -insert into ad_ref_list - (ad_ref_list_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, - value, name, - ad_reference_id, entitytype) -VALUES(53001, 0, 0, 'Y', - TO_DATE ('07/18/2007 14:22:51', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/18/2007 14:22:51', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, - 'L', 'Label', - 53000, 'D'); -insert into ad_ref_list - (ad_ref_list_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, - value, name, - ad_reference_id, entitytype) -VALUES(53002, 0, 0, 'Y', - TO_DATE ('07/18/2007 14:22:51', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/18/2007 14:22:51', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, - 'C', 'Collapse', - 53000, 'D'); - -INSERT INTO AD_COLUMN - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - HELP, - VERSION, entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, seqno, istranslated, isencrypted, - isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable, ad_reference_value_id - ) - VALUES (53002, 0, 0, 'Y', - TO_DATE ('07/18/2007 14:22:51', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('07/18/2007 14:22:51', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Field Group Type', 'Field Group', - 'Field Group.', - 0, 'D', 'FieldGroupType', 414, 17, - 10, 'N', 'N', 'N', 'Y', - 'N', null, 'N', 'N', - 'N', 53002, 'Y', - 'N', 53000 - ); - -ALTER TABLE ad_fieldgroup ADD fieldgrouptype char(1); - -INSERT INTO AD_FIELD - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - HELP, - iscentrallymaintained, ad_tab_id, ad_column_id, isdisplayed, - displaylength, isreadonly, seqno, sortno, issameline, isheading, - isfieldonly, isencrypted, entitytype - ) - VALUES (53002, 0, 0, 'Y', - TO_DATE ('07/18/2007 14:23:09', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('07/18/2007 14:23:17', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Field Group Type', 'Field Group Type', - 'The Field Group type', - 'Y', 342, 53002, 'Y', - 10, 'N', 60, 0, 'N', 'N', - 'N', 'N', 'D' - ); - - - --- NOTE: Don't forget to run the three processes: --- 1 - Add missing translations in the language screen --- 2 - Synchronize terminology --- 3 - Check sequences - -SELECT '017_SaveUserQuery.sql' AS Filename; -ALTER TABLE AD_UserQuery -ADD COLUMN AD_Tab_ID NUMERIC(10); - -INSERT INTO AD_Column -(AD_Column_ID, AD_Client_ID, AD_Org_ID, IsActive, -Created, -Updated, CreatedBy, -UpdatedBy, Name, Description, VERSION, -EntityType, ColumnName, AD_Table_ID, AD_Reference_ID, -FieldLength, IsKey, IsParent, IsMandatory, IsUpdateable, -IsIdentifier, SeqNo, IsTranslated, IsEncrypted, -isselectioncolumn, ad_element_id, callout, issyncdatabase, -isalwaysupdateable -) -VALUES (53251, 0, 0, 'Y', -TO_DATE ('10/10/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), -TO_DATE ('10/10/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, -100, 'Tab', 'Tab within a Window', 1, -'D', 'AD_Tab_ID', 814, 19, -10, 'N', 'N', 'Y', 'Y', -'N', 0, 'N', 'N', -'N', 125, null, 'N', -'N' -); - -SELECT '018_SaveUserQueryMessage.sql' AS Filename; -INSERT INTO AD_Message -(AD_Message_ID, AD_Client_ID, AD_Org_ID, IsActive, -Created, CreatedBy, -Updated, UpdatedBy, -Value, MsgText, MsgType -) -VALUES (53005, 0, 0, 'Y', -TO_DATE ('10/10/2007 14:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, -TO_DATE ('10/10/2007 14:00:00', 'MM/DD/YYYY HH24:MI:SS'), 100, -'QueryName','Query Name','I' -); - -UPDATE AD_Sequence -SET CurrentNextSys = (SELECT MAX (AD_Message_ID) + 1 -FROM AD_Message -WHERE AD_message_ID < 1000000) -WHERE NAME = 'AD_Message'; - - - -SELECT '019_EntityTypeLength.sql' AS Filename; -ALTER TABLE PA_COLORSCHEMA ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_TABLE ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_WF_NEXTCONDITION ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_VAL_RULE ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_REPLICATIONTABLE ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_WORKFLOW ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_IMAGE ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_ENTITYTYPE ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_INFOCOLUMN ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_REFERENCE ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_REF_LIST ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_TAB ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_WF_NODENEXT ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_WORKBENCHWINDOW ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_WF_NODE_PARA ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_PROCESS ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_MENU ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_REPLICATIONSTRATEGY ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_WF_RESPONSIBLE ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_WORKBENCH ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_COLUMN ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_WF_NODE ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_TASK ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_REPORTVIEW ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_REF_TABLE ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_WINDOW ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE PA_MEASURECALC ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_FORM ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_MODIFICATION ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_INFOWINDOW ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_FIELD ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_ELEMENT ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_FIELDGROUP ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_MESSAGE ALTER COLUMN EntityType TYPE VARCHAR(40); -ALTER TABLE AD_PROCESS_PARA ALTER COLUMN EntityType TYPE VARCHAR(40); - -UPDATE AD_COLUMN SET FieldLength = 40 WHERE ColumnName = 'EntityType' - AND ad_table_id IN ( - SELECT ad_table_id - FROM AD_TABLE - WHERE tablename IN - ('AD_Ref_List', - 'AD_WF_NextCondition', - 'AD_Val_Rule', - 'PA_MeasureCalc', - 'AD_Menu', - 'AD_InfoColumn', - 'AD_WF_NodeNext', - 'AD_WF_Node_Para', - 'AD_Element', - 'AD_Task', - 'AD_Workbench', - 'AD_EntityType', - 'AD_Ref_Table', - 'AD_Tab', - 'AD_Field', - 'AD_Process_Para', - 'PA_ColorSchema', - 'AD_Modification', - 'AD_ReplicationStrategy', - 'AD_ReplicationTable', - 'AD_Image', - 'AD_FieldGroup', - 'AD_InfoWindow', - 'AD_Table', - 'AD_WF_Node', - 'AD_WF_Responsible', - 'AD_Form', - 'AD_Window', - 'AD_Column', - 'AD_WorkbenchWindow', - 'AD_Process', - 'AD_ReportView', - 'AD_Reference', - 'AD_Message', - 'AD_Workflow' - )); - -UPDATE AD_FIELD SET DisplayLength = 20 WHERE AD_Column_ID IN -(SELECT AD_Column_ID FROM AD_COLUMN WHERE ColumnName = 'EntityType' - AND ad_table_id IN ( - SELECT ad_table_id - FROM AD_TABLE - WHERE tablename IN - ('AD_Ref_List', - 'AD_WF_NextCondition', - 'AD_Val_Rule', - 'PA_MeasureCalc', - 'AD_Menu', - 'AD_InfoColumn', - 'AD_WF_NodeNext', - 'AD_WF_Node_Para', - 'AD_Element', - 'AD_Task', - 'AD_Workbench', - 'AD_EntityType', - 'AD_Ref_Table', - 'AD_Tab', - 'AD_Field', - 'AD_Process_Para', - 'PA_ColorSchema', - 'AD_Modification', - 'AD_ReplicationStrategy', - 'AD_ReplicationTable', - 'AD_Image', - 'AD_FieldGroup', - 'AD_InfoWindow', - 'AD_Table', - 'AD_WF_Node', - 'AD_WF_Responsible', - 'AD_Form', - 'AD_Window', - 'AD_Column', - 'AD_WorkbenchWindow', - 'AD_Process', - 'AD_ReportView', - 'AD_Reference', - 'AD_Message', - 'AD_Workflow' - ))); - --- hide classpath field that is not implemented -UPDATE AD_FIELD -SET isdisplayed = 'N', isactive = 'N' -WHERE ad_field_id = 13498; - --- hide the register extension buttion that is not implemented -UPDATE AD_FIELD -SET isdisplayed = 'N', isactive = 'N' -WHERE ad_field_id = 13507; - - - -SELECT '020_AD_ModelValidator.sql' AS Filename; -CREATE TABLE AD_MODELVALIDATOR -( AD_CLIENT_ID NUMERIC(10,0) DEFAULT 0 NOT NULL , - AD_MODELVALIDATOR_ID NUMERIC(10,0) NOT NULL , - AD_ORG_ID NUMERIC(10,0) DEFAULT 0 NOT NULL , - CREATED TIMESTAMP NOT NULL , - CREATEDBY NUMERIC(10,0) NOT NULL , - UPDATED DATE NOT NULL , - UPDATEDBY NUMERIC(10,0) NOT NULL , - ISACTIVE CHAR(1) NOT NULL , - NAME VARCHAR(60) NOT NULL , - DESCRIPTION VARCHAR(255), - HELP VARCHAR(2000), - ENTITYTYPE VARCHAR(40) NOT NULL , - MODELVALIDATIONCLASS VARCHAR(255) NOT NULL , - CHECK (IsActive IN ('Y','N')) , - CONSTRAINT AD_MODELVALIDATOR_KEY PRIMARY KEY (AD_MODELVALIDATOR_ID) -); - -INSERT INTO AD_Element -(AD_Element_ID, AD_Client_ID, AD_Org_ID, IsActive, -Created, CreatedBy, -Updated, UpdatedBy, -ColumnName, EntityType, Name, -PrintName -) -VALUES (53225, 0, 0, 'Y', -TO_DATE ('10/21/2007 18:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, -TO_DATE ('10/21/2007 18:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, -'AD_ModelValidator_ID', 'D', 'Model Validator', -'Model Validator' -); - -INSERT INTO AD_Element -(AD_Element_ID, AD_Client_ID, AD_Org_ID, IsActive, -Created, CreatedBy, -Updated, UpdatedBy, -ColumnName, EntityType, Name, -PrintName -) -VALUES (53226, 0, 0, 'Y', -TO_DATE ('10/21/2007 18:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, -TO_DATE ('10/21/2007 18:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, -'ModelValidationClass', 'D', 'Model Validation Class', -'Model Validation Class' -); - --- INSERTING into AD_Table -Insert into AD_Table -(AD_TABLE_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY,NAME,DESCRIPTION,HELP,TABLENAME,ISVIEW,ACCESSLEVEL,ENTITYTYPE,AD_WINDOW_ID,AD_VAL_RULE_ID,LOADSEQ,ISSECURITYENABLED,ISDELETEABLE,ISHIGHVOLUME,IMPORTTABLE,ISCHANGELOG,REPLICATIONTYPE,PO_WINDOW_ID,COPYCOLUMNSFROMTABLE) -values -(53014,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,'Model Validator','Global Model Validator',null,'AD_ModelValidator','N','4','D',null,null,0,'N','Y','N','N','N','L',null,'N'); - --- INSERTING into AD_Column -Insert into AD_Column -(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC) -values -(53252,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,100,'Client','Client/Tenant for this installation.','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.',0,'D','AD_Client_ID',53014,19,null,null,10,'0','N','N','Y','N',null,'N',0,'N','N',null,null,null,null,'N',102,null,'N','N',null,null); - -Insert into AD_Column -(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC) -values -(53253,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,100,'Model Validator',null,null,0,'D','AD_ModelValidator_ID',53014,13,null,null,10,null,'Y','N','Y','N',null,'N',0,'N','N',null,null,null,null,'N',53225,null,'N','N',null,null); - -Insert into AD_Column -(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC) -values -(53254,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,100,'Organization','Organizational entity within client','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.',0,'D','AD_Org_ID',53014,19,null,null,10,'0','N','N','Y','N',null,'N',0,'N','N',null,null,null,null,'N',113,null,'N','N',null,null); - -Insert into AD_Column -(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC) -values -(53255,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,100,'Created','Date this record was created','The Created field indicates the date that this record was created.',0,'D','Created',53014,16,null,null,7,null,'N','N','Y','N',null,'N',0,'N','N',null,null,null,null,'N',245,null,'N','N',null,null); - -Insert into AD_Column -(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC) -values -(53256,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,100,'Created By','User who created this records','The Created By field indicates the user who created this record.',0,'D','CreatedBy',53014,18,110,null,10,null,'N','N','Y','N',null,'N',0,'N','N',null,null,null,null,'N',246,null,'N','N',null,null); - -Insert into AD_Column -(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC) -values -(53257,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,100,'Updated','Date this record was updated','The Updated field indicates the date that this record was updated.',0,'D','Updated',53014,16,null,null,7,null,'N','N','Y','N',null,'N',0,'N','N',null,null,null,null,'N',607,null,'N','N',null,null); - -Insert into AD_Column -(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC) -values -(53258,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,100,'Updated By','User who updated this records','The Updated By field indicates the user who updated this record.',0,'D','UpdatedBy',53014,18,110,null,10,null,'N','N','Y','N',null,'N',0,'N','N',null,null,null,null,'N',608,null,'N','N',null,null); - -Insert into AD_Column -(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC) -values -(53259,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,100,'Active','The record is active in the system','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons for de-activating and not deleting records: -(1) The system requires the record for audit purposes. -(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries.',0,'D','IsActive',53014,20,null,null,1,null,'N','N','Y','Y',null,'N',0,'N','N',null,null,null,null,'N',348,null,'N','N',null,null); - -Insert into AD_Column -(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC) -values -(53260,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,100,'Name','Alphanumeric identifier of the entity','The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.',0,'D','Name',53014,10,null,null,120,null,'N','N','Y','Y',null,'Y',1,'N','N',null,null,null,null,'N',469,null,'N','N',null,null); - -Insert into AD_Column -(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC) -values -(53261,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,100,'Description','Optional short description of the record','A description is limited to 255 characters.',0,'D','Description',53014,10,null,null,255,null,'N','N','N','Y',null,'N',0,'N','N',null,null,null,null,'N',275,null,'N','N',null,null); - -Insert into AD_Column -(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC) -values -(53262,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,100,'Comment/Help','Comment or Hint','The Help field contains a hint, comment or help about the use of this item.',0,'D','Help',53014,10,null,null,2000,null,'N','N','N','Y',null,'N',0,'N','N',null,null,null,null,'N',326,null,'N','N',null,null); - -Insert into AD_Column -(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC) -values -(53263,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,100,'Entity Type','Dictionary Entity Type; Determines ownership and synchronization','The Entity Types "Dictionary", "Adempiere" and "Application" might be automatically synchronized and customizations deleted or overwritten. - -For customizations, copy the entity and select "User"!',0,'D','EntityType',53014,10,null,null,40,null,'N','N','Y','N',null,'N',0,'N','N',null,null,null,null,'N',1682,null,'N','N',null,null); - -Insert into AD_Column -(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC) -values -(53264,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,100,'Model Validation Class',null,null,1,'D','ModelValidationClass',53014,10,null,null,255,null,'N','N','Y','Y',null,'N',0,'N','N',null,null,null,null,'N',53226,null,'N','N',null,null); - --- INSERTING into AD_Window -Insert into AD_Window -(AD_WINDOW_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY,NAME,DESCRIPTION,HELP,WINDOWTYPE,ISSOTRX,ENTITYTYPE,PROCESSING,AD_IMAGE_ID,AD_COLOR_ID,ISDEFAULT,WINHEIGHT,WINWIDTH,ISBETAFUNCTIONALITY) -values -(53003,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,'Model Validator',null,null,'M','N','D','N',null,null,'N',0,0,'N'); - --- INSERTING into AD_Tab -Insert into AD_Tab -(AD_TAB_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY,NAME,DESCRIPTION,HELP,AD_TABLE_ID,AD_WINDOW_ID,SEQNO,TABLEVEL,ISSINGLEROW,ISINFOTAB,ISTRANSLATIONTAB,ISREADONLY,AD_COLUMN_ID,HASTREE,WHERECLAUSE,ORDERBYCLAUSE,COMMITWARNING,AD_PROCESS_ID,PROCESSING,AD_IMAGE_ID,IMPORTFIELDS,AD_COLUMNSORTORDER_ID,AD_COLUMNSORTYESNO_ID,ISSORTTAB,ENTITYTYPE,INCLUDED_TAB_ID,READONLYLOGIC,DISPLAYLOGIC,ISINSERTRECORD,ISADVANCEDTAB) -values -(53014,0,0,'Y',TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'),100,'Model Validator',null,null,53014,53003,10,0,'N','N','N','N',null,'N',null,null,null,null,'N',null,'N',null,null,'N','D',null,null,null,'Y','N'); - --- INSERTING into AD_Field -INSERT -INTO ad_field(ad_field_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, name, description, HELP, iscentrallymaintained, ad_tab_id, ad_column_id, ad_fieldgroup_id, isdisplayed, displaylogic, displaylength, isreadonly, seqno, sortno, issameline, isheading, isfieldonly, isencrypted, entitytype, obscuretype, ad_reference_id, ismandatory, included_tab_id) -VALUES(53271, 0, 0, 'Y', TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Client', 'Client/Tenant for this installation.', 'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.', 'Y', 53014, 53252, NULL, 'Y', NULL, 10, 'N', 10, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL, NULL); - -INSERT -INTO ad_field(ad_field_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, name, description, HELP, iscentrallymaintained, ad_tab_id, ad_column_id, ad_fieldgroup_id, isdisplayed, displaylogic, displaylength, isreadonly, seqno, sortno, issameline, isheading, isfieldonly, isencrypted, entitytype, obscuretype, ad_reference_id, ismandatory, included_tab_id) -VALUES(53272, 0, 0, 'Y', TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Organization', 'Organizational entity within client', 'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.', 'Y', 53014, 53254, NULL, 'Y', NULL, 10, 'N', 20, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL, NULL); - -INSERT -INTO ad_field(ad_field_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, name, description, HELP, iscentrallymaintained, ad_tab_id, ad_column_id, ad_fieldgroup_id, isdisplayed, displaylogic, displaylength, isreadonly, seqno, sortno, issameline, isheading, isfieldonly, isencrypted, entitytype, obscuretype, ad_reference_id, ismandatory, included_tab_id) -VALUES(53273, 0, 0, 'Y', TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Entity Type', 'Dictionary Entity Type; Determines ownership and synchronization', 'The Entity Types "Dictionary", "Adempiere" and "Application" might be automatically synchronized and customizations deleted or overwritten. - -For customizations, copy the entity and select "User"!', 'Y', 53014, 53263, NULL, 'Y', NULL, 40, 'N', 30, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL, NULL); - -INSERT -INTO ad_field(ad_field_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, name, description, HELP, iscentrallymaintained, ad_tab_id, ad_column_id, ad_fieldgroup_id, isdisplayed, displaylogic, displaylength, isreadonly, seqno, sortno, issameline, isheading, isfieldonly, isencrypted, entitytype, obscuretype, ad_reference_id, ismandatory, included_tab_id) -VALUES(53274, 0, 0, 'Y', TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Name', 'Alphanumeric identifier of the entity', 'The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.', 'Y', 53014, 53260, NULL, 'Y', NULL, 120, 'N', 40, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL, NULL); - -INSERT -INTO ad_field(ad_field_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, name, description, HELP, iscentrallymaintained, ad_tab_id, ad_column_id, ad_fieldgroup_id, isdisplayed, displaylogic, displaylength, isreadonly, seqno, sortno, issameline, isheading, isfieldonly, isencrypted, entitytype, obscuretype, ad_reference_id, ismandatory, included_tab_id) -VALUES(53275, 0, 0, 'Y', TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Description', 'Optional short description of the record', 'A description is limited to 255 characters.', 'Y', 53014, 53261, NULL, 'Y', NULL, 255, 'N', 50, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL, NULL); - -INSERT -INTO ad_field(ad_field_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, name, description, HELP, iscentrallymaintained, ad_tab_id, ad_column_id, ad_fieldgroup_id, isdisplayed, displaylogic, displaylength, isreadonly, seqno, sortno, issameline, isheading, isfieldonly, isencrypted, entitytype, obscuretype, ad_reference_id, ismandatory, included_tab_id) -VALUES(53276, 0, 0, 'Y', TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Comment/Help', 'Comment or Hint', 'The Help field contains a hint, comment or help about the use of this item.', 'Y', 53014, 53262, NULL, 'Y', NULL, 2000, 'N', 60, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL, NULL); - -INSERT -INTO ad_field(ad_field_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, name, description, HELP, iscentrallymaintained, ad_tab_id, ad_column_id, ad_fieldgroup_id, isdisplayed, displaylogic, displaylength, isreadonly, seqno, sortno, issameline, isheading, isfieldonly, isencrypted, entitytype, obscuretype, ad_reference_id, ismandatory, included_tab_id) -VALUES(53277, 0, 0, 'Y', TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Active', 'The record is active in the system', 'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons for de-activating and not deleting records: -(1) The system requires the record for audit purposes. -(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries.', 'Y', 53014, 53259, NULL, 'Y', NULL, 1, 'N', 70, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL, NULL); - -INSERT -INTO ad_field(ad_field_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, name, description, HELP, iscentrallymaintained, ad_tab_id, ad_column_id, ad_fieldgroup_id, isdisplayed, displaylogic, displaylength, isreadonly, seqno, sortno, issameline, isheading, isfieldonly, isencrypted, entitytype, obscuretype, ad_reference_id, ismandatory, included_tab_id) -VALUES(53278, 0, 0, 'Y', TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Model Validation Class', NULL, NULL, 'Y', 53014, 53264, NULL, 'Y', NULL, 255, 'N', 80, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL, NULL); - -INSERT -INTO ad_field(ad_field_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, name, description, HELP, iscentrallymaintained, ad_tab_id, ad_column_id, ad_fieldgroup_id, isdisplayed, displaylogic, displaylength, isreadonly, seqno, sortno, issameline, isheading, isfieldonly, isencrypted, entitytype, obscuretype, ad_reference_id, ismandatory, included_tab_id) -VALUES(53279, 0, 0, 'Y', TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'Model Validator', NULL, NULL, 'Y', 53014, 53253, NULL, 'N', NULL, 10, 'N', NULL, NULL, 'N', 'N', 'N', 'N', 'D', NULL, NULL, NULL, NULL); - --- INSERTING into AD_Menu -INSERT -INTO ad_menu(ad_menu_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, name, updatedby, description, issummary, issotrx, isreadonly, ACTION, ad_window_id, ad_workflow_id, ad_task_id, ad_process_id, ad_form_id, ad_workbench_id, entitytype) -VALUES(53012, 0, 0, 'Y', TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 'Model Validator', 100, NULL, 'N', 'N', 'N', 'W', 53003, NULL, NULL, NULL, NULL, NULL, 'D'); - --- INSERTING into AD_TreeNodeMM -INSERT -INTO ad_treenodemm(ad_tree_id, node_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, parent_id, seqno) -VALUES(10, 53012, 0, 0, 'Y', TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 0, TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 0, 153, 9); - --- INSERTING into AD_Sequence -INSERT -INTO ad_sequence(ad_sequence_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, name, description, vformat, isautosequence, incrementno, startno, currentnext, currentnextsys, isaudited, istableid, prefix, suffix, startnewyear) -VALUES(53012, 0, 0, 'Y', TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, TO_DATE ('10/22/2007 09:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, 'AD_ModelValidator', 'Table AD_ModelValidator', NULL, 'Y', 1, 1000000, 1000000, 50000, 'N', 'Y', NULL, NULL, 'N'); - -SELECT '021_rejected.sql' AS Filename; --- This is just a sequence placeholder for a rejected migration script - -SELECT '022_FR_1732786.sql' AS Filename; --- FR [ 1732786 ] DefaultValue on AD_Field --- https://sourceforge.net/tracker/index.php?func=detail&aid=1732786&group_id=176962&atid=879335 --- ---delete from AD_Column where AD_Column_ID=53265; -INSERT INTO AD_Column (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version,AD_Client_ID,AD_Column_ID) -VALUES (0,272,14,107,'DefaultValue',TO_TIMESTAMP('2007-10-22 14:22:58','YYYY-MM-DD HH24:MI:SS'),0,'Default value hierarchy, separated by ;','D',2000,'The defaults are evaluated in the order of definition, the first not null value becomes the default value of the column. The values are separated by comma or semicolon. a) Literals:. ''Text'' or 123 b) Variables - in format @Variable@ - Login e.g. #Date, #AD_Org_ID, #AD_Client_ID - Accounting Schema: e.g. $C_AcctSchema_ID, $C_Calendar_ID - Global defaults: e.g. DateFormat - Window values (all Picks, CheckBoxes, RadioButtons, and DateDoc/DateAcct) c) SQL code with the tag: @SQL=SELECT something AS DefaultValue FROM ... The SQL statement can contain variables. There can be no other value other than the SQL statement. The default is only evaluated, if no user preference is defined. Default definitions are ignored for record columns as Key, Parent, Client as well as Buttons.','Y','N','N','N','N','N','N','N','N','N','Y','Default Logic',0,TO_TIMESTAMP('2007-10-22 14:22:58','YYYY-MM-DD HH24:MI:SS'),0,0,0,53265); --- ---delete from AD_Field where AD_Field_ID=53280; -INSERT INTO AD_Field (AD_Column_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,AD_Client_ID,UpdatedBy,SeqNo,AD_Field_ID) -VALUES (53265,0,107,TO_TIMESTAMP('2007-10-22 14:30:33','YYYY-MM-DD HH24:MI:SS'),0,'Default value hierarchy, separated by ;',60,'D','The defaults are evaluated in the order of definition, the first not null value becomes the default value of the column. The values are separated by comma or semicolon. a) Literals:. ''Text'' or 123 b) Variables - in format @Variable@ - Login e.g. #Date, #AD_Org_ID, #AD_Client_ID - Accounting Schema: e.g. $C_AcctSchema_ID, $C_Calendar_ID - Global defaults: e.g. DateFormat - Window values (all Picks, CheckBoxes, RadioButtons, and DateDoc/DateAcct) c) SQL code with the tag: @SQL=SELECT something AS DefaultValue FROM ... The SQL statement can contain variables. There can be no other value other than the SQL statement. The default is only evaluated, if no user preference is defined. Default definitions are ignored for record columns as Key, Parent, Client as well as Buttons.','Y','Y','Y','N','N','N','N','N','Default Logic',TO_TIMESTAMP('2007-10-22 14:30:33','YYYY-MM-DD HH24:MI:SS'),0,0,270,53280); --- - --- -ALTER TABLE AD_Field ADD DefaultValue VARCHAR(2000); --- -CREATE OR REPLACE VIEW AD_FIELD_V -(AD_WINDOW_ID, AD_TAB_ID, AD_FIELD_ID, AD_TABLE_ID, AD_COLUMN_ID, - NAME, DESCRIPTION, HELP, ISDISPLAYED, DISPLAYLOGIC, - DISPLAYLENGTH, SEQNO, SORTNO, ISSAMELINE, ISHEADING, - ISFIELDONLY, ISREADONLY, ISENCRYPTEDFIELD, OBSCURETYPE, COLUMNNAME, - COLUMNSQL, FIELDLENGTH, VFORMAT, DEFAULTVALUE, ISKEY, - ISPARENT, ISMANDATORY, ISIDENTIFIER, ISTRANSLATED, AD_REFERENCE_VALUE_ID, - CALLOUT, AD_REFERENCE_ID, AD_VAL_RULE_ID, AD_PROCESS_ID, ISALWAYSUPDATEABLE, - READONLYLOGIC, MANDATORYLOGIC, ISUPDATEABLE, ISENCRYPTEDCOLUMN, ISSELECTIONCOLUMN, TABLENAME, - VALUEMIN, VALUEMAX, FIELDGROUP, VALIDATIONCODE, INCLUDED_TAB_ID) -AS -SELECT t.AD_Window_ID, f.AD_Tab_ID, f.AD_Field_ID, tbl.AD_Table_ID, f.AD_Column_ID, - f.Name, f.Description, f.Help, f.IsDisplayed, f.DisplayLogic, f.DisplayLength, - f.SeqNo, f.SortNo, f.IsSameLine, f.IsHeading, f.IsFieldOnly, f.IsReadOnly, - f.IsEncrypted AS IsEncryptedField, f.ObscureType, - c.ColumnName, c.ColumnSQL, c.FieldLength, c.VFormat, - COALESCE(f.DefaultValue, c.DefaultValue) as DefaultValue, - c.IsKey, c.IsParent, - COALESCE(f.IsMandatory, c.IsMandatory) AS IsMandatory, - c.IsIdentifier, c.IsTranslated, c.AD_Reference_Value_ID, - c.Callout, COALESCE(f.AD_Reference_ID, c.AD_Reference_ID) AS AD_Reference_ID, - c.AD_Val_Rule_ID, c.AD_Process_ID, c.IsAlwaysUpdateable, - c.ReadOnlyLogic, c.MandatoryLogic, c.IsUpdateable, c.IsEncrypted AS IsEncryptedColumn, - c.IsSelectionColumn, - tbl.TableName, c.ValueMin, c.ValueMax, - fg.Name AS FieldGroup, vr.Code AS ValidationCode, - f.Included_Tab_ID -FROM AD_Field f - INNER JOIN AD_Tab t ON (f.AD_Tab_ID = t.AD_Tab_ID) - LEFT OUTER JOIN AD_FieldGroup fg ON (f.AD_FieldGroup_ID = fg.AD_FieldGroup_ID) - LEFT OUTER JOIN AD_Column c ON (f.AD_Column_ID = c.AD_Column_ID) - INNER JOIN AD_Table tbl ON (c.AD_Table_ID = tbl.AD_Table_ID) - INNER JOIN AD_Reference r ON (c.AD_Reference_ID = r.AD_Reference_ID) - LEFT OUTER JOIN AD_Val_Rule vr ON (c.AD_Val_Rule_ID=vr.AD_Val_Rule_ID) -WHERE f.IsActive = 'Y' - AND c.IsActive = 'Y'; --- -CREATE OR REPLACE VIEW AD_FIELD_VT -(AD_LANGUAGE, AD_WINDOW_ID, AD_TAB_ID, AD_FIELD_ID, AD_TABLE_ID, - AD_COLUMN_ID, NAME, DESCRIPTION, HELP, ISDISPLAYED, - DISPLAYLOGIC, DISPLAYLENGTH, SEQNO, SORTNO, ISSAMELINE, - ISHEADING, ISFIELDONLY, ISREADONLY, ISENCRYPTEDFIELD, OBSCURETYPE, - COLUMNNAME, COLUMNSQL, FIELDLENGTH, VFORMAT, DEFAULTVALUE, - ISKEY, ISPARENT, ISMANDATORY, ISIDENTIFIER, ISTRANSLATED, - AD_REFERENCE_VALUE_ID, CALLOUT, AD_REFERENCE_ID, AD_VAL_RULE_ID, AD_PROCESS_ID, - ISALWAYSUPDATEABLE, READONLYLOGIC, MANDATORYLOGIC, ISUPDATEABLE, ISENCRYPTEDCOLUMN, ISSELECTIONCOLUMN, - TABLENAME, VALUEMIN, VALUEMAX, FIELDGROUP, VALIDATIONCODE, INCLUDED_TAB_ID) -AS -SELECT trl.AD_Language, t.AD_Window_ID, f.AD_Tab_ID, f.AD_Field_ID, tbl.AD_Table_ID, f.AD_Column_ID, - trl.Name, trl.Description, trl.Help, f.IsDisplayed, f.DisplayLogic, f.DisplayLength, - f.SeqNo, f.SortNo, f.IsSameLine, f.IsHeading, f.IsFieldOnly, f.IsReadOnly, - f.IsEncrypted AS IsEncryptedField, f.ObscureType, - c.ColumnName, c.ColumnSQL, c.FieldLength, c.VFormat, - COALESCE(f.DefaultValue, c.DefaultValue) as DefaultValue, - c.IsKey, c.IsParent, - COALESCE(f.IsMandatory, c.IsMandatory) AS IsMandatory, - c.IsIdentifier, c.IsTranslated, c.AD_Reference_Value_ID, - c.Callout, COALESCE(f.AD_Reference_ID, c.AD_Reference_ID) AS AD_Reference_ID, - c.AD_Val_Rule_ID, c.AD_Process_ID, c.IsAlwaysUpdateable, - c.ReadOnlyLogic, c.MandatoryLogic, c.IsUpdateable, c.IsEncrypted AS IsEncryptedColumn, c.IsSelectionColumn, - tbl.TableName, c.ValueMin, c.ValueMax, - fgt.Name AS FieldGroup, vr.Code AS ValidationCode, - f.Included_Tab_ID -FROM AD_Field f - INNER JOIN AD_Field_Trl trl ON (f.AD_Field_ID = trl.AD_Field_ID) - INNER JOIN AD_Tab t ON (f.AD_Tab_ID = t.AD_Tab_ID) - LEFT OUTER JOIN AD_FieldGroup_Trl fgt ON - (f.AD_FieldGroup_ID = fgt.AD_FieldGroup_ID AND trl.AD_Language=fgt.AD_Language) - LEFT OUTER JOIN AD_Column c ON (f.AD_Column_ID = c.AD_Column_ID) - INNER JOIN AD_Table tbl ON (c.AD_Table_ID = tbl.AD_Table_ID) - INNER JOIN AD_Reference r ON (c.AD_Reference_ID = r.AD_Reference_ID) - LEFT OUTER JOIN AD_Val_Rule vr ON (c.AD_Val_Rule_ID=vr.AD_Val_Rule_ID) -WHERE f.IsActive = 'Y' - AND c.IsActive = 'Y'; --- --- NOTE: Don't forget to run the three processes: --- 1 - Add missing translations in the language screen --- 2 - Synchronize terminology --- 3 - Check sequences - -SELECT '023_BF_1812362.sql' AS Filename; -update C_Currency set CurSymbol='KR' where C_Currency_ID=285; -SELECT '024_BF_1760922.sql' AS Filename; -UPDATE ad_column - SET defaultvalue = 'N' - WHERE ad_column_id = 50169; - -UPDATE ad_column - SET ad_reference_id = 38 - WHERE ad_column_id = 50170; - - - -SELECT '025_OverUnderAmtMessage.sql' AS Filename; -INSERT INTO AD_MESSAGE -(AD_Message_ID, AD_Client_ID, AD_Org_ID, IsActive, -Created, CreatedBy, -Updated, UpdatedBy, -VALUE, MsgText, MsgType -) -VALUES (53006, 0, 0, 'Y', -TO_TIMESTAMP ('10/26/2007 01:01:50', 'MM/DD/YYYY HH24:MI:SS'), 100, -TO_TIMESTAMP ('10/26/2007 01:01:50', 'MM/DD/YYYY HH24:MI:SS'), 100, -'OverUnderAmt','Over/Under Payment','I' -); - -UPDATE AD_SEQUENCE -SET CurrentNextSys = (SELECT MAX (AD_Message_ID) + 1 -FROM AD_MESSAGE -WHERE AD_message_ID < 1000000) -WHERE NAME = 'AD_Message'; - - - -SELECT '026_disable_ldap_processor.sql' AS Filename; -UPDATE AD_LDAPPROCESSOR - SET isactive = 'N' - WHERE ad_ldapprocessor_id = 100; - - -SELECT '027_fix_typo_es.sql' AS Filename; -UPDATE AD_WINDOW_TRL - SET HELP = - 'La terminal de PDV define los datos por omisión y las funciones disponibles para las formas de PDV.' - WHERE ad_window_id = 338 - AND HELP LIKE - '%La terminal de PDV define los datos por homición y las funciones disponibles para las formas de PDV.%' - AND AD_LANGUAGE LIKE 'es_%'; - - - -SELECT '028_FR_1799601_PG.sql' AS Filename; -INSERT INTO ad_element - (ad_element_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - columnname, entitytype, NAME, - printname - ) - VALUES (53223, 0, 0, 'Y', - TO_DATE ('09/21/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('09/21/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'DunningGrace', 'D', 'Dunning Grace', - 'Dunning Grace' - ); - - -INSERT INTO ad_column - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - help, VERSION, - entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, seqno, istranslated, isencrypted, - isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (53246, 0, 0, 'Y', - TO_DATE ('09/21/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('09/21/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Dunning Grace', 'Delay/block the dunning until this date is reached.', - 'Delay/block the dunning until this date is reached.', 1, - 'D', 'DunningGrace', 291, 15, - 7, 'N', 'N', 'N', 'Y', - 'N', 0, 'N', 'N', - 'N', 53223, 'N', - 'N' - ); - -INSERT INTO ad_field - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - help, - iscentrallymaintained, seqno, ad_tab_id, - ad_column_id, isdisplayed, displaylength, isreadonly, - issameline, isheading, isfieldonly, isencrypted, entitytype, - displaylogic - ) - VALUES (53256, 0, 0, 'Y', - TO_DATE ('09/21/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('09/21/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Dunning Grace', 'Delay/block the dunning until this date is reached.', - 'Delay/block the dunning until this date is reached.', - 'Y', 260 ,223, - 53246, 'Y', 14, 'N', - 'N', 'N', 'N', 'N', 'D', - '@IsCustomer@=Y' - ); - - -INSERT INTO ad_column - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - help, VERSION, - entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, seqno, istranslated, isencrypted, - isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (53247, 0, 0, 'Y', - TO_DATE ('09/21/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('09/21/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Dunning Grace', 'Delay/block the dunning until this date is reached.', - 'Delay/block the dunning until this date is reached.', 1, - 'D', 'DunningGrace', 318, 15, - 7, 'N', 'N', 'N', 'Y', - 'N', 0, 'N', 'N', - 'N', 53223, 'N', - 'Y' - ); - -INSERT INTO ad_field - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - help, - iscentrallymaintained, seqno, ad_tab_id, - ad_column_id, isdisplayed, displaylength, isreadonly, - issameline, isheading, isfieldonly, isencrypted, entitytype - ) - VALUES (53257, 0, 0, 'Y', - TO_DATE ('09/21/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - TO_DATE ('09/21/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100, - 'Dunning Grace', 'Delay/block the dunning until this date is reached.', - 'Delay/block the dunning until this date is reached.', - 'Y', 410 ,263, - 53247, 'Y', 14, 'N', - 'N', 'N', 'N', 'N', 'D' - ); - - - -UPDATE ad_sequence - SET currentnextsys = (SELECT MAX (ad_element_id) + 1 - FROM ad_element - WHERE ad_element_id < 1000000) - WHERE NAME = 'AD_Element'; - -UPDATE ad_sequence - SET currentnextsys = (SELECT MAX (ad_column_id) + 1 - FROM ad_column - WHERE ad_column_id < 1000000) - WHERE NAME = 'AD_Column'; - -UPDATE ad_sequence - SET currentnextsys = (SELECT MAX (ad_field_id) + 1 - FROM ad_field - WHERE ad_field_id < 1000000) - WHERE NAME = 'AD_Field'; - - - -ALTER TABLE C_BPartner ADD DunningGrace date NULL; -ALTER TABLE C_Invoice ADD DunningGrace date NULL; - -DROP VIEW c_invoiceline_v; -DROP VIEW rv_bpartneropen; -DROP VIEW c_invoice_v; - -CREATE OR REPLACE VIEW C_INVOICE_V -AS -SELECT i.C_Invoice_ID, i.AD_Client_ID, i.AD_Org_ID, i.IsActive, i.Created, i.CreatedBy, i.Updated, i.UpdatedBy, - i.IsSOTrx, i.DocumentNo, i.DocStatus, i.DocAction, i.Processing, i.Processed, i.C_DocType_ID, - i.C_DocTypeTarget_ID, i.C_Order_ID, i.Description, i.IsApproved, i.IsTransferred, - i.SalesRep_ID, i.DateInvoiced, i.DatePrinted, i.DateAcct, i.C_BPartner_ID, i.C_BPartner_Location_ID, - i.AD_User_ID, i.POReference, i.DateOrdered, i.C_Currency_ID, i.C_ConversionType_ID, i.PaymentRule, - i.C_PaymentTerm_ID, i.C_Charge_ID, i.M_PriceList_ID, i.C_Campaign_ID, i.C_Project_ID, - i.C_Activity_ID, i.IsPrinted, i.IsDiscountPrinted, i.IsPaid, i.IsInDispute, - i.IsPayScheduleValid, cast(null as numeric) AS C_InvoicePaySchedule_ID, i.InvoiceCollectionType,i.DunningGrace, - cast(CASE WHEN charAt(d.DocBaseType,3)='C' THEN i.ChargeAmt*-1 ELSE i.ChargeAmt END as numeric) AS ChargeAmt, - cast(CASE WHEN charAt(d.DocBaseType,3)='C' THEN i.TotalLines*-1 ELSE i.TotalLines END as numeric) AS TotalLines, - cast(CASE WHEN charAt(d.DocBaseType,3)='C' THEN i.GrandTotal*-1 ELSE i.GrandTotal END as numeric) AS GrandTotal, - cast(CASE WHEN charAt(d.DocBaseType,3)='C' THEN -1 ELSE 1 END as numeric) AS Multiplier, - cast(CASE WHEN charAt(d.DocBaseType,2)='P' THEN -1 ELSE 1 END AS numeric) as MultiplierAP, - d.DocBaseType -FROM C_Invoice i - INNER JOIN C_DocType d ON (i.C_DocType_ID=d.C_DocType_ID) -WHERE i.IsPayScheduleValid<>'Y' -UNION -SELECT i.C_Invoice_ID, i.AD_Client_ID, i.AD_Org_ID, i.IsActive, i.Created, i.CreatedBy, i.Updated, i.UpdatedBy, - i.IsSOTrx, i.DocumentNo, i.DocStatus, i.DocAction, i.Processing, i.Processed, i.C_DocType_ID, - i.C_DocTypeTarget_ID, i.C_Order_ID, i.Description, i.IsApproved, i.IsTransferred, - i.SalesRep_ID, i.DateInvoiced, i.DatePrinted, i.DateAcct, i.C_BPartner_ID, i.C_BPartner_Location_ID, - i.AD_User_ID, i.POReference, i.DateOrdered, i.C_Currency_ID, i.C_ConversionType_ID, i.PaymentRule, - i.C_PaymentTerm_ID, i.C_Charge_ID, i.M_PriceList_ID, i.C_Campaign_ID, i.C_Project_ID, - i.C_Activity_ID, i.IsPrinted, i.IsDiscountPrinted, i.IsPaid, i.IsInDispute, - i.IsPayScheduleValid, ips.C_InvoicePaySchedule_ID, i.InvoiceCollectionType, i.DunningGrace, - null AS ChargeAmt, - null AS TotalLines, - CASE WHEN charAt(d.DocBaseType,3)='C' THEN ips.DueAmt*-1 ELSE ips.DueAmt END AS GrandTotal, - CASE WHEN charAt(d.DocBaseType,3)='C' THEN -1 ELSE 1 END AS Multiplier, - CASE WHEN charAt(d.DocBaseType,2)='P' THEN -1 ELSE 1 END AS MultiplierAP, - d.DocBaseType -FROM C_Invoice i - INNER JOIN C_DocType d ON (i.C_DocType_ID=d.C_DocType_ID) - INNER JOIN C_InvoicePaySchedule ips ON (i.C_Invoice_ID=ips.C_Invoice_ID) -WHERE i.IsPayScheduleValid='Y' - AND ips.IsValid='Y'; - -CREATE OR REPLACE VIEW C_INVOICELINE_V AS -SELECT il.AD_Client_ID, il.AD_Org_ID, - il.C_InvoiceLine_ID, i.C_Invoice_ID, i.SalesRep_ID, - i.C_BPartner_ID, il.M_Product_ID, - i.DocumentNo, i.DateInvoiced, i.DateAcct, - i.IsSOTrx, i.DocStatus, - ROUND(i.Multiplier*LineNetAmt, 2) AS LineNetAmt, - ROUND(i.Multiplier*PriceList*QtyInvoiced, 2) AS LineListAmt, - CASE WHEN COALESCE(il.PriceLimit, 0)=0 THEN ROUND(i.Multiplier*LineNetAmt,2) ELSE ROUND(i.Multiplier*il.PriceLimit*il.QtyInvoiced,2) END AS LineLimitAmt, - ROUND(i.Multiplier*il.PriceList*il.QtyInvoiced-il.LineNetAmt,2) AS LineDiscountAmt, - CASE WHEN COALESCE(il.PriceLimit,0)=0 THEN 0 ELSE ROUND(i.Multiplier*il.LineNetAmt-il.PriceLimit*il.QtyInvoiced,2) END AS LineOverLimitAmt, - il.QtyInvoiced, il.QtyEntered, - il.Line, il.C_OrderLine_ID, il.C_UOM_ID, - il.C_Campaign_ID, il.C_Project_ID, il.C_Activity_ID, il.C_ProjectPhase_ID, il.C_ProjectTask_ID -FROM C_Invoice_v i, C_InvoiceLine il -WHERE i.C_Invoice_ID=il.C_Invoice_ID; - ---COMMENT ON TABLE C_INVOICELINE_V IS 'Invoice Line Summary for Reporting Views - Corrected for Credit Memos'; - - -CREATE OR REPLACE VIEW RV_BPARTNEROPEN -(AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, - UPDATED, UPDATEDBY, C_BPARTNER_ID, C_CURRENCY_ID, AMT, - OPENAMT, DATEDOC, DAYSDUE, C_CAMPAIGN_ID, C_PROJECT_ID, - C_ACTIVITY_ID) -AS -SELECT i.AD_Client_ID,i.AD_Org_ID, i.IsActive, i.Created,i.CreatedBy,i.Updated,i.UpdatedBy, - i.C_BPartner_ID, i.C_Currency_ID, - i.GrandTotal*i.MultiplierAP AS Amt, - invoiceOpen (i.C_Invoice_ID, i.C_InvoicePaySchedule_ID)*i.MultiplierAP AS OpenAmt, - i.DateInvoiced AS DateDoc, - COALESCE(daysBetween(getdate(),ips.DueDate), paymentTermDueDays(C_PaymentTerm_ID,DateInvoiced,getdate())) AS DaysDue, - i.C_Campaign_ID, i.C_Project_ID, i.C_Activity_ID -FROM C_Invoice_v i - LEFT OUTER JOIN C_InvoicePaySchedule ips ON (i.C_InvoicePaySchedule_ID=ips.C_InvoicePaySchedule_ID) -WHERE i.IsPaid='N' - AND i.DocStatus IN ('CO','CL') -UNION -SELECT p.AD_Client_ID,p.AD_Org_ID, p.IsActive, p.Created,p.CreatedBy,p.Updated,p.UpdatedBy, - p.C_BPartner_ID, p.C_Currency_ID, - p.PayAmt*MultiplierAP*-1 AS Amt, - paymentAvailable(p.C_Payment_ID)*p.MultiplierAP*-1 AS OpenAmt, - p.DateTrx AS DateDoc, - null, - p.C_Campaign_ID, p.C_Project_ID, p.C_Activity_ID -FROM C_Payment_v p -WHERE p.IsAllocated='N' AND p.C_BPartner_ID IS NOT NULL; - -SELECT '029_FR_1804068_PG.sql' AS Filename; -update AD_Column set IsAlwaysUpdateable='Y' where AD_Column_ID=12569; -update AD_Column set IsAlwaysUpdateable='Y' where AD_Column_ID=12566; - -INSERT INTO ad_element - (ad_element_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - columnname, entitytype, NAME, - printname - ) - VALUES (53224, 0, 0, 'Y', - TO_DATE ('2007-09-28', 'YYYY-MM-DD'), 100, - TO_DATE ('2007-09-28', 'YYYY-MM-DD'), 100, - 'PrintUnprocessedOnly', 'D', 'Print Unprocessed Entries Only', - 'Print Unprocessed Entries Only' - ); - - -INSERT INTO AD_Process_Para -(AD_Process_Para_ID, AD_Client_ID, AD_Org_ID, IsActive, Created, -CreatedBy, Updated, UpdatedBy, Name, -Description, -Help, -AD_Process_ID, SeqNo, AD_Reference_ID, AD_Reference_Value_ID, -AD_Val_Rule_ID, ColumnName, IsCentrallyMaintained, FieldLength, -IsMandatory, DefaultValue, IsRange, AD_Element_ID, EntityType -) -VALUES -(53011 , 0, 0, 'Y', TO_DATE ('2007-09-28', 'YYYY-MM-DD'), -100, TO_DATE ('2007-09-28', 'YYYY-MM-DD'), 100, 'Print Unprocessed Entries Only', -'Print the unprocessed (unprinted) entries of the dunning run only.', -'Print the unprocessed (unprinted) entries of the dunning run only. This allows you to reprint only certain dunning entries.', -312, 50, 20, NULL, -NULL, 'PrintUnprocessedOnly', 'N', 1, -'Y', 'Y', 'N', 53224, 'D' -); - -INSERT INTO AD_VAL_RULE( -AD_VAL_RULE_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY, -UPDATED,UPDATEDBY, -NAME,DESCRIPTION, -TYPE,CODE,ENTITYTYPE) -values(51003,0,0,'Y',to_date('2007-09-28','RRRR-MM-DD'),100, -to_date('2007-09-28','RRRR-MM-DD'),100, -'C_DunningRun Unprocessed','Unprocessed Dunning Runs', -'S','C_DunningRun.Processed=''N''','D'); - -UPDATE AD_Process_Para SET AD_Val_Rule_ID=51003 WHERE AD_Process_Para_ID=578; - - -INSERT INTO ad_column - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - help, VERSION, - entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, seqno, istranslated, isencrypted, - isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (53248, 0, 0, 'Y', - TO_DATE ('2007-09-28','RRRR-MM-DD'), - TO_DATE ('2007-09-28','RRRR-MM-DD'), 100, - 100, 'Dunning Level', 'Dunning Level', - 'Dunning Level', 1, - 'D', 'C_DunningLevel_ID', 318, 19, - 22, 'N', 'N', 'N', 'Y', - 'N', 0, 'N', 'N', - 'N', 1075, 'N', - 'N' - ); - -INSERT INTO ad_field - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - help, - iscentrallymaintained, seqno, ad_tab_id, - ad_column_id, isdisplayed, displaylength, isreadonly, - issameline, isheading, isfieldonly, isencrypted, entitytype, - displaylogic - ) - VALUES (53258 , 0, 0, 'Y', - TO_DATE ('2007-09-28','RRRR-MM-DD'), 100, - TO_DATE ('2007-09-28','RRRR-MM-DD'), 100, - 'Dunning Level', 'Dunning Level', - 'Dunning Level', - 'Y', 420 ,263, - 53248, 'Y', 14, 'Y', - 'Y', 'N', 'N', 'N', 'D', - '@Processed@=Y' - ); - -ALTER TABLE C_Invoice ADD C_DunningLevel_ID NUMERIC(10) NULL; - -INSERT INTO ad_column - (ad_column_id, ad_client_id, ad_org_id, isactive, - created, - updated, createdby, - updatedby, NAME, description, - help, VERSION, - entitytype, columnname, ad_table_id, ad_reference_id, - fieldlength, iskey, isparent, ismandatory, isupdateable, - isidentifier, seqno, istranslated, isencrypted, - isselectioncolumn, ad_element_id, issyncdatabase, - isalwaysupdateable - ) - VALUES (53249, 0, 0, 'Y', - TO_DATE ('2007-09-28','RRRR-MM-DD'), - TO_DATE ('2007-09-28','RRRR-MM-DD'), 100, - 100, 'Invoice Payment Schedule', 'Invoice Payment Schedule', - 'Invoice Payment Schedule', 1, - 'D', 'C_InvoicePaySchedule_ID', 524, 19, - 22, 'N', 'N', 'N', 'Y', - 'N', 0, 'N', 'N', - 'N', 1995, 'N', - 'N' - ); - -INSERT INTO ad_field - (ad_field_id, ad_client_id, ad_org_id, isactive, - created, createdby, - updated, updatedby, - NAME, description, - help, - iscentrallymaintained, seqno, ad_tab_id, - ad_column_id, isdisplayed, displaylength, isreadonly, - issameline, isheading, isfieldonly, isencrypted, entitytype - ) - VALUES (53259 , 0, 0, 'Y', - TO_DATE ('2007-09-28','RRRR-MM-DD'), 100, - TO_DATE ('2007-09-28','RRRR-MM-DD'), 100, - 'Invoice Payment Schedule', 'Invoice Payment Schedule', - 'Invoice Payment Schedule', - 'Y', 65 ,635, - 53249, 'Y', 26, 'Y', - 'N', 'N', 'N', 'N', 'D' - ); - -ALTER TABLE C_DunningRunLine ADD C_InvoicePaySchedule_ID NUMERIC(10) NULL; - - - - -UPDATE AD_SEQUENCE -SET currentnextsys = (SELECT MAX (ad_process_para_id) + 1 -FROM AD_Process_Para -WHERE AD_Process_Para_ID < 1000000) -WHERE NAME = 'AD_Process_Para'; - -UPDATE AD_SEQUENCE -SET currentnextsys = (SELECT MAX (AD_Val_Rule_id) + 1 -FROM AD_Val_Rule -WHERE AD_Val_Rule_ID < 1000000) -WHERE NAME = 'AD_Val_Rule'; - -UPDATE ad_sequence -SET currentnextsys = (SELECT MAX (ad_element_id) + 1 -FROM ad_element -WHERE ad_element_id < 1000000) -WHERE NAME = 'AD_Element'; - -UPDATE ad_sequence -SET currentnextsys = (SELECT MAX (ad_column_id) + 1 -FROM ad_column -WHERE ad_column_id < 1000000) -WHERE NAME = 'AD_Column'; - -UPDATE ad_sequence -SET currentnextsys = (SELECT MAX (ad_field_id) + 1 -FROM ad_field -WHERE ad_field_id < 1000000) -WHERE NAME = 'AD_Field'; - - - - -SELECT '030_BF_1824260.sql' AS Filename; --- BF [ 1824260 ] TRUNC function not working like in Oracle --- http://sourceforge.net/tracker/?func=detail&atid=879332&aid=1824260&group_id=176962 -DROP VIEW c_invoice_candidate_v; - -drop function trunc(datetime TIMESTAMP WITH TIME ZONE); -CREATE OR REPLACE FUNCTION trunc(datetime TIMESTAMP WITH TIME ZONE) -RETURNS TIMESTAMP WITH TIME ZONE AS $$ -BEGIN - RETURN CAST(datetime AS DATE); -END; -$$ LANGUAGE plpgsql; - -CREATE OR REPLACE VIEW c_invoice_candidate_v AS - SELECT o.ad_client_id, o.ad_org_id, o.c_bpartner_id, o.c_order_id, o.documentno, o.dateordered, o.c_doctype_id, sum((l.qtyordered - l.qtyinvoiced) * l.priceactual) AS totallines - FROM c_order o - JOIN c_orderline l ON o.c_order_id = l.c_order_id - JOIN c_bpartner bp ON o.c_bpartner_id = bp.c_bpartner_id - LEFT JOIN c_invoiceschedule si ON bp.c_invoiceschedule_id = si.c_invoiceschedule_id - WHERE (o.docstatus = ANY (ARRAY['CO'::bpchar, 'CL'::bpchar, 'IP'::bpchar])) AND (o.c_doctype_id IN ( SELECT c_doctype.c_doctype_id - FROM c_doctype - WHERE c_doctype.docbasetype = 'SOO'::bpchar AND (c_doctype.docsubtypeso <> ALL (ARRAY['ON'::bpchar, 'OB'::bpchar, 'WR'::bpchar])))) AND l.qtyordered <> l.qtyinvoiced AND (o.invoicerule = 'I'::bpchar OR o.invoicerule = 'O'::bpchar OR o.invoicerule = 'D'::bpchar AND l.qtyinvoiced <> l.qtydelivered OR o.invoicerule = 'S'::bpchar AND bp.c_invoiceschedule_id IS NULL OR o.invoicerule = 'S'::bpchar AND bp.c_invoiceschedule_id IS NOT NULL AND (si.invoicefrequency IS NULL OR si.invoicefrequency = 'D'::bpchar OR si.invoicefrequency = 'W'::bpchar OR si.invoicefrequency = 'T'::bpchar AND (trunc(o.dateordered::timestamp with time zone) <= (firstof(getdate(), 'MM'::character varying)::timestamp with time zone + si.invoicedaycutoff - 1) AND trunc(getdate()) >= (firstof(o.dateordered::timestamp with time zone, 'MM'::character varying)::timestamp with time zone + si.invoiceday - 1) OR trunc(o.dateordered::timestamp with time zone) <= (firstof(getdate(), 'MM'::character varying)::timestamp with time zone + si.invoicedaycutoff + 14) AND trunc(getdate()) >= (firstof(o.dateordered::timestamp with time zone, 'MM'::character varying)::timestamp with time zone + si.invoiceday + 14)) OR si.invoicefrequency = 'M'::bpchar AND trunc(o.dateordered::timestamp with time zone) <= (firstof(getdate(), 'MM'::character varying)::timestamp with time zone + si.invoicedaycutoff - 1) AND trunc(getdate()) >= (firstof(o.dateordered::timestamp with time zone, 'MM'::character varying)::timestamp with time zone + si.invoiceday - 1))) - GROUP BY o.ad_client_id, o.ad_org_id, o.c_bpartner_id, o.c_order_id, o.documentno, o.dateordered, o.c_doctype_id; - -ALTER TABLE c_invoice_candidate_v OWNER TO adempiere; - -CREATE OR REPLACE FUNCTION trunc(datetime TIMESTAMP WITH TIME ZONE, format varchar) -RETURNS DATE AS $$ -BEGIN - IF format = 'Q' THEN - RETURN CAST(DATE_Trunc('quarter',datetime) as DATE); - ELSIF format = 'Y' or format = 'YEAR' THEN - RETURN CAST(DATE_Trunc('year',datetime) as DATE); - ELSIF format = 'MM' or format = 'MONTH' THEN - RETURN CAST(DATE_Trunc('month',datetime) as DATE); - ELSIF format = 'DD' THEN - RETURN CAST(DATE_Trunc('day',datetime) as DATE); - ELSIF format = 'DY' THEN - RETURN CAST(DATE_Trunc('day',datetime) as DATE); - ELSE - RETURN CAST(datetime AS DATE); - END IF; -END; -$$ LANGUAGE plpgsql; - -CREATE OR REPLACE FUNCTION trunc(i INTERVAL) -RETURNS INTEGER AS $$ -BEGIN - RETURN EXTRACT(DAY FROM i); -END; -$$ LANGUAGE plpgsql; - -SELECT '031_FR_1823186.sql' AS Filename; --- --- ad_menu --- - -INSERT INTO ad_process (ad_process_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - value, - name, - description, - help, - accesslevel, - entitytype, - procedurename, - isreport, - isdirectprint, - ad_reportview_id, - classname, - statistic_count, - statistic_seconds, - ad_printformat_id, - workflowvalue, - ad_workflow_id, - isbetafunctionality, - isserverprocess, - showhelp, - jasperreport) - VALUES - (53002, - 0, - 0, - 'Y', - TO_TIMESTAMP('2007-11-3 21:38:36:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - TO_TIMESTAMP('2007-11-3 21:38:36:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - 'Setup Web POS', - 'Setup Web POS', - NULL, - NULL, - '3', - 'C', - NULL, - 'N', - 'N', - NULL, - 'org.posterita.process.SetupWebPOS', - 0, - 0, - NULL, - NULL, - NULL, - 'N', - 'N', - 'Y', - NULL); - -INSERT INTO ad_menu (ad_menu_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - name, - updatedby, - description, - issummary, - issotrx, - isreadonly, - action, - ad_window_id, - ad_workflow_id, - ad_task_id, - ad_process_id, - ad_form_id, - ad_workbench_id, - entitytype) - VALUES - (53013, - 0, - 0, - 'Y', - TO_TIMESTAMP('2007-11-3 21:38:38:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - TO_TIMESTAMP('2007-11-3 21:38:38:0','YYYY-MM-DD HH:MI:SS:MS'), - 'Setup Web POS', - 0, - NULL, - 'N', - 'N', - 'N', - 'P', - NULL, - NULL, - NULL, - 53002, - NULL, - NULL, - 'C'); - - - --- --- ad_process_access --- - -UPDATE ad_process_access SET created = TO_TIMESTAMP('2007-11-3 21:16:37:125','YYYY-MM-DD HH:MI:SS:MS'), - updated = TO_TIMESTAMP('2007-11-3 21:16:37:125','YYYY-MM-DD HH:MI:SS:MS') WHERE ad_process_id = 52003 AND ad_role_id = 0; -UPDATE ad_process_access SET created = TO_TIMESTAMP('2007-11-3 21:16:37:125','YYYY-MM-DD HH:MI:SS:MS'), - updated = TO_TIMESTAMP('2007-11-3 21:16:37:125','YYYY-MM-DD HH:MI:SS:MS') WHERE ad_process_id = 52003 AND ad_role_id = 102; -UPDATE ad_process_access SET created = TO_TIMESTAMP('2007-11-3 21:16:37:125','YYYY-MM-DD HH:MI:SS:MS'), - updated = TO_TIMESTAMP('2007-11-3 21:16:37:125','YYYY-MM-DD HH:MI:SS:MS') WHERE ad_process_id = 52003 AND ad_role_id = 103; - - --- --- ad_process_para --- - -INSERT INTO ad_process_para (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - name, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53012, - 0, - 0, - 'Y', - TO_TIMESTAMP('2007-11-3 21:38:37:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - TO_TIMESTAMP('2007-11-3 21:38:37:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - 'Price List Version', - 'Identifies a unique instance of a Price List', - 'Each Price List can have multiple versions. The most common use is to indicate the dates that a Price List is valid for.', - 53002, - 20, - 19, - NULL, - NULL, - 'M_PriceList_Version_ID', - 'Y', - 10, - 'Y', - 'N', - NULL, - NULL, - NULL, - NULL, - NULL, - 450, - 'C'); -INSERT INTO ad_process_para (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - name, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53013, - 0, - 0, - 'Y', - TO_TIMESTAMP('2007-11-3 21:38:37:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - TO_TIMESTAMP('2007-11-3 21:38:37:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - 'Organization', - 'Organizational entity within client', - 'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.', - 53002, - 10, - 19, - NULL, - 130, - 'AD_Org_ID', - 'Y', - 10, - 'Y', - 'N', - NULL, - NULL, - NULL, - NULL, - NULL, - 113, - 'C'); -INSERT INTO ad_process_para (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - name, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53014, - 0, - 0, - 'Y', - TO_TIMESTAMP('2007-11-3 21:38:37:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - TO_TIMESTAMP('2007-11-3 21:38:37:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - 'Bank', - 'Bank', - 'The Bank is a unique identifier of a Bank for this Organization or for a Business Partner with whom this Organization transacts.', - 53002, - 50, - 19, - NULL, - NULL, - 'C_Bank_ID', - 'Y', - 10, - 'Y', - 'N', - NULL, - NULL, - NULL, - NULL, - NULL, - 835, - 'C'); -INSERT INTO ad_process_para (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - name, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53015, - 0, - 0, - 'Y', - TO_TIMESTAMP('2007-11-3 21:38:37:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - TO_TIMESTAMP('2007-11-3 21:38:37:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - 'Bank Account', - 'Account at the Bank', - 'The Bank Account identifies an account at this Bank.', - 53002, - 60, - 19, - NULL, - NULL, - 'C_BankAccount_ID', - 'Y', - 10, - 'Y', - 'N', - NULL, - NULL, - NULL, - NULL, - NULL, - 836, - 'C'); -INSERT INTO ad_process_para (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - name, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53016, - 0, - 0, - 'Y', - TO_TIMESTAMP('2007-11-3 21:38:37:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - TO_TIMESTAMP('2007-11-3 21:38:37:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - 'Tax Category', - 'Tax Category', - 'The Tax Category provides a method of grouping similar taxes. For example, Sales Tax or Value Added Tax.', - 53002, - 70, - 19, - NULL, - NULL, - 'C_TaxCategory_ID', - 'Y', - 10, - 'Y', - 'N', - NULL, - NULL, - NULL, - NULL, - NULL, - 211, - 'C'); -INSERT INTO ad_process_para (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - name, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53017, - 0, - 0, - 'Y', - TO_TIMESTAMP('2007-11-3 21:38:37:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - TO_TIMESTAMP('2007-11-3 21:38:37:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - 'Locator', - 'Warehouse Locator', - 'The Locator indicates where in a Warehouse a product is located.', - 53002, - 80, - 19, - NULL, - NULL, - 'M_Locator_ID', - 'Y', - 10, - 'Y', - 'N', - NULL, - NULL, - NULL, - NULL, - NULL, - 448, - 'C'); -INSERT INTO ad_process_para (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - name, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53018, - 0, - 0, - 'Y', - TO_TIMESTAMP('2007-11-3 21:38:37:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - TO_TIMESTAMP('2007-11-3 21:38:37:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - 'Business Partner ', - 'Identifies a Business Partner', - 'A Business Partner is anyone with whom you transact. This can include Vendor, Customer, Employee or Salesperson', - 53002, - 90, - 19, - NULL, - NULL, - 'C_BPartner_ID', - 'Y', - 10, - 'Y', - 'N', - NULL, - NULL, - NULL, - NULL, - NULL, - 187, - 'C'); -INSERT INTO ad_process_para (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - name, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53019, - 0, - 0, - 'Y', - TO_TIMESTAMP('2007-11-3 21:38:37:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - TO_TIMESTAMP('2007-11-3 21:38:37:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - 'Sales Representative', - 'Sales Representative or Company Agent', - 'The Sales Representative indicates the Sales Rep for this Region. Any Sales Rep must be a valid internal user.', - 53002, - 100, - 18, - 190, - NULL, - 'SalesRep_ID', - 'Y', - 10, - 'Y', - 'N', - NULL, - NULL, - NULL, - NULL, - NULL, - 409, - 'C'); -INSERT INTO ad_process_para (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - name, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53020, - 0, - 0, - 'Y', - TO_TIMESTAMP('2007-11-3 21:38:37:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - TO_TIMESTAMP('2007-11-3 21:38:37:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - 'Role', - 'Responsibility Role', - 'The Role determines security and access a user who has this Role will have in the System.', - 53002, - 110, - 19, - NULL, - NULL, - 'AD_Role_ID', - 'Y', - 10, - 'Y', - 'N', - NULL, - NULL, - NULL, - NULL, - NULL, - 123, - 'C'); -INSERT INTO ad_process_para (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - name, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53021, - 0, - 0, - 'Y', - TO_TIMESTAMP('2007-11-3 21:38:37:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - TO_TIMESTAMP('2007-11-3 21:38:37:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - 'Cash Book', - 'Cash Book for recording petty cash transactions', - 'The Cash Book identifies a unique cash book. The cash book is used to record cash transactions.', - 53002, - 15, - 19, - NULL, - NULL, - 'C_CashBook_ID', - 'Y', - 10, - 'Y', - 'N', - NULL, - NULL, - NULL, - NULL, - NULL, - 1463, - 'C'); -INSERT INTO ad_process_para (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - name, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53022, - 0, - 0, - 'Y', - TO_TIMESTAMP('2007-11-3 21:38:37:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - TO_TIMESTAMP('2007-11-3 21:38:37:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - 'Name', - 'Alphanumeric identifier of the entity', - 'The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.', - 53002, - 130, - 10, - NULL, - NULL, - 'Name', - 'Y', - 60, - 'Y', - 'N', - NULL, - NULL, - NULL, - NULL, - NULL, - 469, - 'C'); -INSERT INTO ad_process_para (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - name, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53023, - 0, - 0, - 'Y', - TO_TIMESTAMP('2007-11-3 21:38:37:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - TO_TIMESTAMP('2007-11-3 21:38:37:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - 'Host Address', - 'Host Address URL or DNS', - 'The Host Address identifies the URL or DNS of the target host', - 53002, - 140, - 10, - NULL, - NULL, - 'HostAddress', - 'Y', - 60, - 'Y', - 'N', - 'http://', - NULL, - NULL, - NULL, - NULL, - 1398, - 'C'); -INSERT INTO ad_process_para (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - name, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53024, - 0, - 0, - 'Y', - TO_TIMESTAMP('2007-11-3 21:38:37:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - TO_TIMESTAMP('2007-11-3 21:38:37:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - 'Discount Schema', - 'Schema to calculate the trade discount percentage', - 'After calculation of the (standard) price, the trade discount percentage is calculated and applied resulting in the final price.', - 53002, - 25, - 19, - NULL, - NULL, - 'M_DiscountSchema_ID', - 'Y', - 10, - 'Y', - 'N', - NULL, - NULL, - NULL, - NULL, - NULL, - 1714, - 'C'); -INSERT INTO ad_process_para (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - name, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53025, - 0, - 0, - 'Y', - TO_TIMESTAMP('2007-11-3 21:38:38:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - TO_TIMESTAMP('2007-11-3 21:38:38:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - 'Purchase Price List Version', - NULL, - NULL, - 53002, - 30, - 18, - 188, - NULL, - 'PriceList_Version_ID', - 'Y', - 10, - 'Y', - 'N', - NULL, - NULL, - NULL, - NULL, - NULL, - 450, - 'C'); -INSERT INTO ad_process_para (ad_process_para_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - name, - description, - help, - ad_process_id, - seqno, - ad_reference_id, - ad_reference_value_id, - ad_val_rule_id, - columnname, - iscentrallymaintained, - fieldlength, - ismandatory, - isrange, - defaultvalue, - defaultvalue2, - vformat, - valuemin, - valuemax, - ad_element_id, - entitytype) - VALUES - (53026, - 0, - 0, - 'Y', - TO_TIMESTAMP('2007-11-3 21:38:38:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - TO_TIMESTAMP('2007-11-3 21:38:38:0','YYYY-MM-DD HH:MI:SS:MS'), - 0, - 'UserPIN', - NULL, - NULL, - 53002, - 120, - 10, - NULL, - NULL, - 'UserPIN', - 'Y', - 10, - 'Y', - 'N', - NULL, - NULL, - NULL, - NULL, - NULL, - 52023, - 'C'); - - --- --- ad_treenodemm --- - -INSERT INTO ad_treenodemm (ad_tree_id, - node_id, - ad_client_id, - ad_org_id, - isactive, - created, - createdby, - updated, - updatedby, - parent_id, - seqno) - VALUES - (10, - 53013, - 0, - 0, - 'Y', - TO_TIMESTAMP('2007-11-3 21:38:36:665','YYYY-MM-DD HH:MI:SS:MS'), - 0, - TO_TIMESTAMP('2007-11-3 21:38:36:665','YYYY-MM-DD HH:MI:SS:MS'), - 0, - 52001, - 5); - -INSERT INTO AD_Process_Access (AD_Client_ID,AD_Org_ID,IsReadWrite,Created,AD_Process_ID,CreatedBy,Updated,UpdatedBy,IsActive,AD_Role_ID) VALUES (11,0,'Y',TO_TIMESTAMP('2007-11-05 14:26:09','YYYY-MM-DD HH24:MI:SS'),53002,100,TO_TIMESTAMP('2007-11-05 14:26:09','YYYY-MM-DD HH24:MI:SS'),100,'Y',102); -SELECT '033_centralized_id_sysconfig.sql' AS Filename; -INSERT INTO AD_SYSCONFIG - (ad_sysconfig_id, ad_client_id, ad_org_id, - created, - updated, createdby, - updatedby, isactive, NAME, - VALUE, - description - ) - VALUES (50000, 0, 0, - TO_DATE ('10/13/2007 14:30:57', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('10/13/2007 14:32:17', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Y', 'DICTIONARY_ID_WEBSITE', - 'http://developer.adempiere.com/cgi-bin/get_ID', - 'Website where the system sequences are found (MSequence)' - ); - -INSERT INTO AD_SYSCONFIG - (ad_sysconfig_id, ad_client_id, ad_org_id, - created, - updated, createdby, - updatedby, isactive, NAME, VALUE, - description - ) - VALUES (50001, 0, 0, - TO_DATE ('10/13/2007 14:31:09', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('10/13/2007 14:32:45', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Y', 'DICTIONARY_ID_USER', 'globalqss', - 'User (sourceforge developer) to get the system sequences (MSequence)' - ); - -INSERT INTO AD_SYSCONFIG - (ad_sysconfig_id, ad_client_id, ad_org_id, - created, - updated, createdby, - updatedby, isactive, NAME, VALUE, - description - ) - VALUES (50002, 0, 0, - TO_DATE ('10/13/2007 14:31:19', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('10/13/2007 14:33:03', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Y', 'DICTIONARY_ID_PASSWORD', 'password_inseguro', - 'Password to get the system sequences (MSequence)' - ); - -INSERT INTO AD_SYSCONFIG - (ad_sysconfig_id, ad_client_id, ad_org_id, - created, - updated, createdby, - updatedby, isactive, NAME, - VALUE, - description - ) - VALUES (50003, 0, 0, - TO_DATE ('10/13/2007 14:31:38', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('10/13/2007 14:33:17', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Y', 'DICTIONARY_ID_COMMENTS', - 'Default comment for updating dictionary', - 'Comment to reserve the system sequences (MSequence)' - ); - -INSERT INTO AD_SYSCONFIG - (ad_sysconfig_id, ad_client_id, ad_org_id, - created, - updated, createdby, - updatedby, isactive, NAME, - VALUE, - description - ) - VALUES (50004, 0, 0, - TO_DATE ('10/13/2007 14:30:57', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('10/13/2007 14:32:17', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Y', 'PROJECT_ID_WEBSITE', - 'http://developer.adempiere.com/cgi-bin/get_ID', - 'Website where the system sequences are found (MSequence)' - ); - -INSERT INTO AD_SYSCONFIG - (ad_sysconfig_id, ad_client_id, ad_org_id, - created, - updated, createdby, - updatedby, isactive, NAME, VALUE, - description - ) - VALUES (50005, 0, 0, - TO_DATE ('10/13/2007 14:30:57', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('10/13/2007 14:32:17', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Y', 'PROJECT_ID_PROJECT', 'TestProject', - 'Name of the project you are working on for development' - ); - -INSERT INTO AD_SYSCONFIG - (ad_sysconfig_id, ad_client_id, ad_org_id, - created, - updated, createdby, - updatedby, isactive, NAME, VALUE, - description - ) - VALUES (50006, 0, 0, - TO_DATE ('10/13/2007 14:31:09', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('10/13/2007 14:32:45', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Y', 'PROJECT_ID_USER', 'globalqss', - 'User (sourceforge developer) to get the system sequences (MSequence)' - ); - -INSERT INTO AD_SYSCONFIG - (ad_sysconfig_id, ad_client_id, ad_org_id, - created, - updated, createdby, - updatedby, isactive, NAME, VALUE, - description - ) - VALUES (50007, 0, 0, - TO_DATE ('10/13/2007 14:31:19', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('10/13/2007 14:33:03', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Y', 'PROJECT_ID_PASSWORD', 'password_inseguro', - 'Password to get the system sequences (MSequence)' - ); - -INSERT INTO AD_SYSCONFIG - (ad_sysconfig_id, ad_client_id, ad_org_id, - created, - updated, createdby, - updatedby, isactive, NAME, - VALUE, - description - ) - VALUES (50008, 0, 0, - TO_DATE ('10/13/2007 14:31:38', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('10/13/2007 14:33:17', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Y', 'PROJECT_ID_COMMENTS', - 'Default comment for updating dictionary', - 'Comment to reserve the system sequences (MSequence)' - ); - -INSERT INTO AD_SYSCONFIG - (ad_sysconfig_id, ad_client_id, ad_org_id, - created, - updated, createdby, - updatedby, isactive, NAME, VALUE, - description - ) - VALUES (50009, 0, 0, - TO_DATE ('10/13/2007 14:30:57', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('10/13/2007 14:32:17', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Y', 'DICTIONARY_ID_USE_CENTRALIZED_ID', 'Y', - 'Flag to indicate if we use centralized ID approach or not' - ); - -INSERT INTO AD_SYSCONFIG - (ad_sysconfig_id, ad_client_id, ad_org_id, - created, - updated, createdby, - updatedby, isactive, NAME, VALUE, - description - ) - VALUES (50010, 0, 0, - TO_DATE ('10/13/2007 14:30:57', 'MM/DD/YYYY HH24:MI:SS'), - TO_DATE ('10/13/2007 14:32:17', 'MM/DD/YYYY HH24:MI:SS'), 100, - 100, 'Y', 'PROJECT_ID_USE_CENTRALIZED_ID', 'N', - 'Flag to indicate if we use centralized ID approach or not' - ); - - - -SELECT '034_message_logmigrationscript.sql' AS Filename; --- Nov 11, 2007 1:54:50 AM COT --- FR 1829798 - Easy generation of migration scripts -INSERT INTO AD_MESSAGE (AD_Client_ID,AD_Message_ID,AD_Org_ID,Created,CreatedBy,EntityType,IsActive,MsgText,MsgTip,MsgType,Updated,UpdatedBy,VALUE) VALUES (0,53007,0,TO_TIMESTAMP('2007-11-11 01:54:49','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Log Migration Script','Log Migration Script - Save migration scripts file in %TEMP%/migration_script_*.sql','I',TO_TIMESTAMP('2007-11-11 01:54:49','YYYY-MM-DD HH24:MI:SS'),100,'LogMigrationScript') -; - --- Nov 11, 2007 1:54:50 AM COT --- FR 1829798 - Easy generation of migration scripts -INSERT INTO AD_MESSAGE_TRL (AD_LANGUAGE,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_MESSAGE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=53007 AND EXISTS (SELECT * FROM AD_MESSAGE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Message_ID!=t.AD_Message_ID) -; -SELECT '035_BF_1828688.sql' AS Filename; -UPDATE AD_TAB - SET isinfotab = 'N' - WHERE ad_tab_id = 684 -- Invoice (Customer) -> Allocation - OR ad_tab_id = 685 -- Invoice (Vendor) -> Allocation - OR ad_tab_id = 755 -- Payment -> Allocate - OR ad_tab_id = 686 -- Payment -> Allocations -; - - -SELECT '036_FR1675372.sql' AS Filename; --- Nov 15, 2007 9:19:15 PM COT --- FR 1675372 - Add supplier/vendor to productinfo -INSERT INTO AD_MESSAGE (AD_Client_ID,AD_Message_ID,AD_Org_ID,Created,CreatedBy,EntityType,IsActive,MsgText,MsgType,Updated,UpdatedBy,VALUE) VALUES (0,53008,0,TO_TIMESTAMP('2007-11-15 21:19:10','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Vendor','I',TO_TIMESTAMP('2007-11-15 21:19:10','YYYY-MM-DD HH24:MI:SS'),100,'Vendor') -; - --- Nov 15, 2007 9:19:15 PM COT --- FR 1675372 - Add supplier/vendor to productinfo -INSERT INTO AD_MESSAGE_TRL (AD_LANGUAGE,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_MESSAGE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=53008 AND EXISTS (SELECT * FROM AD_MESSAGE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Message_ID!=t.AD_Message_ID) -; - -UPDATE AD_MESSAGE_TRL - SET msgtext = 'Proveedor' - WHERE ad_message_id = 53008 AND AD_LANGUAGE LIKE 'es_%' -; - -SELECT '037_AdditionalProductInfo.sql' AS Filename; --- [ 1823612 ] Product Info Screen Improvements --- Author: fer_luck --- Dictionary Additions --- Feature Request: http://sourceforge.net/tracker/index.php?func=detail&aid=1823612&group_id=176962&atid=879335 ---******************************************************-- --- NOTE: Don't forget to run the three processes: -- --- 1 - Add missing translations in the language screen -- --- 2 - Synchronize terminology -- --- 3 - Check sequences -- ---******************************************************-- - --- new message -INSERT INTO AD_MESSAGE(ad_message_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, VALUE, msgtext, msgtip, msgtype, entitytype) - VALUES(53001, 0, 0, 'Y', '2007-07-18 00:00:00.0', 100, '2007-07-18 00:00:00.0', 100, 'WarehouseStock', 'Item Availability in other Warehouses', NULL, 'M', 'D'); - ---add view to ad_table -INSERT INTO AD_TABLE (ad_table_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, help, tablename, isview, accesslevel, entitytype, ad_window_id, ad_val_rule_id, loadseq, issecurityenabled, isdeleteable, ishighvolume, importtable, ischangelog, replicationtype, po_window_id, copycolumnsfromtable) - VALUES(53011, 0, 0, 'Y', '2007-07-26 00:00:00.0', 100, '2007-07-26 00:00:00.0', 100, 'Product Stock at Warehouses', NULL, NULL, 'M_Product_Stock_V', 'Y', '1', 'D', NULL, NULL, NULL, 'N', 'Y', 'N', 'N', 'N', 'L', NULL, NULL); - ---add columns to view in ad_column -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql, mandatorylogic) - VALUES(53003, 0, 0, 'Y', '2007-07-26 01:20:59.0', '2007-07-26 01:20:59.0', 0, 0, 'Description', 'Optional short description of the record', 'A description is limited to 255 characters.', 0, 'D', 'Description', 53011, 10, NULL, NULL, 255, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', NULL, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 275, NULL, 'N', 'N', NULL, NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql, mandatorylogic) - VALUES(53004, 0, 0, 'Y', '2007-07-26 10:52:11.0', '2007-07-26 10:52:11.0', 0, 0, 'Product', 'Product, Service, Item', 'Identifies an item which is either purchased or sold in this organization.', 0, 'U', 'M_Product_ID', 53011, 30, NULL, NULL, 10, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 454, NULL, 'N', 'N', NULL, NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql, mandatorylogic) - VALUES(53005, 0, 0, 'Y', '2007-07-26 15:01:05.0', '2007-07-26 00:00:00.0', 0, 0, 'Name', 'Alphanumeric identifier of the entity', 'The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.', 1, 'D', 'Name', 53011, 10, NULL, NULL, 60, NULL, 'N', 'N', 'Y', 'Y', NULL, 'Y', 1, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 469, NULL, 'N', 'N', NULL, NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql, mandatorylogic) - VALUES(53006, 0, 0, 'Y', '2007-07-26 11:29:06.0', '2007-07-26 00:00:00.0', 0, 0, 'Available Quantity', 'Available Quantity (On Hand - Reserved)', 'Quantity available to promise = On Hand minus Reserved Quantity', 1, 'D', 'QtyAvailable', 53011, 29, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'N', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 2238, NULL, 'N', 'N', NULL, NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql, mandatorylogic) - VALUES(53007, 0, 0, 'Y', '2007-07-26 00:00:00.0', '2007-07-26 00:00:00.0', 0, 0, 'On Hand Quantity', 'On Hand Quantity', 'The On Hand Quantity indicates the quantity of a product that is on hand in a warehouse.', 1, 'D', 'QtyOnHand', 53011, 29, NULL, NULL, 22, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', NULL, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 530, NULL, 'N', 'N', NULL, NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql, mandatorylogic) - VALUES(53008, 0, 0, 'Y', '2007-07-26 18:21:48.0', '2007-07-26 00:00:00.0', 0, 0, 'Reserved Quantity', 'Reserved Quantity', 'The Reserved Quantity indicates the quantity of a product that is currently reserved.', 1, 'D', 'QtyReserved', 53011, 29, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', NULL, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 532, NULL, 'N', 'N', NULL, NULL); - ---add view to ad_table -INSERT INTO AD_TABLE (ad_table_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, NAME, description, help, tablename, isview, accesslevel, entitytype, ad_window_id, ad_val_rule_id, loadseq, issecurityenabled, isdeleteable, ishighvolume, importtable, ischangelog, replicationtype, po_window_id, copycolumnsfromtable) - VALUES(53015, 0, 0, 'Y', '2007-07-26 00:00:00.0', 100, '2007-07-26 00:00:00.0', 100, 'Product Substitute with Stock Info', NULL, NULL, 'M_Product_SubstituteRelated_V', 'Y', '1', 'D', NULL, NULL, NULL, 'N', 'Y', 'N', 'N', 'N', 'L', NULL, NULL); - ---add columns to view in ad_column -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql, mandatorylogic) - VALUES(53023, 0, 0, 'Y', '2007-07-26 01:20:59.0', '2007-07-26 01:20:59.0', 0, 0, 'Description', 'Optional short description of the record', 'A description is limited to 255 characters.', 0, 'D', 'Description', 53015, 10, NULL, NULL, 255, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', NULL, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 275, NULL, 'N', 'N', NULL, NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql, mandatorylogic) - VALUES(53024, 0, 0, 'Y', '2007-07-26 10:52:11.0', '2007-07-26 10:52:11.0', 0, 0, 'Product', 'Product, Service, Item', 'Identifies an item which is either purchased or sold in this organization.', 0, 'U', 'M_Product_ID', 53015, 30, NULL, NULL, 10, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 454, NULL, 'N', 'N', NULL, NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql, mandatorylogic) - VALUES(53025, 0, 0, 'Y', '2007-07-26 15:01:05.0', '2007-07-26 00:00:00.0', 0, 0, 'Standard Price', 'Standard Price', 'The Standard Price indicates the standard or normal price for a product on this price list', 1, 'D', 'PriceStd', 53015, 37, NULL, NULL, 60, NULL, 'N', 'N', 'Y', 'Y', NULL, 'Y', 1, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 957, NULL, 'N', 'N', NULL, NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql, mandatorylogic) - VALUES(53026, 0, 0, 'Y', '2007-07-26 11:29:06.0', '2007-07-26 00:00:00.0', 0, 0, 'Available Quantity', 'Available Quantity (On Hand - Reserved)', 'Quantity available to promise = On Hand minus Reserved Quantity', 1, 'D', 'QtyAvailable', 53015, 29, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'N', NULL, 'N', 0, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 2238, NULL, 'N', 'N', NULL, NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql, mandatorylogic) - VALUES(53028, 0, 0, 'Y', '2007-07-26 18:21:48.0', '2007-07-26 00:00:00.0', 0, 0, 'Reserved Quantity', 'Reserved Quantity', 'The Reserved Quantity indicates the quantity of a product that is currently reserved.', 1, 'D', 'QtyReserved', 53015, 29, NULL, NULL, 22, NULL, 'N', 'N', 'N', 'Y', NULL, 'N', NULL, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 532, NULL, 'N', 'N', NULL, NULL); -INSERT INTO AD_COLUMN(ad_column_id, ad_client_id, ad_org_id, isactive, created, updated, createdby, updatedby, NAME, description, help, VERSION, entitytype, columnname, ad_table_id, ad_reference_id, ad_reference_value_id, ad_val_rule_id, fieldlength, defaultvalue, iskey, isparent, ismandatory, isupdateable, readonlylogic, isidentifier, seqno, istranslated, isencrypted, callout, vformat, valuemin, valuemax, isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase, isalwaysupdateable, columnsql, mandatorylogic) - VALUES(53027, 0, 0, 'Y', '2007-07-26 00:00:00.0', '2007-07-26 00:00:00.0', 0, 0, 'On Hand Quantity', 'On Hand Quantity', 'The On Hand Quantity indicates the quantity of a product that is on hand in a warehouse.', 1, 'D', 'QtyOnHand', 53015, 29, NULL, NULL, 22, NULL, 'N', 'N', 'Y', 'N', NULL, 'N', NULL, 'N', 'N', NULL, NULL, NULL, NULL, 'N', 530, NULL, 'N', 'N', NULL, NULL); - ---create views -CREATE OR REPLACE VIEW M_PRODUCT_STOCK_V -AS -SELECT -ms.IsActive, ms.Created, ms.CreatedBy, ms.Updated, ms.UpdatedBy, -mp.VALUE, mp.help, (ms.qtyonhand - ms.qtyreserved) AS qtyavailable, ms.qtyonhand, -ms.qtyreserved, mp.description, mw.NAME AS warehouse, mw.m_warehouse_id, mw.ad_client_id, -mw.ad_org_id, mp.documentnote -FROM M_STORAGE ms -JOIN M_PRODUCT mp ON ms.m_product_id = mp.m_product_id -JOIN M_LOCATOR ml ON ms.m_locator_id = ml.m_locator_id -JOIN M_WAREHOUSE mw ON ml.m_warehouse_id = mw.m_warehouse_id -ORDER BY mw.NAME; - - -CREATE OR REPLACE VIEW M_PRODUCT_SUBSTITUTERELATED_V AS -SELECT s.AD_Client_ID, s.AD_Org_ID, s.IsActive, s.Created, s.CreatedBy, s.Updated, s.UpdatedBy, s.m_product_id, s.substitute_id, s.description, 'S' AS ROWTYPE, (ms.qtyonhand - ms.qtyreserved) AS qtyavailable, ms.qtyonhand, ms.qtyreserved, mpr.pricestd, mpr.m_pricelist_version_id, mw.m_warehouse_id -FROM M_SUBSTITUTE s -JOIN M_STORAGE ms ON ms.m_product_id = s.substitute_id -JOIN M_PRODUCT mp ON ms.m_product_id = mp.m_product_id -JOIN M_LOCATOR ml ON ms.m_locator_id = ml.m_locator_id -JOIN M_WAREHOUSE mw ON ml.m_warehouse_id = mw.m_warehouse_id -JOIN M_PRODUCTPRICE mpr ON ms.m_product_id = mpr.m_product_id -UNION -SELECT r.ad_client_id, r.ad_org_id, r.IsActive, r.Created, r.CreatedBy, r.Updated, r.UpdatedBy, r.m_product_id, r.relatedproduct_id, r.description, 'R' AS ROWTYPE, (ms.qtyonhand - ms.qtyreserved) AS qtyavailable, ms.qtyonhand, ms.qtyreserved, mpr.pricestd, mpr.m_pricelist_version_id, mw.m_warehouse_id -FROM M_RELATEDPRODUCT r -JOIN M_STORAGE ms ON ms.m_product_id = r.relatedproduct_id -JOIN M_PRODUCT mp ON ms.m_product_id = mp.m_product_id -JOIN M_LOCATOR ml ON ms.m_locator_id = ml.m_locator_id -JOIN M_WAREHOUSE mw ON ml.m_warehouse_id = mw.m_warehouse_id -JOIN M_PRODUCTPRICE mpr ON ms.m_product_id = mpr.m_product_id; - - - -SELECT '038_AD_ModelValidatorPatch.sql' AS Filename; --- Fixed wrong reference id for the entitytype column in the 020 script. - -UPDATE AD_Column -SET AD_Reference_ID = 18, -AD_Reference_Value_ID = 389 -WHERE AD_Column_ID = 53263; - - - - -SELECT '039_FR_1782412_PG.sql' AS Filename; - -CREATE TABLE AD_Document_Action_Access ( - - AD_CLIENT_ID NUMERIC(10,0) NOT NULL , - AD_ORG_ID NUMERIC(10,0) NOT NULL , - ISACTIVE CHAR(1) DEFAULT 'Y' NOT NULL , - CREATED DATE DEFAULT now() NOT NULL , - CREATEDBY NUMERIC(10,0) NOT NULL , - UPDATED DATE DEFAULT now() NOT NULL , - UPDATEDBY NUMERIC(10,0) NOT NULL , - - C_DocType_ID NUMERIC(10,0) NOT NULL, - AD_Role_ID NUMERIC(10,0) NOT NULL, - AD_Ref_List_ID NUMERIC(10,0) NOT NULL - -); - - - -INSERT INTO AD_VAL_RULE(AD_VAL_RULE_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY,NAME,DESCRIPTION,TYPE,CODE,ENTITYTYPE)values(51002,0,0,'Y',to_date('2007-08-27','RRRR-MM-DD'),100,to_date('2007-08-27','RRRR-MM-DD'),100,'AD_Ref_List_ID (Document Actions)','all document actions','S','AD_Ref_List.AD_Reference_ID=135','D'); -INSERT INTO AD_TABLE(AD_TABLE_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY,NAME,DESCRIPTION,HELP,TABLENAME,ISVIEW,ACCESSLEVEL,ENTITYTYPE,AD_WINDOW_ID,AD_VAL_RULE_ID,LOADSEQ,ISSECURITYENABLED,ISDELETEABLE,ISHIGHVOLUME,IMPORTTABLE,ISCHANGELOG,REPLICATIONTYPE,PO_WINDOW_ID,COPYCOLUMNSFROMTABLE)values(53012,0,0,'Y',to_date('2007-08-27','RRRR-MM-DD'),100,to_date('2007-08-27','RRRR-MM-DD'),100,'Document Action Access','Define access to document type / document action / role combinations.','Define access rules (add roles with access) for client/role/doctype/document action combinations. If no rules are defined for a client/doctype/doc action combination all roles can access the document action.','AD_Document_Action_Access','N','6','D',null,null,0,'N','Y','N','N','N','L',null,'N'); -INSERT INTO AD_SEQUENCE(AD_SEQUENCE_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY,NAME,DESCRIPTION,VFORMAT,ISAUTOSEQUENCE,INCREMENTNO,STARTNO,CURRENTNEXT,CURRENTNEXTSYS,ISAUDITED,ISTABLEID,PREFIX,SUFFIX,STARTNEWYEAR)values(53011,0,0,'Y',to_date('2007-08-27','RRRR-MM-DD'),100,to_date('2007-08-27','RRRR-MM-DD'),100,'AD_Document_Action_Access','Table AD_Document_Action_Access',null,'Y',1,1000000,1000001,50000,'N','Y',null,null,'N'); - -INSERT INTO AD_COLUMN(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC)values(53222,0,0,'Y',to_date('2007-08-27','RRRR-MM-DD'),to_date('2007-08-27','RRRR-MM-DD'),100,100,'Client','Client/Tenant for this installation.','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.',0,'D','AD_Client_ID',53012,19,null,null,22,'@AD_Client_ID@','N','N','Y','N',null,'N',null,'N','N',null,null,null,null,'N',102,null,'N','N',null,null); -INSERT INTO AD_COLUMN(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC)values(53223,0,0,'Y',to_date('2007-08-27','RRRR-MM-DD'),to_date('2007-08-27','RRRR-MM-DD'),100,100,'Organization','Organizational entity within client','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.',0,'D','AD_Org_ID',53012,19,null,104,22,'@AD_Org_ID@','N','N','Y','N',null,'N',null,'N','N',null,null,null,null,'N',113,null,'N','N',null,null); -INSERT INTO AD_COLUMN(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC)values(53224,0,0,'Y',to_date('2007-08-27','RRRR-MM-DD'),to_date('2007-08-27','RRRR-MM-DD'),100,100,'Active','The record is active in the system','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. There are two reasons for de-activating and not deleting records: (1) The system requires the record for audit purposes. (2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries.',0,'D','IsActive',53012,20,null,null,1,null,'N','N','Y','Y',null,'N',null,'N','N',null,null,null,null,'N',348,null,'N','N',null,null); -INSERT INTO AD_COLUMN(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC)values(53225,0,0,'Y',to_date('2007-08-27','RRRR-MM-DD'),to_date('2007-08-27','RRRR-MM-DD'),100,100,'Created','Date this record was created','The Created field indicates the date that this record was created.',0,'D','Created',53012,16,null,null,7,null,'N','N','Y','N',null,'N',null,'N','N',null,null,null,null,'N',245,null,'N','N',null,null); -INSERT INTO AD_COLUMN(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC)values(53226,0,0,'Y',to_date('2007-08-27','RRRR-MM-DD'),to_date('2007-08-27','RRRR-MM-DD'),100,100,'Created By','User who created this records','The Created By field indicates the user who created this record.',0,'D','CreatedBy',53012,18,110,null,22,null,'N','N','Y','N',null,'N',null,'N','N',null,null,null,null,'N',246,null,'N','N',null,null); -INSERT INTO AD_COLUMN(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC)values(53227,0,0,'Y',to_date('2007-08-27','RRRR-MM-DD'),to_date('2007-08-27','RRRR-MM-DD'),100,100,'Updated','Date this record was updated','The Updated field indicates the date that this record was updated.',0,'D','Updated',53012,16,null,null,7,null,'N','N','Y','N',null,'N',null,'N','N',null,null,null,null,'N',607,null,'N','N',null,null); -INSERT INTO AD_COLUMN(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC)values(53228,0,0,'Y',to_date('2007-08-27','RRRR-MM-DD'),to_date('2007-08-27','RRRR-MM-DD'),100,100,'Updated By','User who updated this records','The Updated By field indicates the user who updated this record.',0,'D','UpdatedBy',53012,18,110,null,22,null,'N','N','Y','N',null,'N',null,'N','N',null,null,null,null,'N',608,null,'N','N',null,null); -INSERT INTO AD_COLUMN(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC)values(53229,0,0,'Y',to_date('2007-08-27','RRRR-MM-DD'),to_date('2007-08-27','RRRR-MM-DD'),100,100,'Document Type','Document type or rules','The Document Type determines document sequence and processing rules',0,'D','C_DocType_ID',53012,19,null,null,22,null,'N','Y','Y','N',null,'N',null,'N','N',null,null,null,null,'N',196,null,'N','N',null,null); -INSERT INTO AD_COLUMN(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC)values(53230,0,0,'Y',to_date('2007-08-27','RRRR-MM-DD'),to_date('2007-08-27','RRRR-MM-DD'),100,100,'Role','Responsibility Role','The Role determines security and access a user who has this Role will have in the System.',0,'D','AD_Role_ID',53012,19,null,null,22,null,'N','Y','Y','N',null,'N',null,'N','N',null,null,null,null,'N',123,null,'N','N',null,null); -INSERT INTO AD_COLUMN(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL,MANDATORYLOGIC)values(53231,0,0,'Y',to_date('2007-08-27','RRRR-MM-DD'),to_date('2007-08-27','RRRR-MM-DD'),100,100,'Reference List','Reference List based on Table',null,0,'D','AD_Ref_List_ID',53012,19,null,51002,22,null,'N','Y','Y','N',null,'N',null,'N','N',null,null,null,null,'N',119,null,'N','N',null,null); - -INSERT INTO AD_TAB(AD_TAB_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY,NAME,DESCRIPTION,HELP,AD_TABLE_ID,AD_WINDOW_ID,SEQNO,TABLEVEL,ISSINGLEROW,ISINFOTAB,ISTRANSLATIONTAB,ISREADONLY,AD_COLUMN_ID,HASTREE,WHERECLAUSE,ORDERBYCLAUSE,COMMITWARNING,AD_PROCESS_ID,PROCESSING,AD_IMAGE_ID,IMPORTFIELDS,AD_COLUMNSORTORDER_ID,AD_COLUMNSORTYESNO_ID,ISSORTTAB,ENTITYTYPE,INCLUDED_TAB_ID,READONLYLOGIC,DISPLAYLOGIC,ISINSERTRECORD,ISADVANCEDTAB)values(53013,0,0,'Y',to_date('2007-08-29','RRRR-MM-DD'),100,to_date('2007-08-29','RRRR-MM-DD'),100,'Document Action Access','Define access to document type / document action / role combinations.','Define access to document type / document action / role combinations.',53012,111,90,1,'N','N','N','N',53230,'N',null,null,null,null,'N',null,'N',null,null,'N','D',null,null,null,'Y','N'); - -INSERT INTO AD_FIELD(AD_FIELD_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY,NAME,DESCRIPTION,HELP,ISCENTRALLYMAINTAINED,AD_TAB_ID,AD_COLUMN_ID,AD_FIELDGROUP_ID,ISDISPLAYED,DISPLAYLOGIC,DISPLAYLENGTH,ISREADONLY,SEQNO,SORTNO,ISSAMELINE,ISHEADING,ISFIELDONLY,ISENCRYPTED,ENTITYTYPE,OBSCURETYPE,AD_REFERENCE_ID,ISMANDATORY)values(53241,0,0,'Y',to_date('2007-08-29','RRRR-MM-DD'),100,to_date('2007-08-29','RRRR-MM-DD'),100,'Active','The record is active in the system','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. There are two reasons for de-activating and not deleting records: (1) The system requires the record for audit purposes. (2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries.','Y',53013,53224,null,'Y',null,1,'N',50,null,'N','N','N','N','D',null,null,null); -INSERT INTO AD_FIELD(AD_FIELD_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY,NAME,DESCRIPTION,HELP,ISCENTRALLYMAINTAINED,AD_TAB_ID,AD_COLUMN_ID,AD_FIELDGROUP_ID,ISDISPLAYED,DISPLAYLOGIC,DISPLAYLENGTH,ISREADONLY,SEQNO,SORTNO,ISSAMELINE,ISHEADING,ISFIELDONLY,ISENCRYPTED,ENTITYTYPE,OBSCURETYPE,AD_REFERENCE_ID,ISMANDATORY)values(53242,0,0,'Y',to_date('2007-08-29','RRRR-MM-DD'),100,to_date('2007-08-29','RRRR-MM-DD'),100,'Client','Client/Tenant for this installation.','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y',53013,53222,null,'Y',null,22,'N',10,null,'N','N','N','N','D',null,null,null); -INSERT INTO AD_FIELD(AD_FIELD_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY,NAME,DESCRIPTION,HELP,ISCENTRALLYMAINTAINED,AD_TAB_ID,AD_COLUMN_ID,AD_FIELDGROUP_ID,ISDISPLAYED,DISPLAYLOGIC,DISPLAYLENGTH,ISREADONLY,SEQNO,SORTNO,ISSAMELINE,ISHEADING,ISFIELDONLY,ISENCRYPTED,ENTITYTYPE,OBSCURETYPE,AD_REFERENCE_ID,ISMANDATORY)values(53244,0,0,'Y',to_date('2007-08-29','RRRR-MM-DD'),100,to_date('2007-08-29','RRRR-MM-DD'),100,'Document Type','Document type or rules','The Document Type determines document sequence and processing rules','Y',53013,53229,null,'Y',null,22,'N',30,null,'N','N','N','N','D',null,null,null); -INSERT INTO AD_FIELD(AD_FIELD_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY,NAME,DESCRIPTION,HELP,ISCENTRALLYMAINTAINED,AD_TAB_ID,AD_COLUMN_ID,AD_FIELDGROUP_ID,ISDISPLAYED,DISPLAYLOGIC,DISPLAYLENGTH,ISREADONLY,SEQNO,SORTNO,ISSAMELINE,ISHEADING,ISFIELDONLY,ISENCRYPTED,ENTITYTYPE,OBSCURETYPE,AD_REFERENCE_ID,ISMANDATORY)values(53245,0,0,'Y',to_date('2007-08-29','RRRR-MM-DD'),100,to_date('2007-08-29','RRRR-MM-DD'),100,'Organization','Organizational entity within client','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y',53013,53223,null,'Y',null,22,'N',20,null,'N','N','N','N','D',null,null,null); -INSERT INTO AD_FIELD(AD_FIELD_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY,NAME,DESCRIPTION,HELP,ISCENTRALLYMAINTAINED,AD_TAB_ID,AD_COLUMN_ID,AD_FIELDGROUP_ID,ISDISPLAYED,DISPLAYLOGIC,DISPLAYLENGTH,ISREADONLY,SEQNO,SORTNO,ISSAMELINE,ISHEADING,ISFIELDONLY,ISENCRYPTED,ENTITYTYPE,OBSCURETYPE,AD_REFERENCE_ID,ISMANDATORY)values(53246,0,0,'Y',to_date('2007-08-29','RRRR-MM-DD'),100,to_date('2007-08-29','RRRR-MM-DD'),100,'Reference List','Reference List based on Table','The Reference List field indicates a list of reference values from a database tables. Reference lists populate drop down list boxes in data entry screens','Y',53013,53231,null,'Y',null,22,'N',40,null,'N','N','N','N','D',null,null,null); -INSERT INTO AD_FIELD(AD_FIELD_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,UPDATED,UPDATEDBY,NAME,DESCRIPTION,HELP,ISCENTRALLYMAINTAINED,AD_TAB_ID,AD_COLUMN_ID,AD_FIELDGROUP_ID,ISDISPLAYED,DISPLAYLOGIC,DISPLAYLENGTH,ISREADONLY,SEQNO,SORTNO,ISSAMELINE,ISHEADING,ISFIELDONLY,ISENCRYPTED,ENTITYTYPE,OBSCURETYPE,AD_REFERENCE_ID,ISMANDATORY)values(53247,0,0,'Y',to_date('2007-08-29','RRRR-MM-DD'),100,to_date('2007-08-29','RRRR-MM-DD'),100,'Role','Responsibility Role','The Role determines security and access a user who has this Role will have in the System.','Y',53013,53230,null,'N',null,22,'N',0,null,'N','N','N','N','D',null,null,null); - - - - - -UPDATE ad_sequence - SET currentnextsys = (SELECT MAX (ad_column_id) + 1 - FROM ad_column - WHERE ad_column_id < 1000000) - WHERE NAME = 'AD_Column'; - -UPDATE ad_sequence - SET currentnextsys = (SELECT MAX (ad_field_id) + 1 - FROM ad_field - WHERE ad_field_id < 1000000) - WHERE NAME = 'AD_Field'; - - - UPDATE ad_sequence - SET currentnextsys = (SELECT MAX (ad_column_id) + 1 - FROM ad_column - WHERE ad_column_id < 1000000) - WHERE NAME = 'AD_Sequence'; - - UPDATE ad_sequence - SET currentnextsys = (SELECT MAX (ad_field_id) + 1 - FROM ad_field - WHERE ad_field_id < 1000000) - WHERE NAME = 'AD_Tab'; - - UPDATE ad_sequence - SET currentnextsys = (SELECT MAX (ad_message_id) + 1 - FROM ad_message - WHERE ad_message_id < 1000000) - WHERE NAME = 'AD_Table'; - - UPDATE ad_sequence - SET currentnextsys = (SELECT MAX (ad_element_id) + 1 - FROM ad_element - WHERE ad_element_id < 1000000) - WHERE NAME = 'AD_Window'; - - UPDATE ad_sequence - SET currentnextsys = (SELECT MAX (ad_column_id) + 1 - FROM ad_column - WHERE ad_column_id < 1000000) - WHERE NAME = 'AD_Val_Rule'; - - - - -delete from AD_Document_Action_Access; - -Insert into AD_Document_Action_Access ( - AD_CLIENT_ID , - AD_ORG_ID , - ISACTIVE , - CREATED , - CREATEDBY , - UPDATED , - UPDATEDBY , - C_DocType_ID , - AD_Role_ID , - AD_Ref_List_ID - ) - - ( - SELECT - client.AD_Client_ID, - 0, - 'Y', - now(), - 0, - now(), - 0, - doctype.C_DocType_ID, - rol.AD_Role_ID, - action.AD_Ref_List_ID - FROM AD_Client client - INNER JOIN C_DocType doctype ON (doctype.AD_Client_ID=client.AD_Client_ID) - INNER JOIN AD_Ref_List action ON (action.AD_Reference_ID=135) - INNER JOIN AD_Role rol ON (rol.AD_Client_ID=client.AD_Client_ID) - ); - - - - -SELECT '040_FR1840016.sql' AS Filename; --- Nov 27, 2007 11:00:15 PM COT --- FR 1840016 - Avoid usage of clearing accounts -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,Help,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,53227,0,'IsPostIfClearingEqual',TO_TIMESTAMP('2007-11-27 23:00:10','YYYY-MM-DD HH24:MI:SS'),100,'This flag controls if Adempiere must post when clearing (transit) and final accounts are the same','D',NULL,'Y','Post if Clearing Equal','Post if Clearing Equal',TO_TIMESTAMP('2007-11-27 23:00:10','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Nov 27, 2007 11:00:16 PM COT --- FR 1840016 - Avoid usage of clearing accounts -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53227 AND EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Element_ID!=t.AD_Element_ID) -; - --- Nov 27, 2007 11:00:45 PM COT --- FR 1840016 - Avoid usage of clearing accounts -UPDATE AD_Column SET ColumnName='IsPostIfClearingEqual', Name='Post if Clearing Equal', Description='This flag controls if Adempiere must post when clearing (transit) and final accounts are the same', Help=NULL WHERE AD_Element_ID=53227 -; - --- Nov 27, 2007 11:00:45 PM COT --- FR 1840016 - Avoid usage of clearing accounts -UPDATE AD_Field SET Name='Post if Clearing Equal', Description='This flag controls if Adempiere must post when clearing (transit) and final accounts are the same', Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=53227) AND IsCentrallyMaintained='Y' -; - --- Nov 27, 2007 11:00:45 PM COT --- FR 1840016 - Avoid usage of clearing accounts -UPDATE AD_Process_Para SET ColumnName='IsPostIfClearingEqual', Name='Post if Clearing Equal', Description='This flag controls if Adempiere must post when clearing (transit) and final accounts are the same', Help=NULL, AD_Element_ID=53227 WHERE UPPER(ColumnName)='ISPOSTIFCLEARINGEQUAL' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - --- Nov 27, 2007 11:00:45 PM COT --- FR 1840016 - Avoid usage of clearing accounts -UPDATE AD_Process_Para SET ColumnName='IsPostIfClearingEqual', Name='Post if Clearing Equal', Description='This flag controls if Adempiere must post when clearing (transit) and final accounts are the same', Help=NULL WHERE AD_Element_ID=53227 AND IsCentrallyMaintained='Y' -; - --- Nov 27, 2007 11:00:45 PM COT --- FR 1840016 - Avoid usage of clearing accounts -UPDATE AD_PrintFormatItem SET PrintName='Post if Clearing Equal', Name='Post if Clearing Equal' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=53227) -; - --- Nov 27, 2007 11:00:46 PM COT --- FR 1840016 - Avoid usage of clearing accounts -UPDATE AD_PrintFormatItem SET PrintName='Post if Clearing Equal', Name='Post if Clearing Equal' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=53227) -; - --- Nov 27, 2007 11:01:30 PM COT --- FR 1840016 - Avoid usage of clearing accounts -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,53266,53227,0,20,265,'IsPostIfClearingEqual',TO_TIMESTAMP('2007-11-27 23:01:29','YYYY-MM-DD HH24:MI:SS'),100,'Y','This flag controls if Adempiere must post when clearing (transit) and final accounts are the same','D',1,'Y','N','N','N','N','N','N','N','N','N','Y','Post if Clearing Equal',0,TO_TIMESTAMP('2007-11-27 23:01:29','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Nov 27, 2007 11:01:30 PM COT --- FR 1840016 - Avoid usage of clearing accounts -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=53266 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Nov 27, 2007 11:01:45 PM COT --- FR 1840016 - Avoid usage of clearing accounts -ALTER TABLE C_AcctSchema ADD COLUMN IsPostIfClearingEqual CHAR(1) DEFAULT 'Y' CHECK (IsPostIfClearingEqual IN ('Y','N')) -; - --- Nov 27, 2007 11:07:24 PM COT --- FR 1840016 - Avoid usage of clearing accounts -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,Updated,UpdatedBy) VALUES (0,53266,53281,0,199,TO_TIMESTAMP('2007-11-27 23:07:22','YYYY-MM-DD HH24:MI:SS'),100,'This flag controls if Adempiere must post when clearing (transit) and final accounts are the same',1,'D','Y','Y','Y','N','N','N','N','Y','Post if Clearing Equal',270,TO_TIMESTAMP('2007-11-27 23:07:22','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Nov 27, 2007 11:07:24 PM COT --- FR 1840016 - Avoid usage of clearing accounts -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=53281 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - - -SELECT '041_FR1814291.sql' AS Filename; --- Dec 1, 2007 1:51:24 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_REF_LIST SET NAME='PO Commitment & Reservation',Updated=TO_TIMESTAMP('2007-12-01 01:51:24','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Ref_List_ID=785 -; - --- Dec 1, 2007 1:51:24 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_REF_LIST_TRL SET NAME = 'Compromisos Compra y Reservas', IsTranslated='Y' WHERE AD_Ref_List_ID=785 AND AD_LANGUAGE LIKE 'es_%' -; - --- Dec 1, 2007 1:52:54 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_REF_LIST SET NAME='PO Commitment only',Updated=TO_TIMESTAMP('2007-12-01 01:52:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Ref_List_ID=784 -; - --- Dec 1, 2007 1:52:54 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_REF_LIST_TRL SET NAME = 'Solamente Compromiso Compras', IsTranslated='Y' WHERE AD_Ref_List_ID=784 AND AD_LANGUAGE LIKE 'es_%' -; - --- Dec 1, 2007 1:53:53 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53223,359,TO_TIMESTAMP('2007-12-01 01:53:45','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','PO;SO Commitment & Reservation',TO_TIMESTAMP('2007-12-01 01:53:45','YYYY-MM-DD HH24:MI:SS'),100,'A') -; - --- Dec 1, 2007 1:53:53 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53223 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- Dec 1, 2007 1:52:54 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_REF_LIST_TRL SET NAME = 'Compromisos (ambos) y Reservas', IsTranslated='Y' WHERE AD_Ref_List_ID=53223 AND AD_LANGUAGE LIKE 'es_%' -; - --- Dec 1, 2007 1:54:46 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53224,359,TO_TIMESTAMP('2007-12-01 01:54:31','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','SO Commitment only',TO_TIMESTAMP('2007-12-01 01:54:31','YYYY-MM-DD HH24:MI:SS'),100,'S') -; - --- Dec 1, 2007 1:54:46 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53224 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- Dec 1, 2007 1:52:54 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_REF_LIST_TRL SET NAME = 'Solamente Compromiso Ventas', IsTranslated='Y' WHERE AD_Ref_List_ID=53224 AND AD_LANGUAGE LIKE 'es_%' -; - --- Dec 1, 2007 1:55:44 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53225,359,TO_TIMESTAMP('2007-12-01 01:55:35','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','PO;SO Commitment',TO_TIMESTAMP('2007-12-01 01:55:35','YYYY-MM-DD HH24:MI:SS'),100,'O') -; - --- Dec 1, 2007 1:55:44 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53225 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- Dec 1, 2007 1:52:54 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_REF_LIST_TRL SET NAME = 'Solamente Compromisos (ambos)', IsTranslated='Y' WHERE AD_Ref_List_ID=53225 AND AD_LANGUAGE LIKE 'es_%' -; - --- Dec 1, 2007 1:58:18 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,Help,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53228,0,'CommitmentOffsetSales_Acct',TO_TIMESTAMP('2007-12-01 01:58:04','YYYY-MM-DD HH24:MI:SS'),100,'Budgetary Commitment Offset Account for Sales','D','The Commitment Offset Account is used for posting Commitments Sales and Reservations. It is usually an off-balance sheet and gain-and-loss account.','Y','Commitment Offset Sales','Commitment Offset Sales',TO_TIMESTAMP('2007-12-01 01:58:04','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Dec 1, 2007 1:58:18 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53228 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - --- Dec 1, 2007 1:59:04 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,53267,53228,0,25,266,'CommitmentOffsetSales_Acct',TO_TIMESTAMP('2007-12-01 01:58:56','YYYY-MM-DD HH24:MI:SS'),100,'Budgetary Commitment Offset Account for Sales','D',10,'The Commitment Offset Account is used for posting Commitments Sales and Reservations. It is usually an off-balance sheet and gain-and-loss account.','Y','N','N','N','N','N','N','N','N','N','Y','Commitment Offset Sales',TO_TIMESTAMP('2007-12-01 01:58:56','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Dec 1, 2007 1:59:04 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=53267 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Dec 1, 2007 1:59:26 AM COT --- FR 1814291 - Sales Commitment Offset -ALTER TABLE C_ACCTSCHEMA_GL ADD COLUMN CommitmentOffsetSales_Acct NUMERIC(10) -; - --- FR 1814291 - Sales Commitment Offset -UPDATE C_ACCTSCHEMA_GL SET CommitmentOffsetSales_Acct = CommitmentOffset_Acct -; - --- Dec 1, 2007 2:00:20 AM COT --- FR 1814291 - Sales Commitment Offset -ALTER TABLE C_ACCTSCHEMA_GL ALTER COLUMN CommitmentOffsetSales_Acct SET NOT NULL -; - --- Dec 1, 2007 2:00:11 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_COLUMN SET IsMandatory='Y',Updated=TO_TIMESTAMP('2007-12-01 02:00:11','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=53267 -; - --- Dec 1, 2007 2:00:11 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_FIELD SET NAME='Commitment Offset Sales', Description='Budgetary Commitment Offset Account for Sales', Help='The Commitment Offset Account is used for posting Commitments Sales and Reservations. It is usually an off-balance sheet and gain-and-loss account.' WHERE AD_Column_ID=53267 AND IsCentrallyMaintained='Y' -; - --- Dec 1, 2007 2:02:34 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_FIELD SET IsSameLine='N', SeqNo=160,Updated=TO_TIMESTAMP('2007-12-01 02:02:34','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=12375 -; - --- Dec 1, 2007 2:03:04 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,Updated,UpdatedBy) VALUES (0,53267,53282,0,200,TO_TIMESTAMP('2007-12-01 02:02:56','YYYY-MM-DD HH24:MI:SS'),100,'Budgetary Commitment Offset Account for Sales',10,'D','The Commitment Offset Account is used for posting Commitments Sales and Reservations. It is usually an off-balance sheet and gain-and-loss account.','Y','Y','Y','N','N','N','N','Y','Commitment Offset Sales',170,TO_TIMESTAMP('2007-12-01 02:02:56','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Dec 1, 2007 2:03:04 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=53282 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- Dec 1, 2007 2:55:04 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO C_ELEMENTVALUE (AD_Client_ID,AD_Org_ID,AccountSign,AccountType,C_ElementValue_ID,C_Element_ID,Created,CreatedBy,IsActive,IsBankAccount,IsDocControlled,IsForeignCurrency,IsSummary,NAME,PostActual,PostBudget,PostEncumbrance,PostStatistical,Updated,UpdatedBy,VALUE) VALUES (11,0,'N','M',50000,105,TO_TIMESTAMP('2007-12-01 02:55:03','YYYY-MM-DD HH24:MI:SS'),100,'Y','N','N','N','N','SO Commitment','Y','Y','Y','Y',TO_TIMESTAMP('2007-12-01 02:55:03','YYYY-MM-DD HH24:MI:SS'),100,'953') -; - --- Dec 1, 2007 2:55:04 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO C_ELEMENTVALUE_TRL (AD_LANGUAGE,C_ElementValue_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.C_ElementValue_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, C_ELEMENTVALUE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.C_ElementValue_ID=50000 AND EXISTS (SELECT * FROM C_ELEMENTVALUE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.C_ElementValue_ID!=t.C_ElementValue_ID) -; - --- Dec 1, 2007 2:55:04 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO AD_TREENODE (AD_Client_ID,AD_Org_ID, IsActive,Created,CreatedBy,Updated,UpdatedBy, AD_Tree_ID, Node_ID, Parent_ID, SeqNo) SELECT t.AD_Client_ID,0, 'Y', CURRENT_TIMESTAMP, 0, CURRENT_TIMESTAMP, 0,t.AD_Tree_ID, 50000, 0, 999 FROM AD_TREE t WHERE t.AD_Client_ID=11 AND t.IsActive='Y' AND EXISTS (SELECT * FROM C_ELEMENT ae WHERE ae.C_Element_ID=105 AND t.AD_Tree_ID=ae.AD_Tree_ID) AND NOT EXISTS (SELECT * FROM AD_TREENODE e WHERE e.AD_Tree_ID=t.AD_Tree_ID AND Node_ID=50000) -; - --- Dec 1, 2007 2:55:08 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=0, SeqNo=0, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=101 AND Node_ID=506 -; - --- Dec 1, 2007 2:55:08 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=0, SeqNo=1, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=101 AND Node_ID=584 -; - --- Dec 1, 2007 2:55:08 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=0, SeqNo=2, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=101 AND Node_ID=624 -; - --- Dec 1, 2007 2:55:08 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=0, SeqNo=3, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=101 AND Node_ID=632 -; - --- Dec 1, 2007 2:55:08 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=0, SeqNo=4, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=101 AND Node_ID=429 -; - --- Dec 1, 2007 2:55:08 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=0, SeqNo=5, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=101 AND Node_ID=449 -; - --- Dec 1, 2007 2:55:08 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=0, SeqNo=6, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=101 AND Node_ID=783 -; - --- Dec 1, 2007 2:55:08 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=0, SeqNo=7, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=101 AND Node_ID=704 -; - --- Dec 1, 2007 2:55:08 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=0, SeqNo=8, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=101 AND Node_ID=716 -; - --- Dec 1, 2007 2:55:08 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=0, SeqNo=9, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=101 AND Node_ID=728 -; - --- Dec 1, 2007 2:55:08 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=0, SeqNo=10, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=101 AND Node_ID=731 -; - --- Dec 1, 2007 2:55:08 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=0, SeqNo=11, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=101 AND Node_ID=734 -; - --- Dec 1, 2007 2:55:08 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=734, SeqNo=0, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=101 AND Node_ID=735 -; - --- Dec 1, 2007 2:55:09 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=734, SeqNo=1, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=101 AND Node_ID=736 -; - --- Dec 1, 2007 2:55:09 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=734, SeqNo=2, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=101 AND Node_ID=50000 -; - --- Dec 1, 2007 2:55:09 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE AD_TREENODE SET Parent_ID=734, SeqNo=3, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=101 AND Node_ID=737 -; - --- Dec 1, 2007 2:55:54 AM COT --- FR 1814291 - Sales Commitment Offset -INSERT INTO C_VALIDCOMBINATION (AD_Client_ID,AD_Org_ID,Account_ID,C_AcctSchema_ID,C_ValidCombination_ID,Combination,Created,CreatedBy,Description,IsActive,IsFullyQualified,Updated,UpdatedBy) VALUES (11,11,50000,101,50000,'HQ-953-_-_-_-_',TO_TIMESTAMP('2007-12-01 02:55:54','YYYY-MM-DD HH24:MI:SS'),100,'HQ-SO Commitment-_-_-_-_','Y','Y',TO_TIMESTAMP('2007-12-01 02:55:54','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Dec 1, 2007 2:56:01 AM COT --- FR 1814291 - Sales Commitment Offset -UPDATE C_ACCTSCHEMA_GL SET CommitmentOffsetSales_Acct=50000,Updated=TO_TIMESTAMP('2007-12-01 02:56:01','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_AcctSchema_ID=101 -; - -SELECT '042_fix_typo_in_help.sql' AS Filename; -UPDATE AD_WINDOW - SET HELP = - 'The User Window allows you to maintain User of the system. Users can log into the system and have access to functionality via one or more roles. A user can also be a business partner contact.' - WHERE ad_window_id = 108 AND HELP LIKE '%aprtner%'; - -SELECT '043_version331.sql' AS Filename; -UPDATE AD_SYSTEM - SET releaseno = '331b', - VERSION = '2007-12-05' - WHERE ad_system_id = 0 AND ad_client_id = 0; - - - -SELECT '044_BF_1824260.sql' AS Filename; -CREATE OR REPLACE FUNCTION "adempiere"."subtractdays" (in inter interval, in days numeric) RETURNS integer AS -$BODY$ -BEGIN -RETURN ( EXTRACT( EPOCH FROM ( inter ) ) / 86400 ) - days; -END; -$BODY$ -LANGUAGE 'plpgsql'; - -CREATE OPERATOR - ( -PROCEDURE = subtractdays, -LEFTARG = interval, -RIGHTARG = numeric, -COMMUTATOR = - -); - - -CREATE OR REPLACE FUNCTION "adempiere"."adddays" (in inter interval, in days numeric) RETURNS integer AS -$BODY$ -BEGIN -RETURN ( EXTRACT( EPOCH FROM ( inter ) ) / 86400 ) + days; -END; -$BODY$ -LANGUAGE 'plpgsql'; - -CREATE OPERATOR + ( -PROCEDURE = adddays, -LEFTARG = interval, -RIGHTARG = numeric, -COMMUTATOR = - -); - -ALTER OPERATOR adempiere.+ (interval, numeric) OWNER TO adempiere; -SELECT '045_placeholder_branch350.sql' AS Filename; - -SELECT '046_FR1800371_SystemConfiguratorEnhancements.sql' AS Filename; --- Dec 15, 2007 12:31:13 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,ReadOnlyLogic,SeqNo,Updated,UpdatedBy,Version) VALUES (0,53270,1682,0,18,389,50009,'EntityType',TO_TIMESTAMP('2007-12-15 12:31:11','YYYY-MM-DD HH24:MI:SS'),100,'U','Dictionary Entity Type; Determines ownership and synchronization','D',40,'The Entity Types "Dictionary", "Adempiere" and "Application" might be automatically synchronized and customizations deleted or overwritten. - -For customizations, copy the entity and select "User"!','Y','N','N','N','N','Y','N','N','N','N','Y','Entity Type','@EntityType@=D',0,TO_TIMESTAMP('2007-12-15 12:31:11','YYYY-MM-DD HH24:MI:SS'),100,1.000000000000) -; - --- Dec 15, 2007 12:31:13 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=53270 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Dec 15, 2007 12:31:24 PM COT --- FR 1800371 System Configurator Enhancements -ALTER TABLE AD_SysConfig ADD COLUMN EntityType VARCHAR(40) DEFAULT 'U' NOT NULL -; - --- Dec 15, 2007 12:33:53 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,Help,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,53229,0,'ConfigurationLevel',TO_TIMESTAMP('2007-12-15 12:33:52','YYYY-MM-DD HH24:MI:SS'),100,'Configuration Level for this parameter','D','Configuration Level for this parameter -S - just allowed system configuration -C - client configurable parameter -O - org configurable parameter','Y','Configuration Level','Configuration Level for this parameter',TO_TIMESTAMP('2007-12-15 12:33:52','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Dec 15, 2007 12:33:53 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53229 AND EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Element_ID!=t.AD_Element_ID) -; - --- Dec 15, 2007 12:34:46 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_Reference (AD_Client_ID,AD_Org_ID,AD_Reference_ID,Created,CreatedBy,Description,EntityType,IsActive,Name,Updated,UpdatedBy,ValidationType) VALUES (0,0,53222,TO_TIMESTAMP('2007-12-15 12:34:44','YYYY-MM-DD HH24:MI:SS'),100,'Configuration Level','D','Y','AD_SysConfig ConfigurationLevel',TO_TIMESTAMP('2007-12-15 12:34:44','YYYY-MM-DD HH24:MI:SS'),100,'L') -; - --- Dec 15, 2007 12:34:46 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_Reference_Trl (AD_Language,AD_Reference_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Reference_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Reference t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Reference_ID=53222 AND EXISTS (SELECT * FROM AD_Reference_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Reference_ID!=t.AD_Reference_ID) -; - --- Dec 15, 2007 12:35:24 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,Description,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53228,53222,TO_TIMESTAMP('2007-12-15 12:35:20','YYYY-MM-DD HH24:MI:SS'),100,'Just allowed system configuration','D','Y','System',TO_TIMESTAMP('2007-12-15 12:35:20','YYYY-MM-DD HH24:MI:SS'),100,'S') -; - --- Dec 15, 2007 12:35:24 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53228 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- Dec 15, 2007 12:35:43 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,Description,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53229,53222,TO_TIMESTAMP('2007-12-15 12:35:42','YYYY-MM-DD HH24:MI:SS'),100,'Allowed system and client configuration','D','Y','Client',TO_TIMESTAMP('2007-12-15 12:35:42','YYYY-MM-DD HH24:MI:SS'),100,'C') -; - --- Dec 15, 2007 12:35:43 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53229 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- Dec 15, 2007 12:36:01 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,Description,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53230,53222,TO_TIMESTAMP('2007-12-15 12:36:00','YYYY-MM-DD HH24:MI:SS'),100,'Allowed system, client and organization configuration','D','Y','Organization',TO_TIMESTAMP('2007-12-15 12:36:00','YYYY-MM-DD HH24:MI:SS'),100,'O') -; - --- Dec 15, 2007 12:36:01 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53230 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- Dec 15, 2007 12:36:39 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,53271,53229,0,17,53222,50009,'ConfigurationLevel',TO_TIMESTAMP('2007-12-15 12:36:38','YYYY-MM-DD HH24:MI:SS'),100,'S','Configuration Level for this parameter','D',1,'Configuration Level for this parameter -S - just allowed system configuration -C - client configurable parameter -O - org configurable parameter','Y','N','N','N','N','N','N','N','N','N','Y','Configuration Level',0,TO_TIMESTAMP('2007-12-15 12:36:38','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Dec 15, 2007 12:36:39 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=53271 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Dec 15, 2007 12:36:53 PM COT --- FR 1800371 System Configurator Enhancements -ALTER TABLE AD_SysConfig ADD COLUMN ConfigurationLevel CHAR(1) DEFAULT 'S' -; - --- Dec 15, 2007 12:41:18 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,53271,53285,0,50009,TO_TIMESTAMP('2007-12-15 12:41:14','YYYY-MM-DD HH24:MI:SS'),100,'Configuration Level for this parameter',1,'D','Configuration Level for this parameter -S - just allowed system configuration -C - client configurable parameter -O - org configurable parameter','Y','Y','Y','N','N','N','N','N','Configuration Level',TO_TIMESTAMP('2007-12-15 12:41:14','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Dec 15, 2007 12:41:18 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=53285 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- Dec 15, 2007 12:41:25 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,53270,53286,0,50009,TO_TIMESTAMP('2007-12-15 12:41:18','YYYY-MM-DD HH24:MI:SS'),100,'Dictionary Entity Type; Determines ownership and synchronization',40,'D','The Entity Types "Dictionary", "Adempiere" and "Application" might be automatically synchronized and customizations deleted or overwritten. - -For customizations, copy the entity and select "User"!','Y','Y','Y','N','N','N','N','N','Entity Type',TO_TIMESTAMP('2007-12-15 12:41:18','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Dec 15, 2007 12:41:26 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=53286 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- Dec 15, 2007 12:41:39 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_Field SET SeqNo=30,IsDisplayed='Y' WHERE AD_Field_ID=50164 -; - --- Dec 15, 2007 12:41:39 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_Field SET SeqNo=40,IsDisplayed='Y' WHERE AD_Field_ID=50163 -; - --- Dec 15, 2007 12:41:39 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_Field SET SeqNo=50,IsDisplayed='Y' WHERE AD_Field_ID=50166 -; - --- Dec 15, 2007 12:41:39 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_Field SET SeqNo=60,IsDisplayed='Y' WHERE AD_Field_ID=53286 -; - --- Dec 15, 2007 12:41:39 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_Field SET SeqNo=70,IsDisplayed='Y' WHERE AD_Field_ID=53285 -; - --- Dec 15, 2007 12:41:39 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_Field SET SeqNo=80,IsDisplayed='Y' WHERE AD_Field_ID=50161 -; - --- Dec 15, 2007 12:42:07 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_Field SET DisplayLength=20,Updated=TO_TIMESTAMP('2007-12-15 12:42:07','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=53286 -; - --- Dec 15, 2007 12:42:18 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_Field SET DisplayLength=20, IsSameLine='Y',Updated=TO_TIMESTAMP('2007-12-15 12:42:18','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=53285 -; - --- Dec 15, 2007 12:49:08 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_SysConfig SET EntityType='D',Updated=TO_TIMESTAMP('2007-12-15 12:49:08','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_SysConfig_ID=50000 -; - --- Dec 15, 2007 12:49:17 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_SysConfig SET EntityType='D',Updated=TO_TIMESTAMP('2007-12-15 12:49:16','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_SysConfig_ID=50005 -; - --- Dec 15, 2007 12:49:26 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_SysConfig SET EntityType='D',Updated=TO_TIMESTAMP('2007-12-15 12:49:25','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_SysConfig_ID=50009 -; - --- Dec 15, 2007 12:49:33 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_SysConfig SET EntityType='D',Updated=TO_TIMESTAMP('2007-12-15 12:49:32','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_SysConfig_ID=50010 -; - --- Dec 15, 2007 12:49:42 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_SysConfig SET EntityType='D',Updated=TO_TIMESTAMP('2007-12-15 12:49:42','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_SysConfig_ID=50004 -; - --- Dec 15, 2007 12:49:49 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_SysConfig SET EntityType='D',Updated=TO_TIMESTAMP('2007-12-15 12:49:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_SysConfig_ID=50006 -; - --- Dec 15, 2007 12:49:59 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_SysConfig SET EntityType='D',Updated=TO_TIMESTAMP('2007-12-15 12:49:58','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_SysConfig_ID=50001 -; - --- Dec 15, 2007 12:50:06 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_SysConfig SET EntityType='D',Updated=TO_TIMESTAMP('2007-12-15 12:50:06','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_SysConfig_ID=50007 -; - --- Dec 15, 2007 12:50:14 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_SysConfig SET EntityType='D',Updated=TO_TIMESTAMP('2007-12-15 12:50:14','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_SysConfig_ID=50002 -; - --- Dec 15, 2007 12:50:29 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_SysConfig SET EntityType='D',Updated=TO_TIMESTAMP('2007-12-15 12:50:29','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_SysConfig_ID=50008 -; - --- Dec 15, 2007 12:50:51 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_SysConfig SET EntityType='D',Updated=TO_TIMESTAMP('2007-12-15 12:50:51','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_SysConfig_ID=50003 -; - --- Dec 15, 2007 12:51:28 PM COT --- FR 1800371 System Configurator Enhancements -UPDATE AD_Tab SET OrderByClause='Name',Updated=TO_TIMESTAMP('2007-12-15 12:51:28','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=50009 -; - --- Dec 15, 2007 1:24:58 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_Message (AD_Client_ID,AD_Message_ID,AD_Org_ID,Created,CreatedBy,EntityType,IsActive,MsgText,MsgType,Updated,UpdatedBy,Value) VALUES (0,53009,0,TO_TIMESTAMP('2007-12-15 13:24:57','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','This is a system or client parameter, you can''t save it as organization parameter','E',TO_TIMESTAMP('2007-12-15 13:24:57','YYYY-MM-DD HH24:MI:SS'),100,'Can''t Save Org Level') -; - --- Dec 15, 2007 1:24:59 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=53009 AND EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Message_ID!=t.AD_Message_ID) -; - --- Dec 15, 2007 1:25:17 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_Message (AD_Client_ID,AD_Message_ID,AD_Org_ID,Created,CreatedBy,EntityType,IsActive,MsgText,MsgType,Updated,UpdatedBy,Value) VALUES (0,53010,0,TO_TIMESTAMP('2007-12-15 13:25:16','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','This is a system parameter, you can''t save it as client parameter','E',TO_TIMESTAMP('2007-12-15 13:25:16','YYYY-MM-DD HH24:MI:SS'),100,'Can''t Save Client Level') -; - --- Dec 15, 2007 1:25:17 PM COT --- FR 1800371 System Configurator Enhancements -INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=53010 AND EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Message_ID!=t.AD_Message_ID) -; -SELECT '047_placeholder_branch350.sql' AS Filename; - -SELECT '048_FieldGroupType_in_AD_Field_V.sql' AS Filename; -drop view ad_field_v -; - -drop view ad_field_vt -; - -CREATE OR -REPLACE VIEW ad_field_v AS -SELECT t.ad_window_id, - f.ad_tab_id, - f.ad_field_id, - tbl.ad_table_id, - f.ad_column_id, - f.NAME, - f.description, - f.help, - f.isdisplayed, - f.displaylogic, - f.displaylength, - f.seqno, - f.sortno, - f.issameline, - f.isheading, - f.isfieldonly, - f.isreadonly, - f.isencrypted AS isencryptedfield, - f.obscuretype, - C.columnname, - C.columnsql, - C.fieldlength, - C.vformat, - C.defaultvalue, - C.iskey, - C.isparent, - COALESCE(f.ismandatory, C.ismandatory) AS ismandatory, - C.isidentifier, - C.istranslated, - C.ad_reference_value_id, - C.callout, - COALESCE(f.ad_reference_id, C.ad_reference_id) AS ad_reference_id, - C.ad_val_rule_id, - C.ad_process_id, - C.isalwaysupdateable, - C.readonlylogic, - C.isupdateable, - C.isencrypted AS isencryptedcolumn, - C.isselectioncolumn, - tbl.tablename, - C.valuemin, - C.valuemax, - fg.NAME AS fieldgroup, - vr.code AS validationcode, - f.Included_Tab_ID, - fg.FieldGroupType -FROM ((((((ad_field f - JOIN ad_tab t - ON ((f.ad_tab_id = t.ad_tab_id))) - LEFT JOIN ad_fieldgroup fg - ON ((f.ad_fieldgroup_id = fg.ad_fieldgroup_id))) - LEFT JOIN ad_column C - ON ((f.ad_column_id = C.ad_column_id))) - JOIN ad_table tbl - ON ((C.ad_table_id = tbl.ad_table_id))) - JOIN ad_reference r - ON ((C.ad_reference_id = r.ad_reference_id))) - LEFT JOIN ad_val_rule vr - ON ((C.ad_val_rule_id = vr.ad_val_rule_id))) -WHERE ((f.isactive = 'Y'::bpchar) AND - (C.isactive = 'Y'::bpchar)) -; - -CREATE OR -REPLACE VIEW ad_field_vt AS -SELECT trl.ad_language, - t.ad_window_id, - f.ad_tab_id, - f.ad_field_id, - tbl.ad_table_id, - f.ad_column_id, - trl.NAME, - trl.description, - trl.help, - f.isdisplayed, - f.displaylogic, - f.displaylength, - f.seqno, - f.sortno, - f.issameline, - f.isheading, - f.isfieldonly, - f.isreadonly, - f.isencrypted AS isencryptedfield, - f.obscuretype, - C.columnname, - C.columnsql, - C.fieldlength, - C.vformat, - C.defaultvalue, - C.iskey, - C.isparent, - COALESCE(f.ismandatory, C.ismandatory) AS ismandatory, - C.isidentifier, - C.istranslated, - C.ad_reference_value_id, - C.callout, - COALESCE(f.ad_reference_id, C.ad_reference_id) AS ad_reference_id, - C.ad_val_rule_id, - C.ad_process_id, - C.isalwaysupdateable, - C.readonlylogic, - C.isupdateable, - C.isencrypted AS isencryptedcolumn, - C.isselectioncolumn, - tbl.tablename, - C.valuemin, - C.valuemax, - fgt.NAME AS fieldgroup, - vr.code AS validationcode, - f.Included_Tab_ID, - fg.FieldGroupType -FROM (((((((ad_field f - JOIN ad_field_trl trl - ON ((f.ad_field_id = trl.ad_field_id))) - JOIN ad_tab t - ON ((f.ad_tab_id = t.ad_tab_id))) - LEFT JOIN AD_FIELDGROUP fg - ON (f.AD_FieldGroup_ID = fg.AD_FieldGroup_ID) - LEFT JOIN ad_fieldgroup_trl fgt - ON (((f.ad_fieldgroup_id = fgt.ad_fieldgroup_id) AND - ((trl.ad_language)::text = (fgt.ad_language)::text)))) - LEFT JOIN ad_column C - ON ((f.ad_column_id = C.ad_column_id))) - JOIN ad_table tbl - ON ((C.ad_table_id = tbl.ad_table_id))) - JOIN ad_reference r - ON ((C.ad_reference_id = r.ad_reference_id))) - LEFT JOIN ad_val_rule vr - ON ((C.ad_val_rule_id = vr.ad_val_rule_id))) -WHERE ((f.isactive = 'Y'::bpchar) AND - (C.isactive = 'Y'::bpchar)) -; -SELECT '049_FR1860642_C_DocType.sql' AS Filename; --- Dec 29, 2007 5:52:00 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_Element (AD_Org_ID,AD_Element_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,Name,PrintName,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53320,'IsOverwriteSeqOnComplete',TO_TIMESTAMP('2007-12-29 17:51:59','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Overwrite Sequence on Complete','Overwrite Sequence on Complete',TO_TIMESTAMP('2007-12-29 17:51:59','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- Dec 29, 2007 5:52:00 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53320 AND EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -UPDATE AD_Element_Trl SET istranslated='Y', name = 'Sobreescribir Secuencia al Completar', printname = 'Sobreescribir Secuencia al Completar' -WHERE AD_Element_ID=53320 and ad_language like 'es_%' -; - --- Dec 29, 2007 5:53:26 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_Element (AD_Org_ID,AD_Element_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,Name,PrintName,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53321,'DefiniteSequence_ID',TO_TIMESTAMP('2007-12-29 17:53:26','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Definite Sequence','Definite Sequence',TO_TIMESTAMP('2007-12-29 17:53:26','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- Dec 29, 2007 5:53:26 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53321 AND EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -UPDATE AD_Element_Trl SET istranslated='Y', name = 'Secuencia Definitiva', printname = 'Secuencia Definitiva' -WHERE AD_Element_ID=53321 and ad_language like 'es_%' -; - --- Dec 29, 2007 5:54:09 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_Element (AD_Org_ID,AD_Element_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,Name,PrintName,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53322,'IsOverwriteDateOnComplete',TO_TIMESTAMP('2007-12-29 17:54:09','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Overwrite Date on Complete','Overwrite Date on Complete',TO_TIMESTAMP('2007-12-29 17:54:09','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- Dec 29, 2007 5:54:09 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53322 AND EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -UPDATE AD_Element_Trl SET istranslated='Y', name = 'Sobreescribir Fecha al Completar', printname = 'Sobreescribir Fecha al Completar' -WHERE AD_Element_ID=53322 and ad_language like 'es_%' -; - --- Dec 29, 2007 5:55:55 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_Column (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version,AD_Client_ID,AD_Column_ID) VALUES (0,53320,20,217,'IsOverwriteSeqOnComplete',TO_TIMESTAMP('2007-12-29 17:55:55','YYYY-MM-DD HH24:MI:SS'),100,'N','D',1,'Y','N','N','N','N','N','N','N','N','N','Y','Overwrite Sequence on Complete',0,TO_TIMESTAMP('2007-12-29 17:55:55','YYYY-MM-DD HH24:MI:SS'),100,1.00,0,54087) -; - --- Dec 29, 2007 5:55:56 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54087 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Dec 29, 2007 5:56:02 PM COT --- 1860642 - Enhance document numbering -ALTER TABLE C_DocType ADD COLUMN IsOverwriteSeqOnComplete CHAR(1) DEFAULT 'N' CHECK (IsOverwriteSeqOnComplete IN ('Y','N')) -; - --- Dec 29, 2007 5:57:54 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_Column (AD_Org_ID,AD_Reference_Value_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version,AD_Client_ID,AD_Column_ID) VALUES (0,128,53321,18,217,'DefiniteSequence_ID',TO_TIMESTAMP('2007-12-29 17:57:54','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','N','N','N','N','N','N','Y','Definite Sequence',TO_TIMESTAMP('2007-12-29 17:57:54','YYYY-MM-DD HH24:MI:SS'),100,1,0,54088) -; - --- Dec 29, 2007 5:57:54 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54088 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Dec 29, 2007 5:58:04 PM COT --- 1860642 - Enhance document numbering -ALTER TABLE C_DocType ADD COLUMN DefiniteSequence_ID NUMERIC(10) -; - --- Dec 29, 2007 5:58:27 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_Column (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version,AD_Client_ID,AD_Column_ID) VALUES (0,53322,20,217,'IsOverwriteDateOnComplete',TO_TIMESTAMP('2007-12-29 17:58:26','YYYY-MM-DD HH24:MI:SS'),100,'N','D',1,'Y','N','N','N','N','N','N','N','N','N','Y','Overwrite Date on Complete',0,TO_TIMESTAMP('2007-12-29 17:58:26','YYYY-MM-DD HH24:MI:SS'),100,1.00,0,54089) -; - --- Dec 29, 2007 5:58:27 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54089 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Dec 29, 2007 5:58:37 PM COT --- 1860642 - Enhance document numbering -ALTER TABLE C_DocType ADD COLUMN IsOverwriteDateOnComplete CHAR(1) DEFAULT 'N' CHECK (IsOverwriteDateOnComplete IN ('Y','N')) -; - --- Dec 29, 2007 6:00:14 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_Field (AD_Column_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,AD_Client_ID,UpdatedBy,AD_Field_ID) VALUES (54088,0,167,TO_TIMESTAMP('2007-12-29 18:00:13','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','Y','N','N','N','N','N','Definite Sequence',TO_TIMESTAMP('2007-12-29 18:00:13','YYYY-MM-DD HH24:MI:SS'),0,100,54230) -; - --- Dec 29, 2007 6:00:14 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54230 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- Dec 29, 2007 6:00:15 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_Field (AD_Column_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,AD_Client_ID,UpdatedBy,AD_Field_ID) VALUES (54089,0,167,TO_TIMESTAMP('2007-12-29 18:00:15','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','N','Overwrite Date on Complete',TO_TIMESTAMP('2007-12-29 18:00:15','YYYY-MM-DD HH24:MI:SS'),0,100,54232) -; - --- Dec 29, 2007 6:00:15 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54232 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- Dec 29, 2007 6:00:16 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_Field (AD_Column_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,AD_Client_ID,UpdatedBy,AD_Field_ID) VALUES (54087,0,167,TO_TIMESTAMP('2007-12-29 18:00:15','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','N','Overwrite Sequence on Complete',TO_TIMESTAMP('2007-12-29 18:00:15','YYYY-MM-DD HH24:MI:SS'),0,100,54233) -; - --- Dec 29, 2007 6:00:16 PM COT --- 1860642 - Enhance document numbering -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54233 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- Dec 29, 2007 6:00:52 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_Field SET SeqNo=290,Updated=TO_TIMESTAMP('2007-12-29 18:00:52','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54233 -; - --- Dec 29, 2007 6:00:57 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_Field SET IsSameLine='Y', SeqNo=300,Updated=TO_TIMESTAMP('2007-12-29 18:00:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54230 -; - --- Dec 29, 2007 6:01:04 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_Field SET SeqNo=310,Updated=TO_TIMESTAMP('2007-12-29 18:01:04','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54232 -; - --- Dec 29, 2007 6:01:31 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_Field SET DisplayLogic='@IsOverwriteSeqOnComplete@=''Y''',Updated=TO_TIMESTAMP('2007-12-29 18:01:31','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54230 -; - --- Dec 29, 2007 8:21:16 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_Field SET SeqNo=190,IsDisplayed='Y' WHERE AD_Field_ID=54233 -; - --- Dec 29, 2007 8:21:16 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_Field SET SeqNo=200,IsDisplayed='Y' WHERE AD_Field_ID=54230 -; - --- Dec 29, 2007 8:21:16 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_Field SET SeqNo=210,IsDisplayed='Y' WHERE AD_Field_ID=54232 -; - --- Dec 29, 2007 8:21:16 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_Field SET SeqNo=220,IsDisplayed='Y' WHERE AD_Field_ID=10345 -; - --- Dec 29, 2007 8:21:16 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_Field SET SeqNo=230,IsDisplayed='Y' WHERE AD_Field_ID=10346 -; - --- Dec 29, 2007 8:21:16 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_Field SET SeqNo=240,IsDisplayed='Y' WHERE AD_Field_ID=10481 -; - --- Dec 29, 2007 8:21:16 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_Field SET SeqNo=250,IsDisplayed='Y' WHERE AD_Field_ID=10480 -; - --- Dec 29, 2007 8:21:16 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_Field SET SeqNo=260,IsDisplayed='Y' WHERE AD_Field_ID=10371 -; - --- Dec 29, 2007 8:21:16 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_Field SET SeqNo=270,IsDisplayed='Y' WHERE AD_Field_ID=10528 -; - --- Dec 29, 2007 8:21:16 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_Field SET SeqNo=280,IsDisplayed='Y' WHERE AD_Field_ID=10340 -; - --- Dec 29, 2007 8:21:16 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_Field SET SeqNo=290,IsDisplayed='Y' WHERE AD_Field_ID=6567 -; - --- Dec 29, 2007 8:21:16 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_Field SET SeqNo=300,IsDisplayed='Y' WHERE AD_Field_ID=3125 -; - --- Dec 29, 2007 8:21:57 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_Field SET DisplayLogic='@IsDocNoControlled@=''Y''',Updated=TO_TIMESTAMP('2007-12-29 20:21:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54233 -; - --- Dec 29, 2007 8:22:06 PM COT --- 1860642 - Enhance document numbering -UPDATE AD_Field SET DisplayLogic='@IsDocNoControlled@=''Y'' & @IsOverwriteSeqOnComplete@=''Y''',Updated=TO_TIMESTAMP('2007-12-29 20:22:06','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54230 -; - - -SELECT '050_Create_2008_Calendar_For_GardenWorld.sql' AS Filename; --- Dec 31, 2007 4:26:33 PM COT --- Create 2008 calendar for GardenWorld -INSERT INTO C_Year (AD_Client_ID,AD_Org_ID,C_Calendar_ID,C_Year_ID,Created,CreatedBy,FiscalYear,IsActive,Processing,Updated,UpdatedBy) VALUES (11,0,102,50001,TO_TIMESTAMP('2007-12-31 16:26:29','YYYY-MM-DD HH24:MI:SS'),100,'2008','Y','N',TO_TIMESTAMP('2007-12-31 16:26:29','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_Period (AD_Client_ID,AD_Org_ID,C_Period_ID,C_Year_ID,Created,CreatedBy,EndDate,IsActive,Name,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50012,50001,TO_TIMESTAMP('2007-12-31 16:26:38','YYYY-MM-DD HH24:MI:SS'),100,TO_TIMESTAMP('2008-01-31','YYYY-MM-DD'),'Y','Jan-08',1,'S','N',TO_TIMESTAMP('2008-01-01','YYYY-MM-DD'),TO_TIMESTAMP('2007-12-31 16:26:38','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50276,50012,TO_TIMESTAMP('2007-12-31 16:26:39','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:26:39','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50277,50012,TO_TIMESTAMP('2007-12-31 16:26:40','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:26:40','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50278,50012,TO_TIMESTAMP('2007-12-31 16:26:41','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:26:41','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50279,50012,TO_TIMESTAMP('2007-12-31 16:26:42','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:26:42','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50280,50012,TO_TIMESTAMP('2007-12-31 16:26:43','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:26:43','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50281,50012,TO_TIMESTAMP('2007-12-31 16:26:44','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:26:44','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50282,50012,TO_TIMESTAMP('2007-12-31 16:26:45','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:26:45','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50283,50012,TO_TIMESTAMP('2007-12-31 16:26:46','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:26:46','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50284,50012,TO_TIMESTAMP('2007-12-31 16:26:46','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:26:46','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50285,50012,TO_TIMESTAMP('2007-12-31 16:26:47','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:26:47','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50286,50012,TO_TIMESTAMP('2007-12-31 16:26:48','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:26:48','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50287,50012,TO_TIMESTAMP('2007-12-31 16:26:49','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:26:49','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50288,50012,TO_TIMESTAMP('2007-12-31 16:26:50','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:26:50','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50289,50012,TO_TIMESTAMP('2007-12-31 16:26:51','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:26:51','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50290,50012,TO_TIMESTAMP('2007-12-31 16:26:52','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:26:52','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50291,50012,TO_TIMESTAMP('2007-12-31 16:26:54','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:26:54','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50292,50012,TO_TIMESTAMP('2007-12-31 16:26:55','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:26:55','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50293,50012,TO_TIMESTAMP('2007-12-31 16:26:57','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:26:57','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50294,50012,TO_TIMESTAMP('2007-12-31 16:26:59','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:26:59','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50295,50012,TO_TIMESTAMP('2007-12-31 16:27:01','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:01','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50296,50012,TO_TIMESTAMP('2007-12-31 16:27:02','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:02','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50297,50012,TO_TIMESTAMP('2007-12-31 16:27:04','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:04','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50298,50012,TO_TIMESTAMP('2007-12-31 16:27:06','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:06','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_Period (AD_Client_ID,AD_Org_ID,C_Period_ID,C_Year_ID,Created,CreatedBy,EndDate,IsActive,Name,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50013,50001,TO_TIMESTAMP('2007-12-31 16:27:08','YYYY-MM-DD HH24:MI:SS'),100,TO_TIMESTAMP('2008-02-29','YYYY-MM-DD'),'Y','Feb-08',2,'S','N',TO_TIMESTAMP('2008-02-01','YYYY-MM-DD'),TO_TIMESTAMP('2007-12-31 16:27:08','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50299,50013,TO_TIMESTAMP('2007-12-31 16:27:10','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:10','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50300,50013,TO_TIMESTAMP('2007-12-31 16:27:11','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:11','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50301,50013,TO_TIMESTAMP('2007-12-31 16:27:13','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:13','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50302,50013,TO_TIMESTAMP('2007-12-31 16:27:19','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:19','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50303,50013,TO_TIMESTAMP('2007-12-31 16:27:21','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:21','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50304,50013,TO_TIMESTAMP('2007-12-31 16:27:24','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:24','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50305,50013,TO_TIMESTAMP('2007-12-31 16:27:26','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:26','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50306,50013,TO_TIMESTAMP('2007-12-31 16:27:28','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:28','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50307,50013,TO_TIMESTAMP('2007-12-31 16:27:31','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:31','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50308,50013,TO_TIMESTAMP('2007-12-31 16:27:33','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:33','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50309,50013,TO_TIMESTAMP('2007-12-31 16:27:35','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:35','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50310,50013,TO_TIMESTAMP('2007-12-31 16:27:37','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:37','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50311,50013,TO_TIMESTAMP('2007-12-31 16:27:40','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:40','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50312,50013,TO_TIMESTAMP('2007-12-31 16:27:42','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:42','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50313,50013,TO_TIMESTAMP('2007-12-31 16:27:43','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:43','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50314,50013,TO_TIMESTAMP('2007-12-31 16:27:44','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:44','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50315,50013,TO_TIMESTAMP('2007-12-31 16:27:45','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:45','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50316,50013,TO_TIMESTAMP('2007-12-31 16:27:46','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:46','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50317,50013,TO_TIMESTAMP('2007-12-31 16:27:48','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:48','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50318,50013,TO_TIMESTAMP('2007-12-31 16:27:48','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:48','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50319,50013,TO_TIMESTAMP('2007-12-31 16:27:49','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:49','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50320,50013,TO_TIMESTAMP('2007-12-31 16:27:50','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:50','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50321,50013,TO_TIMESTAMP('2007-12-31 16:27:51','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:51','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_Period (AD_Client_ID,AD_Org_ID,C_Period_ID,C_Year_ID,Created,CreatedBy,EndDate,IsActive,Name,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50014,50001,TO_TIMESTAMP('2007-12-31 16:27:52','YYYY-MM-DD HH24:MI:SS'),100,TO_TIMESTAMP('2008-03-31','YYYY-MM-DD'),'Y','Mar-08',3,'S','N',TO_TIMESTAMP('2008-03-01','YYYY-MM-DD'),TO_TIMESTAMP('2007-12-31 16:27:52','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50322,50014,TO_TIMESTAMP('2007-12-31 16:27:53','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:53','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50323,50014,TO_TIMESTAMP('2007-12-31 16:27:59','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:27:59','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50324,50014,TO_TIMESTAMP('2007-12-31 16:28:00','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:00','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50325,50014,TO_TIMESTAMP('2007-12-31 16:28:01','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:01','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50326,50014,TO_TIMESTAMP('2007-12-31 16:28:01','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:01','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50327,50014,TO_TIMESTAMP('2007-12-31 16:28:02','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:02','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50328,50014,TO_TIMESTAMP('2007-12-31 16:28:02','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:02','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50329,50014,TO_TIMESTAMP('2007-12-31 16:28:03','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:03','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50330,50014,TO_TIMESTAMP('2007-12-31 16:28:03','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:03','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50331,50014,TO_TIMESTAMP('2007-12-31 16:28:04','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:04','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50332,50014,TO_TIMESTAMP('2007-12-31 16:28:04','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:04','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50333,50014,TO_TIMESTAMP('2007-12-31 16:28:04','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:04','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50334,50014,TO_TIMESTAMP('2007-12-31 16:28:05','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:05','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50335,50014,TO_TIMESTAMP('2007-12-31 16:28:05','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:05','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50336,50014,TO_TIMESTAMP('2007-12-31 16:28:06','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:06','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50337,50014,TO_TIMESTAMP('2007-12-31 16:28:06','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:06','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50338,50014,TO_TIMESTAMP('2007-12-31 16:28:07','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:07','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50339,50014,TO_TIMESTAMP('2007-12-31 16:28:07','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:07','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50340,50014,TO_TIMESTAMP('2007-12-31 16:28:08','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:08','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50341,50014,TO_TIMESTAMP('2007-12-31 16:28:08','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:08','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50342,50014,TO_TIMESTAMP('2007-12-31 16:28:09','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:09','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50343,50014,TO_TIMESTAMP('2007-12-31 16:28:09','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:09','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50344,50014,TO_TIMESTAMP('2007-12-31 16:28:09','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:09','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_Period (AD_Client_ID,AD_Org_ID,C_Period_ID,C_Year_ID,Created,CreatedBy,EndDate,IsActive,Name,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50015,50001,TO_TIMESTAMP('2007-12-31 16:28:10','YYYY-MM-DD HH24:MI:SS'),100,TO_TIMESTAMP('2008-04-30','YYYY-MM-DD'),'Y','Apr-08',4,'S','N',TO_TIMESTAMP('2008-04-01','YYYY-MM-DD'),TO_TIMESTAMP('2007-12-31 16:28:10','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50345,50015,TO_TIMESTAMP('2007-12-31 16:28:10','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:10','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50346,50015,TO_TIMESTAMP('2007-12-31 16:28:11','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:11','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50347,50015,TO_TIMESTAMP('2007-12-31 16:28:11','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:11','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50348,50015,TO_TIMESTAMP('2007-12-31 16:28:12','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:12','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50349,50015,TO_TIMESTAMP('2007-12-31 16:28:12','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:12','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50350,50015,TO_TIMESTAMP('2007-12-31 16:28:13','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:13','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50351,50015,TO_TIMESTAMP('2007-12-31 16:28:14','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:14','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50352,50015,TO_TIMESTAMP('2007-12-31 16:28:14','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:14','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50353,50015,TO_TIMESTAMP('2007-12-31 16:28:15','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:15','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50354,50015,TO_TIMESTAMP('2007-12-31 16:28:15','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:15','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50355,50015,TO_TIMESTAMP('2007-12-31 16:28:16','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:16','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50356,50015,TO_TIMESTAMP('2007-12-31 16:28:16','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:16','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50357,50015,TO_TIMESTAMP('2007-12-31 16:28:17','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:17','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50358,50015,TO_TIMESTAMP('2007-12-31 16:28:17','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:17','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50359,50015,TO_TIMESTAMP('2007-12-31 16:28:18','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:18','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50360,50015,TO_TIMESTAMP('2007-12-31 16:28:18','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:18','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50361,50015,TO_TIMESTAMP('2007-12-31 16:28:18','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:18','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50362,50015,TO_TIMESTAMP('2007-12-31 16:28:19','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:19','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50363,50015,TO_TIMESTAMP('2007-12-31 16:28:19','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:19','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50364,50015,TO_TIMESTAMP('2007-12-31 16:28:20','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:20','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50365,50015,TO_TIMESTAMP('2007-12-31 16:28:20','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:20','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50366,50015,TO_TIMESTAMP('2007-12-31 16:28:21','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:21','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50367,50015,TO_TIMESTAMP('2007-12-31 16:28:21','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:21','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_Period (AD_Client_ID,AD_Org_ID,C_Period_ID,C_Year_ID,Created,CreatedBy,EndDate,IsActive,Name,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50016,50001,TO_TIMESTAMP('2007-12-31 16:28:22','YYYY-MM-DD HH24:MI:SS'),100,TO_TIMESTAMP('2008-05-31','YYYY-MM-DD'),'Y','May-08',5,'S','N',TO_TIMESTAMP('2008-05-01','YYYY-MM-DD'),TO_TIMESTAMP('2007-12-31 16:28:22','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50368,50016,TO_TIMESTAMP('2007-12-31 16:28:22','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:22','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50369,50016,TO_TIMESTAMP('2007-12-31 16:28:23','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:23','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50370,50016,TO_TIMESTAMP('2007-12-31 16:28:23','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:23','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50371,50016,TO_TIMESTAMP('2007-12-31 16:28:24','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:24','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50372,50016,TO_TIMESTAMP('2007-12-31 16:28:24','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:24','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50373,50016,TO_TIMESTAMP('2007-12-31 16:28:25','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:25','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50374,50016,TO_TIMESTAMP('2007-12-31 16:28:25','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:25','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50375,50016,TO_TIMESTAMP('2007-12-31 16:28:25','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:25','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50376,50016,TO_TIMESTAMP('2007-12-31 16:28:26','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:26','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50377,50016,TO_TIMESTAMP('2007-12-31 16:28:26','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:26','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50378,50016,TO_TIMESTAMP('2007-12-31 16:28:27','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:27','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50379,50016,TO_TIMESTAMP('2007-12-31 16:28:27','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:27','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50380,50016,TO_TIMESTAMP('2007-12-31 16:28:28','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:28','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50381,50016,TO_TIMESTAMP('2007-12-31 16:28:28','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:28','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50382,50016,TO_TIMESTAMP('2007-12-31 16:28:29','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:29','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50383,50016,TO_TIMESTAMP('2007-12-31 16:28:29','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:29','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50384,50016,TO_TIMESTAMP('2007-12-31 16:28:29','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:29','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50385,50016,TO_TIMESTAMP('2007-12-31 16:28:30','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:30','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50386,50016,TO_TIMESTAMP('2007-12-31 16:28:30','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:30','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50387,50016,TO_TIMESTAMP('2007-12-31 16:28:31','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:31','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50388,50016,TO_TIMESTAMP('2007-12-31 16:28:31','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:31','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50389,50016,TO_TIMESTAMP('2007-12-31 16:28:32','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:32','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50390,50016,TO_TIMESTAMP('2007-12-31 16:28:33','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:33','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_Period (AD_Client_ID,AD_Org_ID,C_Period_ID,C_Year_ID,Created,CreatedBy,EndDate,IsActive,Name,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50017,50001,TO_TIMESTAMP('2007-12-31 16:28:33','YYYY-MM-DD HH24:MI:SS'),100,TO_TIMESTAMP('2008-06-30','YYYY-MM-DD'),'Y','Jun-08',6,'S','N',TO_TIMESTAMP('2008-06-01','YYYY-MM-DD'),TO_TIMESTAMP('2007-12-31 16:28:33','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50391,50017,TO_TIMESTAMP('2007-12-31 16:28:33','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:33','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50392,50017,TO_TIMESTAMP('2007-12-31 16:28:34','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:34','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50393,50017,TO_TIMESTAMP('2007-12-31 16:28:35','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:35','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50394,50017,TO_TIMESTAMP('2007-12-31 16:28:35','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:35','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50395,50017,TO_TIMESTAMP('2007-12-31 16:28:36','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:36','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50396,50017,TO_TIMESTAMP('2007-12-31 16:28:36','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:36','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50397,50017,TO_TIMESTAMP('2007-12-31 16:28:37','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:37','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50398,50017,TO_TIMESTAMP('2007-12-31 16:28:37','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:37','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50399,50017,TO_TIMESTAMP('2007-12-31 16:28:38','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:38','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50400,50017,TO_TIMESTAMP('2007-12-31 16:28:38','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:38','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50401,50017,TO_TIMESTAMP('2007-12-31 16:28:39','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:39','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50402,50017,TO_TIMESTAMP('2007-12-31 16:28:39','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:39','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50403,50017,TO_TIMESTAMP('2007-12-31 16:28:40','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:40','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50404,50017,TO_TIMESTAMP('2007-12-31 16:28:41','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:41','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50405,50017,TO_TIMESTAMP('2007-12-31 16:28:41','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:41','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50406,50017,TO_TIMESTAMP('2007-12-31 16:28:42','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:42','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50407,50017,TO_TIMESTAMP('2007-12-31 16:28:42','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:42','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50408,50017,TO_TIMESTAMP('2007-12-31 16:28:42','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:42','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50409,50017,TO_TIMESTAMP('2007-12-31 16:28:43','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:43','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50410,50017,TO_TIMESTAMP('2007-12-31 16:28:43','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:43','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50411,50017,TO_TIMESTAMP('2007-12-31 16:28:44','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:44','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50412,50017,TO_TIMESTAMP('2007-12-31 16:28:44','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:44','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50413,50017,TO_TIMESTAMP('2007-12-31 16:28:45','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:45','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_Period (AD_Client_ID,AD_Org_ID,C_Period_ID,C_Year_ID,Created,CreatedBy,EndDate,IsActive,Name,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50018,50001,TO_TIMESTAMP('2007-12-31 16:28:46','YYYY-MM-DD HH24:MI:SS'),100,TO_TIMESTAMP('2008-07-31','YYYY-MM-DD'),'Y','Jul-08',7,'S','N',TO_TIMESTAMP('2008-07-01','YYYY-MM-DD'),TO_TIMESTAMP('2007-12-31 16:28:46','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50414,50018,TO_TIMESTAMP('2007-12-31 16:28:46','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:46','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50415,50018,TO_TIMESTAMP('2007-12-31 16:28:47','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:47','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50416,50018,TO_TIMESTAMP('2007-12-31 16:28:47','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:47','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50417,50018,TO_TIMESTAMP('2007-12-31 16:28:47','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:47','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50418,50018,TO_TIMESTAMP('2007-12-31 16:28:48','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:48','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50419,50018,TO_TIMESTAMP('2007-12-31 16:28:48','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:48','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50420,50018,TO_TIMESTAMP('2007-12-31 16:28:49','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:49','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50421,50018,TO_TIMESTAMP('2007-12-31 16:28:49','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:49','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50422,50018,TO_TIMESTAMP('2007-12-31 16:28:50','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:50','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50423,50018,TO_TIMESTAMP('2007-12-31 16:28:51','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:51','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50424,50018,TO_TIMESTAMP('2007-12-31 16:28:52','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:52','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50425,50018,TO_TIMESTAMP('2007-12-31 16:28:52','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:52','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50426,50018,TO_TIMESTAMP('2007-12-31 16:28:53','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:53','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50427,50018,TO_TIMESTAMP('2007-12-31 16:28:53','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:53','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50428,50018,TO_TIMESTAMP('2007-12-31 16:28:54','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:54','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50429,50018,TO_TIMESTAMP('2007-12-31 16:28:54','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:54','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50430,50018,TO_TIMESTAMP('2007-12-31 16:28:55','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:55','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50431,50018,TO_TIMESTAMP('2007-12-31 16:28:55','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:55','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50432,50018,TO_TIMESTAMP('2007-12-31 16:28:55','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:55','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50433,50018,TO_TIMESTAMP('2007-12-31 16:28:56','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:56','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50434,50018,TO_TIMESTAMP('2007-12-31 16:28:56','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:56','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50435,50018,TO_TIMESTAMP('2007-12-31 16:28:57','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:57','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50436,50018,TO_TIMESTAMP('2007-12-31 16:28:57','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:57','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_Period (AD_Client_ID,AD_Org_ID,C_Period_ID,C_Year_ID,Created,CreatedBy,EndDate,IsActive,Name,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50019,50001,TO_TIMESTAMP('2007-12-31 16:28:58','YYYY-MM-DD HH24:MI:SS'),100,TO_TIMESTAMP('2008-08-31','YYYY-MM-DD'),'Y','Aug-08',8,'S','N',TO_TIMESTAMP('2008-08-01','YYYY-MM-DD'),TO_TIMESTAMP('2007-12-31 16:28:58','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50437,50019,TO_TIMESTAMP('2007-12-31 16:28:58','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:58','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50438,50019,TO_TIMESTAMP('2007-12-31 16:28:58','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:58','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50439,50019,TO_TIMESTAMP('2007-12-31 16:28:59','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:59','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50440,50019,TO_TIMESTAMP('2007-12-31 16:28:59','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:28:59','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50441,50019,TO_TIMESTAMP('2007-12-31 16:29:00','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:00','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50442,50019,TO_TIMESTAMP('2007-12-31 16:29:00','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:00','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50443,50019,TO_TIMESTAMP('2007-12-31 16:29:01','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:01','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50444,50019,TO_TIMESTAMP('2007-12-31 16:29:01','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:01','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50445,50019,TO_TIMESTAMP('2007-12-31 16:29:02','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:02','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50446,50019,TO_TIMESTAMP('2007-12-31 16:29:02','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:02','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50447,50019,TO_TIMESTAMP('2007-12-31 16:29:03','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:03','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50448,50019,TO_TIMESTAMP('2007-12-31 16:29:03','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:03','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50449,50019,TO_TIMESTAMP('2007-12-31 16:29:03','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:03','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50450,50019,TO_TIMESTAMP('2007-12-31 16:29:04','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:04','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50451,50019,TO_TIMESTAMP('2007-12-31 16:29:04','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:04','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50452,50019,TO_TIMESTAMP('2007-12-31 16:29:05','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:05','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50453,50019,TO_TIMESTAMP('2007-12-31 16:29:05','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:05','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50454,50019,TO_TIMESTAMP('2007-12-31 16:29:06','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:06','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50455,50019,TO_TIMESTAMP('2007-12-31 16:29:09','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:09','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50456,50019,TO_TIMESTAMP('2007-12-31 16:29:10','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:10','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50457,50019,TO_TIMESTAMP('2007-12-31 16:29:11','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:11','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50458,50019,TO_TIMESTAMP('2007-12-31 16:29:11','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:11','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50459,50019,TO_TIMESTAMP('2007-12-31 16:29:12','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:12','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_Period (AD_Client_ID,AD_Org_ID,C_Period_ID,C_Year_ID,Created,CreatedBy,EndDate,IsActive,Name,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50020,50001,TO_TIMESTAMP('2007-12-31 16:29:12','YYYY-MM-DD HH24:MI:SS'),100,TO_TIMESTAMP('2008-09-30','YYYY-MM-DD'),'Y','Sep-08',9,'S','N',TO_TIMESTAMP('2008-09-01','YYYY-MM-DD'),TO_TIMESTAMP('2007-12-31 16:29:12','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50460,50020,TO_TIMESTAMP('2007-12-31 16:29:13','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:13','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50461,50020,TO_TIMESTAMP('2007-12-31 16:29:14','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:14','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50462,50020,TO_TIMESTAMP('2007-12-31 16:29:15','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:15','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50463,50020,TO_TIMESTAMP('2007-12-31 16:29:15','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:15','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50464,50020,TO_TIMESTAMP('2007-12-31 16:29:16','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:16','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50465,50020,TO_TIMESTAMP('2007-12-31 16:29:16','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:16','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50466,50020,TO_TIMESTAMP('2007-12-31 16:29:16','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:16','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50467,50020,TO_TIMESTAMP('2007-12-31 16:29:17','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:17','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50468,50020,TO_TIMESTAMP('2007-12-31 16:29:17','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:17','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50469,50020,TO_TIMESTAMP('2007-12-31 16:29:18','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:18','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50470,50020,TO_TIMESTAMP('2007-12-31 16:29:18','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:18','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50471,50020,TO_TIMESTAMP('2007-12-31 16:29:19','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:19','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50472,50020,TO_TIMESTAMP('2007-12-31 16:29:20','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:20','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50473,50020,TO_TIMESTAMP('2007-12-31 16:29:20','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:20','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50474,50020,TO_TIMESTAMP('2007-12-31 16:29:21','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:21','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50475,50020,TO_TIMESTAMP('2007-12-31 16:29:21','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:21','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50476,50020,TO_TIMESTAMP('2007-12-31 16:29:22','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:22','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50477,50020,TO_TIMESTAMP('2007-12-31 16:29:22','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:22','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50478,50020,TO_TIMESTAMP('2007-12-31 16:29:22','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:22','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50479,50020,TO_TIMESTAMP('2007-12-31 16:29:23','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:23','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50480,50020,TO_TIMESTAMP('2007-12-31 16:29:23','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:23','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50481,50020,TO_TIMESTAMP('2007-12-31 16:29:24','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:24','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50482,50020,TO_TIMESTAMP('2007-12-31 16:29:24','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:24','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_Period (AD_Client_ID,AD_Org_ID,C_Period_ID,C_Year_ID,Created,CreatedBy,EndDate,IsActive,Name,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50021,50001,TO_TIMESTAMP('2007-12-31 16:29:25','YYYY-MM-DD HH24:MI:SS'),100,TO_TIMESTAMP('2008-10-31','YYYY-MM-DD'),'Y','Oct-08',10,'S','N',TO_TIMESTAMP('2008-10-01','YYYY-MM-DD'),TO_TIMESTAMP('2007-12-31 16:29:25','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50483,50021,TO_TIMESTAMP('2007-12-31 16:29:25','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:25','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50484,50021,TO_TIMESTAMP('2007-12-31 16:29:26','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:26','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50485,50021,TO_TIMESTAMP('2007-12-31 16:29:26','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:26','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50486,50021,TO_TIMESTAMP('2007-12-31 16:29:26','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:26','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50487,50021,TO_TIMESTAMP('2007-12-31 16:29:27','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:27','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50488,50021,TO_TIMESTAMP('2007-12-31 16:29:27','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:27','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50489,50021,TO_TIMESTAMP('2007-12-31 16:29:28','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:28','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50490,50021,TO_TIMESTAMP('2007-12-31 16:29:28','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:28','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50491,50021,TO_TIMESTAMP('2007-12-31 16:29:29','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:29','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50492,50021,TO_TIMESTAMP('2007-12-31 16:29:30','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:30','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50493,50021,TO_TIMESTAMP('2007-12-31 16:29:30','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:30','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50494,50021,TO_TIMESTAMP('2007-12-31 16:29:31','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:31','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50495,50021,TO_TIMESTAMP('2007-12-31 16:29:31','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:31','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50496,50021,TO_TIMESTAMP('2007-12-31 16:29:32','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:32','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50497,50021,TO_TIMESTAMP('2007-12-31 16:29:32','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:32','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50498,50021,TO_TIMESTAMP('2007-12-31 16:29:33','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:33','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50499,50021,TO_TIMESTAMP('2007-12-31 16:29:33','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:33','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50500,50021,TO_TIMESTAMP('2007-12-31 16:29:34','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:34','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50501,50021,TO_TIMESTAMP('2007-12-31 16:29:34','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:34','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50502,50021,TO_TIMESTAMP('2007-12-31 16:29:35','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:35','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50503,50021,TO_TIMESTAMP('2007-12-31 16:29:35','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:35','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50504,50021,TO_TIMESTAMP('2007-12-31 16:29:36','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:36','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50505,50021,TO_TIMESTAMP('2007-12-31 16:29:36','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:36','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_Period (AD_Client_ID,AD_Org_ID,C_Period_ID,C_Year_ID,Created,CreatedBy,EndDate,IsActive,Name,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50022,50001,TO_TIMESTAMP('2007-12-31 16:29:37','YYYY-MM-DD HH24:MI:SS'),100,TO_TIMESTAMP('2008-11-30','YYYY-MM-DD'),'Y','Nov-08',11,'S','N',TO_TIMESTAMP('2008-11-01','YYYY-MM-DD'),TO_TIMESTAMP('2007-12-31 16:29:37','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50506,50022,TO_TIMESTAMP('2007-12-31 16:29:37','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:37','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50507,50022,TO_TIMESTAMP('2007-12-31 16:29:38','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:38','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50508,50022,TO_TIMESTAMP('2007-12-31 16:29:38','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:38','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50509,50022,TO_TIMESTAMP('2007-12-31 16:29:39','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:39','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50510,50022,TO_TIMESTAMP('2007-12-31 16:29:39','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:39','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50511,50022,TO_TIMESTAMP('2007-12-31 16:29:39','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:39','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50512,50022,TO_TIMESTAMP('2007-12-31 16:29:40','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:40','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50513,50022,TO_TIMESTAMP('2007-12-31 16:29:40','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:40','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50514,50022,TO_TIMESTAMP('2007-12-31 16:29:41','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:41','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50515,50022,TO_TIMESTAMP('2007-12-31 16:29:41','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:41','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50516,50022,TO_TIMESTAMP('2007-12-31 16:29:42','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:42','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50517,50022,TO_TIMESTAMP('2007-12-31 16:29:42','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:42','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50518,50022,TO_TIMESTAMP('2007-12-31 16:29:43','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:43','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50519,50022,TO_TIMESTAMP('2007-12-31 16:29:43','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:43','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50520,50022,TO_TIMESTAMP('2007-12-31 16:29:44','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:44','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50521,50022,TO_TIMESTAMP('2007-12-31 16:29:44','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:44','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50522,50022,TO_TIMESTAMP('2007-12-31 16:29:44','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:44','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50523,50022,TO_TIMESTAMP('2007-12-31 16:29:45','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:45','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50524,50022,TO_TIMESTAMP('2007-12-31 16:29:46','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:46','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50525,50022,TO_TIMESTAMP('2007-12-31 16:29:47','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:47','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50526,50022,TO_TIMESTAMP('2007-12-31 16:29:48','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:48','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50527,50022,TO_TIMESTAMP('2007-12-31 16:29:49','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:49','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50528,50022,TO_TIMESTAMP('2007-12-31 16:29:50','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:50','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_Period (AD_Client_ID,AD_Org_ID,C_Period_ID,C_Year_ID,Created,CreatedBy,EndDate,IsActive,Name,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50023,50001,TO_TIMESTAMP('2007-12-31 16:29:50','YYYY-MM-DD HH24:MI:SS'),100,TO_TIMESTAMP('2008-12-31','YYYY-MM-DD'),'Y','Dec-08',12,'S','N',TO_TIMESTAMP('2008-12-01','YYYY-MM-DD'),TO_TIMESTAMP('2007-12-31 16:29:50','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50529,50023,TO_TIMESTAMP('2007-12-31 16:29:51','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:51','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50530,50023,TO_TIMESTAMP('2007-12-31 16:29:53','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:53','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50531,50023,TO_TIMESTAMP('2007-12-31 16:29:53','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:53','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50532,50023,TO_TIMESTAMP('2007-12-31 16:29:54','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:54','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50533,50023,TO_TIMESTAMP('2007-12-31 16:29:55','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:55','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50534,50023,TO_TIMESTAMP('2007-12-31 16:29:55','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:55','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50535,50023,TO_TIMESTAMP('2007-12-31 16:29:59','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:29:59','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50536,50023,TO_TIMESTAMP('2007-12-31 16:30:02','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:30:02','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50537,50023,TO_TIMESTAMP('2007-12-31 16:30:03','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:30:03','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50538,50023,TO_TIMESTAMP('2007-12-31 16:30:03','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:30:03','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50539,50023,TO_TIMESTAMP('2007-12-31 16:30:04','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:30:04','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50540,50023,TO_TIMESTAMP('2007-12-31 16:30:04','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:30:04','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50541,50023,TO_TIMESTAMP('2007-12-31 16:30:05','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:30:05','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50542,50023,TO_TIMESTAMP('2007-12-31 16:30:06','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:30:06','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50543,50023,TO_TIMESTAMP('2007-12-31 16:30:06','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:30:06','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50544,50023,TO_TIMESTAMP('2007-12-31 16:30:08','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:30:08','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50545,50023,TO_TIMESTAMP('2007-12-31 16:30:09','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:30:09','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50546,50023,TO_TIMESTAMP('2007-12-31 16:30:09','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:30:09','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50547,50023,TO_TIMESTAMP('2007-12-31 16:30:10','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:30:10','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50548,50023,TO_TIMESTAMP('2007-12-31 16:30:11','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:30:11','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50549,50023,TO_TIMESTAMP('2007-12-31 16:30:11','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:30:11','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50550,50023,TO_TIMESTAMP('2007-12-31 16:30:12','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:30:12','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50551,50023,TO_TIMESTAMP('2007-12-31 16:30:12','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_TIMESTAMP('2007-12-31 16:30:12','YYYY-MM-DD HH24:MI:SS'),100) -; - -SELECT '051_placeholder_branch350.sql' AS Filename; - -SELECT '052_placeholder_branch350.sql' AS Filename; - -SELECT '053_placeholder_branch350.sql' AS Filename; - -SELECT '054_placeholder_branch350.sql' AS Filename; - -SELECT '055_Bug1863640.sql' AS Filename; --- Jan 3, 2008 6:21:51 PM COT --- 1863640 - Window View Allocation is showing Post button -UPDATE AD_Field SET DisplayLogic='@Processed@=Y & @#ShowAcct@=Y',Updated=TO_TIMESTAMP('2008-01-03 18:21:50','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=10430 -; - - -SELECT '056_FR1782412_beautifywindow.sql' AS Filename; --- Jan 3, 2008 6:15:05 PM COT --- Beautify window [ 1782412 ] Add Document Action Access Functionality -UPDATE AD_Field SET SeqNo=30,IsDisplayed='Y' WHERE AD_Field_ID=53247 -; - -UPDATE AD_Field SET SeqNo=40,IsDisplayed='Y' WHERE AD_Field_ID=53244 -; - -UPDATE AD_Field SET SeqNo=50,IsDisplayed='Y' WHERE AD_Field_ID=53246 -; - -UPDATE AD_Field SET SeqNo=60,IsDisplayed='Y' WHERE AD_Field_ID=53241 -; - -UPDATE AD_Field SET DisplayLength=20,Updated=TO_TIMESTAMP('2008-01-03 18:15:35','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=53242 -; - -UPDATE AD_Field SET DisplayLength=20, IsSameLine='Y',Updated=TO_TIMESTAMP('2008-01-03 18:15:41','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=53245 -; - -UPDATE AD_Field SET DisplayLength=20,Updated=TO_TIMESTAMP('2008-01-03 18:16:13','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=53247 -; - -UPDATE AD_Field SET DisplayLength=20,Updated=TO_TIMESTAMP('2008-01-03 18:16:33','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=53244 -; - -UPDATE AD_Field SET DisplayLength=20,Updated=TO_TIMESTAMP('2008-01-03 18:16:38','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=53246 -; - - -SELECT '057_BF1866222.sql' AS Filename; --- [ 1866222 ] Wrong default dictionary entry for C_CashBook.C_Currency_ID -UPDATE AD_COLUMN SET defaultvalue = NULL -WHERE ad_column_id = 5521; -SELECT '058_placeholder_branch350.sql' AS Filename; - -SELECT '059_placeholder_branch350.sql' AS Filename; - -SELECT '060_FR_1866483JasperFinancialReports.sql' AS Filename; --- Jan 7, 2008 9:37:36 PM COT --- 1866483 - Jasper on Financial Reports -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54091,50064,0,18,400,445,'JasperProcess_ID',TO_TIMESTAMP('2008-01-07 21:37:34','YYYY-MM-DD HH24:MI:SS'),100,'The Jasper Process used by the printengine if any process defined','D',22,'Y','N','N','N','N','N','N','N','N','N','Y','Jasper Process',0,TO_TIMESTAMP('2008-01-07 21:37:34','YYYY-MM-DD HH24:MI:SS'),100,1.000000000000) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54091 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -ALTER TABLE PA_Report ADD COLUMN JasperProcess_ID NUMERIC(10) -; - -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,53323,0,'JasperProcessing',TO_TIMESTAMP('2008-01-07 21:40:17','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Jasper Process Now','Jasper Process Now',TO_TIMESTAMP('2008-01-07 21:40:17','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53323 AND EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_Process (AD_Client_ID,AD_Org_ID,AD_Process_ID,AccessLevel,Classname,Created,CreatedBy,Description,EntityType,Help,IsActive,IsBetaFunctionality,IsDirectPrint,IsReport,IsServerProcess,Name,ShowHelp,Statistic_Count,Statistic_Seconds,Updated,UpdatedBy,Value) VALUES (0,0,53063,'3','org.compiere.report.FinReportJasper',TO_TIMESTAMP('2008-01-07 21:41:49','YYYY-MM-DD HH24:MI:SS'),100,'Create Financial Report (Jasper)','D','The default period is the current period. You can optionally enter other restrictions. You can select an alternative Reporting Hierarchy.','Y','N','N','N','N','Create Report (Jasper)','Y',0,0,TO_TIMESTAMP('2008-01-07 21:41:49','YYYY-MM-DD HH24:MI:SS'),100,'FinReportJasper') -; - -INSERT INTO AD_Process_Trl (AD_Language,AD_Process_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_ID=53063 AND EXISTS (SELECT * FROM AD_Process_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Process_ID!=t.AD_Process_ID) -; - -INSERT INTO AD_Process_Access (AD_Client_ID,AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,53063,0,TO_TIMESTAMP('2008-01-07 21:41:57','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-01-07 21:41:57','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Process_Access (AD_Client_ID,AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,53063,102,TO_TIMESTAMP('2008-01-07 21:41:57','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-01-07 21:41:57','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Process_Access (AD_Client_ID,AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,53063,103,TO_TIMESTAMP('2008-01-07 21:41:57','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-01-07 21:41:57','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Process_Access (AD_Client_ID,AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,53063,50001,TO_TIMESTAMP('2008-01-07 21:41:57','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-01-07 21:41:57','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54092,53323,0,53063,28,445,'JasperProcessing',TO_TIMESTAMP('2008-01-07 21:42:27','YYYY-MM-DD HH24:MI:SS'),100,'D',1,'Y','N','N','N','N','Y','N','N','N','N','Y','Jasper Process Now',0,TO_TIMESTAMP('2008-01-07 21:42:27','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54092 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -UPDATE AD_Column SET IsMandatory='N',Updated=TO_TIMESTAMP('2008-01-07 21:43:19','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54092 -; - -UPDATE AD_Field SET Name='Jasper Process Now', Description=NULL, Help=NULL WHERE AD_Column_ID=54092 AND IsCentrallyMaintained='Y' -; - -ALTER TABLE PA_Report ADD COLUMN JasperProcessing CHAR(1) -; - -INSERT INTO AD_Process_Para (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,206,0,53063,53114,18,275,217,'C_Period_ID',TO_TIMESTAMP('2008-01-07 21:44:40','YYYY-MM-DD HH24:MI:SS'),100,'Period of the Calendar','D',0,'The Period indicates an exclusive range of dates for a calendar.','Y','Y','N','N','Period',10,TO_TIMESTAMP('2008-01-07 21:44:40','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53114 AND EXISTS (SELECT * FROM AD_Process_Para_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_Process_Para (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,AD_Reference_Value_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,479,0,53063,53115,18,322,'Org_ID',TO_TIMESTAMP('2008-01-07 21:45:09','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client','D',0,'An organization is a unit of your client or legal entity - examples are store, department.','Y','Y','N','N','Organization',20,TO_TIMESTAMP('2008-01-07 21:45:09','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53115 AND EXISTS (SELECT * FROM AD_Process_Para_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_Process_Para (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,187,0,53063,53116,19,'C_BPartner_ID',TO_TIMESTAMP('2008-01-07 21:45:39','YYYY-MM-DD HH24:MI:SS'),100,'Identifies a Business Partner','D',0,'A Business Partner is anyone with whom you transact. This can include Vendor, Customer, Employee or Salesperson','Y','Y','N','N','Business Partner ',30,TO_TIMESTAMP('2008-01-07 21:45:39','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53116 AND EXISTS (SELECT * FROM AD_Process_Para_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_Process_Para (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,454,0,53063,53117,19,'M_Product_ID',TO_TIMESTAMP('2008-01-07 21:46:05','YYYY-MM-DD HH24:MI:SS'),100,'Product, Service, Item','D',0,'Identifies an item which is either purchased or sold in this organization.','Y','Y','N','N','Product',40,TO_TIMESTAMP('2008-01-07 21:46:05','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53117 AND EXISTS (SELECT * FROM AD_Process_Para_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_Process_Para (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,208,0,53063,53118,19,'C_Project_ID',TO_TIMESTAMP('2008-01-07 21:47:04','YYYY-MM-DD HH24:MI:SS'),100,'Financial Project','D',0,'A Project allows you to track and control internal or external activities.','Y','Y','N','N','Project',50,TO_TIMESTAMP('2008-01-07 21:47:04','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53118 AND EXISTS (SELECT * FROM AD_Process_Para_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_Process_Para (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,1005,0,53063,53119,19,'C_Activity_ID',TO_TIMESTAMP('2008-01-07 21:47:41','YYYY-MM-DD HH24:MI:SS'),100,'Business Activity','D',0,'Activities indicate tasks that are performed and used to utilize Activity based Costing','Y','Y','N','N','Activity',60,TO_TIMESTAMP('2008-01-07 21:47:41','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53119 AND EXISTS (SELECT * FROM AD_Process_Para_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_Process_Para (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,210,0,53063,53120,19,'C_SalesRegion_ID',TO_TIMESTAMP('2008-01-07 21:48:11','YYYY-MM-DD HH24:MI:SS'),100,'Sales coverage region','D',0,'The Sales Region indicates a specific area of sales coverage.','Y','Y','N','N','Sales Region',70,TO_TIMESTAMP('2008-01-07 21:48:11','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53120 AND EXISTS (SELECT * FROM AD_Process_Para_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_Process_Para (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,550,0,53063,53121,19,'C_Campaign_ID',TO_TIMESTAMP('2008-01-07 21:48:35','YYYY-MM-DD HH24:MI:SS'),100,'Marketing Campaign','D',0,'The Campaign defines a unique marketing program. Projects can be associated with a pre defined Marketing Campaign. You can then report based on a specific Campaign.','Y','Y','N','N','Campaign',80,TO_TIMESTAMP('2008-01-07 21:48:35','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53121 AND EXISTS (SELECT * FROM AD_Process_Para_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_Process_Para (AD_Client_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,0,53063,53122,20,'DetailsSourceFirst',TO_TIMESTAMP('2008-01-07 21:49:04','YYYY-MM-DD HH24:MI:SS'),100,'Details and Sources are printed before the Line','D',0,'Y','Y','N','N','Details/Source First',90,TO_TIMESTAMP('2008-01-07 21:49:04','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53122 AND EXISTS (SELECT * FROM AD_Process_Para_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_Process_Para (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,2344,0,53063,53123,20,'UpdateBalances',TO_TIMESTAMP('2008-01-07 21:49:52','YYYY-MM-DD HH24:MI:SS'),100,'Y','Update Accounting Balances first (not required for subsequent runs)','D',0,'Y','Y','Y','N','Update Balances',100,TO_TIMESTAMP('2008-01-07 21:49:52','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53123 AND EXISTS (SELECT * FROM AD_Process_Para_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_Process_Para (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,2868,0,53063,53124,19,'PA_Hierarchy_ID',TO_TIMESTAMP('2008-01-07 21:50:22','YYYY-MM-DD HH24:MI:SS'),100,'Optional Reporting Hierarchy - If not selected the default hierarchy trees are used.','D',0,'Reporting Hierarchy allows you to select different Hierarchies/Trees for the report. -Accounting Segments like Organization, Account, Product may have several hierarchies to accomodate different views on the business.','Y','Y','N','N','Reporting Hierarchy',110,TO_TIMESTAMP('2008-01-07 21:50:22','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53124 AND EXISTS (SELECT * FROM AD_Process_Para_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54091,54234,0,372,TO_TIMESTAMP('2008-01-07 21:51:00','YYYY-MM-DD HH24:MI:SS'),100,'The Jasper Process used by the printengine if any process defined',22,'D','Y','Y','Y','N','N','N','N','N','Jasper Process',TO_TIMESTAMP('2008-01-07 21:51:00','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54234 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54092,54235,0,372,TO_TIMESTAMP('2008-01-07 21:51:02','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','N','Jasper Process Now',TO_TIMESTAMP('2008-01-07 21:51:02','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54235 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -UPDATE AD_Field SET SeqNo=0,IsDisplayed='N' WHERE AD_Field_ID=4731 -; - -UPDATE AD_Field SET SeqNo=10,IsDisplayed='Y' WHERE AD_Field_ID=4732 -; - -UPDATE AD_Field SET SeqNo=20,IsDisplayed='Y' WHERE AD_Field_ID=4733 -; - -UPDATE AD_Field SET SeqNo=30,IsDisplayed='Y' WHERE AD_Field_ID=6263 -; - -UPDATE AD_Field SET SeqNo=40,IsDisplayed='Y' WHERE AD_Field_ID=6264 -; - -UPDATE AD_Field SET SeqNo=50,IsDisplayed='Y' WHERE AD_Field_ID=4739 -; - -UPDATE AD_Field SET SeqNo=60,IsDisplayed='Y' WHERE AD_Field_ID=4734 -; - -UPDATE AD_Field SET SeqNo=70,IsDisplayed='Y' WHERE AD_Field_ID=4738 -; - -UPDATE AD_Field SET SeqNo=80,IsDisplayed='Y' WHERE AD_Field_ID=4735 -; - -UPDATE AD_Field SET SeqNo=90,IsDisplayed='Y' WHERE AD_Field_ID=4736 -; - -UPDATE AD_Field SET SeqNo=100,IsDisplayed='Y' WHERE AD_Field_ID=54234 -; - -UPDATE AD_Field SET SeqNo=140,IsDisplayed='Y' WHERE AD_Field_ID=54235 -; - -UPDATE AD_Field SET SeqNo=150,IsDisplayed='Y' WHERE AD_Field_ID=6265 -; - -UPDATE AD_Field SET DisplayLogic='@JasperProcess_ID@=0',Updated=TO_TIMESTAMP('2008-01-07 21:52:25','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=4737 -; - -UPDATE AD_Field SET DisplayLogic='@JasperProcess_ID@>0',Updated=TO_TIMESTAMP('2008-01-07 21:53:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54235 -; - -UPDATE AD_Field SET DisplayLength=23,Updated=TO_TIMESTAMP('2008-01-07 21:55:11','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54235 -; - -UPDATE AD_Field SET Name='Create Report (Jasper)',Updated=TO_TIMESTAMP('2008-01-07 21:55:28','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54235 -; - -UPDATE AD_Field_Trl SET IsTranslated='N' WHERE AD_Field_ID=54235 -; - -UPDATE AD_Field SET Description='Create Financial Report (Jasper)',Updated=TO_TIMESTAMP('2008-01-07 21:55:35','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54235 -; - -UPDATE AD_Field_Trl SET IsTranslated='N' WHERE AD_Field_ID=54235 -; - -UPDATE AD_Field SET Help='The default period is the current period. You can optionally enter other restrictions. You can select an alternative Reporting Hierarchy.',Updated=TO_TIMESTAMP('2008-01-07 21:55:40','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54235 -; - -UPDATE AD_Field_Trl SET IsTranslated='N' WHERE AD_Field_ID=54235 -; - -UPDATE AD_Field SET AD_FieldGroup_ID=114,Updated=TO_TIMESTAMP('2008-01-07 21:55:50','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54235 -; - - -SELECT '061_BF1851188.sql' AS Filename; --- Jan 8, 2008 7:04:17 PM COT --- [ 1851188 ] Missing ModelValidator must fail client to start -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,Help,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,53324,0,'IsFailOnMissingModelValidator',TO_TIMESTAMP('2008-01-08 19:04:14','YYYY-MM-DD HH24:MI:SS'),0,NULL,'D',NULL,'Y','Fail on Missing Model Validator','Fail on Missing Model Validator',TO_TIMESTAMP('2008-01-08 19:04:14','YYYY-MM-DD HH24:MI:SS'),0) -; - -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53324 AND EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54093,53324,0,20,531,'IsFailOnMissingModelValidator',TO_TIMESTAMP('2008-01-08 19:04:46','YYYY-MM-DD HH24:MI:SS'),0,'Y','D',1,'Y','N','N','N','N','Y','N','N','N','N','Y','Fail on Missing Model Validator',0,TO_TIMESTAMP('2008-01-08 19:04:46','YYYY-MM-DD HH24:MI:SS'),0,1.000000000000) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54093 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -ALTER TABLE AD_System ADD COLUMN IsFailOnMissingModelValidator CHAR(1) DEFAULT 'Y' CHECK (IsFailOnMissingModelValidator IN ('Y','N')) NOT NULL -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54093,54236,0,440,TO_TIMESTAMP('2008-01-08 19:08:25','YYYY-MM-DD HH24:MI:SS'),0,1,'D','Y','Y','Y','N','N','N','N','N','Fail on Missing Model Validator',235,0,TO_TIMESTAMP('2008-01-08 19:08:25','YYYY-MM-DD HH24:MI:SS'),0) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54236 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - - -SELECT '062_FR1853645.sql' AS Filename; --- Jan 8, 2008 8:30:01 PM COT --- 1853645 - Priority for model validator -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54094,566,0,11,53014,'SeqNo',TO_TIMESTAMP('2008-01-08 20:29:58','YYYY-MM-DD HH24:MI:SS'),100,'Method of ordering records; lowest number comes first','D',22,'The Sequence indicates the order of records','Y','N','N','N','N','N','N','N','N','N','Y','Sequence',0,TO_TIMESTAMP('2008-01-08 20:29:58','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54094 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -ALTER TABLE AD_ModelValidator ADD COLUMN SeqNo NUMERIC(10) -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54094,54237,0,53014,TO_TIMESTAMP('2008-01-08 20:30:35','YYYY-MM-DD HH24:MI:SS'),100,'Method of ordering records; lowest number comes first',22,'D','The Sequence indicates the order of records','Y','Y','Y','N','N','N','N','N','Sequence',TO_TIMESTAMP('2008-01-08 20:30:35','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54237 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -UPDATE AD_Field SET SeqNo=70,IsDisplayed='Y' WHERE AD_Field_ID=53278 -; - -UPDATE AD_Field SET SeqNo=80,IsDisplayed='Y' WHERE AD_Field_ID=54237 -; - -UPDATE AD_Field SET SeqNo=90,IsDisplayed='Y' WHERE AD_Field_ID=53277 -; - -UPDATE AD_Field SET IsSameLine='Y',Updated=TO_TIMESTAMP('2008-01-08 20:31:04','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=53272 -; - - -SELECT '063_FR1851188_ASP.sql' AS Filename; --- Jan 9, 2008 11:29:56 PM COT --- 1846929 - SaaS (ASP) (On-Demand) configurator -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53325,0,'IsUseASP',TO_TIMESTAMP('2008-01-09 23:29:56','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','IsUseASP','IsUseASP',TO_TIMESTAMP('2008-01-09 23:29:56','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53325 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54095,53325,0,20,112,'IsUseASP',TO_TIMESTAMP('2008-01-09 23:29:56','YYYY-MM-DD HH24:MI:SS'),100,'N','D',1,'Y','N','N','N','N','Y','N','N','Y','N','Y','IsUseASP',TO_TIMESTAMP('2008-01-09 23:29:56','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54095 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -ALTER TABLE AD_CLIENT ADD COLUMN IsUseASP CHAR(1) DEFAULT 'N' CHECK (IsUseASP IN ('Y','N')) NOT NULL -; - - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,DisplayLogic,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54095,54238,0,145,TO_TIMESTAMP('2008-01-09 23:30:04','YYYY-MM-DD HH24:MI:SS'),100,1,'@AD_Client_ID@>0','D','Y','Y','Y','N','N','N','N','IsUseASP',280,0,TO_TIMESTAMP('2008-01-09 23:30:04','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54238 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_WINDOW (AD_Client_ID,AD_Org_ID,AD_Window_ID,Created,CreatedBy,EntityType,IsActive,IsBetaFunctionality,IsDefault,IsSOTrx,NAME,Processing,Updated,UpdatedBy,WindowType) VALUES (0,0,53015,TO_TIMESTAMP('2008-01-09 23:30:05','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Y','N','Y','ASP Modules','N',TO_TIMESTAMP('2008-01-09 23:30:05','YYYY-MM-DD HH24:MI:SS'),100,'M') -; - -INSERT INTO AD_WINDOW_TRL (AD_LANGUAGE,AD_Window_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Window_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_WINDOW t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Window_ID=53015 AND EXISTS (SELECT * FROM AD_WINDOW_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Window_ID!=t.AD_Window_ID) -; - -INSERT INTO AD_WINDOW_ACCESS (AD_Client_ID,AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,0,53015,TO_TIMESTAMP('2008-01-09 23:30:06','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-01-09 23:30:06','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_WINDOW_ACCESS (AD_Client_ID,AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,102,53015,TO_TIMESTAMP('2008-01-09 23:30:06','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-01-09 23:30:06','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_WINDOW_ACCESS (AD_Client_ID,AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,103,53015,TO_TIMESTAMP('2008-01-09 23:30:06','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-01-09 23:30:06','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_WINDOW_ACCESS (AD_Client_ID,AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,50001,53015,TO_TIMESTAMP('2008-01-09 23:30:06','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-01-09 23:30:06','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE (AD_Client_ID,AD_Org_ID,AD_Table_ID,AccessLevel,Created,CreatedBy,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,NAME,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53046,'4',TO_TIMESTAMP('2008-01-09 23:30:06','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','Y','N','N','N','ASP Window','L','ASP_Window',TO_TIMESTAMP('2008-01-09 23:30:06','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE_TRL (AD_LANGUAGE,AD_Table_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Table_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TABLE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53046 AND EXISTS (SELECT * FROM AD_TABLE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Table_ID!=t.AD_Table_ID) -; - -INSERT INTO AD_SEQUENCE (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,NAME,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53063,TO_TIMESTAMP('2008-01-09 23:30:07','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table ASP_Window',1,'Y','N','Y','Y','ASP_Window','N',1000000,TO_TIMESTAMP('2008-01-09 23:30:07','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54096,102,0,19,53046,'AD_Client_ID',TO_TIMESTAMP('2008-01-09 23:30:17','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Client_ID@','Client/Tenant for this installation.','D',22,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','N','Client',TO_TIMESTAMP('2008-01-09 23:30:17','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54096 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54097,113,0,19,53046,104,'AD_Org_ID',TO_TIMESTAMP('2008-01-09 23:30:21','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Org_ID@','Organizational entity within client','D',22,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','N','Organization',TO_TIMESTAMP('2008-01-09 23:30:21','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54097 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54098,143,0,19,53046,'AD_Window_ID',TO_TIMESTAMP('2008-01-09 23:30:22','YYYY-MM-DD HH24:MI:SS'),100,'Data entry or display window','D',22,'The Window field identifies a unique Window in the system.','Y','N','N','N','N','Y','Y','N','N','N','N','Window',TO_TIMESTAMP('2008-01-09 23:30:22','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54098 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53326,0,'ASP_Level_ID',TO_TIMESTAMP('2008-01-09 23:30:22','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','ASP_Level_ID','ASP_Level_ID',TO_TIMESTAMP('2008-01-09 23:30:22','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53326 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54099,53326,0,19,53046,'ASP_Level_ID',TO_TIMESTAMP('2008-01-09 23:30:22','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','N','Y','Y','N','N','N','N','ASP_Level_ID',TO_TIMESTAMP('2008-01-09 23:30:22','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54099 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54100,608,0,18,110,53046,'UpdatedBy',TO_TIMESTAMP('2008-01-09 23:30:25','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',22,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','N','Updated By',TO_TIMESTAMP('2008-01-09 23:30:25','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54100 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54101,245,0,16,53046,'Created',TO_TIMESTAMP('2008-01-09 23:30:28','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',7,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','N','Created',TO_TIMESTAMP('2008-01-09 23:30:28','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54101 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54102,246,0,18,110,53046,'CreatedBy',TO_TIMESTAMP('2008-01-09 23:30:29','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',22,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','N','Created By',TO_TIMESTAMP('2008-01-09 23:30:29','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54102 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54103,348,0,20,53046,'IsActive',TO_TIMESTAMP('2008-01-09 23:30:33','YYYY-MM-DD HH24:MI:SS'),100,'Y','The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','N','N','N','N','Y','N','N','N','N','Y','Active',TO_TIMESTAMP('2008-01-09 23:30:33','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54103 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54104,607,0,16,53046,'Updated',TO_TIMESTAMP('2008-01-09 23:30:35','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','N','Updated',TO_TIMESTAMP('2008-01-09 23:30:35','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54104 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_REFERENCE (AD_Client_ID,AD_Org_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,ValidationType) VALUES (0,0,53234,TO_TIMESTAMP('2008-01-09 23:30:36','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','ASP_Status',TO_TIMESTAMP('2008-01-09 23:30:36','YYYY-MM-DD HH24:MI:SS'),100,'L') -; - -INSERT INTO AD_REFERENCE_TRL (AD_LANGUAGE,AD_Reference_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Reference_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REFERENCE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Reference_ID=53234 AND EXISTS (SELECT * FROM AD_REFERENCE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Reference_ID!=t.AD_Reference_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53284,53234,TO_TIMESTAMP('2008-01-09 23:30:37','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Hide',TO_TIMESTAMP('2008-01-09 23:30:37','YYYY-MM-DD HH24:MI:SS'),100,'H') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53284 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53285,53234,TO_TIMESTAMP('2008-01-09 23:30:38','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Show',TO_TIMESTAMP('2008-01-09 23:30:38','YYYY-MM-DD HH24:MI:SS'),100,'S') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53285 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_REF_LIST (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,NAME,Updated,UpdatedBy,VALUE) VALUES (0,0,53286,53234,TO_TIMESTAMP('2008-01-09 23:30:39','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Undefined',TO_TIMESTAMP('2008-01-09 23:30:39','YYYY-MM-DD HH24:MI:SS'),100,'U') -; - -INSERT INTO AD_REF_LIST_TRL (AD_LANGUAGE,AD_Ref_List_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Ref_List_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_REF_LIST t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53286 AND EXISTS (SELECT * FROM AD_REF_LIST_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53327,0,'ASP_Status',TO_TIMESTAMP('2008-01-09 23:30:42','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','ASP_Status','ASP_Status',TO_TIMESTAMP('2008-01-09 23:30:42','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53327 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54105,53327,0,17,53234,53046,'ASP_Status',TO_TIMESTAMP('2008-01-09 23:30:42','YYYY-MM-DD HH24:MI:SS'),100,'U','D',1,'Y','N','N','N','N','Y','N','N','N','N','Y','ASP_Status',TO_TIMESTAMP('2008-01-09 23:30:42','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54105 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_TAB (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,CommitWarning,Created,CreatedBy,EntityType,HasTree,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,NAME,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53056,53046,53015,NULL,TO_TIMESTAMP('2008-01-09 23:30:46','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','N','Y','N','N','N','N','Window','N',40,2,TO_TIMESTAMP('2008-01-09 23:30:46','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TAB_TRL (AD_LANGUAGE,AD_Tab_ID, CommitWarning,Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TAB t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53056 AND EXISTS (SELECT * FROM AD_TAB_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54096,54239,0,53056,TO_TIMESTAMP('2008-01-09 23:30:50','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',22,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','Client',10,0,TO_TIMESTAMP('2008-01-09 23:30:50','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54239 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54097,54240,0,53056,TO_TIMESTAMP('2008-01-09 23:30:54','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',22,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','Y','Organization',20,0,TO_TIMESTAMP('2008-01-09 23:30:54','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54240 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54099,54241,0,53056,TO_TIMESTAMP('2008-01-09 23:30:56','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','Y','N','N','N','N','ASP_Level_ID',30,0,TO_TIMESTAMP('2008-01-09 23:30:56','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54241 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54098,54242,0,53056,TO_TIMESTAMP('2008-01-09 23:30:56','YYYY-MM-DD HH24:MI:SS'),100,'Data entry or display window',22,'D','The Window field identifies a unique Window in the system.','Y','Y','Y','N','N','N','N','Window',40,0,TO_TIMESTAMP('2008-01-09 23:30:56','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54242 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54105,54243,0,53056,TO_TIMESTAMP('2008-01-09 23:31:00','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','ASP_Status',50,0,TO_TIMESTAMP('2008-01-09 23:31:00','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54243 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54103,54244,0,53056,TO_TIMESTAMP('2008-01-09 23:31:01','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','Y','Y','N','N','N','N','Active',60,0,TO_TIMESTAMP('2008-01-09 23:31:01','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54244 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_TABLE (AD_Client_ID,AD_Org_ID,AD_Table_ID,AccessLevel,Created,CreatedBy,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,NAME,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53047,'4',TO_TIMESTAMP('2008-01-09 23:31:05','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','Y','N','N','N','ASP Tab','L','ASP_Tab',TO_TIMESTAMP('2008-01-09 23:31:05','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE_TRL (AD_LANGUAGE,AD_Table_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Table_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TABLE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53047 AND EXISTS (SELECT * FROM AD_TABLE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Table_ID!=t.AD_Table_ID) -; - -INSERT INTO AD_SEQUENCE (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,NAME,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53064,TO_TIMESTAMP('2008-01-09 23:31:06','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table ASP_Tab',1,'Y','N','Y','Y','ASP_Tab','N',1000000,TO_TIMESTAMP('2008-01-09 23:31:06','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54106,102,0,19,53047,'AD_Client_ID',TO_TIMESTAMP('2008-01-09 23:31:07','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Client_ID@','Client/Tenant for this installation.','D',22,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','N','Client',TO_TIMESTAMP('2008-01-09 23:31:07','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54106 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54107,113,0,19,53047,104,'AD_Org_ID',TO_TIMESTAMP('2008-01-09 23:31:11','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Org_ID@','Organizational entity within client','D',22,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','N','Organization',TO_TIMESTAMP('2008-01-09 23:31:11','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54107 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54108,125,0,19,53047,163,'AD_Tab_ID',TO_TIMESTAMP('2008-01-09 23:31:12','YYYY-MM-DD HH24:MI:SS'),100,'Tab within a Window','D',22,'The Tab indicates a tab that displays within a window.','Y','N','N','N','N','Y','Y','N','N','N','N','Tab',TO_TIMESTAMP('2008-01-09 23:31:12','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54108 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54109,143,0,19,53047,'AD_Window_ID',TO_TIMESTAMP('2008-01-09 23:31:13','YYYY-MM-DD HH24:MI:SS'),100,'Data entry or display window','D',22,'The Window field identifies a unique Window in the system.','Y','N','N','N','N','Y','Y','N','N','N','N','Window',TO_TIMESTAMP('2008-01-09 23:31:13','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54109 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54110,53326,0,19,53047,'ASP_Level_ID',TO_TIMESTAMP('2008-01-09 23:31:14','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','N','Y','Y','N','N','N','N','ASP_Level_ID',TO_TIMESTAMP('2008-01-09 23:31:14','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54110 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54111,53327,0,17,53234,53047,'ASP_Status',TO_TIMESTAMP('2008-01-09 23:31:16','YYYY-MM-DD HH24:MI:SS'),100,'U','D',1,'Y','N','N','N','N','Y','N','N','N','N','Y','ASP_Status',TO_TIMESTAMP('2008-01-09 23:31:16','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54111 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54112,608,0,18,110,53047,'UpdatedBy',TO_TIMESTAMP('2008-01-09 23:31:20','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',22,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','N','Updated By',TO_TIMESTAMP('2008-01-09 23:31:20','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54112 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54113,245,0,16,53047,'Created',TO_TIMESTAMP('2008-01-09 23:31:21','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',7,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','N','Created',TO_TIMESTAMP('2008-01-09 23:31:21','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54113 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54114,246,0,18,110,53047,'CreatedBy',TO_TIMESTAMP('2008-01-09 23:31:25','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',22,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','N','Created By',TO_TIMESTAMP('2008-01-09 23:31:25','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54114 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54115,348,0,20,53047,'IsActive',TO_TIMESTAMP('2008-01-09 23:31:26','YYYY-MM-DD HH24:MI:SS'),100,'Y','The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','N','N','N','N','Y','N','N','N','N','Y','Active',TO_TIMESTAMP('2008-01-09 23:31:26','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54115 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_PROCESS (AD_Client_ID,AD_Org_ID,AD_Process_ID,AccessLevel,Classname,Created,CreatedBy,EntityType,IsActive,IsBetaFunctionality,IsDirectPrint,IsReport,NAME,ShowHelp,Statistic_Count,Statistic_Seconds,Updated,UpdatedBy,VALUE,WorkflowValue) VALUES (0,0,53065,'4','org.adempiere.process.ASPGenerateFields',TO_TIMESTAMP('2008-01-09 23:31:27','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','N','N','N','ASP Generate Fields','Y',0,0,TO_TIMESTAMP('2008-01-09 23:31:27','YYYY-MM-DD HH24:MI:SS'),100,'ASP Generate Fields',NULL) -; - -INSERT INTO AD_PROCESS_TRL (AD_LANGUAGE,AD_Process_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_ID=53065 AND EXISTS (SELECT * FROM AD_PROCESS_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_ID!=t.AD_Process_ID) -; - -INSERT INTO AD_PROCESS_PARA (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,AD_Reference_Value_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,NAME,SeqNo,Updated,UpdatedBy) VALUES (0,53327,0,53065,53125,17,53234,'ASP_Status',TO_TIMESTAMP('2008-01-09 23:31:32','YYYY-MM-DD HH24:MI:SS'),100,'U','D',0,'Y','Y','Y','N','ASP Status',10,TO_TIMESTAMP('2008-01-09 23:31:32','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_PROCESS_PARA_TRL (AD_LANGUAGE,AD_Process_Para_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_Para_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS_PARA t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53125 AND EXISTS (SELECT * FROM AD_PROCESS_PARA_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54116,524,0,53065,28,53047,'Processing',TO_TIMESTAMP('2008-01-09 23:31:33','YYYY-MM-DD HH24:MI:SS'),100,'D',1,'Y','N','N','N','N','N','N','N','N','N','Y','Process Now',TO_TIMESTAMP('2008-01-09 23:31:33','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54116 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54117,607,0,16,53047,'Updated',TO_TIMESTAMP('2008-01-09 23:31:33','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','N','Updated',TO_TIMESTAMP('2008-01-09 23:31:33','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54117 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53328,0,'AllFields',TO_TIMESTAMP('2008-01-09 23:31:34','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','AllFields','AllFields',TO_TIMESTAMP('2008-01-09 23:31:34','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53328 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54118,53328,0,20,53047,'AllFields',TO_TIMESTAMP('2008-01-09 23:31:34','YYYY-MM-DD HH24:MI:SS'),100,'Y','D',1,'Y','N','N','N','N','N','N','N','N','N','Y','AllFields',TO_TIMESTAMP('2008-01-09 23:31:34','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54118 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_TAB (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,CommitWarning,Created,CreatedBy,EntityType,HasTree,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,NAME,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53057,53047,53015,NULL,TO_TIMESTAMP('2008-01-09 23:31:39','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','N','Y','N','N','N','N','Tab','N',50,3,TO_TIMESTAMP('2008-01-09 23:31:39','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TAB_TRL (AD_LANGUAGE,AD_Tab_ID, CommitWarning,Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TAB t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53057 AND EXISTS (SELECT * FROM AD_TAB_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54106,54245,0,53057,TO_TIMESTAMP('2008-01-09 23:31:40','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',22,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','Client',10,0,TO_TIMESTAMP('2008-01-09 23:31:40','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54245 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54107,54246,0,53057,TO_TIMESTAMP('2008-01-09 23:31:40','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',22,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','Y','Organization',20,0,TO_TIMESTAMP('2008-01-09 23:31:40','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54246 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54110,54247,0,53057,TO_TIMESTAMP('2008-01-09 23:31:41','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','Y','N','N','Y','N','ASP_Level_ID',30,0,TO_TIMESTAMP('2008-01-09 23:31:41','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54247 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54109,54248,0,53057,TO_TIMESTAMP('2008-01-09 23:31:42','YYYY-MM-DD HH24:MI:SS'),100,'Data entry or display window',22,'D','The Window field identifies a unique Window in the system.','Y','Y','Y','N','N','Y','N','Window',40,0,TO_TIMESTAMP('2008-01-09 23:31:42','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54248 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54108,54249,0,53057,TO_TIMESTAMP('2008-01-09 23:31:43','YYYY-MM-DD HH24:MI:SS'),100,'Tab within a Window',22,'D','The Tab indicates a tab that displays within a window.','Y','Y','Y','N','N','N','N','Tab',50,0,TO_TIMESTAMP('2008-01-09 23:31:43','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54249 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54111,54250,0,53057,TO_TIMESTAMP('2008-01-09 23:31:44','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','ASP_Status',60,0,TO_TIMESTAMP('2008-01-09 23:31:44','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54250 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54118,54251,0,53057,TO_TIMESTAMP('2008-01-09 23:31:45','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','AllFields',70,0,TO_TIMESTAMP('2008-01-09 23:31:45','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54251 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,DisplayLogic,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54116,54252,0,53057,TO_TIMESTAMP('2008-01-09 23:31:46','YYYY-MM-DD HH24:MI:SS'),100,1,'@AllFields@=N','D','Y','Y','Y','N','N','N','N','Process Now',80,0,TO_TIMESTAMP('2008-01-09 23:31:46','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54252 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54115,54253,0,53057,TO_TIMESTAMP('2008-01-09 23:31:46','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','Y','Y','N','N','N','N','Active',90,0,TO_TIMESTAMP('2008-01-09 23:31:46','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54253 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_TABLE (AD_Client_ID,AD_Org_ID,AD_Table_ID,AccessLevel,Created,CreatedBy,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,NAME,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53048,'4',TO_TIMESTAMP('2008-01-09 23:31:48','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','Y','N','N','N','ASP Field','L','ASP_Field',TO_TIMESTAMP('2008-01-09 23:31:48','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE_TRL (AD_LANGUAGE,AD_Table_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Table_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TABLE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53048 AND EXISTS (SELECT * FROM AD_TABLE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Table_ID!=t.AD_Table_ID) -; - -INSERT INTO AD_SEQUENCE (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,NAME,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53065,TO_TIMESTAMP('2008-01-09 23:31:48','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table ASP_Field',1,'Y','N','Y','Y','ASP_Field','N',1000000,TO_TIMESTAMP('2008-01-09 23:31:48','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54119,102,0,19,53048,'AD_Client_ID',TO_TIMESTAMP('2008-01-09 23:31:50','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Client_ID@','Client/Tenant for this installation.','D',22,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','N','Client',TO_TIMESTAMP('2008-01-09 23:31:50','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54119 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_VAL_RULE (AD_Client_ID,AD_Org_ID,AD_Val_Rule_ID,Code,Created,CreatedBy,EntityType,IsActive,NAME,TYPE,Updated,UpdatedBy) VALUES (0,0,52005,'AD_Field.AD_Tab_ID=@AD_Tab_ID@',TO_TIMESTAMP('2008-01-09 23:31:50','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','AD_Field in Tab','S',TO_TIMESTAMP('2008-01-09 23:31:50','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54120,107,0,19,53048,52005,'AD_Field_ID',TO_TIMESTAMP('2008-01-09 23:31:51','YYYY-MM-DD HH24:MI:SS'),100,'Field on a database table','D',22,'The Field identifies a field on a database table.','Y','N','N','N','N','N','Y','N','N','N','N','Field',TO_TIMESTAMP('2008-01-09 23:31:51','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54120 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54121,113,0,19,53048,104,'AD_Org_ID',TO_TIMESTAMP('2008-01-09 23:31:52','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Org_ID@','Organizational entity within client','D',22,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','N','Organization',TO_TIMESTAMP('2008-01-09 23:31:52','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54121 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54122,125,0,19,53048,163,'AD_Tab_ID',TO_TIMESTAMP('2008-01-09 23:31:53','YYYY-MM-DD HH24:MI:SS'),100,'Tab within a Window','D',22,'The Tab indicates a tab that displays within a window.','Y','N','N','N','N','Y','Y','N','N','N','N','Tab',TO_TIMESTAMP('2008-01-09 23:31:53','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54122 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54123,53326,0,19,53048,'ASP_Level_ID',TO_TIMESTAMP('2008-01-09 23:31:54','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','N','Y','Y','N','N','N','N','ASP_Level_ID',TO_TIMESTAMP('2008-01-09 23:31:54','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54123 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54124,608,0,18,110,53048,'UpdatedBy',TO_TIMESTAMP('2008-01-09 23:31:55','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',22,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','N','Updated By',TO_TIMESTAMP('2008-01-09 23:31:55','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54124 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54125,245,0,16,53048,'Created',TO_TIMESTAMP('2008-01-09 23:32:00','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',7,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','N','Created',TO_TIMESTAMP('2008-01-09 23:32:00','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54125 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54126,246,0,18,110,53048,'CreatedBy',TO_TIMESTAMP('2008-01-09 23:32:00','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',22,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','N','Created By',TO_TIMESTAMP('2008-01-09 23:32:00','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54126 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54127,348,0,20,53048,'IsActive',TO_TIMESTAMP('2008-01-09 23:32:01','YYYY-MM-DD HH24:MI:SS'),100,'Y','The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','N','N','N','N','Y','N','N','N','N','Y','Active',TO_TIMESTAMP('2008-01-09 23:32:01','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54127 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54128,607,0,16,53048,'Updated',TO_TIMESTAMP('2008-01-09 23:32:02','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','N','Updated',TO_TIMESTAMP('2008-01-09 23:32:02','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54128 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54129,53327,0,17,53234,53048,'ASP_Status',TO_TIMESTAMP('2008-01-09 23:32:03','YYYY-MM-DD HH24:MI:SS'),100,'U','D',1,'Y','N','N','N','N','Y','N','N','N','N','Y','ASP_Status',TO_TIMESTAMP('2008-01-09 23:32:03','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54129 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_TAB (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,CommitWarning,Created,CreatedBy,DisplayLogic,EntityType,HasTree,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,NAME,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53058,53048,53015,NULL,TO_TIMESTAMP('2008-01-09 23:32:03','YYYY-MM-DD HH24:MI:SS'),100,'@AllFields@=N','D','N','Y','N','N','Y','N','N','N','N','Field','N',60,4,TO_TIMESTAMP('2008-01-09 23:32:03','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TAB_TRL (AD_LANGUAGE,AD_Tab_ID, CommitWarning,Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TAB t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53058 AND EXISTS (SELECT * FROM AD_TAB_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54119,54254,0,53058,TO_TIMESTAMP('2008-01-09 23:32:10','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',22,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','Client',10,0,TO_TIMESTAMP('2008-01-09 23:32:10','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54254 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54121,54255,0,53058,TO_TIMESTAMP('2008-01-09 23:32:11','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',22,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','Y','Organization',20,0,TO_TIMESTAMP('2008-01-09 23:32:11','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54255 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54123,54256,0,53058,TO_TIMESTAMP('2008-01-09 23:32:12','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','Y','N','N','N','N','ASP_Level_ID',30,0,TO_TIMESTAMP('2008-01-09 23:32:12','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54256 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54122,54257,0,53058,TO_TIMESTAMP('2008-01-09 23:32:16','YYYY-MM-DD HH24:MI:SS'),100,'Tab within a Window',22,'D','The Tab indicates a tab that displays within a window.','Y','Y','Y','N','N','N','N','Tab',40,0,TO_TIMESTAMP('2008-01-09 23:32:16','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54257 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54120,54258,0,53058,TO_TIMESTAMP('2008-01-09 23:32:17','YYYY-MM-DD HH24:MI:SS'),100,'Field on a database table',22,'D','The Field identifies a field on a database table.','Y','Y','Y','N','N','N','N','Field',50,0,TO_TIMESTAMP('2008-01-09 23:32:17','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54258 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54129,54259,0,53058,TO_TIMESTAMP('2008-01-09 23:32:18','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','ASP_Status',60,0,TO_TIMESTAMP('2008-01-09 23:32:18','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54259 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54127,54260,0,53058,TO_TIMESTAMP('2008-01-09 23:32:18','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','Y','Y','N','N','N','N','Active',70,0,TO_TIMESTAMP('2008-01-09 23:32:18','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54260 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_TABLE (AD_Client_ID,AD_Org_ID,AD_Table_ID,AccessLevel,Created,CreatedBy,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,NAME,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53049,'4',TO_TIMESTAMP('2008-01-09 23:32:22','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','Y','N','N','N','ASP Process','L','ASP_Process',TO_TIMESTAMP('2008-01-09 23:32:22','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE_TRL (AD_LANGUAGE,AD_Table_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Table_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TABLE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53049 AND EXISTS (SELECT * FROM AD_TABLE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Table_ID!=t.AD_Table_ID) -; - -INSERT INTO AD_SEQUENCE (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,NAME,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53066,TO_TIMESTAMP('2008-01-09 23:32:23','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table ASP_Process',1,'Y','N','Y','Y','ASP_Process','N',1000000,TO_TIMESTAMP('2008-01-09 23:32:23','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54130,102,0,19,53049,'AD_Client_ID',TO_TIMESTAMP('2008-01-09 23:32:24','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Client_ID@','Client/Tenant for this installation.','D',22,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','N','Client',TO_TIMESTAMP('2008-01-09 23:32:24','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54130 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54131,113,0,19,53049,104,'AD_Org_ID',TO_TIMESTAMP('2008-01-09 23:32:28','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Org_ID@','Organizational entity within client','D',22,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','N','Organization',TO_TIMESTAMP('2008-01-09 23:32:28','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54131 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54132,117,0,19,53049,'AD_Process_ID',TO_TIMESTAMP('2008-01-09 23:32:32','YYYY-MM-DD HH24:MI:SS'),100,'Process or Report','D',22,'The Process field identifies a unique Process or Report in the system.','Y','N','N','N','N','Y','Y','N','N','N','N','Process',TO_TIMESTAMP('2008-01-09 23:32:32','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54132 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54133,53326,0,19,53049,'ASP_Level_ID',TO_TIMESTAMP('2008-01-09 23:32:32','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','N','Y','Y','N','N','N','N','ASP_Level_ID',TO_TIMESTAMP('2008-01-09 23:32:32','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54133 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54134,608,0,18,110,53049,'UpdatedBy',TO_TIMESTAMP('2008-01-09 23:32:33','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',22,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','N','Updated By',TO_TIMESTAMP('2008-01-09 23:32:33','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54134 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54135,245,0,16,53049,'Created',TO_TIMESTAMP('2008-01-09 23:32:34','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',7,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','N','Created',TO_TIMESTAMP('2008-01-09 23:32:34','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54135 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54136,246,0,18,110,53049,'CreatedBy',TO_TIMESTAMP('2008-01-09 23:32:35','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',22,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','N','Created By',TO_TIMESTAMP('2008-01-09 23:32:35','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54136 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54137,348,0,20,53049,'IsActive',TO_TIMESTAMP('2008-01-09 23:32:36','YYYY-MM-DD HH24:MI:SS'),100,'Y','The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','N','N','N','N','Y','N','N','N','N','Y','Active',TO_TIMESTAMP('2008-01-09 23:32:36','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54137 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54138,607,0,16,53049,'Updated',TO_TIMESTAMP('2008-01-09 23:32:37','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','N','Updated',TO_TIMESTAMP('2008-01-09 23:32:37','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54138 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54139,53327,0,17,53234,53049,'ASP_Status',TO_TIMESTAMP('2008-01-09 23:32:38','YYYY-MM-DD HH24:MI:SS'),100,'U','D',1,'Y','N','N','N','N','Y','N','N','N','N','Y','ASP_Status',TO_TIMESTAMP('2008-01-09 23:32:38','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54139 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_TAB (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,CommitWarning,Created,CreatedBy,EntityType,HasTree,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,NAME,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53059,53049,53015,NULL,TO_TIMESTAMP('2008-01-09 23:32:45','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','N','Y','N','N','N','N','Process','N',70,2,TO_TIMESTAMP('2008-01-09 23:32:45','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TAB_TRL (AD_LANGUAGE,AD_Tab_ID, CommitWarning,Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TAB t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53059 AND EXISTS (SELECT * FROM AD_TAB_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54130,54261,0,53059,TO_TIMESTAMP('2008-01-09 23:32:46','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',22,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','Client',10,0,TO_TIMESTAMP('2008-01-09 23:32:46','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54261 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54131,54262,0,53059,TO_TIMESTAMP('2008-01-09 23:32:49','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',22,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','Y','Organization',20,0,TO_TIMESTAMP('2008-01-09 23:32:49','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54262 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54133,54263,0,53059,TO_TIMESTAMP('2008-01-09 23:32:51','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','Y','N','N','N','N','ASP_Level_ID',30,0,TO_TIMESTAMP('2008-01-09 23:32:51','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54263 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54132,54264,0,53059,TO_TIMESTAMP('2008-01-09 23:32:51','YYYY-MM-DD HH24:MI:SS'),100,'Process or Report',22,'D','The Process field identifies a unique Process or Report in the system.','Y','Y','Y','N','N','N','N','Process',40,0,TO_TIMESTAMP('2008-01-09 23:32:51','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54264 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54139,54265,0,53059,TO_TIMESTAMP('2008-01-09 23:32:55','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','ASP_Status',50,0,TO_TIMESTAMP('2008-01-09 23:32:55','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54265 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54137,54266,0,53059,TO_TIMESTAMP('2008-01-09 23:32:56','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','Y','Y','N','N','N','N','Active',60,0,TO_TIMESTAMP('2008-01-09 23:32:56','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54266 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_TABLE (AD_Client_ID,AD_Org_ID,AD_Table_ID,AccessLevel,Created,CreatedBy,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,NAME,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53050,'4',TO_TIMESTAMP('2008-01-09 23:32:57','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','Y','N','N','N','ASP Process Parameter','L','ASP_Process_Para',TO_TIMESTAMP('2008-01-09 23:32:57','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE_TRL (AD_LANGUAGE,AD_Table_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Table_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TABLE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53050 AND EXISTS (SELECT * FROM AD_TABLE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Table_ID!=t.AD_Table_ID) -; - -INSERT INTO AD_SEQUENCE (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,NAME,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53067,TO_TIMESTAMP('2008-01-09 23:32:59','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table ASP_Process_Para',1,'Y','N','Y','Y','ASP_Process_Para','N',1000000,TO_TIMESTAMP('2008-01-09 23:32:59','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54140,102,0,19,53050,'AD_Client_ID',TO_TIMESTAMP('2008-01-09 23:32:59','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Client_ID@','Client/Tenant for this installation.','D',22,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','N','Client',TO_TIMESTAMP('2008-01-09 23:32:59','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54140 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54141,113,0,19,53050,104,'AD_Org_ID',TO_TIMESTAMP('2008-01-09 23:33:00','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Org_ID@','Organizational entity within client','D',22,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','N','Organization',TO_TIMESTAMP('2008-01-09 23:33:00','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54141 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54142,117,0,19,53050,163,'AD_Process_ID',TO_TIMESTAMP('2008-01-09 23:33:01','YYYY-MM-DD HH24:MI:SS'),100,'Process or Report','D',22,'The Process field identifies a unique Process or Report in the system.','Y','N','N','N','N','Y','Y','N','N','N','N','Process',TO_TIMESTAMP('2008-01-09 23:33:01','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54142 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54143,118,0,19,53050,186,'AD_Process_Para_ID',TO_TIMESTAMP('2008-01-09 23:33:05','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','N','N','Y','N','N','N','N','Process Parameter',TO_TIMESTAMP('2008-01-09 23:33:05','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54143 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54144,53326,0,19,53050,'ASP_Level_ID',TO_TIMESTAMP('2008-01-09 23:33:06','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','N','Y','Y','N','N','N','N','ASP_Level_ID',TO_TIMESTAMP('2008-01-09 23:33:06','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54144 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54145,608,0,18,110,53050,'UpdatedBy',TO_TIMESTAMP('2008-01-09 23:33:06','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',22,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','N','Updated By',TO_TIMESTAMP('2008-01-09 23:33:06','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54145 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54146,245,0,16,53050,'Created',TO_TIMESTAMP('2008-01-09 23:33:07','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',7,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','N','Created',TO_TIMESTAMP('2008-01-09 23:33:07','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54146 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54147,246,0,18,110,53050,'CreatedBy',TO_TIMESTAMP('2008-01-09 23:33:09','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',22,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','N','Created By',TO_TIMESTAMP('2008-01-09 23:33:09','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54147 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54148,348,0,20,53050,'IsActive',TO_TIMESTAMP('2008-01-09 23:33:10','YYYY-MM-DD HH24:MI:SS'),100,'Y','The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','N','N','N','N','Y','N','N','N','N','Y','Active',TO_TIMESTAMP('2008-01-09 23:33:10','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54148 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54149,607,0,16,53050,'Updated',TO_TIMESTAMP('2008-01-09 23:33:10','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','N','Updated',TO_TIMESTAMP('2008-01-09 23:33:10','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54149 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54150,53327,0,17,53234,53050,'ASP_Status',TO_TIMESTAMP('2008-01-09 23:33:11','YYYY-MM-DD HH24:MI:SS'),100,'U','D',1,'Y','N','N','N','N','Y','N','N','N','N','Y','ASP_Status',TO_TIMESTAMP('2008-01-09 23:33:11','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54150 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_TAB (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,CommitWarning,Created,CreatedBy,EntityType,HasTree,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,NAME,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53060,53050,53015,NULL,TO_TIMESTAMP('2008-01-09 23:33:15','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','N','Y','N','N','N','N','Process Parameter','N',80,3,TO_TIMESTAMP('2008-01-09 23:33:15','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TAB_TRL (AD_LANGUAGE,AD_Tab_ID, CommitWarning,Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TAB t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53060 AND EXISTS (SELECT * FROM AD_TAB_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54140,54267,0,53060,TO_TIMESTAMP('2008-01-09 23:33:16','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',22,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','Client',10,0,TO_TIMESTAMP('2008-01-09 23:33:16','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54267 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54141,54268,0,53060,TO_TIMESTAMP('2008-01-09 23:33:17','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',22,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','Y','Organization',20,0,TO_TIMESTAMP('2008-01-09 23:33:17','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54268 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54144,54269,0,53060,TO_TIMESTAMP('2008-01-09 23:33:17','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','Y','N','N','Y','N','ASP_Level_ID',30,0,TO_TIMESTAMP('2008-01-09 23:33:17','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54269 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54142,54270,0,53060,TO_TIMESTAMP('2008-01-09 23:33:18','YYYY-MM-DD HH24:MI:SS'),100,'Process or Report',22,'D','The Process field identifies a unique Process or Report in the system.','Y','Y','Y','N','N','N','N','Process',40,0,TO_TIMESTAMP('2008-01-09 23:33:18','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54270 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54143,54271,0,53060,TO_TIMESTAMP('2008-01-09 23:33:21','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','Y','N','N','N','N','Process Parameter',50,0,TO_TIMESTAMP('2008-01-09 23:33:21','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54271 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54150,54272,0,53060,TO_TIMESTAMP('2008-01-09 23:33:22','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','ASP_Status',60,0,TO_TIMESTAMP('2008-01-09 23:33:22','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54272 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54148,54273,0,53060,TO_TIMESTAMP('2008-01-09 23:33:22','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','Y','Y','N','N','N','N','Active',70,0,TO_TIMESTAMP('2008-01-09 23:33:22','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54273 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_TABLE (AD_Client_ID,AD_Org_ID,AD_Table_ID,AccessLevel,Created,CreatedBy,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,NAME,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53051,'4',TO_TIMESTAMP('2008-01-09 23:33:23','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','Y','N','N','N','ASP Form','L','ASP_Form',TO_TIMESTAMP('2008-01-09 23:33:23','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE_TRL (AD_LANGUAGE,AD_Table_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Table_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TABLE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53051 AND EXISTS (SELECT * FROM AD_TABLE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Table_ID!=t.AD_Table_ID) -; - -INSERT INTO AD_SEQUENCE (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,NAME,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53068,TO_TIMESTAMP('2008-01-09 23:33:24','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table ASP_Form',1,'Y','N','Y','Y','ASP_Form','N',1000000,TO_TIMESTAMP('2008-01-09 23:33:24','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54151,102,0,19,53051,'AD_Client_ID',TO_TIMESTAMP('2008-01-09 23:33:25','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Client_ID@','Client/Tenant for this installation.','D',22,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','N','Client',TO_TIMESTAMP('2008-01-09 23:33:25','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54151 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54152,1298,0,19,53051,'AD_Form_ID',TO_TIMESTAMP('2008-01-09 23:33:26','YYYY-MM-DD HH24:MI:SS'),100,'Special Form','D',22,'The Special Form field identifies a unique Special Form in the system.','Y','N','N','N','N','Y','Y','N','N','N','N','Special Form',TO_TIMESTAMP('2008-01-09 23:33:26','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54152 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54153,113,0,19,53051,104,'AD_Org_ID',TO_TIMESTAMP('2008-01-09 23:33:26','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Org_ID@','Organizational entity within client','D',22,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','N','Organization',TO_TIMESTAMP('2008-01-09 23:33:26','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54153 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54154,53326,0,19,53051,'ASP_Level_ID',TO_TIMESTAMP('2008-01-09 23:33:28','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','N','Y','Y','N','N','N','N','ASP_Level_ID',TO_TIMESTAMP('2008-01-09 23:33:28','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54154 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54155,608,0,18,110,53051,'UpdatedBy',TO_TIMESTAMP('2008-01-09 23:33:28','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',22,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','N','Updated By',TO_TIMESTAMP('2008-01-09 23:33:28','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54155 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54156,245,0,16,53051,'Created',TO_TIMESTAMP('2008-01-09 23:33:29','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',7,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','N','Created',TO_TIMESTAMP('2008-01-09 23:33:29','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54156 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54157,246,0,18,110,53051,'CreatedBy',TO_TIMESTAMP('2008-01-09 23:33:30','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',22,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','N','Created By',TO_TIMESTAMP('2008-01-09 23:33:30','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54157 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54158,348,0,20,53051,'IsActive',TO_TIMESTAMP('2008-01-09 23:33:31','YYYY-MM-DD HH24:MI:SS'),100,'Y','The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','N','N','N','N','Y','N','N','N','N','Y','Active',TO_TIMESTAMP('2008-01-09 23:33:31','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54158 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54159,607,0,16,53051,'Updated',TO_TIMESTAMP('2008-01-09 23:33:32','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','N','Updated',TO_TIMESTAMP('2008-01-09 23:33:32','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54159 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54160,53327,0,17,53234,53051,'ASP_Status',TO_TIMESTAMP('2008-01-09 23:33:33','YYYY-MM-DD HH24:MI:SS'),100,'U','D',1,'Y','N','N','N','N','Y','N','N','N','N','Y','ASP_Status',TO_TIMESTAMP('2008-01-09 23:33:33','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54160 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_TAB (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,CommitWarning,Created,CreatedBy,EntityType,HasTree,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,NAME,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53061,53051,53015,NULL,TO_TIMESTAMP('2008-01-09 23:33:34','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','N','Y','N','N','N','N','Form','N',90,2,TO_TIMESTAMP('2008-01-09 23:33:34','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TAB_TRL (AD_LANGUAGE,AD_Tab_ID, CommitWarning,Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TAB t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53061 AND EXISTS (SELECT * FROM AD_TAB_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54151,54274,0,53061,TO_TIMESTAMP('2008-01-09 23:33:35','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',22,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','Client',10,0,TO_TIMESTAMP('2008-01-09 23:33:35','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54274 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54153,54275,0,53061,TO_TIMESTAMP('2008-01-09 23:33:36','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',22,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','Y','Organization',20,0,TO_TIMESTAMP('2008-01-09 23:33:36','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54275 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54154,54276,0,53061,TO_TIMESTAMP('2008-01-09 23:33:36','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','Y','N','N','N','N','ASP_Level_ID',30,0,TO_TIMESTAMP('2008-01-09 23:33:36','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54276 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54152,54277,0,53061,TO_TIMESTAMP('2008-01-09 23:33:37','YYYY-MM-DD HH24:MI:SS'),100,'Special Form',22,'D','The Special Form field identifies a unique Special Form in the system.','Y','Y','Y','N','N','N','N','Special Form',40,0,TO_TIMESTAMP('2008-01-09 23:33:37','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54277 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54160,54278,0,53061,TO_TIMESTAMP('2008-01-09 23:33:38','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','ASP_Status',50,0,TO_TIMESTAMP('2008-01-09 23:33:38','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54278 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54158,54279,0,53061,TO_TIMESTAMP('2008-01-09 23:33:40','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','Y','Y','N','N','N','N','Active',60,0,TO_TIMESTAMP('2008-01-09 23:33:40','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54279 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_TABLE (AD_Client_ID,AD_Org_ID,AD_Table_ID,AccessLevel,Created,CreatedBy,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,NAME,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53052,'4',TO_TIMESTAMP('2008-01-09 23:33:44','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','Y','N','N','N','ASP Task','L','ASP_Task',TO_TIMESTAMP('2008-01-09 23:33:44','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE_TRL (AD_LANGUAGE,AD_Table_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Table_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TABLE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53052 AND EXISTS (SELECT * FROM AD_TABLE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Table_ID!=t.AD_Table_ID) -; - -INSERT INTO AD_SEQUENCE (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,NAME,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53069,TO_TIMESTAMP('2008-01-09 23:33:45','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table ASP_Task',1,'Y','N','Y','Y','ASP_Task','N',1000000,TO_TIMESTAMP('2008-01-09 23:33:45','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54161,102,0,19,53052,'AD_Client_ID',TO_TIMESTAMP('2008-01-09 23:33:46','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Client_ID@','Client/Tenant for this installation.','D',22,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','N','Client',TO_TIMESTAMP('2008-01-09 23:33:46','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54161 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54162,113,0,19,53052,104,'AD_Org_ID',TO_TIMESTAMP('2008-01-09 23:33:47','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Org_ID@','Organizational entity within client','D',22,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','N','Organization',TO_TIMESTAMP('2008-01-09 23:33:47','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54162 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54163,128,0,19,53052,'AD_Task_ID',TO_TIMESTAMP('2008-01-09 23:33:49','YYYY-MM-DD HH24:MI:SS'),100,'Operation System Task','D',22,'The Task field identifies a Operation System Task in the system.','Y','N','N','N','N','Y','Y','N','N','N','N','OS Task',TO_TIMESTAMP('2008-01-09 23:33:49','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54163 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54164,53326,0,19,53052,'ASP_Level_ID',TO_TIMESTAMP('2008-01-09 23:33:50','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','N','Y','Y','N','N','N','N','ASP_Level_ID',TO_TIMESTAMP('2008-01-09 23:33:50','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54164 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54165,608,0,18,110,53052,'UpdatedBy',TO_TIMESTAMP('2008-01-09 23:33:51','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',22,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','N','Updated By',TO_TIMESTAMP('2008-01-09 23:33:51','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54165 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54166,245,0,16,53052,'Created',TO_TIMESTAMP('2008-01-09 23:33:52','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',7,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','N','Created',TO_TIMESTAMP('2008-01-09 23:33:52','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54166 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54167,246,0,18,110,53052,'CreatedBy',TO_TIMESTAMP('2008-01-09 23:33:56','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',22,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','N','Created By',TO_TIMESTAMP('2008-01-09 23:33:56','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54167 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54168,348,0,20,53052,'IsActive',TO_TIMESTAMP('2008-01-09 23:34:00','YYYY-MM-DD HH24:MI:SS'),100,'Y','The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','N','N','N','N','Y','N','N','N','N','Y','Active',TO_TIMESTAMP('2008-01-09 23:34:00','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54168 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54169,607,0,16,53052,'Updated',TO_TIMESTAMP('2008-01-09 23:34:01','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','N','Updated',TO_TIMESTAMP('2008-01-09 23:34:01','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54169 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54170,53327,0,17,53234,53052,'ASP_Status',TO_TIMESTAMP('2008-01-09 23:34:05','YYYY-MM-DD HH24:MI:SS'),100,'U','D',1,'Y','N','N','N','N','Y','N','N','N','N','Y','ASP_Status',TO_TIMESTAMP('2008-01-09 23:34:05','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54170 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_TAB (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,CommitWarning,Created,CreatedBy,EntityType,HasTree,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,NAME,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53062,53052,53015,NULL,TO_TIMESTAMP('2008-01-09 23:34:06','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','N','Y','N','N','N','N','Task','N',100,2,TO_TIMESTAMP('2008-01-09 23:34:06','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TAB_TRL (AD_LANGUAGE,AD_Tab_ID, CommitWarning,Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TAB t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53062 AND EXISTS (SELECT * FROM AD_TAB_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54161,54280,0,53062,TO_TIMESTAMP('2008-01-09 23:34:08','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',22,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','Client',10,0,TO_TIMESTAMP('2008-01-09 23:34:08','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54280 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54162,54281,0,53062,TO_TIMESTAMP('2008-01-09 23:34:11','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',22,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','Y','Organization',20,0,TO_TIMESTAMP('2008-01-09 23:34:11','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54281 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54164,54282,0,53062,TO_TIMESTAMP('2008-01-09 23:34:15','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','Y','N','N','N','N','ASP_Level_ID',30,0,TO_TIMESTAMP('2008-01-09 23:34:15','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54282 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54163,54283,0,53062,TO_TIMESTAMP('2008-01-09 23:34:16','YYYY-MM-DD HH24:MI:SS'),100,'Operation System Task',22,'D','The Task field identifies a Operation System Task in the system.','Y','Y','Y','N','N','N','N','OS Task',40,0,TO_TIMESTAMP('2008-01-09 23:34:16','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54283 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54170,54284,0,53062,TO_TIMESTAMP('2008-01-09 23:34:17','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','ASP_Status',50,0,TO_TIMESTAMP('2008-01-09 23:34:17','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54284 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54168,54285,0,53062,TO_TIMESTAMP('2008-01-09 23:34:18','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','Y','Y','N','N','N','N','Active',60,0,TO_TIMESTAMP('2008-01-09 23:34:18','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54285 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_TABLE (AD_Client_ID,AD_Org_ID,AD_Table_ID,AccessLevel,Created,CreatedBy,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,NAME,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53053,'4',TO_TIMESTAMP('2008-01-09 23:34:22','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','Y','N','N','N','ASP Workflow','L','ASP_Workflow',TO_TIMESTAMP('2008-01-09 23:34:22','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE_TRL (AD_LANGUAGE,AD_Table_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Table_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TABLE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53053 AND EXISTS (SELECT * FROM AD_TABLE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Table_ID!=t.AD_Table_ID) -; - -INSERT INTO AD_SEQUENCE (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,NAME,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53070,TO_TIMESTAMP('2008-01-09 23:34:26','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table ASP_Workflow',1,'Y','N','Y','Y','ASP_Workflow','N',1000000,TO_TIMESTAMP('2008-01-09 23:34:26','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54171,102,0,19,53053,'AD_Client_ID',TO_TIMESTAMP('2008-01-09 23:34:27','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Client_ID@','Client/Tenant for this installation.','D',22,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','N','Client',TO_TIMESTAMP('2008-01-09 23:34:27','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54171 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54172,113,0,19,53053,104,'AD_Org_ID',TO_TIMESTAMP('2008-01-09 23:34:28','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Org_ID@','Organizational entity within client','D',22,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','N','Organization',TO_TIMESTAMP('2008-01-09 23:34:28','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54172 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_VAL_RULE (AD_Client_ID,AD_Org_ID,AD_Val_Rule_ID,Code,Created,CreatedBy,EntityType,IsActive,NAME,TYPE,Updated,UpdatedBy) VALUES (0,0,52006,'AD_Workflow.WorkflowType = ''G''',TO_TIMESTAMP('2008-01-09 23:34:28','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','General Workflows','S',TO_TIMESTAMP('2008-01-09 23:34:28','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54173,144,0,19,53053,52006,'AD_Workflow_ID',TO_TIMESTAMP('2008-01-09 23:34:34','YYYY-MM-DD HH24:MI:SS'),100,'Workflow or combination of tasks','D',22,'The Workflow field identifies a unique Workflow in the system.','Y','N','N','N','N','Y','Y','N','N','N','N','Workflow',TO_TIMESTAMP('2008-01-09 23:34:34','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54173 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54174,53326,0,19,53053,'ASP_Level_ID',TO_TIMESTAMP('2008-01-09 23:34:34','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','N','Y','Y','N','N','N','N','ASP_Level_ID',TO_TIMESTAMP('2008-01-09 23:34:34','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54174 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54175,608,0,18,110,53053,'UpdatedBy',TO_TIMESTAMP('2008-01-09 23:34:36','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',22,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','N','Updated By',TO_TIMESTAMP('2008-01-09 23:34:36','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54175 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54176,245,0,16,53053,'Created',TO_TIMESTAMP('2008-01-09 23:34:37','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',7,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','N','Created',TO_TIMESTAMP('2008-01-09 23:34:37','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54176 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54177,246,0,18,110,53053,'CreatedBy',TO_TIMESTAMP('2008-01-09 23:34:38','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',22,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','N','Created By',TO_TIMESTAMP('2008-01-09 23:34:38','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54177 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54178,348,0,20,53053,'IsActive',TO_TIMESTAMP('2008-01-09 23:34:38','YYYY-MM-DD HH24:MI:SS'),100,'Y','The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','N','N','N','N','Y','N','N','N','N','Y','Active',TO_TIMESTAMP('2008-01-09 23:34:38','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54178 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54179,607,0,16,53053,'Updated',TO_TIMESTAMP('2008-01-09 23:34:39','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','N','Updated',TO_TIMESTAMP('2008-01-09 23:34:39','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54179 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54180,53327,0,17,53234,53053,'ASP_Status',TO_TIMESTAMP('2008-01-09 23:34:40','YYYY-MM-DD HH24:MI:SS'),100,'U','D',1,'Y','N','N','N','N','Y','N','N','N','N','Y','ASP_Status',TO_TIMESTAMP('2008-01-09 23:34:40','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54180 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_TAB (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,CommitWarning,Created,CreatedBy,EntityType,HasTree,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,NAME,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53063,53053,53015,NULL,TO_TIMESTAMP('2008-01-09 23:34:41','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','N','Y','N','N','N','N','Workflow','N',110,2,TO_TIMESTAMP('2008-01-09 23:34:41','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TAB_TRL (AD_LANGUAGE,AD_Tab_ID, CommitWarning,Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TAB t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53063 AND EXISTS (SELECT * FROM AD_TAB_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54171,54286,0,53063,TO_TIMESTAMP('2008-01-09 23:34:41','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',22,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','Client',10,0,TO_TIMESTAMP('2008-01-09 23:34:41','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54286 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54172,54287,0,53063,TO_TIMESTAMP('2008-01-09 23:34:43','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',22,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','Y','Organization',20,0,TO_TIMESTAMP('2008-01-09 23:34:43','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54287 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54174,54288,0,53063,TO_TIMESTAMP('2008-01-09 23:34:46','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','Y','N','N','N','N','ASP_Level_ID',30,0,TO_TIMESTAMP('2008-01-09 23:34:46','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54288 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54173,54289,0,53063,TO_TIMESTAMP('2008-01-09 23:34:47','YYYY-MM-DD HH24:MI:SS'),100,'Workflow or combination of tasks',22,'D','The Workflow field identifies a unique Workflow in the system.','Y','Y','Y','N','N','N','N','Workflow',40,0,TO_TIMESTAMP('2008-01-09 23:34:47','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54289 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54180,54290,0,53063,TO_TIMESTAMP('2008-01-09 23:34:48','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','ASP_Status',50,0,TO_TIMESTAMP('2008-01-09 23:34:48','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54290 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54178,54291,0,53063,TO_TIMESTAMP('2008-01-09 23:34:49','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','Y','Y','N','N','N','N','Active',60,0,TO_TIMESTAMP('2008-01-09 23:34:49','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54291 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_TABLE (AD_Client_ID,AD_Org_ID,AD_Table_ID,AccessLevel,Created,CreatedBy,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,NAME,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53054,'4',TO_TIMESTAMP('2008-01-09 23:34:49','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','Y','N','N','N','ASP Module','L','ASP_Module',TO_TIMESTAMP('2008-01-09 23:34:49','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE_TRL (AD_LANGUAGE,AD_Table_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Table_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TABLE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53054 AND EXISTS (SELECT * FROM AD_TABLE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Table_ID!=t.AD_Table_ID) -; - -INSERT INTO AD_SEQUENCE (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,NAME,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53071,TO_TIMESTAMP('2008-01-09 23:34:56','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table ASP_Module',1,'Y','N','Y','Y','ASP_Module','N',1000000,TO_TIMESTAMP('2008-01-09 23:34:56','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54181,469,0,10,53054,'Name',TO_TIMESTAMP('2008-01-09 23:34:58','YYYY-MM-DD HH24:MI:SS'),100,'Alphanumeric identifier of the entity','D',60,'The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.','Y','N','N','Y','N','Y','N','N','N','N','Y','Name',1,TO_TIMESTAMP('2008-01-09 23:34:58','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54181 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54182,113,0,19,53054,104,'AD_Org_ID',TO_TIMESTAMP('2008-01-09 23:34:59','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Org_ID@','Organizational entity within client','D',22,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','N','Organization',TO_TIMESTAMP('2008-01-09 23:34:59','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54182 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53329,0,'ASP_Module_ID',TO_TIMESTAMP('2008-01-09 23:34:59','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','ASP_Module_ID','ASP_Module_ID',TO_TIMESTAMP('2008-01-09 23:34:59','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53329 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54183,53329,0,13,53054,'ASP_Module_ID',TO_TIMESTAMP('2008-01-09 23:34:59','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','Y','Y','N','N','N','N','N','ASP_Module_ID',TO_TIMESTAMP('2008-01-09 23:34:59','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54183 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54184,245,0,16,53054,'Created',TO_TIMESTAMP('2008-01-09 23:35:01','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',7,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','N','Created',TO_TIMESTAMP('2008-01-09 23:35:01','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54184 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54185,246,0,18,110,53054,'CreatedBy',TO_TIMESTAMP('2008-01-09 23:35:02','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',22,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','N','Created By',TO_TIMESTAMP('2008-01-09 23:35:02','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54185 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54186,620,0,10,53054,'Value',TO_TIMESTAMP('2008-01-09 23:35:05','YYYY-MM-DD HH24:MI:SS'),100,'Search key for the record in the format required - must be unique','D',40,'A search key allows you a fast method of finding a particular record. -IF you leave THE search KEY empty, THE SYSTEM automatically creates a NUMERIC NUMBER. THE document SEQUENCE used FOR this fallback NUMBER IS DEFINED IN THE "Maintain Sequence" window WITH THE NAME "DocumentNo_", WHERE TableName IS THE actual NAME OF THE TABLE (e.g. C_ORDER).','Y','N','N','N','N','Y','N','N','N','N','Y','Search KEY',TO_TIMESTAMP('2008-01-09 23:35:05','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54186 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54187,326,0,14,53054,'Help',TO_TIMESTAMP('2008-01-09 23:35:06','YYYY-MM-DD HH24:MI:SS'),100,'Comment or Hint','D',2000,'The Help field contains a hint, comment or help about the use of this item.','Y','N','N','N','N','N','N','N','N','N','Y','Comment/Help',TO_TIMESTAMP('2008-01-09 23:35:06','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54187 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54188,348,0,20,53054,'IsActive',TO_TIMESTAMP('2008-01-09 23:35:07','YYYY-MM-DD HH24:MI:SS'),100,'Y','The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','N','N','N','N','Y','N','N','N','N','Y','Active',TO_TIMESTAMP('2008-01-09 23:35:07','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54188 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54189,607,0,16,53054,'Updated',TO_TIMESTAMP('2008-01-09 23:35:08','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','N','Updated',TO_TIMESTAMP('2008-01-09 23:35:08','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54189 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54190,608,0,18,110,53054,'UpdatedBy',TO_TIMESTAMP('2008-01-09 23:35:08','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',22,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','N','Updated By',TO_TIMESTAMP('2008-01-09 23:35:08','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54190 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54191,102,0,19,53054,'AD_Client_ID',TO_TIMESTAMP('2008-01-09 23:35:09','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Client_ID@','Client/Tenant for this installation.','D',22,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','N','Client',TO_TIMESTAMP('2008-01-09 23:35:09','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54191 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54192,275,0,10,53054,'Description',TO_TIMESTAMP('2008-01-09 23:35:13','YYYY-MM-DD HH24:MI:SS'),100,'Optional short description of the record','D',255,'A description is limited to 255 characters.','Y','N','N','N','N','N','N','N','N','N','Y','Description',TO_TIMESTAMP('2008-01-09 23:35:13','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54192 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_TAB (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,CommitWarning,Created,CreatedBy,EntityType,HasTree,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,NAME,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53064,53054,53015,NULL,TO_TIMESTAMP('2008-01-09 23:35:16','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','N','Y','N','Y','N','N','Module','N',10,0,TO_TIMESTAMP('2008-01-09 23:35:16','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TAB_TRL (AD_LANGUAGE,AD_Tab_ID, CommitWarning,Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TAB t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53064 AND EXISTS (SELECT * FROM AD_TAB_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54183,54292,0,53064,TO_TIMESTAMP('2008-01-09 23:35:16','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','N','N','N','N','N','ASP_Module_ID',0,0,TO_TIMESTAMP('2008-01-09 23:35:16','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54292 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54191,54293,0,53064,TO_TIMESTAMP('2008-01-09 23:35:17','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',20,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','Client',10,0,TO_TIMESTAMP('2008-01-09 23:35:17','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54293 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54182,54294,0,53064,TO_TIMESTAMP('2008-01-09 23:35:21','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',20,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','Y','Organization',20,0,TO_TIMESTAMP('2008-01-09 23:35:21','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54294 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54186,54295,0,53064,TO_TIMESTAMP('2008-01-09 23:35:22','YYYY-MM-DD HH24:MI:SS'),100,'Search key for the record in the format required - must be unique',20,'D','A search key allows you a fast method of finding a particular record. -IF you leave THE search KEY empty, THE SYSTEM automatically creates a NUMERIC NUMBER. THE document SEQUENCE used FOR this fallback NUMBER IS DEFINED IN THE "Maintain Sequence" window WITH THE NAME "DocumentNo_", WHERE TableName IS THE actual NAME OF THE TABLE (e.g. C_ORDER).','Y','Y','Y','N','N','N','N','Search KEY',30,0,TO_TIMESTAMP('2008-01-09 23:35:22','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54295 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54181,54296,0,53064,TO_TIMESTAMP('2008-01-09 23:35:23','YYYY-MM-DD HH24:MI:SS'),100,'Alphanumeric identifier of the entity',40,'D','The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.','Y','Y','Y','N','N','N','N','Name',40,0,TO_TIMESTAMP('2008-01-09 23:35:23','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54296 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54192,54297,0,53064,TO_TIMESTAMP('2008-01-09 23:35:24','YYYY-MM-DD HH24:MI:SS'),100,'Optional short description of the record',40,'D','A description is limited to 255 characters.','Y','Y','Y','N','N','N','N','Description',50,0,TO_TIMESTAMP('2008-01-09 23:35:24','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54297 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54187,54298,0,53064,TO_TIMESTAMP('2008-01-09 23:35:25','YYYY-MM-DD HH24:MI:SS'),100,'Comment or Hint',40,'D','The Help field contains a hint, comment or help about the use of this item.','Y','Y','Y','N','N','N','N','Comment/Help',60,0,TO_TIMESTAMP('2008-01-09 23:35:25','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54298 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54188,54299,0,53064,TO_TIMESTAMP('2008-01-09 23:35:25','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','Y','Y','N','N','N','N','Active',70,0,TO_TIMESTAMP('2008-01-09 23:35:25','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54299 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_TABLE (AD_Client_ID,AD_Org_ID,AD_Table_ID,AccessLevel,Created,CreatedBy,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,NAME,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53055,'4',TO_TIMESTAMP('2008-01-09 23:35:27','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','Y','N','N','N','ASP Level','L','ASP_Level',TO_TIMESTAMP('2008-01-09 23:35:27','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE_TRL (AD_LANGUAGE,AD_Table_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Table_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TABLE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53055 AND EXISTS (SELECT * FROM AD_TABLE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Table_ID!=t.AD_Table_ID) -; - -INSERT INTO AD_SEQUENCE (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,NAME,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53072,TO_TIMESTAMP('2008-01-09 23:35:28','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table ASP_Level',1,'Y','N','Y','Y','ASP_Level','N',1000000,TO_TIMESTAMP('2008-01-09 23:35:28','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_PROCESS (AD_Client_ID,AD_Org_ID,AD_Process_ID,AccessLevel,Classname,Created,CreatedBy,EntityType,IsActive,IsBetaFunctionality,IsDirectPrint,IsReport,NAME,ShowHelp,Statistic_Count,Statistic_Seconds,Updated,UpdatedBy,VALUE,WorkflowValue) VALUES (0,0,53067,'4','org.adempiere.process.ASPGenerateLevel',TO_TIMESTAMP('2008-01-09 23:35:29','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','N','N','N','ASP Generate Level','Y',0,0,TO_TIMESTAMP('2008-01-09 23:35:29','YYYY-MM-DD HH24:MI:SS'),100,'ASP Generate Level',NULL) -; - -INSERT INTO AD_PROCESS_TRL (AD_LANGUAGE,AD_Process_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_ID=53067 AND EXISTS (SELECT * FROM AD_PROCESS_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_ID!=t.AD_Process_ID) -; - -INSERT INTO AD_PROCESS_PARA (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,AD_Reference_Value_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,NAME,SeqNo,Updated,UpdatedBy) VALUES (0,53327,0,53067,53126,17,53234,'ASP_Status',TO_TIMESTAMP('2008-01-09 23:35:33','YYYY-MM-DD HH24:MI:SS'),100,'U','D',0,'Y','Y','Y','N','ASP Status',10,TO_TIMESTAMP('2008-01-09 23:35:33','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_PROCESS_PARA_TRL (AD_LANGUAGE,AD_Process_Para_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_Para_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS_PARA t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53126 AND EXISTS (SELECT * FROM AD_PROCESS_PARA_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_PROCESS_PARA (AD_Client_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,NAME,SeqNo,Updated,UpdatedBy) VALUES (0,0,53067,53127,20,'IsGenerateFields',TO_TIMESTAMP('2008-01-09 23:35:35','YYYY-MM-DD HH24:MI:SS'),100,'N','D',0,'Y','Y','Y','N','Generate Fields',30,TO_TIMESTAMP('2008-01-09 23:35:35','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_PROCESS_PARA_TRL (AD_LANGUAGE,AD_Process_Para_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Process_Para_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_PROCESS_PARA t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53127 AND EXISTS (SELECT * FROM AD_PROCESS_PARA_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54193,524,0,53067,28,53055,'Processing',TO_TIMESTAMP('2008-01-09 23:35:36','YYYY-MM-DD HH24:MI:SS'),100,'D',1,'Y','N','N','N','N','N','N','N','N','N','Y','Process Now',TO_TIMESTAMP('2008-01-09 23:35:36','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54193 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,SeqNo,Updated,UpdatedBy,VERSION) VALUES (0,54194,469,0,10,53055,'Name',TO_TIMESTAMP('2008-01-09 23:35:37','YYYY-MM-DD HH24:MI:SS'),100,'Alphanumeric identifier of the entity','D',60,'The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.','Y','N','N','Y','N','Y','N','N','N','N','Y','Name',1,TO_TIMESTAMP('2008-01-09 23:35:37','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54194 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54195,53326,0,13,53055,'ASP_Level_ID',TO_TIMESTAMP('2008-01-09 23:35:38','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','Y','Y','N','N','N','N','N','ASP_Level_ID',TO_TIMESTAMP('2008-01-09 23:35:38','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54195 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54196,53329,0,19,53055,'ASP_Module_ID',TO_TIMESTAMP('2008-01-09 23:35:39','YYYY-MM-DD HH24:MI:SS'),100,'D',1,'Y','N','N','N','N','Y','Y','N','N','N','N','ASP_Module_ID',TO_TIMESTAMP('2008-01-09 23:35:39','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54196 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54197,245,0,16,53055,'Created',TO_TIMESTAMP('2008-01-09 23:35:43','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',7,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','N','Created',TO_TIMESTAMP('2008-01-09 23:35:43','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54197 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54198,246,0,18,110,53055,'CreatedBy',TO_TIMESTAMP('2008-01-09 23:35:47','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',22,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','N','Created By',TO_TIMESTAMP('2008-01-09 23:35:47','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54198 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54199,620,0,10,53055,'Value',TO_TIMESTAMP('2008-01-09 23:35:48','YYYY-MM-DD HH24:MI:SS'),100,'Search key for the record in the format required - must be unique','D',40,'A search key allows you a fast method of finding a particular record. -IF you leave THE search KEY empty, THE SYSTEM automatically creates a NUMERIC NUMBER. THE document SEQUENCE used FOR this fallback NUMBER IS DEFINED IN THE "Maintain Sequence" window WITH THE NAME "DocumentNo_", WHERE TableName IS THE actual NAME OF THE TABLE (e.g. C_ORDER).','Y','N','N','N','N','Y','N','N','N','N','Y','Search KEY',TO_TIMESTAMP('2008-01-09 23:35:48','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54199 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54200,326,0,14,53055,'Help',TO_TIMESTAMP('2008-01-09 23:35:49','YYYY-MM-DD HH24:MI:SS'),100,'Comment or Hint','D',2000,'The Help field contains a hint, comment or help about the use of this item.','Y','N','N','N','N','N','N','N','N','N','Y','Comment/Help',TO_TIMESTAMP('2008-01-09 23:35:49','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54200 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54201,348,0,20,53055,'IsActive',TO_TIMESTAMP('2008-01-09 23:35:53','YYYY-MM-DD HH24:MI:SS'),100,'Y','The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','N','N','N','N','Y','N','N','N','N','Y','Active',TO_TIMESTAMP('2008-01-09 23:35:53','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54201 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54202,607,0,16,53055,'Updated',TO_TIMESTAMP('2008-01-09 23:35:54','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','N','Updated',TO_TIMESTAMP('2008-01-09 23:35:54','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54202 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54203,608,0,18,110,53055,'UpdatedBy',TO_TIMESTAMP('2008-01-09 23:35:57','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',22,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','N','Updated By',TO_TIMESTAMP('2008-01-09 23:35:57','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54203 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54204,113,0,19,53055,104,'AD_Org_ID',TO_TIMESTAMP('2008-01-09 23:35:58','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Org_ID@','Organizational entity within client','D',22,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','N','Organization',TO_TIMESTAMP('2008-01-09 23:35:58','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54204 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54205,102,0,19,53055,'AD_Client_ID',TO_TIMESTAMP('2008-01-09 23:35:59','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Client_ID@','Client/Tenant for this installation.','D',22,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','N','Client',TO_TIMESTAMP('2008-01-09 23:35:59','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54205 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54206,275,0,10,53055,'Description',TO_TIMESTAMP('2008-01-09 23:36:00','YYYY-MM-DD HH24:MI:SS'),100,'Optional short description of the record','D',255,'A description is limited to 255 characters.','Y','N','N','N','N','N','N','N','N','N','Y','Description',TO_TIMESTAMP('2008-01-09 23:36:00','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54206 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_TAB (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,CommitWarning,Created,CreatedBy,EntityType,HasTree,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,NAME,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53065,53055,53015,NULL,TO_TIMESTAMP('2008-01-09 23:36:01','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','N','Y','N','Y','N','N','Level','N',20,1,TO_TIMESTAMP('2008-01-09 23:36:01','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TAB_TRL (AD_LANGUAGE,AD_Tab_ID, CommitWarning,Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TAB t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53065 AND EXISTS (SELECT * FROM AD_TAB_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54195,54300,0,53065,TO_TIMESTAMP('2008-01-09 23:36:02','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','N','N','N','N','N','ASP_Level_ID',0,0,TO_TIMESTAMP('2008-01-09 23:36:02','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54300 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54205,54301,0,53065,TO_TIMESTAMP('2008-01-09 23:36:03','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',20,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','Client',10,0,TO_TIMESTAMP('2008-01-09 23:36:03','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54301 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54204,54302,0,53065,TO_TIMESTAMP('2008-01-09 23:36:04','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',20,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','Y','Organization',20,0,TO_TIMESTAMP('2008-01-09 23:36:04','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54302 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54196,54303,0,53065,TO_TIMESTAMP('2008-01-09 23:36:05','YYYY-MM-DD HH24:MI:SS'),100,20,'D','Y','Y','Y','N','N','N','N','ASP_Module_ID',30,0,TO_TIMESTAMP('2008-01-09 23:36:05','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54303 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54199,54304,0,53065,TO_TIMESTAMP('2008-01-09 23:36:06','YYYY-MM-DD HH24:MI:SS'),100,'Search key for the record in the format required - must be unique',40,'D','A search key allows you a fast method of finding a particular record. -IF you leave THE search KEY empty, THE SYSTEM automatically creates a NUMERIC NUMBER. THE document SEQUENCE used FOR this fallback NUMBER IS DEFINED IN THE "Maintain Sequence" window WITH THE NAME "DocumentNo_", WHERE TableName IS THE actual NAME OF THE TABLE (e.g. C_ORDER).','Y','Y','Y','N','N','N','N','Search KEY',40,0,TO_TIMESTAMP('2008-01-09 23:36:06','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54304 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54194,54305,0,53065,TO_TIMESTAMP('2008-01-09 23:36:07','YYYY-MM-DD HH24:MI:SS'),100,'Alphanumeric identifier of the entity',40,'D','The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.','Y','Y','Y','N','N','N','N','Name',50,0,TO_TIMESTAMP('2008-01-09 23:36:07','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54305 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54206,54306,0,53065,TO_TIMESTAMP('2008-01-09 23:36:11','YYYY-MM-DD HH24:MI:SS'),100,'Optional short description of the record',40,'D','A description is limited to 255 characters.','Y','Y','Y','N','N','N','N','Description',60,0,TO_TIMESTAMP('2008-01-09 23:36:11','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54306 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54200,54307,0,53065,TO_TIMESTAMP('2008-01-09 23:36:11','YYYY-MM-DD HH24:MI:SS'),100,'Comment or Hint',40,'D','The Help field contains a hint, comment or help about the use of this item.','Y','Y','Y','N','N','N','N','Comment/Help',70,0,TO_TIMESTAMP('2008-01-09 23:36:11','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54307 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54193,54308,0,53065,TO_TIMESTAMP('2008-01-09 23:36:12','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','Process Now',80,0,TO_TIMESTAMP('2008-01-09 23:36:12','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54308 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54201,54309,0,53065,TO_TIMESTAMP('2008-01-09 23:36:13','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','Y','Y','N','N','N','N','Active',90,0,TO_TIMESTAMP('2008-01-09 23:36:13','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54309 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_WINDOW (AD_Client_ID,AD_Org_ID,AD_Window_ID,Created,CreatedBy,EntityType,IsActive,IsBetaFunctionality,IsDefault,IsSOTrx,NAME,Processing,Updated,UpdatedBy,WindowType) VALUES (0,0,53016,TO_TIMESTAMP('2008-01-09 23:36:14','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Y','N','Y','ASP Subscribed Modules','N',TO_TIMESTAMP('2008-01-09 23:36:14','YYYY-MM-DD HH24:MI:SS'),100,'M') -; - -INSERT INTO AD_WINDOW_TRL (AD_LANGUAGE,AD_Window_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Window_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_WINDOW t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Window_ID=53016 AND EXISTS (SELECT * FROM AD_WINDOW_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Window_ID!=t.AD_Window_ID) -; - -INSERT INTO AD_WINDOW_ACCESS (AD_Client_ID,AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,0,53016,TO_TIMESTAMP('2008-01-09 23:36:15','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-01-09 23:36:15','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_WINDOW_ACCESS (AD_Client_ID,AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,102,53016,TO_TIMESTAMP('2008-01-09 23:36:15','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-01-09 23:36:15','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_WINDOW_ACCESS (AD_Client_ID,AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,103,53016,TO_TIMESTAMP('2008-01-09 23:36:15','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-01-09 23:36:15','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_WINDOW_ACCESS (AD_Client_ID,AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,50001,53016,TO_TIMESTAMP('2008-01-09 23:36:15','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-01-09 23:36:15','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE (AD_Client_ID,AD_Org_ID,AD_Table_ID,AccessLevel,Created,CreatedBy,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,NAME,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53056,'2',TO_TIMESTAMP('2008-01-09 23:36:15','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','Y','N','N','N','ASP Client Level','L','ASP_ClientLevel',TO_TIMESTAMP('2008-01-09 23:36:15','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE_TRL (AD_LANGUAGE,AD_Table_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Table_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TABLE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53056 AND EXISTS (SELECT * FROM AD_TABLE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Table_ID!=t.AD_Table_ID) -; - -INSERT INTO AD_SEQUENCE (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,NAME,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53073,TO_TIMESTAMP('2008-01-09 23:36:16','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table ASP_ClientLevel',1,'Y','N','Y','Y','ASP_ClientLevel','N',1000000,TO_TIMESTAMP('2008-01-09 23:36:16','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54207,102,0,19,53056,'AD_Client_ID',TO_TIMESTAMP('2008-01-09 23:36:20','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Client_ID@','Client/Tenant for this installation.','D',22,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','N','Client',TO_TIMESTAMP('2008-01-09 23:36:20','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54207 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54208,113,0,19,53056,104,'AD_Org_ID',TO_TIMESTAMP('2008-01-09 23:36:20','YYYY-MM-DD HH24:MI:SS'),100,'0','Organizational entity within client','D',22,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','N','Organization',TO_TIMESTAMP('2008-01-09 23:36:20','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54208 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53330,0,'ASP_ClientLevel_ID',TO_TIMESTAMP('2008-01-09 23:36:22','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','ASP_ClientLevel_ID','ASP_ClientLevel_ID',TO_TIMESTAMP('2008-01-09 23:36:22','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53330 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54209,53330,0,13,53056,'ASP_ClientLevel_ID',TO_TIMESTAMP('2008-01-09 23:36:22','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','Y','Y','N','N','N','N','N','ASP_ClientLevel_ID',TO_TIMESTAMP('2008-01-09 23:36:22','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54209 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_VAL_RULE (AD_Client_ID,AD_Org_ID,AD_Val_Rule_ID,Code,Created,CreatedBy,EntityType,IsActive,NAME,TYPE,Updated,UpdatedBy) VALUES (0,0,52007,'ASP_Module_ID=@ASP_Module_ID@',TO_TIMESTAMP('2008-01-09 23:36:26','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','ASP_SameModule','S',TO_TIMESTAMP('2008-01-09 23:36:26','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54210,53326,0,19,53056,52007,'ASP_Level_ID',TO_TIMESTAMP('2008-01-09 23:36:27','YYYY-MM-DD HH24:MI:SS'),100,'D',10,'Y','N','N','N','N','Y','N','N','N','N','Y','ASP_Level_ID',TO_TIMESTAMP('2008-01-09 23:36:27','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54210 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54211,53329,0,19,53056,'ASP_Module_ID',TO_TIMESTAMP('2008-01-09 23:36:28','YYYY-MM-DD HH24:MI:SS'),100,'D',10,'Y','N','N','N','N','Y','N','N','N','N','Y','ASP_Module_ID',TO_TIMESTAMP('2008-01-09 23:36:28','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54211 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54212,608,0,18,110,53056,'UpdatedBy',TO_TIMESTAMP('2008-01-09 23:36:29','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',22,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','N','Updated By',TO_TIMESTAMP('2008-01-09 23:36:29','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54212 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54213,246,0,18,110,53056,'CreatedBy',TO_TIMESTAMP('2008-01-09 23:36:30','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',22,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','N','Created By',TO_TIMESTAMP('2008-01-09 23:36:30','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54213 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54214,326,0,14,53056,'Help',TO_TIMESTAMP('2008-01-09 23:36:31','YYYY-MM-DD HH24:MI:SS'),100,'Comment or Hint','D',2000,'The Help field contains a hint, comment or help about the use of this item.','Y','N','N','N','N','N','N','N','N','N','Y','Comment/Help',TO_TIMESTAMP('2008-01-09 23:36:31','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54214 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54215,348,0,20,53056,'IsActive',TO_TIMESTAMP('2008-01-09 23:36:32','YYYY-MM-DD HH24:MI:SS'),100,'Y','The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','N','N','N','N','Y','N','N','N','N','Y','Active',TO_TIMESTAMP('2008-01-09 23:36:32','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54215 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54216,607,0,16,53056,'Updated',TO_TIMESTAMP('2008-01-09 23:36:33','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','N','Updated',TO_TIMESTAMP('2008-01-09 23:36:33','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54216 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54217,245,0,16,53056,'Created',TO_TIMESTAMP('2008-01-09 23:36:33','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',7,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','N','Created',TO_TIMESTAMP('2008-01-09 23:36:33','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54217 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_TAB (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,CommitWarning,Created,CreatedBy,EntityType,HasTree,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,NAME,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53066,53056,53016,NULL,TO_TIMESTAMP('2008-01-09 23:36:37','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','N','Y','N','Y','N','N','Client Level','N',10,0,TO_TIMESTAMP('2008-01-09 23:36:37','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TAB_TRL (AD_LANGUAGE,AD_Tab_ID, CommitWarning,Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TAB t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53066 AND EXISTS (SELECT * FROM AD_TAB_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54209,54310,0,53066,TO_TIMESTAMP('2008-01-09 23:36:39','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','N','N','N','N','N','ASP_ClientLevel_ID',0,0,TO_TIMESTAMP('2008-01-09 23:36:39','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54310 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54207,54311,0,53066,TO_TIMESTAMP('2008-01-09 23:36:39','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',20,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','Client',10,0,TO_TIMESTAMP('2008-01-09 23:36:39','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54311 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54208,54312,0,53066,TO_TIMESTAMP('2008-01-09 23:36:40','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',20,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','Y','Organization',20,0,TO_TIMESTAMP('2008-01-09 23:36:40','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54312 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54211,54313,0,53066,TO_TIMESTAMP('2008-01-09 23:36:42','YYYY-MM-DD HH24:MI:SS'),100,20,'D','Y','Y','Y','N','N','N','N','ASP_Module_ID',30,0,TO_TIMESTAMP('2008-01-09 23:36:42','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54313 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54210,54314,0,53066,TO_TIMESTAMP('2008-01-09 23:36:43','YYYY-MM-DD HH24:MI:SS'),100,20,'D','Y','Y','Y','N','N','N','N','ASP_Level_ID',40,0,TO_TIMESTAMP('2008-01-09 23:36:43','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54314 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54214,54315,0,53066,TO_TIMESTAMP('2008-01-09 23:36:43','YYYY-MM-DD HH24:MI:SS'),100,'Comment or Hint',40,'D','The Help field contains a hint, comment or help about the use of this item.','Y','Y','Y','N','N','N','N','Comment/Help',50,0,TO_TIMESTAMP('2008-01-09 23:36:43','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54315 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54215,54316,0,53066,TO_TIMESTAMP('2008-01-09 23:36:44','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','Y','Y','N','N','N','N','Active',60,0,TO_TIMESTAMP('2008-01-09 23:36:44','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54316 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_TABLE (AD_Client_ID,AD_Org_ID,AD_Table_ID,AccessLevel,Created,CreatedBy,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,NAME,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53057,'2',TO_TIMESTAMP('2008-01-09 23:36:45','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','Y','N','N','N','ASP Client Exception','L','ASP_ClientException',TO_TIMESTAMP('2008-01-09 23:36:45','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TABLE_TRL (AD_LANGUAGE,AD_Table_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Table_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TABLE t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53057 AND EXISTS (SELECT * FROM AD_TABLE_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Table_ID!=t.AD_Table_ID) -; - -INSERT INTO AD_SEQUENCE (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,NAME,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53074,TO_TIMESTAMP('2008-01-09 23:36:46','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table ASP_ClientException',1,'Y','N','Y','Y','ASP_ClientException','N',1000000,TO_TIMESTAMP('2008-01-09 23:36:46','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,ReadOnlyLogic,Updated,UpdatedBy,VERSION) VALUES (0,54218,144,0,19,53057,52006,'AD_Workflow_ID',TO_TIMESTAMP('2008-01-09 23:36:51','YYYY-MM-DD HH24:MI:SS'),100,'Workflow or combination of tasks','D',22,'The Workflow field identifies a unique Workflow in the system.','Y','N','N','N','N','N','N','N','N','N','Y','Workflow','@AD_Window_ID@>0 | @AD_Process_ID@>0 | @AD_Form_ID@>0 | @AD_Task_ID@>0',TO_TIMESTAMP('2008-01-09 23:36:51','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54218 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,ReadOnlyLogic,Updated,UpdatedBy,VERSION) VALUES (0,54219,1298,0,19,53057,'AD_Form_ID',TO_TIMESTAMP('2008-01-09 23:36:55','YYYY-MM-DD HH24:MI:SS'),100,'Special Form','D',22,'The Special Form field identifies a unique Special Form in the system.','Y','N','N','N','N','N','N','N','N','N','Y','Special Form','@AD_Process_ID@>0 | @AD_Window_ID@>0 | @AD_Task_ID@>0 | @AD_Workflow_ID@>0',TO_TIMESTAMP('2008-01-09 23:36:55','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54219 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,ReadOnlyLogic,Updated,UpdatedBy,VERSION) VALUES (0,54220,142,0,19,53057,140,'AD_WF_Node_ID',TO_TIMESTAMP('2008-01-09 23:36:56','YYYY-MM-DD HH24:MI:SS'),100,'Workflow Node (activity), step or process','D',22,'The Workflow Node indicates a unique step or process in a Workflow.','Y','N','N','N','N','N','N','N','N','N','Y','Node','@AD_Window_ID@>0 | @AD_Process_ID@>0 | @AD_Form_ID@>0 | @AD_Task_ID@>0',TO_TIMESTAMP('2008-01-09 23:36:56','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54220 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,ReadOnlyLogic,Updated,UpdatedBy,VERSION) VALUES (0,54221,128,0,19,53057,'AD_Task_ID',TO_TIMESTAMP('2008-01-09 23:36:58','YYYY-MM-DD HH24:MI:SS'),100,'Operation System Task','D',22,'The Task field identifies a Operation System Task in the system.','Y','N','N','N','N','N','N','N','N','N','Y','OS Task','@AD_Process_ID@>0 | @AD_Form_ID@>0 | @AD_Window_ID@>0 | @AD_Workflow_ID@>0',TO_TIMESTAMP('2008-01-09 23:36:58','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54221 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54222,53327,0,17,53234,53057,'ASP_Status',TO_TIMESTAMP('2008-01-09 23:36:58','YYYY-MM-DD HH24:MI:SS'),100,'U','D',1,'Y','N','N','N','N','Y','N','N','N','N','Y','ASP_Status',TO_TIMESTAMP('2008-01-09 23:36:58','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54222 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,ReadOnlyLogic,Updated,UpdatedBy,VERSION) VALUES (0,54223,117,0,19,53057,'AD_Process_ID',TO_TIMESTAMP('2008-01-09 23:36:59','YYYY-MM-DD HH24:MI:SS'),100,'Process or Report','D',22,'The Process field identifies a unique Process or Report in the system.','Y','N','N','N','N','N','N','N','N','N','Y','Process','@AD_Window_ID@>0 | @AD_Form_ID@>0 | @AD_Task_ID@>0 | @AD_Workflow_ID@>0',TO_TIMESTAMP('2008-01-09 23:36:59','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54223 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_ELEMENT (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,NAME,PrintName,Updated,UpdatedBy) VALUES (0,53331,0,'ASP_ClientException_ID',TO_TIMESTAMP('2008-01-09 23:37:00','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','ASP_ClientException_ID','ASP_ClientException_ID',TO_TIMESTAMP('2008-01-09 23:37:00','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, Description,Help,NAME,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.Description,t.Help,t.NAME,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53331 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54224,53331,0,13,53057,'ASP_ClientException_ID',TO_TIMESTAMP('2008-01-09 23:37:00','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','Y','Y','N','N','N','N','N','ASP_ClientException_ID',TO_TIMESTAMP('2008-01-09 23:37:00','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54224 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54225,245,0,16,53057,'Created',TO_TIMESTAMP('2008-01-09 23:37:02','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',7,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','N','Created',TO_TIMESTAMP('2008-01-09 23:37:02','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54225 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54226,246,0,18,110,53057,'CreatedBy',TO_TIMESTAMP('2008-01-09 23:37:02','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',22,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','N','Created By',TO_TIMESTAMP('2008-01-09 23:37:02','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54226 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54227,348,0,20,53057,'IsActive',TO_TIMESTAMP('2008-01-09 23:37:04','YYYY-MM-DD HH24:MI:SS'),100,'Y','The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','N','N','N','N','Y','N','N','N','N','Y','Active',TO_TIMESTAMP('2008-01-09 23:37:04','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54227 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54228,607,0,16,53057,'Updated',TO_TIMESTAMP('2008-01-09 23:37:08','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','N','Updated',TO_TIMESTAMP('2008-01-09 23:37:08','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54228 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,ReadOnlyLogic,Updated,UpdatedBy,VERSION) VALUES (0,54229,143,0,30,53057,'AD_Window_ID',TO_TIMESTAMP('2008-01-09 23:37:09','YYYY-MM-DD HH24:MI:SS'),100,'Data entry or display window','D',10,'The Window field identifies a unique Window in the system.','Y','N','N','N','N','N','N','N','N','N','Y','Window','@AD_Workflow_ID@>0 | @AD_Process_ID@>0 | @AD_Form_ID@>0 | @AD_Task_ID@>0',TO_TIMESTAMP('2008-01-09 23:37:09','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54229 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,ReadOnlyLogic,Updated,UpdatedBy,VERSION) VALUES (0,54230,125,0,30,53057,163,'AD_Tab_ID',TO_TIMESTAMP('2008-01-09 23:37:10','YYYY-MM-DD HH24:MI:SS'),100,'Tab within a Window','D',10,'The Tab indicates a tab that displays within a window.','Y','N','N','N','N','N','N','N','N','N','Y','Tab','@AD_Process_ID@>0 | @AD_Form_ID@>0 | @AD_Task_ID@>0 | @AD_Workflow_ID@>0',TO_TIMESTAMP('2008-01-09 23:37:10','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54230 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,ReadOnlyLogic,Updated,UpdatedBy,VERSION) VALUES (0,54231,118,0,30,53057,'AD_Process_Para_ID',TO_TIMESTAMP('2008-01-09 23:37:12','YYYY-MM-DD HH24:MI:SS'),100,'D',10,'Y','N','N','N','N','N','N','N','N','N','Y','Process Parameter','@AD_Window_ID@>0 | @AD_Form_ID@>0 | @AD_Task_ID@>0 | @AD_Workflow_ID@>0',TO_TIMESTAMP('2008-01-09 23:37:12','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54231 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54232,113,0,19,53057,104,'AD_Org_ID',TO_TIMESTAMP('2008-01-09 23:37:13','YYYY-MM-DD HH24:MI:SS'),100,'0','Organizational entity within client','D',22,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','N','Organization',TO_TIMESTAMP('2008-01-09 23:37:13','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54232 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54233,608,0,18,110,53057,'UpdatedBy',TO_TIMESTAMP('2008-01-09 23:37:14','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',22,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','N','Updated By',TO_TIMESTAMP('2008-01-09 23:37:14','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54233 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,Updated,UpdatedBy,VERSION) VALUES (0,54234,102,0,19,53057,'AD_Client_ID',TO_TIMESTAMP('2008-01-09 23:37:14','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Client_ID@','Client/Tenant for this installation.','D',22,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','N','Client',TO_TIMESTAMP('2008-01-09 23:37:14','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54234 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_COLUMN (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,NAME,ReadOnlyLogic,Updated,UpdatedBy,VERSION) VALUES (0,54235,107,0,30,53057,52005,'AD_Field_ID',TO_TIMESTAMP('2008-01-09 23:37:15','YYYY-MM-DD HH24:MI:SS'),100,'Field on a database table','D',10,'The Field identifies a field on a database table.','Y','N','N','N','N','N','N','N','N','N','Y','Field','@AD_Process_ID@>0 | @AD_Form_ID@>0 | @AD_Task_ID@>0 | @AD_Workflow_ID@>0',TO_TIMESTAMP('2008-01-09 23:37:15','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54235 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_TAB (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,CommitWarning,Created,CreatedBy,EntityType,HasTree,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,NAME,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53067,53057,53016,NULL,TO_TIMESTAMP('2008-01-09 23:37:16','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','N','Y','N','Y','N','N','Exceptions','N',20,0,TO_TIMESTAMP('2008-01-09 23:37:16','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_TAB_TRL (AD_LANGUAGE,AD_Tab_ID, CommitWarning,Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_TAB t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53067 AND EXISTS (SELECT * FROM AD_TAB_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54224,54317,0,53067,TO_TIMESTAMP('2008-01-09 23:37:17','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','N','N','N','N','N','ASP_ClientException_ID',0,0,TO_TIMESTAMP('2008-01-09 23:37:17','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54317 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54234,54318,0,53067,TO_TIMESTAMP('2008-01-09 23:37:18','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',22,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','Client',10,0,TO_TIMESTAMP('2008-01-09 23:37:18','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54318 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54232,54319,0,53067,TO_TIMESTAMP('2008-01-09 23:37:19','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',22,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','Y','Organization',20,0,TO_TIMESTAMP('2008-01-09 23:37:19','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54319 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54229,54320,0,53067,TO_TIMESTAMP('2008-01-09 23:37:20','YYYY-MM-DD HH24:MI:SS'),100,'Data entry or display window',10,'D','The Window field identifies a unique Window in the system.','Y','Y','Y','N','N','N','N','Window',30,0,TO_TIMESTAMP('2008-01-09 23:37:20','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54320 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54230,54321,0,53067,TO_TIMESTAMP('2008-01-09 23:37:21','YYYY-MM-DD HH24:MI:SS'),100,'Tab within a Window',10,'D','The Tab indicates a tab that displays within a window.','Y','Y','Y','N','N','N','N','Tab',40,0,TO_TIMESTAMP('2008-01-09 23:37:21','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54321 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54235,54322,0,53067,TO_TIMESTAMP('2008-01-09 23:37:22','YYYY-MM-DD HH24:MI:SS'),100,'Field on a database table',10,'D','The Field identifies a field on a database table.','Y','Y','Y','N','N','N','N','Field',50,0,TO_TIMESTAMP('2008-01-09 23:37:22','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54322 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54223,54323,0,53067,TO_TIMESTAMP('2008-01-09 23:37:26','YYYY-MM-DD HH24:MI:SS'),100,'Process or Report',22,'D','The Process field identifies a unique Process or Report in the system.','Y','Y','Y','N','N','N','N','Process',60,0,TO_TIMESTAMP('2008-01-09 23:37:26','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54323 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54231,54324,0,53067,TO_TIMESTAMP('2008-01-09 23:37:27','YYYY-MM-DD HH24:MI:SS'),100,10,'D','Y','Y','Y','N','N','N','N','Process Parameter',70,0,TO_TIMESTAMP('2008-01-09 23:37:27','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54324 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54219,54325,0,53067,TO_TIMESTAMP('2008-01-09 23:37:27','YYYY-MM-DD HH24:MI:SS'),100,'Special Form',22,'D','The Special Form field identifies a unique Special Form in the system.','Y','Y','Y','N','N','N','N','Special Form',80,0,TO_TIMESTAMP('2008-01-09 23:37:27','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54325 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54221,54326,0,53067,TO_TIMESTAMP('2008-01-09 23:37:28','YYYY-MM-DD HH24:MI:SS'),100,'Operation System Task',22,'D','The Task field identifies a Operation System Task in the system.','Y','Y','Y','N','N','N','N','OS Task',90,0,TO_TIMESTAMP('2008-01-09 23:37:28','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54326 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54218,54327,0,53067,TO_TIMESTAMP('2008-01-09 23:37:29','YYYY-MM-DD HH24:MI:SS'),100,'Workflow or combination of tasks',22,'D','The Workflow field identifies a unique Workflow in the system.','Y','Y','Y','N','N','N','N','Workflow',100,0,TO_TIMESTAMP('2008-01-09 23:37:29','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54327 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54222,54328,0,53067,TO_TIMESTAMP('2008-01-09 23:37:30','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','ASP_Status',110,0,TO_TIMESTAMP('2008-01-09 23:37:30','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54328 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_FIELD (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,NAME,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54227,54329,0,53067,TO_TIMESTAMP('2008-01-09 23:37:32','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons FOR de-activating AND NOT DELETING records: -(1) THE SYSTEM requires THE RECORD FOR AUDIT purposes. -(2) THE RECORD IS referenced BY other records. E.g., you cannot DELETE a Business Partner, IF there are invoices FOR this partner RECORD existing. You de-ACTIVATE THE Business Partner AND prevent that this RECORD IS used FOR future entries.','Y','Y','Y','N','N','N','N','Active',120,0,TO_TIMESTAMP('2008-01-09 23:37:32','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_FIELD_TRL (AD_LANGUAGE,AD_Field_ID, Description,Help,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Field_ID, t.Description,t.Help,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_FIELD t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54329 AND EXISTS (SELECT * FROM AD_FIELD_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -CREATE TABLE ASP_MODULE (AD_Client_ID NUMERIC(10) DEFAULT NULL NOT NULL, AD_Org_ID NUMERIC(10) DEFAULT NULL NOT NULL, ASP_Module_ID NUMERIC(10) NOT NULL, Created TIMESTAMP NOT NULL, CreatedBy NUMERIC(10) NOT NULL, Description VARCHAR(255), Help VARCHAR(2000), IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL, NAME VARCHAR(60) NOT NULL, Updated TIMESTAMP NOT NULL, UpdatedBy NUMERIC(10) NOT NULL, VALUE VARCHAR(40) NOT NULL, CONSTRAINT ASP_Module_Key PRIMARY KEY (ASP_Module_ID)) -; - -CREATE TABLE ASP_LEVEL (AD_Client_ID NUMERIC(10) DEFAULT NULL NOT NULL, AD_Org_ID NUMERIC(10) DEFAULT NULL NOT NULL, ASP_Level_ID NUMERIC(10) NOT NULL, ASP_Module_ID NUMERIC(10) NOT NULL, Created TIMESTAMP NOT NULL, CreatedBy NUMERIC(10) NOT NULL, Description VARCHAR(255), Help VARCHAR(2000), IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL, NAME VARCHAR(60) NOT NULL, Processing CHAR(1), Updated TIMESTAMP NOT NULL, UpdatedBy NUMERIC(10) NOT NULL, VALUE VARCHAR(40) NOT NULL, CONSTRAINT ASP_Level_Key PRIMARY KEY (ASP_Level_ID)) -; - -CREATE TABLE ASP_WINDOW (AD_Client_ID NUMERIC(10) DEFAULT NULL NOT NULL, AD_Org_ID NUMERIC(10) DEFAULT NULL NOT NULL, AD_Window_ID NUMERIC(10) NOT NULL, ASP_Level_ID NUMERIC(10) NOT NULL, ASP_Status CHAR(1) DEFAULT 'U' NOT NULL, Created TIMESTAMP NOT NULL, CreatedBy NUMERIC(10) NOT NULL, IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL, Updated TIMESTAMP NOT NULL, UpdatedBy NUMERIC(10) NOT NULL, CONSTRAINT ASP_Window_Key PRIMARY KEY (AD_Window_ID, ASP_Level_ID)) -; - -CREATE TABLE ASP_TAB (AD_Client_ID NUMERIC(10) DEFAULT NULL NOT NULL, AD_Org_ID NUMERIC(10) DEFAULT NULL NOT NULL, AD_Tab_ID NUMERIC(10) NOT NULL, AD_Window_ID NUMERIC(10) NOT NULL, ASP_Level_ID NUMERIC(10) NOT NULL, ASP_Status CHAR(1) DEFAULT 'U' NOT NULL, AllFields CHAR(1) DEFAULT 'Y' CHECK (AllFields IN ('Y','N')), Created TIMESTAMP NOT NULL, CreatedBy NUMERIC(10) NOT NULL, IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL, Processing CHAR(1), Updated TIMESTAMP NOT NULL, UpdatedBy NUMERIC(10) NOT NULL, CONSTRAINT ASP_Tab_Key PRIMARY KEY (AD_Tab_ID, AD_Window_ID, ASP_Level_ID)) -; - -CREATE TABLE ASP_FIELD (AD_Client_ID NUMERIC(10) DEFAULT NULL NOT NULL, AD_Field_ID NUMERIC(10), AD_Org_ID NUMERIC(10) DEFAULT NULL NOT NULL, AD_Tab_ID NUMERIC(10) NOT NULL, ASP_Level_ID NUMERIC(10) NOT NULL, ASP_Status CHAR(1) DEFAULT 'U' NOT NULL, Created TIMESTAMP NOT NULL, CreatedBy NUMERIC(10) NOT NULL, IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL, Updated TIMESTAMP NOT NULL, UpdatedBy NUMERIC(10) NOT NULL, CONSTRAINT ASP_Field_Key PRIMARY KEY (AD_Field_ID, AD_Tab_ID, ASP_Level_ID)) -; - -CREATE TABLE ASP_FORM (AD_Client_ID NUMERIC(10) DEFAULT NULL NOT NULL, AD_Form_ID NUMERIC(10) NOT NULL, AD_Org_ID NUMERIC(10) DEFAULT NULL NOT NULL, ASP_Level_ID NUMERIC(10) NOT NULL, ASP_Status CHAR(1) DEFAULT 'U' NOT NULL, Created TIMESTAMP NOT NULL, CreatedBy NUMERIC(10) NOT NULL, IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL, Updated TIMESTAMP NOT NULL, UpdatedBy NUMERIC(10) NOT NULL, CONSTRAINT ASP_Form_Key PRIMARY KEY (AD_Form_ID, ASP_Level_ID)) -; - -CREATE TABLE ASP_TASK (AD_Client_ID NUMERIC(10) DEFAULT NULL NOT NULL, AD_Org_ID NUMERIC(10) DEFAULT NULL NOT NULL, AD_Task_ID NUMERIC(10) NOT NULL, ASP_Level_ID NUMERIC(10) NOT NULL, ASP_Status CHAR(1) DEFAULT 'U' NOT NULL, Created TIMESTAMP NOT NULL, CreatedBy NUMERIC(10) NOT NULL, IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL, Updated TIMESTAMP NOT NULL, UpdatedBy NUMERIC(10) NOT NULL, CONSTRAINT ASP_Task_Key PRIMARY KEY (AD_Task_ID, ASP_Level_ID)) -; - -CREATE TABLE ASP_PROCESS (AD_Client_ID NUMERIC(10) DEFAULT NULL NOT NULL, AD_Org_ID NUMERIC(10) DEFAULT NULL NOT NULL, AD_Process_ID NUMERIC(10) NOT NULL, ASP_Level_ID NUMERIC(10) NOT NULL, ASP_Status CHAR(1) DEFAULT 'U' NOT NULL, Created TIMESTAMP NOT NULL, CreatedBy NUMERIC(10) NOT NULL, IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL, Updated TIMESTAMP NOT NULL, UpdatedBy NUMERIC(10) NOT NULL, CONSTRAINT ASP_Process_Key PRIMARY KEY (AD_Process_ID, ASP_Level_ID)) -; - -CREATE TABLE ASP_PROCESS_PARA (AD_Client_ID NUMERIC(10) DEFAULT NULL NOT NULL, AD_Org_ID NUMERIC(10) DEFAULT NULL NOT NULL, AD_Process_ID NUMERIC(10) NOT NULL, AD_Process_Para_ID NUMERIC(10), ASP_Level_ID NUMERIC(10) NOT NULL, ASP_Status CHAR(1) DEFAULT 'U' NOT NULL, Created TIMESTAMP NOT NULL, CreatedBy NUMERIC(10) NOT NULL, IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL, Updated TIMESTAMP NOT NULL, UpdatedBy NUMERIC(10) NOT NULL, CONSTRAINT ASP_Process_Para_Key PRIMARY KEY (AD_Process_ID, AD_Process_Para_ID, ASP_Level_ID)) -; - -CREATE TABLE ASP_WORKFLOW (AD_Client_ID NUMERIC(10) DEFAULT NULL NOT NULL, AD_Org_ID NUMERIC(10) DEFAULT NULL NOT NULL, AD_Workflow_ID NUMERIC(10) NOT NULL, ASP_Level_ID NUMERIC(10) NOT NULL, ASP_Status CHAR(1) DEFAULT 'U' NOT NULL, Created TIMESTAMP NOT NULL, CreatedBy NUMERIC(10) NOT NULL, IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL, Updated TIMESTAMP NOT NULL, UpdatedBy NUMERIC(10) NOT NULL, CONSTRAINT ASP_Workflow_Key PRIMARY KEY (AD_Workflow_ID, ASP_Level_ID)) -; - -CREATE TABLE ASP_CLIENTLEVEL (AD_Client_ID NUMERIC(10) DEFAULT NULL NOT NULL, AD_Org_ID NUMERIC(10) DEFAULT 0 NOT NULL, ASP_ClientLevel_ID NUMERIC(10) NOT NULL, ASP_Level_ID NUMERIC(10) NOT NULL, ASP_Module_ID NUMERIC(10) NOT NULL, Created TIMESTAMP NOT NULL, CreatedBy NUMERIC(10) NOT NULL, Help VARCHAR(2000), IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL, Updated TIMESTAMP NOT NULL, UpdatedBy NUMERIC(10) NOT NULL, CONSTRAINT ASP_ClientLevel_Key PRIMARY KEY (ASP_ClientLevel_ID)) -; - -CREATE TABLE ASP_CLIENTEXCEPTION (AD_Client_ID NUMERIC(10) DEFAULT NULL NOT NULL, AD_Field_ID NUMERIC(10), AD_Form_ID NUMERIC(10), AD_Org_ID NUMERIC(10) DEFAULT 0 NOT NULL, AD_Process_ID NUMERIC(10), AD_Process_Para_ID NUMERIC(10), AD_Tab_ID NUMERIC(10), AD_Task_ID NUMERIC(10), AD_WF_Node_ID NUMERIC(10), AD_Window_ID NUMERIC(10), AD_Workflow_ID NUMERIC(10), ASP_ClientException_ID NUMERIC(10) NOT NULL, ASP_Status CHAR(1) DEFAULT 'U' NOT NULL, Created TIMESTAMP NOT NULL, CreatedBy NUMERIC(10) NOT NULL, IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL, Updated TIMESTAMP NOT NULL, UpdatedBy NUMERIC(10) NOT NULL, CONSTRAINT ASP_ClientException_Key PRIMARY KEY (ASP_ClientException_ID)) -; - -INSERT INTO AD_MENU (AD_Client_ID,AD_Menu_ID,AD_Org_ID,AD_Window_ID,"action",Created,CreatedBy,EntityType,IsActive,IsReadOnly,IsSOTrx,IsSummary,NAME,Updated,UpdatedBy) VALUES (0,53083,0,53015,'W',TO_TIMESTAMP('2008-01-09 23:57:19','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','N','N','N','ASP Modules',TO_TIMESTAMP('2008-01-09 23:57:19','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_MENU_TRL (AD_LANGUAGE,AD_Menu_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Menu_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_MENU t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Menu_ID=53083 AND EXISTS (SELECT * FROM AD_MENU_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Menu_ID!=t.AD_Menu_ID) -; - -INSERT INTO AD_TREENODEMM (AD_Client_ID,AD_Org_ID, IsActive,Created,CreatedBy,Updated,UpdatedBy, AD_Tree_ID, Node_ID, Parent_ID, SeqNo) SELECT t.AD_Client_ID,0, 'Y', CURRENT_TIMESTAMP, 0, CURRENT_TIMESTAMP, 0,t.AD_Tree_ID, 53083, 0, 999 FROM AD_TREE t WHERE t.AD_Client_ID=0 AND t.IsActive='Y' AND t.IsAllNodes='Y' AND t.TreeType='MM' AND NOT EXISTS (SELECT * FROM AD_TREENODEMM e WHERE e.AD_Tree_ID=t.AD_Tree_ID AND Node_ID=53083) -; - -INSERT INTO AD_MENU (AD_Client_ID,AD_Menu_ID,AD_Org_ID,AD_Window_ID,"action",Created,CreatedBy,EntityType,IsActive,IsReadOnly,IsSOTrx,IsSummary,NAME,Updated,UpdatedBy) VALUES (0,53084,0,53016,'W',TO_TIMESTAMP('2008-01-09 23:57:35','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','N','N','N','ASP Subscribed Modules',TO_TIMESTAMP('2008-01-09 23:57:35','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_MENU_TRL (AD_LANGUAGE,AD_Menu_ID, Description,NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Menu_ID, t.Description,t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_MENU t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Menu_ID=53084 AND EXISTS (SELECT * FROM AD_MENU_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Menu_ID!=t.AD_Menu_ID) -; - -INSERT INTO AD_TREENODEMM (AD_Client_ID,AD_Org_ID, IsActive,Created,CreatedBy,Updated,UpdatedBy, AD_Tree_ID, Node_ID, Parent_ID, SeqNo) SELECT t.AD_Client_ID,0, 'Y', CURRENT_TIMESTAMP, 0, CURRENT_TIMESTAMP, 0,t.AD_Tree_ID, 53084, 0, 999 FROM AD_TREE t WHERE t.AD_Client_ID=0 AND t.IsActive='Y' AND t.IsAllNodes='Y' AND t.TreeType='MM' AND NOT EXISTS (SELECT * FROM AD_TREENODEMM e WHERE e.AD_Tree_ID=t.AD_Tree_ID AND Node_ID=53084) -; - --- manually added foreign keys - -ALTER TABLE ASP_CLIENTEXCEPTION ADD CONSTRAINT ADField_ASPClientException FOREIGN KEY (AD_Field_ID) REFERENCES AD_FIELD; - -ALTER TABLE ASP_CLIENTEXCEPTION ADD CONSTRAINT ADForm_ASPClientException FOREIGN KEY (AD_Form_ID) REFERENCES AD_FORM; - -ALTER TABLE ASP_CLIENTEXCEPTION ADD CONSTRAINT ADProcess_ASPClientException FOREIGN KEY (AD_Process_ID) REFERENCES AD_PROCESS; - -ALTER TABLE ASP_CLIENTEXCEPTION ADD CONSTRAINT ADProcessPara_ASPClientExcepti FOREIGN KEY (AD_Process_Para_ID) REFERENCES AD_PROCESS_PARA; - -ALTER TABLE ASP_CLIENTEXCEPTION ADD CONSTRAINT ADTab_ASPClientException FOREIGN KEY (AD_Tab_ID) REFERENCES AD_TAB; - -ALTER TABLE ASP_CLIENTEXCEPTION ADD CONSTRAINT ADTask_ASPClientException FOREIGN KEY (AD_Task_ID) REFERENCES AD_TASK; - -ALTER TABLE ASP_CLIENTEXCEPTION ADD CONSTRAINT ADWFNode_ASPClientException FOREIGN KEY (AD_WF_Node_ID) REFERENCES AD_WF_NODE; - -ALTER TABLE ASP_CLIENTEXCEPTION ADD CONSTRAINT ADWindow_ASPClientException FOREIGN KEY (AD_Window_ID) REFERENCES AD_WINDOW; - -ALTER TABLE ASP_CLIENTEXCEPTION ADD CONSTRAINT ADWorkflow_ASPClientException FOREIGN KEY (AD_Workflow_ID) REFERENCES AD_WORKFLOW; - -ALTER TABLE ASP_CLIENTLEVEL ADD CONSTRAINT ASPLevel_ASPClientLevel FOREIGN KEY (ASP_Level_ID) REFERENCES ASP_LEVEL; - -ALTER TABLE ASP_CLIENTLEVEL ADD CONSTRAINT ASPModule_ASPClientLevel FOREIGN KEY (ASP_Module_ID) REFERENCES ASP_MODULE; - -ALTER TABLE ASP_FIELD ADD CONSTRAINT ADField_ASPField FOREIGN KEY (AD_Field_ID) REFERENCES AD_FIELD; - -ALTER TABLE ASP_FIELD ADD CONSTRAINT ADTab_ASPField FOREIGN KEY (AD_Tab_ID) REFERENCES AD_TAB; - -ALTER TABLE ASP_FIELD ADD CONSTRAINT ASPLevel_ASPField FOREIGN KEY (ASP_Level_ID) REFERENCES ASP_LEVEL; - -ALTER TABLE ASP_FORM ADD CONSTRAINT ADForm_ASPForm FOREIGN KEY (AD_Form_ID) REFERENCES AD_FORM; - -ALTER TABLE ASP_FORM ADD CONSTRAINT ASPLevel_ASPForm FOREIGN KEY (ASP_Level_ID) REFERENCES ASP_LEVEL; - -ALTER TABLE ASP_LEVEL ADD CONSTRAINT ASPModule_ASPLevel FOREIGN KEY (ASP_Module_ID) REFERENCES ASP_MODULE; - -ALTER TABLE ASP_PROCESS ADD CONSTRAINT ADProcess_ASPProcess FOREIGN KEY (AD_Process_ID) REFERENCES AD_PROCESS; - -ALTER TABLE ASP_PROCESS ADD CONSTRAINT ASPLevel_ASPProcess FOREIGN KEY (ASP_Level_ID) REFERENCES ASP_LEVEL; - -ALTER TABLE ASP_PROCESS_PARA ADD CONSTRAINT ADProcess_ASPProcessPara FOREIGN KEY (AD_Process_ID) REFERENCES AD_PROCESS; - -ALTER TABLE ASP_PROCESS_PARA ADD CONSTRAINT ADProcessPara_ASPProcessPara FOREIGN KEY (AD_Process_Para_ID) REFERENCES AD_PROCESS_PARA; - -ALTER TABLE ASP_PROCESS_PARA ADD CONSTRAINT ASPLevel_ASPProcessPara FOREIGN KEY (ASP_Level_ID) REFERENCES ASP_LEVEL; - -ALTER TABLE ASP_TAB ADD CONSTRAINT ADTab_ASPTab FOREIGN KEY (AD_Tab_ID) REFERENCES AD_TAB; - -ALTER TABLE ASP_TAB ADD CONSTRAINT ADWindow_ASPTab FOREIGN KEY (AD_Window_ID) REFERENCES AD_WINDOW; - -ALTER TABLE ASP_TAB ADD CONSTRAINT ASPLevel_ASPTab FOREIGN KEY (ASP_Level_ID) REFERENCES ASP_LEVEL; - -ALTER TABLE ASP_TASK ADD CONSTRAINT ADTask_ASPTask FOREIGN KEY (AD_Task_ID) REFERENCES AD_TASK; - -ALTER TABLE ASP_TASK ADD CONSTRAINT ASPLevel_ASPTask FOREIGN KEY (ASP_Level_ID) REFERENCES ASP_LEVEL; - -ALTER TABLE ASP_WINDOW ADD CONSTRAINT ADWindow_ASPWindow FOREIGN KEY (AD_Window_ID) REFERENCES AD_WINDOW; - -ALTER TABLE ASP_WINDOW ADD CONSTRAINT ASPLevel_ASPWindow FOREIGN KEY (ASP_Level_ID) REFERENCES ASP_LEVEL; - -ALTER TABLE ASP_WORKFLOW ADD CONSTRAINT ADWorkflow_ASPWorkflow FOREIGN KEY (AD_Workflow_ID) REFERENCES AD_WORKFLOW; - -ALTER TABLE ASP_WORKFLOW ADD CONSTRAINT ASPLevel_ASPWorkflow FOREIGN KEY (ASP_Level_ID) REFERENCES ASP_LEVEL; - --- Jan 10, 2008 1:06:02 AM COT -INSERT INTO AD_Process_Para (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,AD_Reference_Value_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,110,0,53067,53128,18,105,'AD_Menu_ID',TO_TIMESTAMP('2008-01-10 01:05:57','YYYY-MM-DD HH24:MI:SS'),100,'U',0,'Y','Y','N','N','AD_Menu_ID',20,TO_TIMESTAMP('2008-01-10 01:05:57','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53128 AND EXISTS (SELECT * FROM AD_Process_Para_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -UPDATE AD_Process_Para SET Description='Identifies a Menu', Help='The Menu identifies a unique Menu. Menus are used to control the display of those screens a user has access to.', Name='Menu',Updated=TO_TIMESTAMP('2008-01-10 01:06:34','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=53128 -; - -UPDATE AD_Process_Para_Trl SET IsTranslated='N' WHERE AD_Process_Para_ID=53128 -; - -UPDATE AD_Element SET Name='Client Exception', PrintName='Client Exception',Updated=TO_TIMESTAMP('2008-01-10 01:15:32','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=53331 -; - -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53331 -; - -UPDATE AD_Column SET ColumnName='ASP_ClientException_ID', Name='Client Exception', Description=NULL, Help=NULL WHERE AD_Element_ID=53331 -; - -UPDATE AD_Field SET Name='Client Exception', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=53331) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_Process_Para SET ColumnName='ASP_ClientException_ID', Name='Client Exception', Description=NULL, Help=NULL, AD_Element_ID=53331 WHERE UPPER(ColumnName)='ASP_CLIENTEXCEPTION_ID' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_Process_Para SET ColumnName='ASP_ClientException_ID', Name='Client Exception', Description=NULL, Help=NULL WHERE AD_Element_ID=53331 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PrintFormatItem SET PrintName='Client Exception', Name='Client Exception' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=53331) -; - -UPDATE AD_PrintFormatItem SET PrintName='Client Exception', Name='Client Exception' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=53331) -; - -UPDATE AD_Element SET Name='Client Level', PrintName='Client Level',Updated=TO_TIMESTAMP('2008-01-10 01:15:42','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=53330 -; - -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53330 -; - -UPDATE AD_Column SET ColumnName='ASP_ClientLevel_ID', Name='Client Level', Description=NULL, Help=NULL WHERE AD_Element_ID=53330 -; - -UPDATE AD_Field SET Name='Client Level', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=53330) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_Process_Para SET ColumnName='ASP_ClientLevel_ID', Name='Client Level', Description=NULL, Help=NULL, AD_Element_ID=53330 WHERE UPPER(ColumnName)='ASP_CLIENTLEVEL_ID' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_Process_Para SET ColumnName='ASP_ClientLevel_ID', Name='Client Level', Description=NULL, Help=NULL WHERE AD_Element_ID=53330 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PrintFormatItem SET PrintName='Client Level', Name='Client Level' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=53330) -; - -UPDATE AD_PrintFormatItem SET PrintName='Client Level', Name='Client Level' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=53330) -; - -UPDATE AD_Element SET Name='ASP Level', PrintName='ASP Level',Updated=TO_TIMESTAMP('2008-01-10 01:15:50','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=53326 -; - -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53326 -; - -UPDATE AD_Column SET ColumnName='ASP_Level_ID', Name='ASP Level', Description=NULL, Help=NULL WHERE AD_Element_ID=53326 -; - -UPDATE AD_Field SET Name='ASP Level', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=53326) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_Process_Para SET ColumnName='ASP_Level_ID', Name='ASP Level', Description=NULL, Help=NULL, AD_Element_ID=53326 WHERE UPPER(ColumnName)='ASP_LEVEL_ID' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_Process_Para SET ColumnName='ASP_Level_ID', Name='ASP Level', Description=NULL, Help=NULL WHERE AD_Element_ID=53326 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PrintFormatItem SET PrintName='ASP Level', Name='ASP Level' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=53326) -; - -UPDATE AD_PrintFormatItem SET PrintName='ASP Level', Name='ASP Level' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=53326) -; - -UPDATE AD_Element SET Name='ASP Module', PrintName='ASP Module',Updated=TO_TIMESTAMP('2008-01-10 01:15:58','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=53329 -; - -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53329 -; - -UPDATE AD_Column SET ColumnName='ASP_Module_ID', Name='ASP Module', Description=NULL, Help=NULL WHERE AD_Element_ID=53329 -; - -UPDATE AD_Field SET Name='ASP Module', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=53329) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_Process_Para SET ColumnName='ASP_Module_ID', Name='ASP Module', Description=NULL, Help=NULL, AD_Element_ID=53329 WHERE UPPER(ColumnName)='ASP_MODULE_ID' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_Process_Para SET ColumnName='ASP_Module_ID', Name='ASP Module', Description=NULL, Help=NULL WHERE AD_Element_ID=53329 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PrintFormatItem SET PrintName='ASP Module', Name='ASP Module' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=53329) -; - -UPDATE AD_PrintFormatItem SET PrintName='ASP Module', Name='ASP Module' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=53329) -; - -UPDATE AD_Element SET Name='ASP Status', PrintName='ASP Status',Updated=TO_TIMESTAMP('2008-01-10 01:16:06','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=53327 -; - -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53327 -; - -UPDATE AD_Column SET ColumnName='ASP_Status', Name='ASP Status', Description=NULL, Help=NULL WHERE AD_Element_ID=53327 -; - -UPDATE AD_Field SET Name='ASP Status', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=53327) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_Process_Para SET ColumnName='ASP_Status', Name='ASP Status', Description=NULL, Help=NULL, AD_Element_ID=53327 WHERE UPPER(ColumnName)='ASP_STATUS' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_Process_Para SET ColumnName='ASP_Status', Name='ASP Status', Description=NULL, Help=NULL WHERE AD_Element_ID=53327 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PrintFormatItem SET PrintName='ASP Status', Name='ASP Status' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=53327) -; - -UPDATE AD_PrintFormatItem SET PrintName='ASP Status', Name='ASP Status' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=53327) -; - - -SELECT '064_placeholder_branch350.sql' AS Filename; - -SELECT '065_FR_1871741.sql' AS Filename; --- [ 1871741 ] Collapse grid as default -UPDATE AD_FieldGroup SET FieldGroupType = 'C' WHERE FieldGroupType IS NULL; -SELECT '066_FR1871740_MenuReorg.sql' AS Filename; --- Jan 15, 2008 12:26:33 AM COT --- FR 1871740 - Menu reorg for new windows -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=0, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=218 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=1, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=153 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=2, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=263 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=3, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=166 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=4, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=203 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=5, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=236 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=6, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=183 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=7, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=160 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=8, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=278 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=9, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=345 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=10, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=519 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=11, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=52001 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=12, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=518 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=13, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53083 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=156, SeqNo=0, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=225 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=156, SeqNo=1, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=261 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=156, SeqNo=2, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=148 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=156, SeqNo=3, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=529 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=156, SeqNo=4, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=397 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=156, SeqNo=5, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=531 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=156, SeqNo=6, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=530 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=156, SeqNo=7, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=532 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=156, SeqNo=8, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53084 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=0, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=218 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=1, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=153 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=2, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=263 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=3, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=166 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=4, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=203 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=5, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=236 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=6, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=183 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=7, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=160 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=8, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=278 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=9, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=345 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=10, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=519 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=11, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=52001 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=12, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=518 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=156, SeqNo=0, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=225 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=156, SeqNo=1, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=261 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=156, SeqNo=2, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=148 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=156, SeqNo=3, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=529 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=156, SeqNo=4, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=397 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=156, SeqNo=5, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=531 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=156, SeqNo=6, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=530 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=156, SeqNo=7, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=532 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=156, SeqNo=8, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53084 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=156, SeqNo=9, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53083 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=0, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=218 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=1, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=153 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=2, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=263 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=3, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=166 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=4, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=203 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=5, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=236 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=6, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=183 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=7, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=160 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=8, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=278 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=9, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=345 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=10, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=519 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=11, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=518 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=457, SeqNo=0, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=52001 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=457, SeqNo=1, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=460 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=457, SeqNo=2, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=301 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=457, SeqNo=3, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=129 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=457, SeqNo=4, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=543 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=457, SeqNo=5, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=407 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=457, SeqNo=6, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=406 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=457, SeqNo=7, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=335 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=457, SeqNo=8, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=436 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=457, SeqNo=9, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=507 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=457, SeqNo=10, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=195 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=457, SeqNo=11, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=194 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=457, SeqNo=12, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=445 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=457, SeqNo=13, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=472 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=457, SeqNo=14, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=448 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=457, SeqNo=15, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=449 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=457, SeqNo=16, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=492 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=457, SeqNo=17, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=491 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=457, SeqNo=18, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=419 -; - -UPDATE AD_Menu SET Name='Web POS',Updated=TO_TIMESTAMP('2008-01-15 00:28:59','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=52001 -; - -UPDATE AD_Menu_Trl SET IsTranslated='N' WHERE AD_Menu_ID=52001 -; - -UPDATE AD_Window SET Name='Web POS BlackListCheque',Updated=TO_TIMESTAMP('2008-01-15 00:29:24','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=52003 -; - -UPDATE AD_Window_Trl SET IsTranslated='N' WHERE AD_Window_ID=52003 -; - -UPDATE AD_Menu SET Description='Black Listed Cheque', IsActive='Y', Name='Web POS BlackListCheque',Updated=TO_TIMESTAMP('2008-01-15 00:29:24','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=52005 -; - -UPDATE AD_Menu_Trl SET IsTranslated='N' WHERE AD_Menu_ID=52005 -; - -UPDATE AD_Window SET Name='Web POS Properties',Updated=TO_TIMESTAMP('2008-01-15 00:29:41','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=52002 -; - -UPDATE AD_Window_Trl SET IsTranslated='N' WHERE AD_Window_ID=52002 -; - -UPDATE AD_Menu SET Description='Stores the message tags to be picked up from AD_MESSAGE ', IsActive='Y', Name='Web POS Properties',Updated=TO_TIMESTAMP('2008-01-15 00:29:42','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=52004 -; - -UPDATE AD_Menu_Trl SET IsTranslated='N' WHERE AD_Menu_ID=52004 -; - -UPDATE AD_Window SET Name='Web POS Role Menu',Updated=TO_TIMESTAMP('2008-01-15 00:29:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=52001 -; - -UPDATE AD_Window_Trl SET IsTranslated='N' WHERE AD_Window_ID=52001 -; - -UPDATE AD_Menu SET Description='Depending on Which Role, Different set of Menus are generated and made available.', IsActive='Y', Name='Web POS Role Menu',Updated=TO_TIMESTAMP('2008-01-15 00:29:55','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=52003 -; - -UPDATE AD_Menu_Trl SET IsTranslated='N' WHERE AD_Menu_ID=52003 -; - -UPDATE AD_Window SET Name='Web POS Menu',Updated=TO_TIMESTAMP('2008-01-15 00:30:08','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=52000 -; - -UPDATE AD_Window_Trl SET IsTranslated='N' WHERE AD_Window_ID=52000 -; - -UPDATE AD_Menu SET Description='To dynamically generate the menu links in posterita', IsActive='Y', Name='Web POS Menu',Updated=TO_TIMESTAMP('2008-01-15 00:30:08','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=52002 -; - -UPDATE AD_Menu_Trl SET IsTranslated='N' WHERE AD_Menu_ID=52002 -; - -UPDATE AD_Window SET Description='To dynamically generate the menu links in web POS',Updated=TO_TIMESTAMP('2008-01-15 00:30:12','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=52000 -; - -UPDATE AD_Window_Trl SET IsTranslated='N' WHERE AD_Window_ID=52000 -; - -UPDATE AD_Menu SET Description='To dynamically generate the menu links in web POS', IsActive='Y', Name='Web POS Menu',Updated=TO_TIMESTAMP('2008-01-15 00:30:12','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=52002 -; - -UPDATE AD_Menu_Trl SET IsTranslated='N' WHERE AD_Menu_ID=52002 -; - -UPDATE AD_Field SET SeqNo=10,IsDisplayed='Y' WHERE AD_Field_ID=52040 -; - -UPDATE AD_Field SET SeqNo=30,IsDisplayed='Y' WHERE AD_Field_ID=52043 -; - -UPDATE AD_Field SET SeqNo=40,IsDisplayed='Y' WHERE AD_Field_ID=52044 -; - -UPDATE AD_Field SET SeqNo=50,IsDisplayed='Y' WHERE AD_Field_ID=52042 -; - -UPDATE AD_Table SET Name='Black List Cheque',Updated=TO_TIMESTAMP('2008-01-15 00:36:00','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Table_ID=52000 -; - -UPDATE AD_Table_Trl SET IsTranslated='N' WHERE AD_Table_ID=52000 -; - -UPDATE AD_Element SET Name='Black List Cheque', PrintName='Black List Cheque',Updated=TO_TIMESTAMP('2008-01-15 00:36:17','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=52001 -; - -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=52001 -; - -UPDATE AD_Column SET ColumnName='U_BlackListCheque_ID', Name='Black List Cheque', Description=NULL, Help=NULL WHERE AD_Element_ID=52001 -; - -UPDATE AD_Field SET Name='Black List Cheque', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=52001) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_Process_Para SET ColumnName='U_BlackListCheque_ID', Name='Black List Cheque', Description=NULL, Help=NULL, AD_Element_ID=52001 WHERE UPPER(ColumnName)='U_BLACKLISTCHEQUE_ID' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_Process_Para SET ColumnName='U_BlackListCheque_ID', Name='Black List Cheque', Description=NULL, Help=NULL WHERE AD_Element_ID=52001 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PrintFormatItem SET PrintName='Black List Cheque', Name='Black List Cheque' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=52001) -; - -UPDATE AD_PrintFormatItem SET PrintName='Black List Cheque', Name='Black List Cheque' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=52001) -; - -UPDATE AD_Element SET Name='Role Menu', PrintName='Role Menu',Updated=TO_TIMESTAMP('2008-01-15 00:36:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=52007 -; - -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=52007 -; - -UPDATE AD_Column SET ColumnName='U_RoleMenu_ID', Name='Role Menu', Description=NULL, Help=NULL WHERE AD_Element_ID=52007 -; - -UPDATE AD_Field SET Name='Role Menu', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=52007) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_Process_Para SET ColumnName='U_RoleMenu_ID', Name='Role Menu', Description=NULL, Help=NULL, AD_Element_ID=52007 WHERE UPPER(ColumnName)='U_ROLEMENU_ID' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_Process_Para SET ColumnName='U_RoleMenu_ID', Name='Role Menu', Description=NULL, Help=NULL WHERE AD_Element_ID=52007 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PrintFormatItem SET PrintName='Role Menu', Name='Role Menu' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=52007) -; - -UPDATE AD_PrintFormatItem SET PrintName='Role Menu', Name='Role Menu' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=52007) -; - -UPDATE AD_Table SET Name='Role Menu',Updated=TO_TIMESTAMP('2008-01-15 00:36:56','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Table_ID=52002 -; - -UPDATE AD_Table_Trl SET IsTranslated='N' WHERE AD_Table_ID=52002 -; - -UPDATE AD_Element SET Name='Web Menu', PrintName='Web Menu',Updated=TO_TIMESTAMP('2008-01-15 00:37:16','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=52008 -; - -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=52008 -; - -UPDATE AD_Column SET ColumnName='U_WebMenu_ID', Name='Web Menu', Description=NULL, Help=NULL WHERE AD_Element_ID=52008 -; - -UPDATE AD_Field SET Name='Web Menu', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=52008) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_Process_Para SET ColumnName='U_WebMenu_ID', Name='Web Menu', Description=NULL, Help=NULL, AD_Element_ID=52008 WHERE UPPER(ColumnName)='U_WEBMENU_ID' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_Process_Para SET ColumnName='U_WebMenu_ID', Name='Web Menu', Description=NULL, Help=NULL WHERE AD_Element_ID=52008 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PrintFormatItem SET PrintName='Web Menu', Name='Web Menu' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=52008) -; - -UPDATE AD_PrintFormatItem SET PrintName='Web Menu', Name='Web Menu' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=52008) -; - -UPDATE AD_Table SET Name='Web Menu',Updated=TO_TIMESTAMP('2008-01-15 00:37:25','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Table_ID=52003 -; - -UPDATE AD_Table_Trl SET IsTranslated='N' WHERE AD_Table_ID=52003 -; - -UPDATE AD_Element SET Name='Parent Menu', PrintName='Parent Menu',Updated=TO_TIMESTAMP('2008-01-15 00:37:45','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=52011 -; - -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=52011 -; - -UPDATE AD_Column SET ColumnName='ParentMenu_ID', Name='Parent Menu', Description=NULL, Help=NULL WHERE AD_Element_ID=52011 -; - -UPDATE AD_Field SET Name='Parent Menu', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=52011) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_Process_Para SET ColumnName='ParentMenu_ID', Name='Parent Menu', Description=NULL, Help=NULL, AD_Element_ID=52011 WHERE UPPER(ColumnName)='PARENTMENU_ID' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_Process_Para SET ColumnName='ParentMenu_ID', Name='Parent Menu', Description=NULL, Help=NULL WHERE AD_Element_ID=52011 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PrintFormatItem SET PrintName='Parent Menu', Name='Parent Menu' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=52011) -; - -UPDATE AD_PrintFormatItem SET PrintName='Parent Menu', Name='Parent Menu' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=52011) -; - -UPDATE AD_Element SET Name='Has SubMenu', PrintName='Has SubMenu',Updated=TO_TIMESTAMP('2008-01-15 00:38:07','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=52012 -; - -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=52012 -; - -UPDATE AD_Column SET ColumnName='HasSubMenu', Name='Has SubMenu', Description=NULL, Help=NULL WHERE AD_Element_ID=52012 -; - -UPDATE AD_Field SET Name='Has SubMenu', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=52012) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_Process_Para SET ColumnName='HasSubMenu', Name='Has SubMenu', Description=NULL, Help=NULL, AD_Element_ID=52012 WHERE UPPER(ColumnName)='HASSUBMENU' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_Process_Para SET ColumnName='HasSubMenu', Name='Has SubMenu', Description=NULL, Help=NULL WHERE AD_Element_ID=52012 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PrintFormatItem SET PrintName='Has SubMenu', Name='Has SubMenu' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=52012) -; - -UPDATE AD_PrintFormatItem SET PrintName='Has SubMenu', Name='Has SubMenu' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=52012) -; - -UPDATE AD_Element SET Name='Image Link', PrintName='Image Link',Updated=TO_TIMESTAMP('2008-01-15 00:38:24','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=52013 -; - -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=52013 -; - -UPDATE AD_Column SET ColumnName='ImageLink', Name='Image Link', Description=NULL, Help=NULL WHERE AD_Element_ID=52013 -; - -UPDATE AD_Field SET Name='Image Link', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=52013) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_Process_Para SET ColumnName='ImageLink', Name='Image Link', Description=NULL, Help=NULL, AD_Element_ID=52013 WHERE UPPER(ColumnName)='IMAGELINK' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_Process_Para SET ColumnName='ImageLink', Name='Image Link', Description=NULL, Help=NULL WHERE AD_Element_ID=52013 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PrintFormatItem SET PrintName='Image Link', Name='Image Link' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=52013) -; - -UPDATE AD_PrintFormatItem SET PrintName='Image Link', Name='Image Link' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=52013) -; - -UPDATE AD_Element SET Name='Menu Link', PrintName='Menu Link',Updated=TO_TIMESTAMP('2008-01-15 00:38:34','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=52009 -; - -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=52009 -; - -UPDATE AD_Column SET ColumnName='MenuLink', Name='Menu Link', Description=NULL, Help=NULL WHERE AD_Element_ID=52009 -; - -UPDATE AD_Field SET Name='Menu Link', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=52009) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_Process_Para SET ColumnName='MenuLink', Name='Menu Link', Description=NULL, Help=NULL, AD_Element_ID=52009 WHERE UPPER(ColumnName)='MENULINK' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_Process_Para SET ColumnName='MenuLink', Name='Menu Link', Description=NULL, Help=NULL WHERE AD_Element_ID=52009 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PrintFormatItem SET PrintName='Menu Link', Name='Menu Link' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=52009) -; - -UPDATE AD_PrintFormatItem SET PrintName='Menu Link', Name='Menu Link' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=52009) -; - -UPDATE AD_Element SET Name='Bank Name', PrintName='Bank Name',Updated=TO_TIMESTAMP('2008-01-15 00:38:51','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=52002 -; - -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=52002 -; - -UPDATE AD_Column SET ColumnName='BankName', Name='Bank Name', Description=NULL, Help=NULL WHERE AD_Element_ID=52002 -; - -UPDATE AD_Field SET Name='Bank Name', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=52002) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_Process_Para SET ColumnName='BankName', Name='Bank Name', Description=NULL, Help=NULL, AD_Element_ID=52002 WHERE UPPER(ColumnName)='BANKNAME' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_Process_Para SET ColumnName='BankName', Name='Bank Name', Description=NULL, Help=NULL WHERE AD_Element_ID=52002 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PrintFormatItem SET PrintName='Bank Name', Name='Bank Name' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=52002) -; - -UPDATE AD_PrintFormatItem SET PrintName='Bank Name', Name='Bank Name' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=52002) -; - -UPDATE AD_Element SET Name='Cheque No', PrintName='Cheque No',Updated=TO_TIMESTAMP('2008-01-15 00:39:00','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=52003 -; - -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=52003 -; - -UPDATE AD_Column SET ColumnName='ChequeNo', Name='Cheque No', Description=NULL, Help=NULL WHERE AD_Element_ID=52003 -; - -UPDATE AD_Field SET Name='Cheque No', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=52003) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_Process_Para SET ColumnName='ChequeNo', Name='Cheque No', Description=NULL, Help=NULL, AD_Element_ID=52003 WHERE UPPER(ColumnName)='CHEQUENO' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_Process_Para SET ColumnName='ChequeNo', Name='Cheque No', Description=NULL, Help=NULL WHERE AD_Element_ID=52003 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PrintFormatItem SET PrintName='Cheque No', Name='Cheque No' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=52003) -; - -UPDATE AD_PrintFormatItem SET PrintName='Cheque No', Name='Cheque No' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=52003) -; - -UPDATE AD_Element SET Name='Key', PrintName='Key',Updated=TO_TIMESTAMP('2008-01-15 00:39:35','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=52005 -; - -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=52005 -; - -UPDATE AD_Column SET ColumnName='U_Key', Name='Key', Description=NULL, Help=NULL WHERE AD_Element_ID=52005 -; - -UPDATE AD_Field SET Name='Key', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=52005) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_Process_Para SET ColumnName='U_Key', Name='Key', Description=NULL, Help=NULL, AD_Element_ID=52005 WHERE UPPER(ColumnName)='U_KEY' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_Process_Para SET ColumnName='U_Key', Name='Key', Description=NULL, Help=NULL WHERE AD_Element_ID=52005 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PrintFormatItem SET PrintName='Key', Name='Key' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=52005) -; - -UPDATE AD_PrintFormatItem SET PrintName='Key', Name='Key' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=52005) -; - -UPDATE AD_Element SET Name='Value', PrintName='Value',Updated=TO_TIMESTAMP('2008-01-15 00:39:47','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=52006 -; - -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=52006 -; - -UPDATE AD_Column SET ColumnName='U_Value', Name='Value', Description=NULL, Help=NULL WHERE AD_Element_ID=52006 -; - -UPDATE AD_Field SET Name='Value', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=52006) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_Process_Para SET ColumnName='U_Value', Name='Value', Description=NULL, Help=NULL, AD_Element_ID=52006 WHERE UPPER(ColumnName)='U_VALUE' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_Process_Para SET ColumnName='U_Value', Name='Value', Description=NULL, Help=NULL WHERE AD_Element_ID=52006 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PrintFormatItem SET PrintName='Value', Name='Value' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=52006) -; - -UPDATE AD_PrintFormatItem SET PrintName='Value', Name='Value' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=52006) -; - -UPDATE AD_Element SET Name='Web Properties', PrintName='Web Properties',Updated=TO_TIMESTAMP('2008-01-15 00:40:02','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=52004 -; - -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=52004 -; - -UPDATE AD_Column SET ColumnName='U_Web_Properties_ID', Name='Web Properties', Description=NULL, Help=NULL WHERE AD_Element_ID=52004 -; - -UPDATE AD_Field SET Name='Web Properties', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=52004) AND IsCentrallyMaintained='Y' -; - -UPDATE AD_Process_Para SET ColumnName='U_Web_Properties_ID', Name='Web Properties', Description=NULL, Help=NULL, AD_Element_ID=52004 WHERE UPPER(ColumnName)='U_WEB_PROPERTIES_ID' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - -UPDATE AD_Process_Para SET ColumnName='U_Web_Properties_ID', Name='Web Properties', Description=NULL, Help=NULL WHERE AD_Element_ID=52004 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_PrintFormatItem SET PrintName='Web Properties', Name='Web Properties' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=52004) -; - -UPDATE AD_PrintFormatItem SET PrintName='Web Properties', Name='Web Properties' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=52004) -; - -UPDATE AD_Table SET Name='Web Properties',Updated=TO_TIMESTAMP('2008-01-15 00:40:09','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Table_ID=52001 -; - -UPDATE AD_Table_Trl SET IsTranslated='N' WHERE AD_Table_ID=52001 -; - - -SELECT '067_placeholder_branch350.sql' AS Filename; - -SELECT '068_placeholder_branch350.sql' AS Filename; - -SELECT '069_BF_1873440.sql' AS Filename; --- 17-ene-2008 0:07:20 COT --- [ 1873440 ] Product window misconfigured -UPDATE AD_Field SET IsSameLine='N', SeqNo=530,Updated=TO_TIMESTAMP('2008-01-17 00:07:20','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=52016 -; - -UPDATE AD_Field SET SeqNo=520,Updated=TO_TIMESTAMP('2008-01-17 00:07:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=52015 -; - - -SELECT '070_placeholder_branch350.sql' AS Filename; - -SELECT '071_placeholder_branch350.sql' AS Filename; - -SELECT '072_FR1875981_EAN13.sql' AS Filename; --- Jan 21, 2008 1:38:27 AM EET --- [ 1875981 ] Add support for EAN13 Barcode -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53288,377,TO_TIMESTAMP('2008-01-21 01:38:27','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','EAN 13',TO_TIMESTAMP('2008-01-21 01:38:27','YYYY-MM-DD HH24:MI:SS'),100,'E13') -; - --- Jan 21, 2008 1:38:28 AM EET --- [ 1875981 ] Add support for EAN13 Barcode -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53288 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - - -SELECT '073_placeholder_branch350.sql' AS Filename; - -SELECT '074_FR1876984.sql' AS Filename; --- Jan 21, 2008 11:13:10 PM COT --- 1876984 - Make payment numbering configurable -INSERT INTO AD_SysConfig (AD_Client_ID,AD_Org_ID,AD_SysConfig_ID,ConfigurationLevel,Created,CreatedBy,Description,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,50011,'C',TO_TIMESTAMP('2008-01-21 23:13:07','YYYY-MM-DD HH24:MI:SS'),100,'Y/N - Define if the payment document number must be overwritten with the check number','D','Y','PAYMENT_OVERWRITE_DOCUMENTNO_WITH_CHECK_ON_PAYMENT',TO_TIMESTAMP('2008-01-21 23:13:07','YYYY-MM-DD HH24:MI:SS'),100,'Y') -; - -INSERT INTO AD_SysConfig (AD_Client_ID,AD_Org_ID,AD_SysConfig_ID,ConfigurationLevel,Created,CreatedBy,Description,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,50012,'C',TO_TIMESTAMP('2008-01-21 23:13:30','YYYY-MM-DD HH24:MI:SS'),100,'Y/N - Define if the payment document number must be overwritten with the credit card','D','Y','PAYMENT_OVERWRITE_DOCUMENTNO_WITH_CREDIT_CARD',TO_TIMESTAMP('2008-01-21 23:13:30','YYYY-MM-DD HH24:MI:SS'),100,'Y') -; - -INSERT INTO AD_SysConfig (AD_Client_ID,AD_Org_ID,AD_SysConfig_ID,ConfigurationLevel,Created,CreatedBy,Description,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,50013,'C',TO_TIMESTAMP('2008-01-21 23:19:48','YYYY-MM-DD HH24:MI:SS'),100,'Y/N - Define if the payment (receipt) document number must be overwritten with the check number','D','Y','PAYMENT_OVERWRITE_DOCUMENTNO_WITH_CHECK_ON_RECEIPT',TO_TIMESTAMP('2008-01-21 23:19:48','YYYY-MM-DD HH24:MI:SS'),100,'Y') -; - -SELECT '075_FR1877902_BeanshellCallout.sql' AS Filename; --- Jan 23, 2008 11:41:34 AM COT --- 1877902 - Implement beanshell callout -INSERT INTO AD_Table (AD_Client_ID,AD_Org_ID,AD_Table_ID,AccessLevel,CopyColumnsFromTable,Created,CreatedBy,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,LoadSeq,Name,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53058,'4','N',TO_TIMESTAMP('2008-01-23 11:41:30','YYYY-MM-DD HH24:MI:SS'),100,'D','N','Y','N','Y','N','N','N',0,'Rule','L','AD_Rule',TO_TIMESTAMP('2008-01-23 11:41:30','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Table_Trl (AD_Language,AD_Table_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Table_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Table t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53058 AND EXISTS (SELECT * FROM AD_Table_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Table_ID!=t.AD_Table_ID) -; - -INSERT INTO AD_Sequence (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,Name,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53075,TO_TIMESTAMP('2008-01-23 11:41:35','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table AD_Rule',1,'Y','N','Y','Y','AD_Rule','N',1000000,TO_TIMESTAMP('2008-01-23 11:41:35','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54241,102,0,19,53058,'AD_Client_ID',TO_TIMESTAMP('2008-01-23 11:41:52','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Client_ID@','Client/Tenant for this installation.','D',22,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','N','Client',0,TO_TIMESTAMP('2008-01-23 11:41:52','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54241 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54242,113,0,19,53058,104,'AD_Org_ID',TO_TIMESTAMP('2008-01-23 11:41:59','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Org_ID@','Organizational entity within client','D',22,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','N','Organization',0,TO_TIMESTAMP('2008-01-23 11:41:59','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54242 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54243,245,0,16,53058,'Created',TO_TIMESTAMP('2008-01-23 11:42:03','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',7,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','N','Created',0,TO_TIMESTAMP('2008-01-23 11:42:03','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54243 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54244,246,0,18,110,53058,'CreatedBy',TO_TIMESTAMP('2008-01-23 11:42:09','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',22,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','N','Created By',0,TO_TIMESTAMP('2008-01-23 11:42:09','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54244 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54245,275,0,10,53058,'Description',TO_TIMESTAMP('2008-01-23 11:42:12','YYYY-MM-DD HH24:MI:SS'),100,'Optional short description of the record','D',255,'A description is limited to 255 characters.','Y','N','N','N','N','N','N','N','N','N','Y','Description',0,TO_TIMESTAMP('2008-01-23 11:42:12','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54245 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54246,326,0,14,53058,'Help',TO_TIMESTAMP('2008-01-23 11:42:17','YYYY-MM-DD HH24:MI:SS'),100,'Comment or Hint','D',2000,'The Help field contains a hint, comment or help about the use of this item.','Y','N','N','N','N','N','N','N','N','N','Y','Comment/Help',0,TO_TIMESTAMP('2008-01-23 11:42:17','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54246 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54247,348,0,20,53058,'IsActive',TO_TIMESTAMP('2008-01-23 11:42:22','YYYY-MM-DD HH24:MI:SS'),100,'Y','The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons for de-activating and not deleting records: -(1) The system requires the record for audit purposes. -(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries.','Y','N','N','N','N','Y','N','N','N','N','Y','Active',0,TO_TIMESTAMP('2008-01-23 11:42:22','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54247 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,53332,0,'AD_Rule_ID',TO_TIMESTAMP('2008-01-23 11:42:24','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Rule','Rule',TO_TIMESTAMP('2008-01-23 11:42:24','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53332 AND EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54248,53332,0,13,53058,'AD_Rule_ID',TO_TIMESTAMP('2008-01-23 11:42:24','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','Y','Y','N','N','N','N','N','Rule',0,TO_TIMESTAMP('2008-01-23 11:42:24','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54248 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54249,469,0,10,53058,'Name',TO_TIMESTAMP('2008-01-23 11:42:27','YYYY-MM-DD HH24:MI:SS'),100,'Alphanumeric identifier of the entity','D',60,'The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.','Y','N','N','Y','N','Y','N','N','N','N','Y','Name',1,TO_TIMESTAMP('2008-01-23 11:42:27','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54249 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54250,607,0,16,53058,'Updated',TO_TIMESTAMP('2008-01-23 11:42:32','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','N','Updated',0,TO_TIMESTAMP('2008-01-23 11:42:32','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54250 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54251,608,0,18,110,53058,'UpdatedBy',TO_TIMESTAMP('2008-01-23 11:42:35','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',22,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','N','Updated By',0,TO_TIMESTAMP('2008-01-23 11:42:35','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54251 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54252,620,0,10,53058,'Value',TO_TIMESTAMP('2008-01-23 11:42:41','YYYY-MM-DD HH24:MI:SS'),100,'Search key for the record in the format required - must be unique','D',40,'A search key allows you a fast method of finding a particular record. -If you leave the search key empty, the system automatically creates a numeric number. The document sequence used for this fallback number is defined in the "Maintain Sequence" window with the name "DocumentNo_", where TableName is the actual name of the table (e.g. C_Order).','Y','N','N','N','N','Y','N','N','N','N','Y','Search Key',0,TO_TIMESTAMP('2008-01-23 11:42:41','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54252 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,ReadOnlyLogic,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54253,1682,0,18,389,53058,'EntityType',TO_TIMESTAMP('2008-01-23 11:47:17','YYYY-MM-DD HH24:MI:SS'),100,'U','Dictionary Entity Type; Determines ownership and synchronization','D',40,'The Entity Types "Dictionary", "Adempiere" and "Application" might be automatically synchronized and customizations deleted or overwritten. - -For customizations, copy the entity and select "User"!','Y','N','N','N','N','N','N','N','N','N','Y','Entity Type','@EntityType@=D',0,TO_TIMESTAMP('2008-01-23 11:47:17','YYYY-MM-DD HH24:MI:SS'),100,1.000000000000) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54253 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,53333,0,'RuleType',TO_TIMESTAMP('2008-01-23 11:48:41','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Rule Type','Rule Type',TO_TIMESTAMP('2008-01-23 11:48:41','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53333 AND EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_Reference (AD_Client_ID,AD_Org_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,ValidationType) VALUES (0,0,53235,TO_TIMESTAMP('2008-01-23 11:49:53','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','AD_Rule_RuleType',TO_TIMESTAMP('2008-01-23 11:49:53','YYYY-MM-DD HH24:MI:SS'),100,'L') -; - -INSERT INTO AD_Reference_Trl (AD_Language,AD_Reference_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Reference_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Reference t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Reference_ID=53235 AND EXISTS (SELECT * FROM AD_Reference_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Reference_ID!=t.AD_Reference_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53289,53235,TO_TIMESTAMP('2008-01-23 11:51:19','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Aspect Orient Program',TO_TIMESTAMP('2008-01-23 11:51:19','YYYY-MM-DD HH24:MI:SS'),100,'A') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53289 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53290,53235,TO_TIMESTAMP('2008-01-23 11:51:28','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','BeanShell',TO_TIMESTAMP('2008-01-23 11:51:28','YYYY-MM-DD HH24:MI:SS'),100,'B') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53290 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53291,53235,TO_TIMESTAMP('2008-01-23 11:51:42','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','JSR 94 Rule Engine API',TO_TIMESTAMP('2008-01-23 11:51:42','YYYY-MM-DD HH24:MI:SS'),100,'R') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53291 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53292,53235,TO_TIMESTAMP('2008-01-23 11:51:51','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','SQL',TO_TIMESTAMP('2008-01-23 11:51:51','YYYY-MM-DD HH24:MI:SS'),100,'S') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53292 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54254,53333,0,17,53235,53058,'RuleType',TO_TIMESTAMP('2008-01-23 11:52:52','YYYY-MM-DD HH24:MI:SS'),100,'D',1,'Y','N','N','N','N','N','N','N','N','N','Y','Rule Type',0,TO_TIMESTAMP('2008-01-23 11:52:52','YYYY-MM-DD HH24:MI:SS'),100,1.000000000000) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54254 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Reference (AD_Client_ID,AD_Org_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,ValidationType) VALUES (0,0,53236,TO_TIMESTAMP('2008-01-23 11:54:58','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','AD_Rule_EventType',TO_TIMESTAMP('2008-01-23 11:54:58','YYYY-MM-DD HH24:MI:SS'),100,'L') -; - -INSERT INTO AD_Reference_Trl (AD_Language,AD_Reference_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Reference_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Reference t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Reference_ID=53236 AND EXISTS (SELECT * FROM AD_Reference_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Reference_ID!=t.AD_Reference_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53293,53236,TO_TIMESTAMP('2008-01-23 11:55:09','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Callout',TO_TIMESTAMP('2008-01-23 11:55:09','YYYY-MM-DD HH24:MI:SS'),100,'C') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53293 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53294,53236,TO_TIMESTAMP('2008-01-23 11:55:16','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Process',TO_TIMESTAMP('2008-01-23 11:55:16','YYYY-MM-DD HH24:MI:SS'),100,'P') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53294 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53295,53236,TO_TIMESTAMP('2008-01-23 11:55:56','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Model Validator Table Event',TO_TIMESTAMP('2008-01-23 11:55:56','YYYY-MM-DD HH24:MI:SS'),100,'T') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53295 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53296,53236,TO_TIMESTAMP('2008-01-23 11:56:08','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Model Validator Document Event',TO_TIMESTAMP('2008-01-23 11:56:08','YYYY-MM-DD HH24:MI:SS'),100,'D') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53296 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53297,53236,TO_TIMESTAMP('2008-01-23 11:56:20','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Model Validator Login Event',TO_TIMESTAMP('2008-01-23 11:56:20','YYYY-MM-DD HH24:MI:SS'),100,'L') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53297 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -UPDATE AD_Ref_List SET EntityType='D',Updated=TO_TIMESTAMP('2008-01-23 11:56:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Ref_List_ID=53296 -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54255,2334,0,17,53236,53058,'EventType',TO_TIMESTAMP('2008-01-23 11:56:51','YYYY-MM-DD HH24:MI:SS'),100,'Type of Event','D',1,'Y','N','N','N','N','N','N','N','N','N','Y','Event Type',0,TO_TIMESTAMP('2008-01-23 11:56:51','YYYY-MM-DD HH24:MI:SS'),100,1.000000000000) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54255 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54256,145,0,17,5,53058,'AccessLevel',TO_TIMESTAMP('2008-01-23 11:58:09','YYYY-MM-DD HH24:MI:SS'),100,NULL,'Access Level required','D',1,'Indicates the access level required for this record or process.','Y','N','N','N','N','N','N','N','N','N','Y','Data Access Level',0,TO_TIMESTAMP('2008-01-23 11:58:09','YYYY-MM-DD HH24:MI:SS'),100,1.000000000000) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54256 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -UPDATE AD_Column SET EntityType='D',Updated=TO_TIMESTAMP('2008-01-23 11:58:34','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54253 -; - -UPDATE AD_Field SET Name='Entity Type', Description='Dictionary Entity Type; Determines ownership and synchronization', Help='The Entity Types "Dictionary", "Adempiere" and "Application" might be automatically synchronized and customizations deleted or overwritten. - -For customizations, copy the entity and select "User"!' WHERE AD_Column_ID=54253 AND IsCentrallyMaintained='Y' -; - -INSERT INTO AD_Window (AD_Client_ID,AD_Org_ID,AD_Window_ID,Created,CreatedBy,EntityType,IsActive,IsBetaFunctionality,IsDefault,IsSOTrx,Name,Processing,Updated,UpdatedBy,WinHeight,WinWidth,WindowType) VALUES (0,0,53017,TO_TIMESTAMP('2008-01-23 11:59:57','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','N','N','N','Rule','N',TO_TIMESTAMP('2008-01-23 11:59:57','YYYY-MM-DD HH24:MI:SS'),100,0,0,'M') -; - -INSERT INTO AD_Window_Trl (AD_Language,AD_Window_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Window_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Window t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Window_ID=53017 AND EXISTS (SELECT * FROM AD_Window_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Window_ID!=t.AD_Window_ID) -; - -INSERT INTO AD_Window_Access (AD_Client_ID,AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,0,53017,TO_TIMESTAMP('2008-01-23 12:00:05','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-01-23 12:00:05','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Window_Access (AD_Client_ID,AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,102,53017,TO_TIMESTAMP('2008-01-23 12:00:05','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-01-23 12:00:05','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Window_Access (AD_Client_ID,AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,103,53017,TO_TIMESTAMP('2008-01-23 12:00:05','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-01-23 12:00:05','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Window_Access (AD_Client_ID,AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,50001,53017,TO_TIMESTAMP('2008-01-23 12:00:05','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-01-23 12:00:05','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Tab (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,Created,CreatedBy,EntityType,HasTree,ImportFields,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,Name,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53068,53058,53017,TO_TIMESTAMP('2008-01-23 12:00:28','YYYY-MM-DD HH24:MI:SS'),100,'D','N','N','Y','N','N','Y','N','Y','N','N','Rule','N',10,0,TO_TIMESTAMP('2008-01-23 12:00:28','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Tab_Trl (AD_Language,AD_Tab_ID, CommitWarning,Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Tab t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53068 AND EXISTS (SELECT * FROM AD_Tab_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54247,54335,0,53068,TO_TIMESTAMP('2008-01-23 12:00:32','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons for de-activating and not deleting records: -(1) The system requires the record for audit purposes. -(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries.','Y','Y','Y','N','N','N','N','N','Active',TO_TIMESTAMP('2008-01-23 12:00:32','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54335 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54241,54336,0,53068,TO_TIMESTAMP('2008-01-23 12:00:34','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',22,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','N','Client',TO_TIMESTAMP('2008-01-23 12:00:34','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54336 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54246,54337,0,53068,TO_TIMESTAMP('2008-01-23 12:00:34','YYYY-MM-DD HH24:MI:SS'),100,'Comment or Hint',2000,'D','The Help field contains a hint, comment or help about the use of this item.','Y','Y','Y','N','N','N','N','N','Comment/Help',TO_TIMESTAMP('2008-01-23 12:00:34','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54337 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54256,54338,0,53068,TO_TIMESTAMP('2008-01-23 12:00:35','YYYY-MM-DD HH24:MI:SS'),100,'Access Level required',1,'D','Indicates the access level required for this record or process.','Y','Y','Y','N','N','N','N','N','Data Access Level',TO_TIMESTAMP('2008-01-23 12:00:35','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54338 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54245,54339,0,53068,TO_TIMESTAMP('2008-01-23 12:00:37','YYYY-MM-DD HH24:MI:SS'),100,'Optional short description of the record',255,'D','A description is limited to 255 characters.','Y','Y','Y','N','N','N','N','N','Description',TO_TIMESTAMP('2008-01-23 12:00:37','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54339 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54253,54340,0,53068,TO_TIMESTAMP('2008-01-23 12:00:37','YYYY-MM-DD HH24:MI:SS'),100,'Dictionary Entity Type; Determines ownership and synchronization',40,'D','The Entity Types "Dictionary", "Adempiere" and "Application" might be automatically synchronized and customizations deleted or overwritten. - -For customizations, copy the entity and select "User"!','Y','Y','Y','N','N','N','N','N','Entity Type',TO_TIMESTAMP('2008-01-23 12:00:37','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54340 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54255,54341,0,53068,TO_TIMESTAMP('2008-01-23 12:00:38','YYYY-MM-DD HH24:MI:SS'),100,'Type of Event',1,'D','Y','Y','Y','N','N','N','N','N','Event Type',TO_TIMESTAMP('2008-01-23 12:00:38','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54341 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54249,54342,0,53068,TO_TIMESTAMP('2008-01-23 12:00:42','YYYY-MM-DD HH24:MI:SS'),100,'Alphanumeric identifier of the entity',60,'D','The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.','Y','Y','Y','N','N','N','N','N','Name',TO_TIMESTAMP('2008-01-23 12:00:42','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54342 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54242,54343,0,53068,TO_TIMESTAMP('2008-01-23 12:00:43','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',22,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','N','N','Organization',TO_TIMESTAMP('2008-01-23 12:00:43','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54343 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54248,54344,0,53068,TO_TIMESTAMP('2008-01-23 12:00:44','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','N','N','N','N','N','N','Rule',TO_TIMESTAMP('2008-01-23 12:00:44','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54344 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54254,54345,0,53068,TO_TIMESTAMP('2008-01-23 12:00:45','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','N','Rule Type',TO_TIMESTAMP('2008-01-23 12:00:45','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54345 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54252,54346,0,53068,TO_TIMESTAMP('2008-01-23 12:00:46','YYYY-MM-DD HH24:MI:SS'),100,'Search key for the record in the format required - must be unique',40,'D','A search key allows you a fast method of finding a particular record. -If you leave the search key empty, the system automatically creates a numeric number. The document sequence used for this fallback number is defined in the "Maintain Sequence" window with the name "DocumentNo_", where TableName is the actual name of the table (e.g. C_Order).','Y','Y','Y','N','N','N','N','N','Search Key',TO_TIMESTAMP('2008-01-23 12:00:46','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54346 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -UPDATE AD_Field SET SeqNo=10,IsDisplayed='Y' WHERE AD_Field_ID=54336 -; - -UPDATE AD_Field SET SeqNo=20,IsDisplayed='Y' WHERE AD_Field_ID=54343 -; - -UPDATE AD_Field SET SeqNo=30,IsDisplayed='Y' WHERE AD_Field_ID=54346 -; - -UPDATE AD_Field SET SeqNo=40,IsDisplayed='Y' WHERE AD_Field_ID=54342 -; - -UPDATE AD_Field SET SeqNo=50,IsDisplayed='Y' WHERE AD_Field_ID=54339 -; - -UPDATE AD_Field SET SeqNo=60,IsDisplayed='Y' WHERE AD_Field_ID=54337 -; - -UPDATE AD_Field SET SeqNo=70,IsDisplayed='Y' WHERE AD_Field_ID=54341 -; - -UPDATE AD_Field SET SeqNo=80,IsDisplayed='Y' WHERE AD_Field_ID=54345 -; - -UPDATE AD_Field SET SeqNo=90,IsDisplayed='Y' WHERE AD_Field_ID=54340 -; - -UPDATE AD_Field SET SeqNo=100,IsDisplayed='Y' WHERE AD_Field_ID=54338 -; - -UPDATE AD_Field SET SeqNo=110,IsDisplayed='Y' WHERE AD_Field_ID=54335 -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54257,1718,0,34,53058,'Script',TO_TIMESTAMP('2008-01-23 12:02:24','YYYY-MM-DD HH24:MI:SS'),100,'Dynamic Java Language Script to calculate result','D',4000,'Use Java language constructs to define the result of the calculation','Y','N','N','N','N','N','N','N','N','N','Y','Script',0,TO_TIMESTAMP('2008-01-23 12:02:24','YYYY-MM-DD HH24:MI:SS'),100,1.000000000000) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54257 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -UPDATE AD_Column SET AD_Reference_ID=14,Updated=TO_TIMESTAMP('2008-01-23 12:02:58','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54257 -; - -UPDATE AD_Field SET Name='Script', Description='Dynamic Java Language Script to calculate result', Help='Use Java language constructs to define the result of the calculation' WHERE AD_Column_ID=54257 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_Column SET AD_Reference_ID=34,Updated=TO_TIMESTAMP('2008-01-23 12:03:36','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54246 -; - -UPDATE AD_Field SET Name='Comment/Help', Description='Comment or Hint', Help='The Help field contains a hint, comment or help about the use of this item.' WHERE AD_Column_ID=54246 AND IsCentrallyMaintained='Y' -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54257,54347,0,53068,TO_TIMESTAMP('2008-01-23 12:04:09','YYYY-MM-DD HH24:MI:SS'),100,'Dynamic Java Language Script to calculate result',4000,'D','Use Java language constructs to define the result of the calculation','Y','Y','Y','N','N','N','N','N','Script',TO_TIMESTAMP('2008-01-23 12:04:09','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54347 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -UPDATE AD_Field SET SeqNo=110,IsDisplayed='Y' WHERE AD_Field_ID=54347 -; - -UPDATE AD_Field SET SeqNo=120,IsDisplayed='Y' WHERE AD_Field_ID=54335 -; - -UPDATE AD_Field SET IsSameLine='Y',Updated=TO_TIMESTAMP('2008-01-23 12:04:30','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54343 -; - -UPDATE AD_Field SET DisplayLength=20,Updated=TO_TIMESTAMP('2008-01-23 12:04:38','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54346 -; - -UPDATE AD_Field SET SeqNo=90,IsDisplayed='Y' WHERE AD_Field_ID=54338 -; - -UPDATE AD_Field SET SeqNo=100,IsDisplayed='Y' WHERE AD_Field_ID=54347 -; - -UPDATE AD_Field SET SeqNo=110,IsDisplayed='Y' WHERE AD_Field_ID=54340 -; - -UPDATE AD_Field SET IsSameLine='Y',Updated=TO_TIMESTAMP('2008-01-23 12:05:11','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54338 -; - -UPDATE AD_Field SET DisplayLogic='@RuleType@=S',Updated=TO_TIMESTAMP('2008-01-23 12:05:22','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54338 -; - -UPDATE AD_Field SET IsSameLine='Y',Updated=TO_TIMESTAMP('2008-01-23 12:05:34','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54335 -; - -UPDATE AD_Table SET AD_Window_ID=53017,Updated=TO_TIMESTAMP('2008-01-23 12:05:51','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Table_ID=53058 -; - -INSERT INTO AD_Menu (AD_Client_ID,AD_Menu_ID,AD_Org_ID,AD_Window_ID,"action",Created,CreatedBy,EntityType,IsActive,IsReadOnly,IsSOTrx,IsSummary,Name,Updated,UpdatedBy) VALUES (0,53086,0,53017,'W',TO_TIMESTAMP('2008-01-23 12:06:13','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','N','N','N','Rule',TO_TIMESTAMP('2008-01-23 12:06:13','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Menu_Trl (AD_Language,AD_Menu_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Menu_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Menu t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Menu_ID=53086 AND EXISTS (SELECT * FROM AD_Menu_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Menu_ID!=t.AD_Menu_ID) -; - -INSERT INTO AD_TreeNodeMM (AD_Client_ID,AD_Org_ID, IsActive,Created,CreatedBy,Updated,UpdatedBy, AD_Tree_ID, Node_ID, Parent_ID, SeqNo) SELECT t.AD_Client_ID,0, 'Y', CURRENT_TIMESTAMP, 0, CURRENT_TIMESTAMP, 0,t.AD_Tree_ID, 53086, 0, 999 FROM AD_Tree t WHERE t.AD_Client_ID=0 AND t.IsActive='Y' AND t.IsAllNodes='Y' AND t.TreeType='MM' AND NOT EXISTS (SELECT * FROM AD_TreeNodeMM e WHERE e.AD_Tree_ID=t.AD_Tree_ID AND Node_ID=53086) -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=0, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=218 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=1, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=153 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=2, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=263 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=3, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=166 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=4, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=203 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=5, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=236 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=6, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=183 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=7, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=160 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=8, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=278 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=9, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=345 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=10, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53083 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=0, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=586 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=1, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=138 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=2, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=139 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=3, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=249 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=4, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=141 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=5, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=589 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=6, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=216 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=7, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=140 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=8, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=142 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=9, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53012 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=10, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=143 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=11, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=201 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=12, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=176 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=13, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53086 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=14, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=239 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=15, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=517 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=16, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=50001 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=17, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=499 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=0, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=586 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=1, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=138 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=2, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=139 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=3, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=249 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=4, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=141 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=5, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=589 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=6, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=216 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=7, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=140 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=8, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=142 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=9, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53012 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=10, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=143 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=11, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=201 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=12, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=176 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=13, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53086 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=14, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=239 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=15, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=517 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=16, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=499 -; - -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=17, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=50001 -; - -UPDATE AD_Column SET AD_Reference_ID=14,Updated=TO_TIMESTAMP('2008-01-23 12:13:14','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54246 -; - -UPDATE AD_Field SET Name='Comment/Help', Description='Comment or Hint', Help='The Help field contains a hint, comment or help about the use of this item.' WHERE AD_Column_ID=54246 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_Column SET AD_Reference_ID=34,Updated=TO_TIMESTAMP('2008-01-23 12:13:24','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54257 -; - -UPDATE AD_Field SET Name='Script', Description='Dynamic Java Language Script to calculate result', Help='Use Java language constructs to define the result of the calculation' WHERE AD_Column_ID=54257 AND IsCentrallyMaintained='Y' -; - --- Jan 23, 2008 12:25:02 PM COT --- 1877902 - Implement beanshell callout -CREATE TABLE AD_Rule (AD_Client_ID NUMERIC(10) DEFAULT NULL NOT NULL, AD_Org_ID NUMERIC(10) DEFAULT NULL NOT NULL, AD_Rule_ID NUMERIC(10) NOT NULL, AccessLevel CHAR(1), Created TIMESTAMP NOT NULL, CreatedBy NUMERIC(10) NOT NULL, Description VARCHAR(255), EntityType VARCHAR(40) DEFAULT 'U', EventType CHAR(1), Help VARCHAR(2000), IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL, Name VARCHAR(60) NOT NULL, RuleType CHAR(1), Script VARCHAR(2000), Updated TIMESTAMP NOT NULL, UpdatedBy NUMERIC(10) NOT NULL, Value VARCHAR(40) NOT NULL, CONSTRAINT AD_Rule_Key PRIMARY KEY (AD_Rule_ID)) -; - --- Jan 23, 2008 12:59:35 PM COT --- Default comment for updating dictionary -UPDATE AD_Field SET DisplayLength=20,Updated=TO_TIMESTAMP('2008-01-23 12:59:34','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54340 -; - --- Jan 23, 2008 1:00:29 PM COT --- Default comment for updating dictionary -UPDATE AD_Column SET AD_Reference_ID=14,Updated=TO_TIMESTAMP('2008-01-23 13:00:29','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54257 -; - --- Jan 23, 2008 1:00:29 PM COT --- Default comment for updating dictionary -UPDATE AD_Field SET Name='Script', Description='Dynamic Java Language Script to calculate result', Help='Use Java language constructs to define the result of the calculation' WHERE AD_Column_ID=54257 AND IsCentrallyMaintained='Y' -; - --- Jan 23, 2008 1:01:43 PM COT --- Default comment for updating dictionary -UPDATE AD_Column SET AD_Reference_ID=34, FieldLength=20000,Updated=TO_TIMESTAMP('2008-01-23 13:01:43','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54257 -; - --- Jan 23, 2008 1:01:43 PM COT --- Default comment for updating dictionary -UPDATE AD_Field SET Name='Script', Description='Dynamic Java Language Script to calculate result', Help='Use Java language constructs to define the result of the calculation' WHERE AD_Column_ID=54257 AND IsCentrallyMaintained='Y' -; - --- Jan 23, 2008 1:01:46 PM COT --- Default comment for updating dictionary -UPDATE AD_Column SET FieldLength=2000,Updated=TO_TIMESTAMP('2008-01-23 13:01:46','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54257 -; - --- Jan 23, 2008 1:01:46 PM COT --- Default comment for updating dictionary -UPDATE AD_Field SET Name='Script', Description='Dynamic Java Language Script to calculate result', Help='Use Java language constructs to define the result of the calculation' WHERE AD_Column_ID=54257 AND IsCentrallyMaintained='Y' -; - --- Jan 23, 2008 1:03:35 PM COT --- Default comment for updating dictionary -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53298,53235,TO_TIMESTAMP('2008-01-23 13:03:34','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Groovy',TO_TIMESTAMP('2008-01-23 13:03:34','YYYY-MM-DD HH24:MI:SS'),100,'G') -; - --- Jan 23, 2008 1:03:35 PM COT --- Default comment for updating dictionary -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53298 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - - -SELECT '076_FR1877902_EngineScript.sql' AS Filename; --- Jan 24, 2008 2:25:48 PM CST --- 1877902 - Implement JSR 223: Scripting -DELETE FROM AD_REF_LIST_TRL WHERE AD_Ref_List_ID=53298 -; - -DELETE FROM AD_REF_LIST WHERE AD_Ref_List_ID=53298 -; - -UPDATE AD_REF_LIST SET VALUE='Q',Updated=TO_TIMESTAMP('2008-01-24 14:27:04','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Ref_List_ID=53292 -; - -UPDATE AD_REF_LIST SET VALUE='S', NAME='JSR 223 Scripting APIs',Updated=TO_TIMESTAMP('2008-01-24 14:26:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Ref_List_ID=53290 -; - -UPDATE AD_REF_LIST_TRL SET IsTranslated='N' WHERE AD_Ref_List_ID=53290 -; - -UPDATE AD_FIELD SET DisplayLogic='@RuleType@=Q',Updated=TO_TIMESTAMP('2008-01-24 14:28:14','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Field_ID=54338 -; -SELECT '077_BF_1871567.sql' AS Filename; --- Review optional scripts at the end - --- Jan 24, 2008 5:45:28 PM GMT-03:00 --- BUG 1871567 - Wrong value in Payment document -INSERT INTO AD_ELEMENT (AD_Org_ID,UpdatedBy,Updated,PrintName,NAME,IsActive,EntityType,CreatedBy,Created,ColumnName,AD_Element_ID,AD_Client_ID) VALUES (0,100,TO_TIMESTAMP('2008-01-24 17:45:27','YYYY-MM-DD HH24:MI:SS'),'Generated Draft','Generated Draft','Y','D',100,TO_TIMESTAMP('2008-01-24 17:45:27','YYYY-MM-DD HH24:MI:SS'),'IsGeneratedDraft',53334,0) -; - -INSERT INTO AD_ELEMENT_TRL (AD_LANGUAGE,AD_Element_ID, PrintName,PO_PrintName,PO_Name,PO_Help,PO_Description,NAME,Help,Description, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Element_ID, t.PrintName,t.PO_PrintName,t.PO_Name,t.PO_Help,t.PO_Description,t.NAME,t.Help,t.Description, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_ELEMENT t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53334 AND EXISTS (SELECT * FROM AD_ELEMENT_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_COLUMN (AD_Org_ID,VERSION,UpdatedBy,Updated,SeqNo,NAME,IsUpdateable,IsTranslated,IsSyncDatabase,IsSelectionColumn,IsParent,IsMandatory,IsKey,IsIdentifier,IsEncrypted,IsAlwaysUpdateable,IsActive,FieldLength,EntityType,DefaultValue,CreatedBy,Created,ColumnName,AD_Table_ID,AD_Reference_ID,AD_Element_ID,AD_Column_ID,AD_Client_ID) VALUES (0,0,100,TO_TIMESTAMP('2008-01-24 17:46:47','YYYY-MM-DD HH24:MI:SS'),0,'Generated Draft','Y','N','N','N','N','Y','N','N','N','N','Y',1,'D','N',100,TO_TIMESTAMP('2008-01-24 17:46:47','YYYY-MM-DD HH24:MI:SS'),'IsGeneratedDraft',525,20,53334,54258,0) -; - -INSERT INTO AD_COLUMN_TRL (AD_LANGUAGE,AD_Column_ID, NAME, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_LANGUAGE,t.AD_Column_ID, t.NAME, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_LANGUAGE l, AD_COLUMN t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54258 AND EXISTS (SELECT * FROM AD_COLUMN_TRL tt WHERE tt.AD_LANGUAGE!=l.AD_LANGUAGE OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -ALTER TABLE C_PAYSELECTIONCHECK ADD COLUMN IsGeneratedDraft CHAR(1) DEFAULT 'N' CHECK (IsGeneratedDraft IN ('Y','N')) NOT NULL -; - - -/* - --- The following SQL's are not executed by default --- they are provided to fix C_PaySelectionCheck if you're having the problem described --- in BUG 1871567 - Wrong value in Payment document - --- Mark as Generated in Draft the checks from payments still not processed - -UPDATE C_PAYSELECTIONCHECK - SET isgenerateddraft = 'Y' - WHERE isgenerateddraft = 'N' - AND c_payselectioncheck_id IN ( - SELECT psc.c_payselectioncheck_id - FROM C_PAYSELECTIONCHECK psc, C_PAYMENT p - WHERE psc.c_payment_id = p.c_payment_id - AND p.processed = 'N'); - --- Mark as Generated in Draft the checks from payments with different amounts - -UPDATE C_PAYSELECTIONCHECK - SET isgenerateddraft = 'Y' - WHERE isgenerateddraft = 'N' - AND c_payselectioncheck_id IN ( - SELECT psl.c_payselectioncheck_id - FROM C_PAYSELECTIONLINE psl, C_PAYMENT p - WHERE p.c_payment_id = psl.c_invoice_id - AND ( psl.openamt <> (p.payamt - p.discountamt) - OR psl.payamt <> p.payamt - ) - AND p.c_invoice_id > 0); - - --- Mark as Generated in Draft the checks from payment allocates with different amounts - -UPDATE C_PAYSELECTIONCHECK - SET isgenerateddraft = 'Y' - WHERE isgenerateddraft = 'N' - AND c_payselectioncheck_id IN ( - SELECT psl.c_payselectioncheck_id - FROM C_PAYSELECTIONLINE psl, C_PAYMENT p, C_PAYMENTALLOCATE pa - WHERE p.c_payment_id = psl.c_invoice_id - AND (p.c_invoice_id IS NULL OR p.c_invoice_id = 0) - AND p.c_payment_id = pa.c_payment_id - HAVING ( psl.openamt <> SUM (pa.amount - pa.discountamt) - OR psl.payamt <> SUM (pa.amount) - ) - GROUP BY psl.c_payselectioncheck_id, psl.openamt, psl.payamt); - -*/ -SELECT '078_FR1877902_EngineScript.sql' AS Filename; --- Jan 24, 2008 10:27:22 PM COT --- 1877902 - Implement JSR 223: Scripting callout -INSERT INTO AD_Message (AD_Client_ID,AD_Message_ID,AD_Org_ID,Created,CreatedBy,EntityType,IsActive,MsgText,MsgTip,MsgType,Updated,UpdatedBy,Value) VALUES (0,53023,0,TO_TIMESTAMP('2008-01-24 22:27:19','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Wrong Script Value - format for JSR 223 Script must be engine:scriptName where supported engines must be something like groovy, jython, beanshell',NULL,'E',TO_TIMESTAMP('2008-01-24 22:27:19','YYYY-MM-DD HH24:MI:SS'),100,'WrongScriptValue') -; - -INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=53023 AND EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Message_ID!=t.AD_Message_ID) -; - - -SELECT '079_placeholder_branch350.sql' AS Filename; - -SELECT '080_BF_1879568.sql' AS Filename; --- BF [ 1879568 ] CalloutMouvement QtyAvailable issues --- http://sourceforge.net/tracker/?func=detail&atid=879332&aid=1879568&group_id=176962 --- --- WARNING: if you already modified the Callout column, this update will do nothing, solve the issue manually -update AD_Column set Callout='org.compiere.model.CalloutMovement.locator' -where AD_Column_ID=3591 and Callout is null; --- - - -SELECT '081_BF1846279.sql' AS Filename; --- BF [ 1846279 ] No Translation for "name" in c_order_linetax_vt --- View: "c_order_linetax_vt" - -CREATE OR REPLACE VIEW C_ORDER_LINETAX_VT -(AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, - UPDATED, UPDATEDBY, AD_LANGUAGE, C_ORDER_ID, C_ORDERLINE_ID, - C_TAX_ID, TAXINDICATOR, C_BPARTNER_ID, C_BPARTNER_LOCATION_ID, BPNAME, - C_LOCATION_ID, LINE, M_PRODUCT_ID, QTYORDERED, QTYENTERED, - UOMSYMBOL, NAME, DESCRIPTION, DOCUMENTNOTE, UPC, - SKU, PRODUCTVALUE, RESOURCEDESCRIPTION, PRICELIST, PRICEENTEREDLIST, - DISCOUNT, PRICEACTUAL, PRICEENTERED, LINENETAMT, PRODUCTDESCRIPTION, - IMAGEURL, C_CAMPAIGN_ID, C_PROJECT_ID, C_ACTIVITY_ID, C_PROJECTPHASE_ID, - C_PROJECTTASK_ID) -AS -SELECT ol.AD_Client_ID, ol.AD_Org_ID, ol.IsActive, ol.Created, ol.CreatedBy, ol.Updated, ol.UpdatedBy, - uom.AD_Language, - ol.C_Order_ID, ol.C_OrderLine_ID, ol.C_Tax_ID, t.TaxIndicator, - ol.C_BPartner_ID, ol.C_BPartner_Location_ID, bp.Name AS BPName, bpl.C_Location_ID, - ol.Line, p.M_Product_ID, - CASE WHEN ol.QtyOrdered<>0 OR ol.M_Product_ID IS NOT NULL THEN ol.QtyOrdered END AS QtyOrdered, - CASE WHEN ol.QtyEntered<>0 OR ol.M_Product_ID IS NOT NULL THEN ol.QtyEntered END AS QtyEntered, - CASE WHEN ol.QtyEntered<>0 OR ol.M_Product_ID IS NOT NULL THEN uom.UOMSymbol END AS UOMSymbol, - COALESCE(pt.Name, c.Name,p.Name||productAttribute(ol.M_AttributeSetInstance_ID), ol.Description) AS Name, -- main line - CASE WHEN COALESCE(c.Name,pt.Name, p.Name) IS NOT NULL THEN ol.Description END AS Description, -- second line - COALESCE(pt.DocumentNote, p.DocumentNote) AS DocumentNote, -- third line - p.UPC, p.SKU, COALESCE(pp.VendorProductNo,p.Value) AS ProductValue, - ra.Description AS ResourceDescription, -- forth line - CASE WHEN i.IsDiscountPrinted='Y' AND ol.PriceList<>0 - THEN ol.PriceList END AS PriceList, - CASE WHEN i.IsDiscountPrinted='Y' AND ol.PriceList<>0 AND ol.QtyEntered<>0 - THEN ol.PriceList*ol.QtyOrdered/ol.QtyEntered END AS PriceEnteredList, - CASE WHEN i.IsDiscountPrinted='Y' AND ol.PriceList>ol.PriceActual AND ol.PriceList<>0 - THEN (ol.PriceList-ol.PriceActual)/ol.PriceList*100 END AS Discount, - CASE WHEN ol.PriceActual<>0 OR ol.M_Product_ID IS NOT NULL THEN ol.PriceActual END AS PriceActual, - CASE WHEN ol.PriceEntered<>0 OR ol.M_Product_ID IS NOT NULL THEN ol.PriceEntered END AS PriceEntered, - CASE WHEN ol.LineNetAmt<>0 OR ol.M_Product_ID IS NOT NULL THEN ol.LineNetAmt END AS LineNetAmt, - pt.Description as ProductDescription, p.ImageURL, - ol.C_Campaign_ID, ol.C_Project_ID, ol.C_Activity_ID, ol.C_ProjectPhase_ID, ol.C_ProjectTask_ID -FROM C_OrderLine ol - INNER JOIN C_UOM_Trl uom ON (ol.C_UOM_ID=uom.C_UOM_ID) - INNER JOIN C_Order i ON (ol.C_Order_ID=i.C_Order_ID) - LEFT OUTER JOIN M_Product p ON (ol.M_Product_ID=p.M_Product_ID) - LEFT OUTER JOIN M_Product_Trl pt ON (ol.M_Product_ID=pt.M_Product_ID AND uom.AD_Language=pt.AD_Language) - LEFT OUTER JOIN S_ResourceAssignment ra ON (ol.S_ResourceAssignment_ID=ra.S_ResourceAssignment_ID) - LEFT OUTER JOIN C_Charge c ON (ol.C_Charge_ID=c.C_Charge_ID) - LEFT OUTER JOIN C_BPartner_Product pp ON (ol.M_Product_ID=pp.M_Product_ID AND i.C_BPartner_ID=pp.C_BPartner_ID) - INNER JOIN C_BPartner bp ON (ol.C_BPartner_ID=bp.C_BPartner_ID) - INNER JOIN C_BPartner_Location bpl ON (ol.C_BPartner_Location_ID=bpl.C_BPartner_Location_ID) - LEFT OUTER JOIN C_Tax_Trl t ON (ol.C_Tax_ID=t.C_Tax_ID AND uom.AD_Language=t.AD_Language) -UNION -SELECT ol.AD_Client_ID, ol.AD_Org_ID, ol.IsActive, ol.Created, ol.CreatedBy, ol.Updated, ol.UpdatedBy, - uom.AD_Language, - ol.C_Order_ID, ol.C_OrderLine_ID, ol.C_Tax_ID, null, - null, null, null, null, - ol.Line+(b.Line/100) AS Line, p.M_Product_ID, - ol.QtyOrdered*b.BOMQty AS QtyInvoiced, ol.QtyEntered*b.BOMQty AS QtyEntered, uom.UOMSymbol, - COALESCE(pt.Name, p.Name) AS Name, -- main - b.Description, - COALESCE(pt.DocumentNote, p.DocumentNote) AS DocumentNote, p.UPC, p.SKU, p.Value AS ProductValue, - null, null, null, null, null, null, null, pt.Description AS ProductDescription, p.ImageURL, - ol.C_Campaign_ID, ol.C_Project_ID, ol.C_Activity_ID, ol.C_ProjectPhase_ID, ol.C_ProjectTask_ID -FROM M_Product_BOM b -- BOM lines - INNER JOIN C_OrderLine ol ON (b.M_Product_ID=ol.M_Product_ID) - INNER JOIN M_Product bp ON (bp.M_Product_ID=ol.M_Product_ID -- BOM Product - AND bp.IsBOM='Y' AND bp.IsVerified='Y' AND bp.IsInvoicePrintDetails='Y') - INNER JOIN M_Product p ON (b.M_ProductBOM_ID=p.M_Product_ID) -- BOM line product - INNER JOIN C_UOM_Trl uom ON (p.C_UOM_ID=uom.C_UOM_ID) - INNER JOIN M_Product_Trl pt ON (b.M_ProductBOM_ID=pt.M_Product_ID AND uom.AD_Language=pt.AD_Language) -UNION -SELECT o.AD_Client_ID, o.AD_Org_ID, o.IsActive, o.Created, o.CreatedBy, o.Updated, o.UpdatedBy, - l.AD_Language, o.C_Order_ID, null, null, null, - null, - null, null, null, - null, null, null, null, - null, null, - null, null, null, null, null, null, - null, null, null, null, null, null, null, null, - null,null,null,null,null -FROM C_Order o, AD_Language l -WHERE l.IsBaseLanguage='N' AND l.IsSystemLanguage='Y' -UNION -SELECT ot.AD_Client_ID, ot.AD_Org_ID, ot.IsActive, ot.Created, ot.CreatedBy, ot.Updated, ot.UpdatedBy, - t.AD_Language, ot.C_Order_ID, null, ot.C_Tax_ID, t.TaxIndicator, - null, null, null, null, - null, null, - null, null, null, - t.Name, - null, null, null, null, null, null, - null, null, null, - CASE WHEN ot.IsTaxIncluded='Y' THEN ot.TaxAmt ELSE ot.TaxBaseAmt END, - CASE WHEN ot.IsTaxIncluded='Y' THEN ot.TaxAmt ELSE ot.TaxBaseAmt END, - CASE WHEN ot.IsTaxIncluded='Y' THEN NULL ELSE ot.TaxAmt END, - null, null, - null,null,null,null,null -FROM C_OrderTax ot - INNER JOIN C_Tax_Trl t ON (ot.C_Tax_ID=t.C_Tax_ID); -SELECT '082_BF1881876.sql' AS Filename; --- Jan 29, 2008 10:48:50 AM COT --- [ adempiere-Bugs-1881876 ] Periods not shown when using auto period control -UPDATE AD_Val_Rule SET Code='(EXISTS ( SELECT * FROM C_PeriodControl pc WHERE C_Period.C_Period_ID = pc.C_Period_ID AND pc.PeriodStatus = ''O'') OR EXISTS ( SELECT * FROM C_AcctSchema a, C_Period p WHERE C_Period.C_Period_ID = p.C_Period_ID AND a.AutoPeriodControl = ''Y'' AND ( (p.StartDate BETWEEN SYSDATE - a.Period_OpenHistory AND SYSDATE + a.Period_OpenFuture) OR (p.EndDate BETWEEN SYSDATE - a.Period_OpenHistory AND SYSDATE + a.Period_OpenFuture))))',Updated=TO_TIMESTAMP('2008-01-29 10:48:50','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Val_Rule_ID=215 -; - - -SELECT '083_FR1876642.sql' AS Filename; --- Jan 30, 2008 10:11:15 AM SGT --- [ 1876642 ] Add Collapsed by Default to Field Group -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,53336,0,'IsCollapsedByDefault',TO_TIMESTAMP('2008-01-30 10:11:13','YYYY-MM-DD HH24:MI:SS'),100,'Flag to set the initial state of collapsible field group.','U','Y','Collapsed By Default','Collapsed By Default',TO_TIMESTAMP('2008-01-30 10:11:13','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Jan 30, 2008 10:11:16 AM SGT --- [ 1876642 ] Add Collapsed by Default to Field Group -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53336 AND EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Element_ID!=t.AD_Element_ID) -; - --- Jan 30, 2008 12:07:42 PM SGT --- [ 1876642 ] Add Collapsed by Default to Field Group -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54259,53336,0,20,414,'IsCollapsedByDefault',TO_TIMESTAMP('2008-01-30 12:07:41','YYYY-MM-DD HH24:MI:SS'),100,'N','Flag to set the initial state of collapsible field group.','D',1,'Y','N','N','N','N','N','N','N','N','N','Y','Collapsed By Default',0,TO_TIMESTAMP('2008-01-30 12:07:41','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Jan 30, 2008 12:07:42 PM SGT --- [ 1876642 ] Add Collapsed by Default to Field Group -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54259 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Jan 30, 2008 12:09:43 PM SGT --- [ 1876642 ] Add Collapsed by Default to Field Group -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,DisplayLogic,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54259,54348,0,342,TO_TIMESTAMP('2008-01-30 12:09:42','YYYY-MM-DD HH24:MI:SS'),100,'Flag to set the initial state of collapsible field group.',0,'@FieldGroupType@=''C''','D','Y','Y','Y','N','N','N','N','N','Collapsed By Default',70,0,TO_TIMESTAMP('2008-01-30 12:09:42','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Jan 30, 2008 12:09:43 PM SGT --- [ 1876642 ] Add Collapsed by Default to Field Group -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54348 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- Jan 30, 2008 12:10:36 PM SGT --- [ 1876642 ] Add Collapsed by Default to Field Group -ALTER TABLE AD_FieldGroup ADD COLUMN IsCollapsedByDefault CHAR(1) DEFAULT 'N' CHECK (IsCollapsedByDefault IN ('Y','N')) -; - - -SELECT '084_FR1876642_views.sql' AS Filename; -drop view ad_field_v; - -CREATE OR -REPLACE VIEW ad_field_v AS -SELECT t.ad_window_id, - f.ad_tab_id, - f.ad_field_id, - tbl.ad_table_id, - f.ad_column_id, - f.NAME, - f.description, - f.help, - f.isdisplayed, - f.displaylogic, - f.displaylength, - f.seqno, - f.sortno, - f.issameline, - f.isheading, - f.isfieldonly, - f.isreadonly, - f.isencrypted AS isencryptedfield, - f.obscuretype, - C.columnname, - C.columnsql, - C.fieldlength, - C.vformat, - C.defaultvalue, - C.iskey, - C.isparent, - COALESCE(f.ismandatory, C.ismandatory) AS ismandatory, - C.isidentifier, - C.istranslated, - C.ad_reference_value_id, - C.callout, - COALESCE(f.ad_reference_id, C.ad_reference_id) AS ad_reference_id, - C.ad_val_rule_id, - C.ad_process_id, - C.isalwaysupdateable, - C.readonlylogic, - C.isupdateable, - C.isencrypted AS isencryptedcolumn, - C.isselectioncolumn, - tbl.tablename, - C.valuemin, - C.valuemax, - fg.NAME AS fieldgroup, - vr.code AS validationcode, - f.Included_Tab_ID, - fg.FieldGroupType, - fg.IsCollapsedByDefault AS iscollapsedbydefault -FROM ((((((AD_FIELD f - JOIN AD_TAB t - ON ((f.ad_tab_id = t.ad_tab_id))) - LEFT JOIN AD_FIELDGROUP fg - ON ((f.ad_fieldgroup_id = fg.ad_fieldgroup_id))) - LEFT JOIN AD_COLUMN C - ON ((f.ad_column_id = C.ad_column_id))) - JOIN AD_TABLE tbl - ON ((C.ad_table_id = tbl.ad_table_id))) - JOIN AD_REFERENCE r - ON ((C.ad_reference_id = r.ad_reference_id))) - LEFT JOIN AD_VAL_RULE vr - ON ((C.ad_val_rule_id = vr.ad_val_rule_id))) -WHERE ((f.isactive = 'Y'::bpchar) AND - (C.isactive = 'Y'::bpchar)); - -drop view ad_field_vt; - -CREATE OR -REPLACE VIEW ad_field_vt AS -SELECT trl.AD_LANGUAGE, - t.ad_window_id, - f.ad_tab_id, - f.ad_field_id, - tbl.ad_table_id, - f.ad_column_id, - trl.NAME, - trl.description, - trl.help, - f.isdisplayed, - f.displaylogic, - f.displaylength, - f.seqno, - f.sortno, - f.issameline, - f.isheading, - f.isfieldonly, - f.isreadonly, - f.isencrypted AS isencryptedfield, - f.obscuretype, - C.columnname, - C.columnsql, - C.fieldlength, - C.vformat, - C.defaultvalue, - C.iskey, - C.isparent, - COALESCE(f.ismandatory, C.ismandatory) AS ismandatory, - C.isidentifier, - C.istranslated, - C.ad_reference_value_id, - C.callout, - COALESCE(f.ad_reference_id, C.ad_reference_id) AS ad_reference_id, - C.ad_val_rule_id, - C.ad_process_id, - C.isalwaysupdateable, - C.readonlylogic, - C.isupdateable, - C.isencrypted AS isencryptedcolumn, - C.isselectioncolumn, - tbl.tablename, - C.valuemin, - C.valuemax, - fgt.NAME AS fieldgroup, - vr.code AS validationcode, - f.Included_Tab_ID, - fg.FieldGroupType, - fg.IsCollapsedByDefault AS iscollapsedbydefault -FROM (((((((AD_FIELD f - JOIN AD_FIELD_TRL trl - ON ((f.ad_field_id = trl.ad_field_id))) - JOIN AD_TAB t - ON ((f.ad_tab_id = t.ad_tab_id))) - LEFT JOIN AD_FIELDGROUP fg - ON (f.AD_FieldGroup_ID = fg.AD_FieldGroup_ID) - LEFT JOIN AD_FIELDGROUP_TRL fgt - ON (((f.ad_fieldgroup_id = fgt.ad_fieldgroup_id) AND - ((trl.AD_LANGUAGE)::text = (fgt.AD_LANGUAGE)::text)))) - LEFT JOIN AD_COLUMN C - ON ((f.ad_column_id = C.ad_column_id))) - JOIN AD_TABLE tbl - ON ((C.ad_table_id = tbl.ad_table_id))) - JOIN AD_REFERENCE r - ON ((C.ad_reference_id = r.ad_reference_id))) - LEFT JOIN AD_VAL_RULE vr - ON ((C.ad_val_rule_id = vr.ad_val_rule_id))) -WHERE ((f.isactive = 'Y'::bpchar) AND - (C.isactive = 'Y'::bpchar)); - -SELECT '085_FR1884105.sql' AS Filename; --- Feb 1, 2008 12:15:41 PM SGT --- [ 1884105 ] Show preview of all open window -INSERT INTO AD_Message (AD_Client_ID,AD_Message_ID,AD_Org_ID,Created,CreatedBy,EntityType,IsActive,MsgText,MsgTip,MsgType,Updated,UpdatedBy,Value) VALUES (0,53024,0,TO_TIMESTAMP('2008-02-01 12:15:39','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Show All Windows',NULL,'I',TO_TIMESTAMP('2008-02-01 12:15:39','YYYY-MM-DD HH24:MI:SS'),100,'ShowAllWindow') -; - --- Feb 1, 2008 12:15:41 PM SGT --- [ 1884105 ] Show preview of all open window -INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=53024 AND EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Message_ID!=t.AD_Message_ID) -; - - -SELECT '086_FR1879470_ModelValidatorScript.sql' AS Filename; --- Feb 1, 2008 1:37:42 AM COT --- 1879470 - Implement Table and Document ModelValidator script JSR 223 -INSERT INTO AD_Reference (AD_Client_ID,AD_Org_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,ValidationType) VALUES (0,0,53237,TO_TIMESTAMP('2008-02-01 01:37:35','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','EventModelValidator',TO_TIMESTAMP('2008-02-01 01:37:35','YYYY-MM-DD HH24:MI:SS'),100,'L') -; - -INSERT INTO AD_Reference_Trl (AD_Language,AD_Reference_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Reference_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Reference t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Reference_ID=53237 AND EXISTS (SELECT * FROM AD_Reference_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Reference_ID!=t.AD_Reference_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53299,53237,TO_TIMESTAMP('2008-02-01 01:38:15','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Table Before New',TO_TIMESTAMP('2008-02-01 01:38:15','YYYY-MM-DD HH24:MI:SS'),100,'TBN') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53299 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53300,53237,TO_TIMESTAMP('2008-02-01 01:38:32','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Table Before Change',TO_TIMESTAMP('2008-02-01 01:38:32','YYYY-MM-DD HH24:MI:SS'),100,'TBC') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53300 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53301,53237,TO_TIMESTAMP('2008-02-01 01:38:45','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Table Before Delete',TO_TIMESTAMP('2008-02-01 01:38:45','YYYY-MM-DD HH24:MI:SS'),100,'TBD') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53301 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53302,53237,TO_TIMESTAMP('2008-02-01 01:39:11','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Table After New',TO_TIMESTAMP('2008-02-01 01:39:11','YYYY-MM-DD HH24:MI:SS'),100,'TAN') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53302 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53303,53237,TO_TIMESTAMP('2008-02-01 01:39:27','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Table After Change',TO_TIMESTAMP('2008-02-01 01:39:27','YYYY-MM-DD HH24:MI:SS'),100,'TAC') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53303 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53304,53237,TO_TIMESTAMP('2008-02-01 01:39:43','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Table After Delete',TO_TIMESTAMP('2008-02-01 01:39:43','YYYY-MM-DD HH24:MI:SS'),100,'TAD') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53304 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53305,53237,TO_TIMESTAMP('2008-02-01 01:40:06','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document Before Prepare',TO_TIMESTAMP('2008-02-01 01:40:06','YYYY-MM-DD HH24:MI:SS'),100,'DBPR') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53305 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53306,53237,TO_TIMESTAMP('2008-02-01 01:40:20','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document Before Void',TO_TIMESTAMP('2008-02-01 01:40:20','YYYY-MM-DD HH24:MI:SS'),100,'DBVO') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53306 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53307,53237,TO_TIMESTAMP('2008-02-01 01:40:45','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document Before Close',TO_TIMESTAMP('2008-02-01 01:40:45','YYYY-MM-DD HH24:MI:SS'),100,'DBCL') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53307 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53308,53237,TO_TIMESTAMP('2008-02-01 01:41:05','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document Before Reactivate',TO_TIMESTAMP('2008-02-01 01:41:05','YYYY-MM-DD HH24:MI:SS'),100,'DBAC') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53308 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53309,53237,TO_TIMESTAMP('2008-02-01 01:41:24','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document Before Reverse Correct',TO_TIMESTAMP('2008-02-01 01:41:24','YYYY-MM-DD HH24:MI:SS'),100,'DBRC') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53309 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53310,53237,TO_TIMESTAMP('2008-02-01 01:41:37','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document Before Reverse Accrual',TO_TIMESTAMP('2008-02-01 01:41:37','YYYY-MM-DD HH24:MI:SS'),100,'DBRA') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53310 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53311,53237,TO_TIMESTAMP('2008-02-01 01:41:55','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document Before Complete',TO_TIMESTAMP('2008-02-01 01:41:55','YYYY-MM-DD HH24:MI:SS'),100,'DBCO') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53311 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53312,53237,TO_TIMESTAMP('2008-02-01 01:42:08','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document Before Post',TO_TIMESTAMP('2008-02-01 01:42:08','YYYY-MM-DD HH24:MI:SS'),100,'DBPO') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53312 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53313,53237,TO_TIMESTAMP('2008-02-01 01:42:25','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document After Prepare',TO_TIMESTAMP('2008-02-01 01:42:25','YYYY-MM-DD HH24:MI:SS'),100,'DAPR') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53313 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53314,53237,TO_TIMESTAMP('2008-02-01 01:42:43','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document After Void',TO_TIMESTAMP('2008-02-01 01:42:43','YYYY-MM-DD HH24:MI:SS'),100,'DAVO') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53314 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53315,53237,TO_TIMESTAMP('2008-02-01 01:42:58','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document After Close',TO_TIMESTAMP('2008-02-01 01:42:58','YYYY-MM-DD HH24:MI:SS'),100,'DACL') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53315 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53316,53237,TO_TIMESTAMP('2008-02-01 01:43:11','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document After Reactivate',TO_TIMESTAMP('2008-02-01 01:43:11','YYYY-MM-DD HH24:MI:SS'),100,'DAAC') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53316 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53317,53237,TO_TIMESTAMP('2008-02-01 01:43:37','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document After Reverse Correct',TO_TIMESTAMP('2008-02-01 01:43:37','YYYY-MM-DD HH24:MI:SS'),100,'DARC') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53317 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53318,53237,TO_TIMESTAMP('2008-02-01 01:43:52','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document After Reverse Accrual',TO_TIMESTAMP('2008-02-01 01:43:52','YYYY-MM-DD HH24:MI:SS'),100,'DARA') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53318 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53319,53237,TO_TIMESTAMP('2008-02-01 01:44:12','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document After Complete',TO_TIMESTAMP('2008-02-01 01:44:12','YYYY-MM-DD HH24:MI:SS'),100,'DACO') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53319 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53320,53237,TO_TIMESTAMP('2008-02-01 01:44:32','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Document After Post',TO_TIMESTAMP('2008-02-01 01:44:32','YYYY-MM-DD HH24:MI:SS'),100,'DAPO') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53320 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Table (AD_Client_ID,AD_Org_ID,AD_Table_ID,AD_Window_ID,AccessLevel,CopyColumnsFromTable,Created,CreatedBy,Description,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,LoadSeq,Name,ReplicationType,TableName,Updated,UpdatedBy) VALUES (0,0,53059,100,'4','N',TO_TIMESTAMP('2008-02-01 01:47:37','YYYY-MM-DD HH24:MI:SS'),100,'Script model validator for tables','D','N','Y','N','Y','N','N','N',0,'Table Script Validator','L','AD_Table_ScriptValidator',TO_TIMESTAMP('2008-02-01 01:47:37','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Table_Trl (AD_Language,AD_Table_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Table_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Table t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53059 AND EXISTS (SELECT * FROM AD_Table_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Table_ID!=t.AD_Table_ID) -; - -INSERT INTO AD_Sequence (AD_Client_ID,AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,Name,StartNewYear,StartNo,Updated,UpdatedBy) VALUES (0,0,53076,TO_TIMESTAMP('2008-02-01 01:47:44','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table AD_Table_ScriptValidator',1,'Y','N','Y','Y','AD_Table_ScriptValidator','N',1000000,TO_TIMESTAMP('2008-02-01 01:47:44','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54260,102,0,19,53059,'AD_Client_ID',TO_TIMESTAMP('2008-02-01 01:49:24','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Client_ID@','Client/Tenant for this installation.','D',22,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','N','Client',0,TO_TIMESTAMP('2008-02-01 01:49:24','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54260 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54261,113,0,19,53059,104,'AD_Org_ID',TO_TIMESTAMP('2008-02-01 01:49:27','YYYY-MM-DD HH24:MI:SS'),100,'@#AD_Org_ID@','Organizational entity within client','D',22,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','N','Organization',0,TO_TIMESTAMP('2008-02-01 01:49:27','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54261 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54262,245,0,16,53059,'Created',TO_TIMESTAMP('2008-02-01 01:49:28','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',7,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','N','Created',0,TO_TIMESTAMP('2008-02-01 01:49:28','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54262 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54263,246,0,18,110,53059,'CreatedBy',TO_TIMESTAMP('2008-02-01 01:49:30','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',22,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','N','Created By',0,TO_TIMESTAMP('2008-02-01 01:49:30','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54263 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54264,275,0,10,53059,'Description',TO_TIMESTAMP('2008-02-01 01:49:30','YYYY-MM-DD HH24:MI:SS'),100,'Optional short description of the record','D',255,'A description is limited to 255 characters.','Y','N','N','N','N','N','N','N','N','N','Y','Description',0,TO_TIMESTAMP('2008-02-01 01:49:30','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54264 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54265,326,0,14,53059,'Help',TO_TIMESTAMP('2008-02-01 01:49:31','YYYY-MM-DD HH24:MI:SS'),100,'Comment or Hint','D',2000,'The Help field contains a hint, comment or help about the use of this item.','Y','N','N','N','N','N','N','N','N','N','Y','Comment/Help',0,TO_TIMESTAMP('2008-02-01 01:49:31','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54265 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54266,348,0,20,53059,'IsActive',TO_TIMESTAMP('2008-02-01 01:49:33','YYYY-MM-DD HH24:MI:SS'),100,'Y','The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons for de-activating and not deleting records: -(1) The system requires the record for audit purposes. -(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries.','Y','N','N','N','N','Y','N','N','N','N','Y','Active',0,TO_TIMESTAMP('2008-02-01 01:49:33','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54266 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,53337,0,'AD_Table_ScriptValidator_ID',TO_TIMESTAMP('2008-02-01 01:49:34','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Table Script Validator','Table Script Validator',TO_TIMESTAMP('2008-02-01 01:49:34','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53337 AND EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54267,53337,0,13,53059,'AD_Table_ScriptValidator_ID',TO_TIMESTAMP('2008-02-01 01:49:34','YYYY-MM-DD HH24:MI:SS'),100,'D',22,'Y','N','N','N','Y','Y','N','N','N','N','N','Table Script Validator',0,TO_TIMESTAMP('2008-02-01 01:49:34','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54267 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54268,469,0,10,53059,'Name',TO_TIMESTAMP('2008-02-01 01:49:37','YYYY-MM-DD HH24:MI:SS'),100,'Alphanumeric identifier of the entity','D',60,'The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.','Y','N','N','Y','N','Y','N','N','N','N','Y','Name',1,TO_TIMESTAMP('2008-02-01 01:49:37','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54268 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54269,607,0,16,53059,'Updated',TO_TIMESTAMP('2008-02-01 01:49:39','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',7,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','N','Updated',0,TO_TIMESTAMP('2008-02-01 01:49:39','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54269 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54270,608,0,18,110,53059,'UpdatedBy',TO_TIMESTAMP('2008-02-01 01:49:40','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',22,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','N','Updated By',0,TO_TIMESTAMP('2008-02-01 01:49:40','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54270 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54271,620,0,10,53059,'Value',TO_TIMESTAMP('2008-02-01 01:49:41','YYYY-MM-DD HH24:MI:SS'),100,'Search key for the record in the format required - must be unique','D',40,'A search key allows you a fast method of finding a particular record. -If you leave the search key empty, the system automatically creates a numeric number. The document sequence used for this fallback number is defined in the "Maintain Sequence" window with the name "DocumentNo_", where TableName is the actual name of the table (e.g. C_Order).','Y','N','N','N','N','Y','N','N','N','N','Y','Search Key',0,TO_TIMESTAMP('2008-02-01 01:49:41','YYYY-MM-DD HH24:MI:SS'),100,1) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54271 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -UPDATE AD_Column SET AD_Element_ID=126, AD_Reference_ID=19, ColumnName='AD_Table_ID', Description='Database Table information', Help='The Database Table provides the information of the table definition', IsParent='Y', IsUpdateable='N', Name='Table',Updated=TO_TIMESTAMP('2008-02-01 01:51:21','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54271 -; - -UPDATE AD_Column_Trl SET IsTranslated='N' WHERE AD_Column_ID=54271 -; - -UPDATE AD_Field SET Name='Table', Description='Database Table information', Help='The Database Table provides the information of the table definition' WHERE AD_Column_ID=54271 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_Column SET FieldLength=10, IsUpdateable='N',Updated=TO_TIMESTAMP('2008-02-01 01:51:30','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54271 -; - -UPDATE AD_Field SET Name='Table', Description='Database Table information', Help='The Database Table provides the information of the table definition' WHERE AD_Column_ID=54271 AND IsCentrallyMaintained='Y' -; - -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,53338,0,'EventModelValidator',TO_TIMESTAMP('2008-02-01 01:52:19','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Event Model Validator','Event Model Validator',TO_TIMESTAMP('2008-02-01 01:52:19','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53338 AND EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -UPDATE AD_Column SET AD_Element_ID=53338, AD_Reference_ID=17, AD_Reference_Value_ID=53237, ColumnName='EventModelValidator', Description=NULL, FieldLength=4, Help=NULL, Name='Event Model Validator',Updated=TO_TIMESTAMP('2008-02-01 01:52:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54268 -; - -UPDATE AD_Column_Trl SET IsTranslated='N' WHERE AD_Column_ID=54268 -; - -UPDATE AD_Field SET Name='Event Model Validator', Description=NULL, Help=NULL WHERE AD_Column_ID=54268 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_Column SET IsIdentifier='Y', IsUpdateable='N',Updated=TO_TIMESTAMP('2008-02-01 01:53:08','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54271 -; - -UPDATE AD_Field SET Name='Table', Description='Database Table information', Help='The Database Table provides the information of the table definition' WHERE AD_Column_ID=54271 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_Column SET AD_Element_ID=53332, AD_Reference_ID=19, ColumnName='AD_Rule_ID', Description=NULL, FieldLength=10, Help=NULL, Name='Rule',Updated=TO_TIMESTAMP('2008-02-01 01:53:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54265 -; - -UPDATE AD_Column_Trl SET IsTranslated='N' WHERE AD_Column_ID=54265 -; - -UPDATE AD_Field SET Name='Rule', Description=NULL, Help=NULL WHERE AD_Column_ID=54265 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_Column SET AD_Element_ID=566, AD_Reference_ID=11, ColumnName='SeqNo', DefaultValue='0', Description='Method of ordering records; lowest number comes first', FieldLength=22, Help='The Sequence indicates the order of records', IsMandatory='Y', Name='Sequence',Updated=TO_TIMESTAMP('2008-02-01 01:55:07','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54264 -; - -UPDATE AD_Column_Trl SET IsTranslated='N' WHERE AD_Column_ID=54264 -; - -UPDATE AD_Field SET Name='Sequence', Description='Method of ordering records; lowest number comes first', Help='The Sequence indicates the order of records' WHERE AD_Column_ID=54264 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_Column SET IsMandatory='Y',Updated=TO_TIMESTAMP('2008-02-01 01:55:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54265 -; - -UPDATE AD_Field SET Name='Rule', Description=NULL, Help=NULL WHERE AD_Column_ID=54265 AND IsCentrallyMaintained='Y' -; - -CREATE TABLE AD_Table_ScriptValidator (AD_Client_ID NUMERIC(10) DEFAULT NULL NOT NULL, AD_Org_ID NUMERIC(10) DEFAULT NULL NOT NULL, AD_Rule_ID NUMERIC(10) NOT NULL, AD_Table_ID NUMERIC(10) NOT NULL, AD_Table_ScriptValidator_ID NUMERIC(10) NOT NULL, Created TIMESTAMP NOT NULL, CreatedBy NUMERIC(10) NOT NULL, EventModelValidator VARCHAR(4) NOT NULL, IsActive CHAR(1) DEFAULT 'Y' CHECK (IsActive IN ('Y','N')) NOT NULL, SeqNo NUMERIC(10) DEFAULT 0 NOT NULL, Updated TIMESTAMP NOT NULL, UpdatedBy NUMERIC(10) NOT NULL, CONSTRAINT AD_Table_ScriptValidator_Key PRIMARY KEY (AD_Table_ScriptValidator_ID)) -; - -INSERT INTO AD_Tab (AD_Client_ID,AD_Column_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,Created,CreatedBy,EntityType,HasTree,ImportFields,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,Name,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,54271,0,53069,53059,100,TO_TIMESTAMP('2008-02-01 01:58:32','YYYY-MM-DD HH24:MI:SS'),100,'D','N','N','Y','N','N','Y','N','Y','N','N','Table Script Validator','N',50,1,TO_TIMESTAMP('2008-02-01 01:58:32','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Tab_Trl (AD_Language,AD_Tab_ID, CommitWarning,Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Tab t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53069 AND EXISTS (SELECT * FROM AD_Tab_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54266,54349,0,53069,TO_TIMESTAMP('2008-02-01 01:58:39','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons for de-activating and not deleting records: -(1) The system requires the record for audit purposes. -(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries.','Y','Y','Y','N','N','N','N','N','Active',TO_TIMESTAMP('2008-02-01 01:58:39','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54349 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54260,54350,0,53069,TO_TIMESTAMP('2008-02-01 01:58:42','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',22,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','N','Client',TO_TIMESTAMP('2008-02-01 01:58:42','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54350 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54268,54351,0,53069,TO_TIMESTAMP('2008-02-01 01:58:43','YYYY-MM-DD HH24:MI:SS'),100,4,'D','Y','Y','Y','N','N','N','N','N','Event Model Validator',TO_TIMESTAMP('2008-02-01 01:58:43','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54351 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54261,54352,0,53069,TO_TIMESTAMP('2008-02-01 01:58:43','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',22,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','N','N','Organization',TO_TIMESTAMP('2008-02-01 01:58:43','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54352 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54265,54353,0,53069,TO_TIMESTAMP('2008-02-01 01:58:45','YYYY-MM-DD HH24:MI:SS'),100,10,'D','Y','Y','Y','N','N','N','N','N','Rule',TO_TIMESTAMP('2008-02-01 01:58:45','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54353 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54264,54354,0,53069,TO_TIMESTAMP('2008-02-01 01:58:46','YYYY-MM-DD HH24:MI:SS'),100,'Method of ordering records; lowest number comes first',22,'D','The Sequence indicates the order of records','Y','Y','Y','N','N','N','N','N','Sequence',TO_TIMESTAMP('2008-02-01 01:58:46','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54354 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54271,54355,0,53069,TO_TIMESTAMP('2008-02-01 01:58:47','YYYY-MM-DD HH24:MI:SS'),100,'Database Table information',10,'D','The Database Table provides the information of the table definition','Y','Y','Y','N','N','N','N','N','Table',TO_TIMESTAMP('2008-02-01 01:58:47','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54355 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54267,54356,0,53069,TO_TIMESTAMP('2008-02-01 01:58:48','YYYY-MM-DD HH24:MI:SS'),100,22,'D','Y','Y','N','N','N','N','N','N','Table Script Validator',TO_TIMESTAMP('2008-02-01 01:58:48','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54356 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -UPDATE AD_Field SET SeqNo=10,IsDisplayed='Y' WHERE AD_Field_ID=54350 -; - -UPDATE AD_Field SET SeqNo=20,IsDisplayed='Y' WHERE AD_Field_ID=54352 -; - -UPDATE AD_Field SET SeqNo=30,IsDisplayed='Y' WHERE AD_Field_ID=54355 -; - -UPDATE AD_Field SET SeqNo=40,IsDisplayed='Y' WHERE AD_Field_ID=54351 -; - -UPDATE AD_Field SET SeqNo=50,IsDisplayed='Y' WHERE AD_Field_ID=54353 -; - -UPDATE AD_Field SET SeqNo=60,IsDisplayed='Y' WHERE AD_Field_ID=54354 -; - -UPDATE AD_Field SET SeqNo=70,IsDisplayed='Y' WHERE AD_Field_ID=54349 -; - -UPDATE AD_Field SET IsSameLine='Y',Updated=TO_TIMESTAMP('2008-02-01 01:59:17','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54352 -; - -UPDATE AD_Field SET DisplayLength=40,Updated=TO_TIMESTAMP('2008-02-01 01:59:29','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54351 -; - -UPDATE AD_Field SET DisplayLength=40,Updated=TO_TIMESTAMP('2008-02-01 01:59:34','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54353 -; - -UPDATE AD_Field SET IsSameLine='Y',Updated=TO_TIMESTAMP('2008-02-01 01:59:40','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54349 -; - -UPDATE AD_Field SET DisplayLength=40,Updated=TO_TIMESTAMP('2008-02-01 01:59:46','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54355 -; - -INSERT INTO AD_Val_Rule (AD_Client_ID,AD_Org_ID,AD_Val_Rule_ID,Code,Created,CreatedBy,EntityType,IsActive,Name,Type,Updated,UpdatedBy) VALUES (0,0,52008,'EventType IN (''D'', ''T'')',TO_TIMESTAMP('2008-02-01 03:39:00','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','EventType Document or Table','S',TO_TIMESTAMP('2008-02-01 03:39:00','YYYY-MM-DD HH24:MI:SS'),100) -; - -UPDATE AD_Column SET AD_Val_Rule_ID=52008,Updated=TO_TIMESTAMP('2008-02-01 03:39:24','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54265 -; - -UPDATE AD_Field SET Name='Rule', Description=NULL, Help=NULL WHERE AD_Column_ID=54265 AND IsCentrallyMaintained='Y' -; - -UPDATE AD_Column SET IsMandatory='Y',Updated=TO_TIMESTAMP('2008-02-01 03:43:28','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54255 -; - -UPDATE AD_Column SET IsMandatory='Y',Updated=TO_TIMESTAMP('2008-02-01 03:43:38','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54253 -; - -UPDATE AD_Column SET IsMandatory='Y',Updated=TO_TIMESTAMP('2008-02-01 03:43:48','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54254 -; - -ALTER TABLE AD_Table_ScriptValidator ADD CONSTRAINT ADRule_ADTableScriptValidator FOREIGN KEY (AD_Rule_ID) REFERENCES AD_RULE -; - -ALTER TABLE AD_Table_ScriptValidator ADD CONSTRAINT ADTable_ADTableScriptValidator FOREIGN KEY (AD_Table_ID) REFERENCES AD_TABLE -; -SELECT '087_BF1869844.sql' AS Filename; --- [ 1869844 ] CLIENT_ID not ReadOnly any more ?!? -UPDATE AD_COLUMN SET ad_val_rule_id = 129 -WHERE ad_column_id IN ( -SELECT ad_column_id - FROM AD_TABLE t, AD_COLUMN c - WHERE t.ad_table_id = c.ad_table_id - AND columnname = 'AD_Client_ID' - AND t.accesslevel IN ('1', '2', '3') - AND c.ad_val_rule_id IS NULL) -; - -SELECT '088_BF1621517.sql' AS Filename; --- Fix [ 1621517 ] Duplicate vendor invoice document numbers permitted - -/* -WARNING - The create index on this script could fail if you have already wrong data on your DB -If this script fails you need to detect the duplicate data and change the DocumentNo column to a unique value - -To review your duplicate data you can execute next query: - -SELECT c1.c_invoice_id, c2.c_invoice_id, c1.c_bpartner_id, c1.documentno, - c1.c_doctypetarget_id - FROM C_INVOICE c1, C_INVOICE c2 - WHERE c1.c_bpartner_id = c2.c_bpartner_id - AND c1.documentno = c2.documentno - AND c1.c_doctypetarget_id = c2.c_doctypetarget_id - AND c1.c_invoice_id <> c2.c_invoice_id; - -*/ - -CREATE UNIQUE INDEX c_invoice_documentno_target ON C_INVOICE - (c_bpartner_id, documentno, c_doctypetarget_id); - -DROP INDEX c_invoice_bpartner; - -SELECT '089_FR1883270.sql' AS Filename; --- Feb 1, 2008 4:02:32 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,MandatoryLogic,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54272,1580,0,10,115,'DateColumn',TO_TIMESTAMP('2008-02-01 16:02:30','YYYY-MM-DD HH24:MI:SS'),100,'Fully qualified date column','D',60,'The Date Column indicates the date to be used when calculating this measurement','Y','N','N','N','N','N','N','N','N','N','Y','@StartNewYear@=Y','Date Column',0,TO_TIMESTAMP('2008-02-01 16:02:30','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Feb 1, 2008 4:02:32 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54272 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Feb 1, 2008 4:02:37 PM SGT --- [ 1883270 ] Enhance Document No Formatting -ALTER TABLE AD_Sequence ADD COLUMN DateColumn VARCHAR(60) -; - --- Feb 1, 2008 4:05:04 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,DisplayLogic,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54272,54357,0,146,TO_TIMESTAMP('2008-02-01 16:05:01','YYYY-MM-DD HH24:MI:SS'),100,'Fully qualified date column',0,'@IsAutoSequence@=Y & @IsTableID@=N & @StartNewYear@=Y','D','The Date Column indicates the date to be used when calculating this measurement','Y','Y','Y','N','N','N','N','N','Date Column',180,0,TO_TIMESTAMP('2008-02-01 16:05:01','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 1, 2008 4:05:04 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54357 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- Feb 1, 2008 4:05:22 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET SeqNo=0,IsDisplayed='N' WHERE AD_Field_ID=3055 -; - --- Feb 1, 2008 4:05:22 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET SeqNo=0,IsDisplayed='N' WHERE AD_Field_ID=322 -; - --- Feb 1, 2008 4:05:22 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET SeqNo=10,IsDisplayed='Y' WHERE AD_Field_ID=323 -; - --- Feb 1, 2008 4:05:22 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET SeqNo=20,IsDisplayed='Y' WHERE AD_Field_ID=2019 -; - --- Feb 1, 2008 4:05:23 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET SeqNo=30,IsDisplayed='Y' WHERE AD_Field_ID=324 -; - --- Feb 1, 2008 4:05:23 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET SeqNo=40,IsDisplayed='Y' WHERE AD_Field_ID=325 -; - --- Feb 1, 2008 4:05:23 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET SeqNo=50,IsDisplayed='Y' WHERE AD_Field_ID=326 -; - --- Feb 1, 2008 4:05:23 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET SeqNo=60,IsDisplayed='Y' WHERE AD_Field_ID=330 -; - --- Feb 1, 2008 4:05:23 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET SeqNo=70,IsDisplayed='Y' WHERE AD_Field_ID=331 -; - --- Feb 1, 2008 4:05:23 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET SeqNo=80,IsDisplayed='Y' WHERE AD_Field_ID=635 -; - --- Feb 1, 2008 4:05:23 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET SeqNo=90,IsDisplayed='Y' WHERE AD_Field_ID=1554 -; - --- Feb 1, 2008 4:05:23 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET SeqNo=100,IsDisplayed='Y' WHERE AD_Field_ID=329 -; - --- Feb 1, 2008 4:05:23 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET SeqNo=110,IsDisplayed='Y' WHERE AD_Field_ID=335 -; - --- Feb 1, 2008 4:05:23 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET SeqNo=120,IsDisplayed='Y' WHERE AD_Field_ID=1555 -; - --- Feb 1, 2008 4:05:23 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET SeqNo=130,IsDisplayed='Y' WHERE AD_Field_ID=54357 -; - --- Feb 1, 2008 4:05:23 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET SeqNo=140,IsDisplayed='Y' WHERE AD_Field_ID=332 -; - --- Feb 1, 2008 4:05:23 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET SeqNo=150,IsDisplayed='Y' WHERE AD_Field_ID=333 -; - --- Feb 1, 2008 4:05:23 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET SeqNo=160,IsDisplayed='Y' WHERE AD_Field_ID=334 -; - --- Feb 1, 2008 4:06:20 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET DisplayLength=60,Updated=TO_TIMESTAMP('2008-02-01 16:06:20','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=332 -; - --- Feb 1, 2008 4:06:36 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET DisplayLength=60, IsSameLine='N',Updated=TO_TIMESTAMP('2008-02-01 16:06:36','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=333 -; - --- Feb 1, 2008 4:06:57 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_Column SET FieldLength=255,Updated=TO_TIMESTAMP('2008-02-01 16:06:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=223 -; - --- Feb 1, 2008 4:06:57 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET Name='Prefix', Description='Prefix before the sequence number', Help='The Prefix indicates the characters to print in front of the document number.' WHERE AD_Column_ID=223 AND IsCentrallyMaintained='Y' -; - --- Feb 1, 2008 4:07:04 PM SGT --- [ 1883270 ] Enhance Document No Formatting -insert into t_alter_column values('ad_sequence','Prefix','VARCHAR(255)',null,'NULL') -; - --- Feb 1, 2008 4:07:16 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_Column SET FieldLength=255,Updated=TO_TIMESTAMP('2008-02-01 16:07:16','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=224 -; - --- Feb 1, 2008 4:07:16 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET Name='Suffix', Description='Suffix after the number', Help='The Suffix indicates the characters to append to the document number.' WHERE AD_Column_ID=224 AND IsCentrallyMaintained='Y' -; - --- Feb 1, 2008 4:07:19 PM SGT --- [ 1883270 ] Enhance Document No Formatting -insert into t_alter_column values('ad_sequence','Suffix','VARCHAR(255)',null,'NULL') -; - --- Feb 2, 2008 12:41:35 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_Process (AD_Client_ID,AD_Org_ID,AD_Process_ID,AccessLevel,Classname,Created,CreatedBy,EntityType,IsActive,IsBetaFunctionality,IsDirectPrint,IsReport,IsServerProcess,Name,ShowHelp,Statistic_Count,Statistic_Seconds,Updated,UpdatedBy,Value) VALUES (0,0,53068,'3','org.adempiere.process.UpdateSequenceNo',TO_TIMESTAMP('2008-02-02 12:41:31','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','N','N','N','N','Update Sequence No','Y',0,0,TO_TIMESTAMP('2008-02-02 12:41:31','YYYY-MM-DD HH24:MI:SS'),100,'Sequence_No_Update') -; - --- Feb 2, 2008 12:41:35 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_Process_Trl (AD_Language,AD_Process_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_ID=53068 AND EXISTS (SELECT * FROM AD_Process_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Process_ID!=t.AD_Process_ID) -; - --- Feb 2, 2008 12:41:35 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_Process_Access (AD_Client_ID,AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,53068,0,TO_TIMESTAMP('2008-02-02 12:41:35','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-02-02 12:41:35','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 2, 2008 12:41:35 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_Process_Access (AD_Client_ID,AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,53068,102,TO_TIMESTAMP('2008-02-02 12:41:35','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-02-02 12:41:35','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 2, 2008 12:41:35 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_Process_Access (AD_Client_ID,AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,53068,103,TO_TIMESTAMP('2008-02-02 12:41:35','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-02-02 12:41:35','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 2, 2008 12:41:35 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_Process_Access (AD_Client_ID,AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,UpdatedBy) VALUES (0,0,53068,50001,TO_TIMESTAMP('2008-02-02 12:41:35','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-02-02 12:41:35','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 2, 2008 12:42:54 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_Process_Para (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,636,0,53068,53129,10,'CalendarYear',TO_TIMESTAMP('2008-02-02 12:42:52','YYYY-MM-DD HH24:MI:SS'),100,'D',4,'Y','Y','Y','N','Year',10,TO_TIMESTAMP('2008-02-02 12:42:52','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 2, 2008 12:42:54 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53129 AND EXISTS (SELECT * FROM AD_Process_Para_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - --- Feb 2, 2008 12:43:57 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_Menu (AD_Client_ID,AD_Menu_ID,AD_Org_ID,AD_Process_ID,"action",Created,CreatedBy,EntityType,IsActive,IsReadOnly,IsSOTrx,IsSummary,Name,Updated,UpdatedBy) VALUES (0,53087,0,53068,'P',TO_TIMESTAMP('2008-02-02 12:43:56','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','N','N','N','Update Sequence No',TO_TIMESTAMP('2008-02-02 12:43:56','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 2, 2008 12:43:57 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_Menu_Trl (AD_Language,AD_Menu_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Menu_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Menu t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Menu_ID=53087 AND EXISTS (SELECT * FROM AD_Menu_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Menu_ID!=t.AD_Menu_ID) -; - --- Feb 2, 2008 12:43:57 PM SGT --- [ 1883270 ] Enhance Document No Formatting -INSERT INTO AD_TreeNodeMM (AD_Client_ID,AD_Org_ID, IsActive,Created,CreatedBy,Updated,UpdatedBy, AD_Tree_ID, Node_ID, Parent_ID, SeqNo) SELECT t.AD_Client_ID,0, 'Y', CURRENT_TIMESTAMP, 0, CURRENT_TIMESTAMP, 0,t.AD_Tree_ID, 53087, 0, 999 FROM AD_Tree t WHERE t.AD_Client_ID=0 AND t.IsActive='Y' AND t.IsAllNodes='Y' AND t.TreeType='MM' AND NOT EXISTS (SELECT * FROM AD_TreeNodeMM e WHERE e.AD_Tree_ID=t.AD_Tree_ID AND Node_ID=53087) -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=0, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=218 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=1, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=153 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=2, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=263 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=3, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=166 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=4, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=203 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=5, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=236 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=6, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=183 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=7, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=160 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=8, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=278 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=9, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=345 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=10, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=1000000 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=11, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53083 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=0, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=265 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=1, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=104 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=2, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=105 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=3, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=384 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=4, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=111 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=5, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=106 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=6, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=117 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=7, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=418 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=8, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=102 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=9, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=103 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=10, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=270 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=11, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=121 -; - --- Feb 2, 2008 12:44:17 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=12, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=409 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=13, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=151 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=14, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53087 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=15, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=464 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=16, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=124 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=17, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=123 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=18, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=547 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=19, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=174 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=20, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=254 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=21, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=120 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=22, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=135 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=23, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=550 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=24, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=551 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=25, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=306 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=26, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=417 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=27, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=307 -; - --- Feb 2, 2008 12:44:18 PM SGT --- [ 1883270 ] Enhance Document No Formatting -UPDATE AD_TreeNodeMM SET Parent_ID=164, SeqNo=28, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=393 -; - - -SELECT '090_FR1885485_ClearWindowSizes.sql' AS Filename; --- [ 1885485 ] Some windows too little -UPDATE AD_WINDOW -SET winheight = NULL, winwidth = NULL -WHERE ad_window_id IN (140, 143, 181, 195, 240) -; -SELECT '091_placeholder_branch350.sql' AS Filename; - -SELECT '092_FR1883270_seqNrPattern.sql' AS Filename; --- Feb 11, 2008 7:27:37 PM CET --- [FR1883270 ] Enhance Document No Formatting -INSERT INTO AD_Element (AD_Org_ID,AD_Element_ID,ColumnName,Created,CreatedBy,Description,EntityType,IsActive,Name,PrintName,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53342,'DecimalPattern',TO_TIMESTAMP('2008-02-11 19:27:36','YYYY-MM-DD HH24:MI:SS'),100,NULL,'U','Y','Decimal Pattern','Decimal Pattern',TO_TIMESTAMP('2008-02-11 19:27:36','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- Feb 11, 2008 7:27:37 PM CET --- [FR1883270 ] Enhance Document No Formatting -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53342 AND EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Element_ID!=t.AD_Element_ID) -; - --- Feb 11, 2008 7:27:38 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Element SET Description=NULL,Updated=TO_TIMESTAMP('2008-02-11 19:27:38','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=53342 -; - --- Feb 11, 2008 7:27:38 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53342 -; - --- Feb 11, 2008 7:27:38 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Column SET ColumnName='DecimalPattern', Name='Decimal Pattern', Description=NULL, Help=NULL WHERE AD_Element_ID=53342 -; - --- Feb 11, 2008 7:27:38 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET Name='Decimal Pattern', Description=NULL, Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=53342) AND IsCentrallyMaintained='Y' -; - --- Feb 11, 2008 7:27:38 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Process_Para SET ColumnName='DecimalPattern', Name='Decimal Pattern', Description=NULL, Help=NULL, AD_Element_ID=53342 WHERE UPPER(ColumnName)='DECIMALPATTERN' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - --- Feb 11, 2008 7:27:38 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Process_Para SET ColumnName='DecimalPattern', Name='Decimal Pattern', Description=NULL, Help=NULL WHERE AD_Element_ID=53342 AND IsCentrallyMaintained='Y' -; - --- Feb 11, 2008 7:27:38 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_PrintFormatItem SET PrintName='Decimal Pattern', Name='Decimal Pattern' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=53342) -; - --- Feb 11, 2008 7:27:38 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_PrintFormatItem SET PrintName='Decimal Pattern', Name='Decimal Pattern' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=53342) -; - --- Feb 11, 2008 7:27:49 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Element SET Description='Java Decimal Pattern',Updated=TO_TIMESTAMP('2008-02-11 19:27:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=53342 -; - --- Feb 11, 2008 7:27:49 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53342 -; - --- Feb 11, 2008 7:27:49 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Column SET ColumnName='DecimalPattern', Name='Decimal Pattern', Description='Java Decimal Pattern', Help=NULL WHERE AD_Element_ID=53342 -; - --- Feb 11, 2008 7:27:49 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET Name='Decimal Pattern', Description='Java Decimal Pattern', Help=NULL WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=53342) AND IsCentrallyMaintained='Y' -; - --- Feb 11, 2008 7:27:49 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Process_Para SET ColumnName='DecimalPattern', Name='Decimal Pattern', Description='Java Decimal Pattern', Help=NULL, AD_Element_ID=53342 WHERE UPPER(ColumnName)='DECIMALPATTERN' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - --- Feb 11, 2008 7:27:49 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Process_Para SET ColumnName='DecimalPattern', Name='Decimal Pattern', Description='Java Decimal Pattern', Help=NULL WHERE AD_Element_ID=53342 AND IsCentrallyMaintained='Y' -; - --- Feb 11, 2008 7:27:49 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_PrintFormatItem SET PrintName='Decimal Pattern', Name='Decimal Pattern' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=53342) -; - --- Feb 11, 2008 7:27:49 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_PrintFormatItem SET PrintName='Decimal Pattern', Name='Decimal Pattern' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=53342) -; - --- Feb 11, 2008 7:27:53 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Element SET Help='Option Date pattern in Java notation. Examples: dd.MM.yyyy - dd/MM/yyyy If the pattern for your language is not correct, please create a Adempiere support request with the correct information',Updated=TO_TIMESTAMP('2008-02-11 19:27:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=2673 -; - --- Feb 11, 2008 7:27:53 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=2673 -; - --- Feb 11, 2008 7:27:53 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Column SET ColumnName='DatePattern', Name='Date Pattern', Description='Java Date Pattern', Help='Option Date pattern in Java notation. Examples: dd.MM.yyyy - dd/MM/yyyy If the pattern for your language is not correct, please create a Adempiere support request with the correct information' WHERE AD_Element_ID=2673 -; - --- Feb 11, 2008 7:27:53 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET Name='Date Pattern', Description='Java Date Pattern', Help='Option Date pattern in Java notation. Examples: dd.MM.yyyy - dd/MM/yyyy If the pattern for your language is not correct, please create a Adempiere support request with the correct information' WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=2673) AND IsCentrallyMaintained='Y' -; - --- Feb 11, 2008 7:27:53 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Process_Para SET ColumnName='DatePattern', Name='Date Pattern', Description='Java Date Pattern', Help='Option Date pattern in Java notation. Examples: dd.MM.yyyy - dd/MM/yyyy If the pattern for your language is not correct, please create a Adempiere support request with the correct information', AD_Element_ID=2673 WHERE UPPER(ColumnName)='DATEPATTERN' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - --- Feb 11, 2008 7:27:53 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Process_Para SET ColumnName='DatePattern', Name='Date Pattern', Description='Java Date Pattern', Help='Option Date pattern in Java notation. Examples: dd.MM.yyyy - dd/MM/yyyy If the pattern for your language is not correct, please create a Adempiere support request with the correct information' WHERE AD_Element_ID=2673 AND IsCentrallyMaintained='Y' -; - --- Feb 11, 2008 7:27:53 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_PrintFormatItem SET PrintName='Date Pattern', Name='Date Pattern' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=2673) -; - --- Feb 11, 2008 7:27:53 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_PrintFormatItem SET PrintName='Date Pattern', Name='Date Pattern' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=2673) -; - --- Feb 11, 2008 7:29:00 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Element SET EntityType='D', Help='Option Decimal pattern in Java notation. Examples: 0000 will format 23 to 0023',Updated=TO_TIMESTAMP('2008-02-11 19:29:00','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=53342 -; - --- Feb 11, 2008 7:29:00 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Element_Trl SET IsTranslated='N' WHERE AD_Element_ID=53342 -; - --- Feb 11, 2008 7:29:00 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Column SET ColumnName='DecimalPattern', Name='Decimal Pattern', Description='Java Decimal Pattern', Help='Option Decimal pattern in Java notation. Examples: 0000 will format 23 to 0023' WHERE AD_Element_ID=53342 -; - --- Feb 11, 2008 7:29:00 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET Name='Decimal Pattern', Description='Java Decimal Pattern', Help='Option Decimal pattern in Java notation. Examples: 0000 will format 23 to 0023' WHERE AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=53342) AND IsCentrallyMaintained='Y' -; - --- Feb 11, 2008 7:29:00 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Process_Para SET ColumnName='DecimalPattern', Name='Decimal Pattern', Description='Java Decimal Pattern', Help='Option Decimal pattern in Java notation. Examples: 0000 will format 23 to 0023', AD_Element_ID=53342 WHERE UPPER(ColumnName)='DECIMALPATTERN' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL -; - --- Feb 11, 2008 7:29:00 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Process_Para SET ColumnName='DecimalPattern', Name='Decimal Pattern', Description='Java Decimal Pattern', Help='Option Decimal pattern in Java notation. Examples: 0000 will format 23 to 0023' WHERE AD_Element_ID=53342 AND IsCentrallyMaintained='Y' -; - --- Feb 11, 2008 7:29:00 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_PrintFormatItem SET PrintName='Decimal Pattern', Name='Decimal Pattern' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=53342) -; - --- Feb 11, 2008 7:29:00 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_PrintFormatItem SET PrintName='Decimal Pattern', Name='Decimal Pattern' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=AD_PrintFormatItem.AD_Column_ID AND c.AD_Element_ID=53342) -; - --- Feb 11, 2008 7:30:34 PM CET --- [FR1883270 ] Enhance Document No Formatting -INSERT INTO AD_Column (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,AD_Client_ID,Version,AD_Column_ID) VALUES (0,53342,10,115,'DecimalPattern',TO_TIMESTAMP('2008-02-11 19:30:30','YYYY-MM-DD HH24:MI:SS'),100,'Java Decimal Pattern','D',40,'Option Decimal pattern in Java notation. Examples: 0000 will format 23 to 0023','Y','N','N','N','N','N','N','N','N','N','Y','Decimal Pattern',0,TO_TIMESTAMP('2008-02-11 19:30:30','YYYY-MM-DD HH24:MI:SS'),100,0,0,54309) -; - --- Feb 11, 2008 7:30:34 PM CET --- [FR1883270 ] Enhance Document No Formatting -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54309 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Feb 11, 2008 7:30:46 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Column SET Name='DecimalPattern',Updated=TO_TIMESTAMP('2008-02-11 19:30:46','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54309 -; - --- Feb 11, 2008 7:30:46 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Column_Trl SET IsTranslated='N' WHERE AD_Column_ID=54309 -; - --- Feb 11, 2008 7:30:46 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET Name='DecimalPattern', Description='Java Decimal Pattern', Help='Option Decimal pattern in Java notation. Examples: 0000 will format 23 to 0023' WHERE AD_Column_ID=54309 AND IsCentrallyMaintained='Y' -; - --- Feb 11, 2008 7:30:59 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Column SET Name='Decimal Pattern',Updated=TO_TIMESTAMP('2008-02-11 19:30:59','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54309 -; - --- Feb 11, 2008 7:31:00 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Column_Trl SET IsTranslated='N' WHERE AD_Column_ID=54309 -; - --- Feb 11, 2008 7:31:00 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET Name='Decimal Pattern', Description='Java Decimal Pattern', Help='Option Decimal pattern in Java notation. Examples: 0000 will format 23 to 0023' WHERE AD_Column_ID=54309 AND IsCentrallyMaintained='Y' -; - --- Feb 11, 2008 7:31:06 PM CET --- [FR1883270 ] Enhance Document No Formatting -ALTER TABLE AD_Sequence ADD COLUMN DecimalPattern VARCHAR(40) -; - --- Feb 11, 2008 7:36:44 PM CET --- [FR1883270 ] Enhance Document No Formatting -INSERT INTO AD_Field (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,AD_Client_ID,UpdatedBy) VALUES (54309,0,54391,146,TO_TIMESTAMP('2008-02-11 19:36:43','YYYY-MM-DD HH24:MI:SS'),100,'Java Decimal Pattern',0,'D','Option Decimal pattern in Java notation. Examples: 0000 will format 23 to 0023','Y','Y','Y','N','N','N','N','N','Decimal Pattern',105,0,TO_TIMESTAMP('2008-02-11 19:36:43','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- Feb 11, 2008 7:36:44 PM CET --- [FR1883270 ] Enhance Document No Formatting -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54391 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- Feb 11, 2008 7:37:13 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET DisplayLength=14,Updated=TO_TIMESTAMP('2008-02-11 19:37:13','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54391 -; - --- Feb 11, 2008 7:37:28 PM CET --- [FR1883270 ] Enhance Document No Formatting -UPDATE AD_Field SET IsSameLine='Y',Updated=TO_TIMESTAMP('2008-02-11 19:37:28','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54391 -; - - -SELECT '093_placeholder_branch350.sql' AS Filename; - -SELECT '094_placeholder_branch350.sql' AS Filename; - -SELECT '095_placeholder_branch350.sql' AS Filename; - -SELECT '096_FRs1783027_1755177.sql' AS Filename; --- Feb 12, 2008 9:21:09 PM COT --- 1755177 - ad_changelog should have an action field - 1783027 - Add descriptive info to AD_Session -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,ColumnSQL,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54349,275,0,10,566,'Description',NULL,TO_TIMESTAMP('2008-02-12 21:21:07','YYYY-MM-DD HH24:MI:SS'),100,'Optional short description of the record','D',255,'A description is limited to 255 characters.','Y','N','N','N','N','N','N','N','N','N','Y','Description',0,TO_TIMESTAMP('2008-02-12 21:21:07','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54349 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54350,123,0,19,566,'AD_Role_ID',TO_TIMESTAMP('2008-02-12 21:21:57','YYYY-MM-DD HH24:MI:SS'),100,'Responsibility Role','D',10,'The Role determines security and access a user who has this Role will have in the System.','Y','N','N','N','N','N','N','N','N','N','Y','Role',0,TO_TIMESTAMP('2008-02-12 21:21:57','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54350 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,53344,0,'LoginDate',TO_TIMESTAMP('2008-02-12 21:25:05','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Login date','Login date',TO_TIMESTAMP('2008-02-12 21:25:05','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53344 AND EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54351,53344,0,15,566,'LoginDate',TO_TIMESTAMP('2008-02-12 21:25:40','YYYY-MM-DD HH24:MI:SS'),100,'D',10,'Y','N','N','N','N','N','N','N','N','N','Y','Login date',0,TO_TIMESTAMP('2008-02-12 21:25:40','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54351 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -ALTER TABLE AD_Session ADD COLUMN Description VARCHAR(255) -; - -ALTER TABLE AD_Session ADD COLUMN AD_Role_ID NUMERIC(10) -; - -ALTER TABLE AD_Session ADD COLUMN LoginDate TIMESTAMP -; - -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,53345,0,'EventChangeLog',TO_TIMESTAMP('2008-02-12 21:27:16','YYYY-MM-DD HH24:MI:SS'),100,'Type of Event in Change Log','D','Y','Event Change Log','Event Change Log',TO_TIMESTAMP('2008-02-12 21:27:16','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53345 AND EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_Reference (AD_Client_ID,AD_Org_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,ValidationType) VALUES (0,0,53238,TO_TIMESTAMP('2008-02-12 21:27:47','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','EventChangeLog',TO_TIMESTAMP('2008-02-12 21:27:47','YYYY-MM-DD HH24:MI:SS'),100,'L') -; - -INSERT INTO AD_Reference_Trl (AD_Language,AD_Reference_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Reference_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Reference t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Reference_ID=53238 AND EXISTS (SELECT * FROM AD_Reference_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Reference_ID!=t.AD_Reference_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53321,53238,TO_TIMESTAMP('2008-02-12 21:28:05','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Insert',TO_TIMESTAMP('2008-02-12 21:28:05','YYYY-MM-DD HH24:MI:SS'),100,'I') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53321 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53322,53238,TO_TIMESTAMP('2008-02-12 21:28:11','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Delete',TO_TIMESTAMP('2008-02-12 21:28:11','YYYY-MM-DD HH24:MI:SS'),100,'D') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53322 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,53323,53238,TO_TIMESTAMP('2008-02-12 21:28:16','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Update',TO_TIMESTAMP('2008-02-12 21:28:16','YYYY-MM-DD HH24:MI:SS'),100,'U') -; - -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53323 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54352,53345,0,17,53238,580,'EventChangeLog',TO_TIMESTAMP('2008-02-12 21:28:37','YYYY-MM-DD HH24:MI:SS'),100,'Type of Event in Change Log','D',1,'Y','N','N','N','N','N','N','N','N','N','Y','Event Change Log',0,TO_TIMESTAMP('2008-02-12 21:28:37','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54352 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -ALTER TABLE AD_ChangeLog ADD COLUMN EventChangeLog CHAR(1) -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54349,54393,0,475,TO_TIMESTAMP('2008-02-12 21:29:38','YYYY-MM-DD HH24:MI:SS'),100,'Optional short description of the record',255,'D','A description is limited to 255 characters.','Y','Y','Y','N','N','N','N','N','Description',TO_TIMESTAMP('2008-02-12 21:29:38','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54393 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54351,54394,0,475,TO_TIMESTAMP('2008-02-12 21:29:40','YYYY-MM-DD HH24:MI:SS'),100,10,'D','Y','Y','Y','N','N','N','N','N','Login date',TO_TIMESTAMP('2008-02-12 21:29:40','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54394 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54350,54395,0,475,TO_TIMESTAMP('2008-02-12 21:29:40','YYYY-MM-DD HH24:MI:SS'),100,'Responsibility Role',10,'D','The Role determines security and access a user who has this Role will have in the System.','Y','Y','Y','N','N','N','N','N','Role',TO_TIMESTAMP('2008-02-12 21:29:40','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54395 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -UPDATE AD_Field SET SeqNo=90,IsDisplayed='Y' WHERE AD_Field_ID=54394 -; - -UPDATE AD_Field SET SeqNo=100,IsDisplayed='Y' WHERE AD_Field_ID=54395 -; - -UPDATE AD_Field SET SeqNo=110,IsDisplayed='Y' WHERE AD_Field_ID=54393 -; - -UPDATE AD_Field SET SeqNo=120,IsDisplayed='Y' WHERE AD_Field_ID=6622 -; - -UPDATE AD_Field SET IsSameLine='Y',Updated=TO_TIMESTAMP('2008-02-12 21:30:20','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54394 -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54352,54396,0,487,TO_TIMESTAMP('2008-02-12 21:30:57','YYYY-MM-DD HH24:MI:SS'),100,'Type of Event in Change Log',1,'D','Y','Y','Y','N','N','N','N','N','Event Change Log',TO_TIMESTAMP('2008-02-12 21:30:57','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54396 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -UPDATE AD_Field SET SeqNo=130,IsDisplayed='Y' WHERE AD_Field_ID=54396 -; - -UPDATE AD_Field SET SeqNo=140,IsDisplayed='Y' WHERE AD_Field_ID=6770 -; - -UPDATE AD_Field SET SeqNo=150,IsDisplayed='Y' WHERE AD_Field_ID=6763 -; - -UPDATE AD_Field SET SeqNo=160,IsDisplayed='Y' WHERE AD_Field_ID=12357 -; - -UPDATE AD_Field SET SeqNo=170,IsDisplayed='Y' WHERE AD_Field_ID=10951 -; - -UPDATE AD_Field SET SeqNo=180,IsDisplayed='Y' WHERE AD_Field_ID=10950 -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54352,54397,0,488,TO_TIMESTAMP('2008-02-12 21:33:19','YYYY-MM-DD HH24:MI:SS'),100,'Type of Event in Change Log',1,'D','Y','Y','Y','N','N','N','N','N','Event Change Log',TO_TIMESTAMP('2008-02-12 21:33:19','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54397 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -UPDATE AD_Field SET SeqNo=130,IsDisplayed='Y' WHERE AD_Field_ID=54397 -; - -UPDATE AD_Field SET SeqNo=140,IsDisplayed='Y' WHERE AD_Field_ID=6780 -; - -UPDATE AD_Field SET SeqNo=150,IsDisplayed='Y' WHERE AD_Field_ID=6773 -; - -UPDATE AD_Field SET SeqNo=160,IsDisplayed='Y' WHERE AD_Field_ID=12356 -; - -UPDATE AD_Field SET SeqNo=170,IsDisplayed='Y' WHERE AD_Field_ID=10948 -; - -UPDATE AD_Field SET SeqNo=180,IsDisplayed='Y' WHERE AD_Field_ID=10947 -; - -UPDATE AD_SESSION - SET description = - (SELECT MAX (description) - FROM AD_CHANGELOG - WHERE AD_CHANGELOG.ad_session_id = AD_SESSION.ad_session_id - AND AD_CHANGELOG.description IS NOT NULL) - WHERE description IS NULL - AND EXISTS ( - SELECT 1 - FROM AD_CHANGELOG - WHERE AD_CHANGELOG.ad_session_id = AD_SESSION.ad_session_id - AND AD_CHANGELOG.description IS NOT NULL); - -UPDATE AD_CHANGELOG - SET description = NULL; -SELECT '097_1851190.sql' AS Filename; --- Feb 12, 2008 11:33:32 PM COT --- 1851190 - Running outdated client can cause data corruption -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,53346,0,'LastBuildInfo',TO_TIMESTAMP('2008-02-12 23:33:30','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Last Build Info','Last Build Info',TO_TIMESTAMP('2008-02-12 23:33:30','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53346 AND EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54353,53346,0,10,531,'LastBuildInfo',TO_TIMESTAMP('2008-02-12 23:34:02','YYYY-MM-DD HH24:MI:SS'),100,'D',255,'Y','N','N','N','N','N','N','N','N','N','Y','Last Build Info',0,TO_TIMESTAMP('2008-02-12 23:34:02','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54353 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,53347,0,'IsFailOnBuildDiffer',TO_TIMESTAMP('2008-02-12 23:34:52','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Fail if Build Differ','Fail if Build Differ',TO_TIMESTAMP('2008-02-12 23:34:52','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53347 AND EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Element_ID!=t.AD_Element_ID) -; - -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54354,53347,0,20,531,'IsFailOnBuildDiffer',TO_TIMESTAMP('2008-02-12 23:35:26','YYYY-MM-DD HH24:MI:SS'),100,'N','D',1,'Y','N','N','N','N','Y','N','N','N','N','Y','Fail if Build Differ',0,TO_TIMESTAMP('2008-02-12 23:35:26','YYYY-MM-DD HH24:MI:SS'),100,0) -; - -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54354 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - -ALTER TABLE AD_System ADD COLUMN LastBuildInfo VARCHAR(255) -; - -UPDATE AD_Field SET Name='Fail if Build Differ', Description=NULL, Help=NULL WHERE AD_Column_ID=54354 AND IsCentrallyMaintained='Y' -; - -ALTER TABLE AD_System ADD COLUMN IsFailOnBuildDiffer CHAR(1) DEFAULT 'N' CHECK (IsFailOnBuildDiffer IN ('Y','N')) NOT NULL -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54354,54398,0,440,TO_TIMESTAMP('2008-02-13 00:07:59','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','N','Fail if Build Differ',TO_TIMESTAMP('2008-02-13 00:07:59','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54398 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,54353,54399,0,440,TO_TIMESTAMP('2008-02-13 00:08:02','YYYY-MM-DD HH24:MI:SS'),100,255,'D','Y','Y','Y','N','N','N','N','N','Last Build Info',TO_TIMESTAMP('2008-02-13 00:08:02','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54399 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - -UPDATE AD_Field SET SeqNo=260,Updated=TO_TIMESTAMP('2008-02-13 00:08:23','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54399 -; - -UPDATE AD_Field SET SeqNo=270,Updated=TO_TIMESTAMP('2008-02-13 00:08:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54398 -; - -UPDATE AD_Field SET SeqNo=240,IsDisplayed='Y' WHERE AD_Field_ID=54236 -; - -UPDATE AD_Field SET SeqNo=250,IsDisplayed='Y' WHERE AD_Field_ID=54399 -; - -UPDATE AD_Field SET SeqNo=260,IsDisplayed='Y' WHERE AD_Field_ID=54398 -; - -UPDATE AD_Field SET SeqNo=270,IsDisplayed='Y' WHERE AD_Field_ID=12870 -; - -UPDATE AD_Field SET SeqNo=280,IsDisplayed='Y' WHERE AD_Field_ID=12871 -; - -INSERT INTO AD_Message (AD_Client_ID,AD_Message_ID,AD_Org_ID,Created,CreatedBy,EntityType,IsActive,MsgText,MsgTip,MsgType,Updated,UpdatedBy,Value) VALUES (0,53025,0,TO_TIMESTAMP('2008-02-13 00:10:26','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Build Version Error','The program assumes build version {0}, but database has build version {1}. -This is likely to cause hard to fix errors. -Please contact administrator.','E',TO_TIMESTAMP('2008-02-13 00:10:26','YYYY-MM-DD HH24:MI:SS'),100,'BuildVersionError') -; - -INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=53025 AND EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Message_ID!=t.AD_Message_ID) -; - - -SELECT '098_BF1892475.sql' AS Filename; --- Feb 13, 2008 4:16:25 PM SGT --- [ 1892475 ] AD_Reference list is hardcoded to always sort by name -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,Help,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,53348,0,'IsOrderByValue',TO_TIMESTAMP('2008-02-13 16:16:22','YYYY-MM-DD HH24:MI:SS'),100,'Order list using the value column instead of the name column','D','Order list using the value column instead of the name column','Y','Order By Value','Order By Value',TO_TIMESTAMP('2008-02-13 16:16:22','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 13, 2008 4:16:25 PM SGT --- [ 1892475 ] AD_Reference list is hardcoded to always sort by name -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53348 AND EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Element_ID!=t.AD_Element_ID) -; - --- Feb 13, 2008 4:17:15 PM SGT --- [ 1892475 ] AD_Reference list is hardcoded to always sort by name -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54355,53348,0,20,102,'IsOrderByValue',TO_TIMESTAMP('2008-02-13 16:17:13','YYYY-MM-DD HH24:MI:SS'),100,'N','Order list using the value column instead of the name column','D',1,'Order list using the value column instead of the name column','Y','N','N','N','N','N','N','N','N','N','Y','Order By Value',0,TO_TIMESTAMP('2008-02-13 16:17:13','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Feb 13, 2008 4:17:15 PM SGT --- [ 1892475 ] AD_Reference list is hardcoded to always sort by name -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54355 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Feb 13, 2008 4:17:19 PM SGT --- [ 1892475 ] AD_Reference list is hardcoded to always sort by name -ALTER TABLE AD_Reference ADD COLUMN IsOrderByValue CHAR(1) DEFAULT 'N' -; - --- Feb 13, 2008 4:19:22 PM SGT --- [ 1892475 ] AD_Reference list is hardcoded to always sort by name -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,DisplayLogic,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54355,54400,0,102,TO_TIMESTAMP('2008-02-13 16:19:20','YYYY-MM-DD HH24:MI:SS'),100,'Order list using the value column instead of the name column',0,'@ValidationType@=L','U','Order list using the value column instead of the name column','Y','Y','Y','N','N','N','N','N','Order By Value',110,0,TO_TIMESTAMP('2008-02-13 16:19:20','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 13, 2008 4:19:22 PM SGT --- [ 1892475 ] AD_Reference list is hardcoded to always sort by name -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54400 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - - -SELECT '099_FR1887651.sql' AS Filename; --- Feb 13, 2008 4:39:57 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Reference_Value_ID,AD_Table_ID,AD_Val_Rule_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54356,121,0,18,4,107,115,'AD_Reference_Value_ID',TO_TIMESTAMP('2008-02-13 16:39:55','YYYY-MM-DD HH24:MI:SS'),100,'Required to specify, if data type is Table or List','D',22,'The Reference Value indicates where the reference values are stored. It must be specified if the data type is Table or List. ','Y','N','N','N','N','N','N','N','N','N','Y','Reference Key',0,TO_TIMESTAMP('2008-02-13 16:39:55','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Feb 13, 2008 4:39:57 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54356 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Feb 13, 2008 4:40:02 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -ALTER TABLE AD_Field ADD COLUMN AD_Reference_Value_ID NUMERIC(10) DEFAULT NULL -; - --- Feb 13, 2008 4:41:01 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54357,139,0,19,107,'AD_Val_Rule_ID',TO_TIMESTAMP('2008-02-13 16:41:00','YYYY-MM-DD HH24:MI:SS'),100,'Dynamic Validation Rule','D',22,'These rules define how an entry is determined to valid. You can use variables for dynamic (context sensitive) validation.','Y','N','N','N','N','N','N','N','N','N','Y','Dynamic Validation',0,TO_TIMESTAMP('2008-02-13 16:41:00','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Feb 13, 2008 4:41:01 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54357 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Feb 13, 2008 4:41:12 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -ALTER TABLE AD_Field ADD COLUMN AD_Val_Rule_ID NUMERIC(10) DEFAULT NULL -; - --- Feb 13, 2008 4:46:04 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,DisplayLogic,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54357,54401,0,107,TO_TIMESTAMP('2008-02-13 16:46:03','YYYY-MM-DD HH24:MI:SS'),100,'Dynamic Validation Rule',14,'@AD_Reference_ID@=17 | @AD_Reference_ID@=18 | @AD_Reference_ID@=19 | @AD_Reference_ID@=28 | @AD_Reference_ID@=30','D','These rules define how an entry is determined to valid. You can use variables for dynamic (context sensitive) validation.','Y','Y','Y','N','N','N','N','Y','Dynamic Validation',280,0,TO_TIMESTAMP('2008-02-13 16:46:03','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 13, 2008 4:46:04 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54401 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- Feb 13, 2008 4:46:48 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,DisplayLogic,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54356,54402,0,107,TO_TIMESTAMP('2008-02-13 16:46:47','YYYY-MM-DD HH24:MI:SS'),100,'Required to specify, if data type is Table or List',14,'@AD_Reference_ID@=17 | @AD_Reference_ID@=18 | @AD_Reference_ID@=30 | @AD_Reference_ID@=28','D','The Reference Value indicates where the reference values are stored. It must be specified if the data type is Table or List. ','Y','Y','Y','N','N','N','N','N','Reference Key',290,0,TO_TIMESTAMP('2008-02-13 16:46:47','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 13, 2008 4:46:48 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54402 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- Feb 13, 2008 4:47:27 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -UPDATE AD_Field SET IsSameLine='N',Updated=TO_TIMESTAMP('2008-02-13 16:47:27','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=13424 -; - --- Feb 13, 2008 4:48:21 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -UPDATE AD_Field SET SeqNo=250,IsDisplayed='Y' WHERE AD_Field_ID=54401 -; - --- Feb 13, 2008 4:48:21 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -UPDATE AD_Field SET SeqNo=260,IsDisplayed='Y' WHERE AD_Field_ID=54402 -; - --- Feb 13, 2008 4:48:21 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -UPDATE AD_Field SET SeqNo=270,IsDisplayed='Y' WHERE AD_Field_ID=13424 -; - --- Feb 13, 2008 4:48:21 PM SGT --- [ 1887651 ] Add Ad_Reference_Value_ID and AD_Val_Rule_ID to AD_Field -UPDATE AD_Field SET SeqNo=280,IsDisplayed='Y' WHERE AD_Field_ID=53280 -; - - -SELECT '100_FR1892335.sql' AS Filename; --- Feb 13, 2008 4:58:56 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,Help,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,53349,0,'InfoFactoryClass',TO_TIMESTAMP('2008-02-13 16:58:53','YYYY-MM-DD HH24:MI:SS'),100,'Fully qualified class name that implements the InfoFactory interface','D','Fully qualified class name that implements the InfoFactory interface. This can be use to provide custom Info class for column.','Y','Info Factory Class','Info Factory Class',TO_TIMESTAMP('2008-02-13 16:58:53','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 13, 2008 4:58:56 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53349 AND EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Element_ID!=t.AD_Element_ID) -; - --- Feb 13, 2008 4:59:45 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54358,53349,0,10,101,'InfoFactoryClass',TO_TIMESTAMP('2008-02-13 16:59:44','YYYY-MM-DD HH24:MI:SS'),100,'Fully qualified class name that implements the InfoFactory interface','D',255,'Fully qualified class name that implements the InfoFactory interface. This can be use to provide custom Info class for column.','Y','N','N','N','N','N','N','N','N','N','Y','Info Factory Class',0,TO_TIMESTAMP('2008-02-13 16:59:44','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Feb 13, 2008 4:59:46 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54358 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Feb 13, 2008 4:59:50 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -ALTER TABLE AD_Column ADD COLUMN InfoFactoryClass VARCHAR(255) -; - --- Feb 13, 2008 5:01:42 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version) VALUES (0,54359,53349,0,10,107,'InfoFactoryClass',TO_TIMESTAMP('2008-02-13 17:01:39','YYYY-MM-DD HH24:MI:SS'),100,'Fully qualified class name that implements the InfoFactory interface','D',255,'Fully qualified class name that implements the InfoFactory interface. This can be use to provide custom Info class for column.','Y','N','N','N','N','N','N','N','N','N','Y','Info Factory Class',0,TO_TIMESTAMP('2008-02-13 17:01:39','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- Feb 13, 2008 5:01:42 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54359 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Feb 13, 2008 5:01:47 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -ALTER TABLE AD_Field ADD COLUMN InfoFactoryClass VARCHAR(255) -; - --- Feb 13, 2008 5:07:51 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,DisplayLogic,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,54358,54403,0,101,TO_TIMESTAMP('2008-02-13 17:07:44','YYYY-MM-DD HH24:MI:SS'),100,'Fully qualified class name that implements the InfoFactory interface',14,'@AD_Reference_ID@=30','D','Fully qualified class name that implements the InfoFactory interface. This can be use to provide custom Info class for column.','Y','Y','Y','N','N','N','N','Y','Info Factory Class',350,0,TO_TIMESTAMP('2008-02-13 17:07:44','YYYY-MM-DD HH24:MI:SS'),100) -; - --- Feb 13, 2008 5:07:51 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54403 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- Feb 13, 2008 5:08:32 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_Field SET SeqNo=180,IsDisplayed='Y' WHERE AD_Field_ID=54403 -; - --- Feb 13, 2008 5:08:32 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_Field SET SeqNo=190,IsDisplayed='Y' WHERE AD_Field_ID=2574 -; - --- Feb 13, 2008 5:08:32 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_Field SET SeqNo=200,IsDisplayed='Y' WHERE AD_Field_ID=2573 -; - --- Feb 13, 2008 5:08:32 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_Field SET SeqNo=210,IsDisplayed='Y' WHERE AD_Field_ID=160 -; - --- Feb 13, 2008 5:08:32 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_Field SET SeqNo=220,IsDisplayed='Y' WHERE AD_Field_ID=161 -; - --- Feb 13, 2008 5:08:32 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_Field SET SeqNo=230,IsDisplayed='Y' WHERE AD_Field_ID=162 -; - --- Feb 13, 2008 5:08:32 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_Field SET SeqNo=240,IsDisplayed='Y' WHERE AD_Field_ID=166 -; - --- Feb 13, 2008 5:08:32 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_Field SET SeqNo=250,IsDisplayed='Y' WHERE AD_Field_ID=2370 -; - --- Feb 13, 2008 5:08:32 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_Field SET SeqNo=260,IsDisplayed='Y' WHERE AD_Field_ID=169 -; - --- Feb 13, 2008 5:08:32 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_Field SET SeqNo=270,IsDisplayed='Y' WHERE AD_Field_ID=10128 -; - --- Feb 13, 2008 5:08:32 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_Field SET SeqNo=280,IsDisplayed='Y' WHERE AD_Field_ID=4941 -; - --- Feb 13, 2008 5:08:32 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_Field SET SeqNo=290,IsDisplayed='Y' WHERE AD_Field_ID=50188 -; - --- Feb 13, 2008 5:08:32 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_Field SET SeqNo=300,IsDisplayed='Y' WHERE AD_Field_ID=168 -; - --- Feb 13, 2008 5:08:32 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_Field SET SeqNo=310,IsDisplayed='Y' WHERE AD_Field_ID=159 -; - --- Feb 13, 2008 5:08:33 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_Field SET SeqNo=320,IsDisplayed='Y' WHERE AD_Field_ID=825 -; - --- Feb 13, 2008 5:08:33 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_Field SET SeqNo=330,IsDisplayed='Y' WHERE AD_Field_ID=4940 -; - --- Feb 13, 2008 5:08:33 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_Field SET SeqNo=340,IsDisplayed='Y' WHERE AD_Field_ID=167 -; - --- Feb 13, 2008 5:08:33 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_Field SET SeqNo=350,IsDisplayed='Y' WHERE AD_Field_ID=5121 -; - --- Feb 13, 2008 5:08:33 PM SGT --- [ 1892335 ] Define custom info class at ad_column or ad_field -UPDATE AD_Field SET SeqNo=360,IsDisplayed='Y' WHERE AD_Field_ID=5122 -; - -drop view ad_field_v; - -CREATE OR -REPLACE VIEW ad_field_v AS -SELECT t.ad_window_id, - f.ad_tab_id, - f.ad_field_id, - tbl.ad_table_id, - f.ad_column_id, - f.NAME, - f.description, - f.help, - f.isdisplayed, - f.displaylogic, - f.displaylength, - f.seqno, - f.sortno, - f.issameline, - f.isheading, - f.isfieldonly, - f.isreadonly, - f.isencrypted AS isencryptedfield, - f.obscuretype, - c.columnname, - c.columnsql, - c.fieldlength, - c.vformat, - c.defaultvalue, - c.iskey, - c.isparent, - COALESCE(f.ismandatory, c.ismandatory) AS ismandatory, - c.isidentifier, - c.istranslated, - COALESCE(f.ad_reference_value_id, c.ad_reference_value_id) AS ad_reference_value_id, - c.callout, - COALESCE(f.ad_reference_id, c.ad_reference_id) AS ad_reference_id, - COALESCE(f.ad_val_rule_id, c.ad_val_rule_id) AS ad_val_rule_id, - c.ad_process_id, - c.isalwaysupdateable, - c.readonlylogic, - c.isupdateable, - c.isencrypted AS isencryptedcolumn, - c.isselectioncolumn, - tbl.tablename, - c.valuemin, - c.valuemax, - fg.NAME AS fieldgroup, - vr.code AS validationcode, - f.Included_Tab_ID, - fg.FieldGroupType, - fg.IsCollapsedByDefault AS iscollapsedbydefault, - COALESCE(f.infofactoryclass, c.infofactoryclass) as infofactoryclass -FROM ((((((AD_FIELD f - JOIN AD_TAB t - ON ((f.ad_tab_id = t.ad_tab_id))) - LEFT JOIN AD_FIELDGROUP fg - ON ((f.ad_fieldgroup_id = fg.ad_fieldgroup_id))) - LEFT JOIN AD_COLUMN c - ON ((f.ad_column_id = c.ad_column_id))) - JOIN AD_TABLE tbl - ON ((c.ad_table_id = tbl.ad_table_id))) - JOIN AD_REFERENCE r - ON ((c.ad_reference_id = r.ad_reference_id))) - LEFT JOIN AD_VAL_RULE vr - ON ((vr.ad_val_rule_id = COALESCE(f.ad_val_rule_id, c.ad_val_rule_id)))) -WHERE ((f.isactive = 'Y'::bpchar) AND - (c.isactive = 'Y'::bpchar)) -; - -drop view ad_field_vt; - -CREATE OR -REPLACE VIEW ad_field_vt AS -SELECT trl.AD_LANGUAGE, - t.ad_window_id, - f.ad_tab_id, - f.ad_field_id, - tbl.ad_table_id, - f.ad_column_id, - trl.NAME, - trl.description, - trl.help, - f.isdisplayed, - f.displaylogic, - f.displaylength, - f.seqno, - f.sortno, - f.issameline, - f.isheading, - f.isfieldonly, - f.isreadonly, - f.isencrypted AS isencryptedfield, - f.obscuretype, - c.columnname, - c.columnsql, - c.fieldlength, - c.vformat, - c.defaultvalue, - c.iskey, - c.isparent, - COALESCE(f.ismandatory, c.ismandatory) AS ismandatory, - c.isidentifier, - c.istranslated, - COALESCE(f.ad_reference_value_id, c.ad_reference_value_id) AS ad_reference_value_id, - c.callout, - COALESCE(f.ad_reference_id, c.ad_reference_id) AS ad_reference_id, - COALESCE(f.ad_val_rule_id, c.ad_val_rule_id) AS ad_val_rule_id, - c.ad_process_id, - c.isalwaysupdateable, - c.readonlylogic, - c.isupdateable, - c.isencrypted AS isencryptedcolumn, - c.isselectioncolumn, - tbl.tablename, - c.valuemin, - c.valuemax, - fgt.NAME AS fieldgroup, - vr.code AS validationcode, - f.Included_Tab_ID, - fg.FieldGroupType, - fg.IsCollapsedByDefault AS iscollapsedbydefault , - COALESCE(f.infofactoryclass, c.infofactoryclass) as infofactoryclass -FROM (((((((AD_FIELD f - JOIN AD_FIELD_TRL trl - ON ((f.ad_field_id = trl.ad_field_id))) - JOIN AD_TAB t - ON ((f.ad_tab_id = t.ad_tab_id))) - LEFT JOIN AD_FIELDGROUP fg - ON (f.AD_FieldGroup_ID = fg.AD_FieldGroup_ID) - LEFT JOIN AD_FIELDGROUP_TRL fgt - ON (((f.ad_fieldgroup_id = fgt.ad_fieldgroup_id) AND - ((trl.AD_LANGUAGE)::text = (fgt.AD_LANGUAGE)::text)))) - LEFT JOIN AD_COLUMN c - ON ((f.ad_column_id = c.ad_column_id))) - JOIN AD_TABLE tbl - ON ((c.ad_table_id = tbl.ad_table_id))) - JOIN AD_REFERENCE r - ON ((c.ad_reference_id = r.ad_reference_id))) - LEFT JOIN AD_VAL_RULE vr - ON ((vr.ad_val_rule_id = COALESCE(f.ad_val_rule_id, c.ad_val_rule_id)))) -WHERE ((f.isactive = 'Y'::bpchar) AND - (c.isactive = 'Y'::bpchar)) -; - -SELECT '101_FR1892819.sql' AS Filename; --- Review optional scripts at the end - --- Feb 13, 2008 10:31:57 AM COT --- 1892819 - Field Phone Format -UPDATE AD_Column SET Callout='org.adempiere.model.CalloutBPartnerLocation.formatPhone',Updated=TO_TIMESTAMP('2008-02-13 10:31:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=2959 -; - --- Please uncomment following lines if you prefer to preserve old functionality - this is: not formatting phones - -/* - -UPDATE C_Country SET ExpressionPhone=NULL,Updated=TO_TIMESTAMP('2008-02-13 10:32:55','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_Country_ID=100 -; - -UPDATE C_Country SET ExpressionPhone=NULL,Updated=TO_TIMESTAMP('2008-02-13 10:33:18','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_Country_ID=122 -; - -*/ -SELECT '102_FR1639204.sql' AS Filename; --- Feb 14, 2008 11:57:23 PM COT --- 1639204 - Delete Old Notes is deleting all notes -INSERT INTO AD_Process_Para (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,DefaultValue,Description,EntityType,FieldLength,Help,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,2407,0,241,53130,11,'KeepLogDays',TO_TIMESTAMP('2008-02-14 23:57:19','YYYY-MM-DD HH24:MI:SS'),100,'7','Number of days to keep the log entries','U',0,'Older Log entries may be deleted','Y','Y','N','N','Days to keep Log',20,TO_TIMESTAMP('2008-02-14 23:57:19','YYYY-MM-DD HH24:MI:SS'),100) -; - -INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53130 AND EXISTS (SELECT * FROM AD_Process_Para_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - -INSERT INTO AD_Scheduler_Para (AD_Client_ID,AD_Org_ID,AD_Process_Para_ID,AD_Scheduler_ID,Created,CreatedBy,IsActive,ParameterDefault,Updated,UpdatedBy) VALUES (0,0,53130,100,TO_TIMESTAMP('2008-02-14 23:57:39','YYYY-MM-DD HH24:MI:SS'),100,'Y','7',TO_TIMESTAMP('2008-02-14 23:57:39','YYYY-MM-DD HH24:MI:SS'),100) -; - -UPDATE AD_Column SET IsParent='Y', IsUpdateable='N',Updated=TO_TIMESTAMP('2008-02-14 23:59:15','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=11396 -; -SELECT '103_BF1713137.sql' AS Filename; --- Feb 15, 2008 12:34:59 AM COT --- 1713137 - Can't create nodes, transitions or conditions on client -UPDATE AD_Column SET DefaultValue='@#AD_Client_ID@',Updated=TO_TIMESTAMP('2008-02-15 00:34:59','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=11570 -; - -UPDATE AD_Column SET DefaultValue='@#AD_Client_ID@',Updated=TO_TIMESTAMP('2008-02-15 00:35:08','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=434 -; - -UPDATE AD_Column SET DefaultValue='@#AD_Client_ID@',Updated=TO_TIMESTAMP('2008-02-15 00:35:15','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=755 -; - -UPDATE AD_Column SET DefaultValue='@#AD_Client_ID@',Updated=TO_TIMESTAMP('2008-02-15 00:35:25','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=10434 -; - -UPDATE AD_Column SET DefaultValue='@#AD_Client_ID@',Updated=TO_TIMESTAMP('2008-02-15 00:35:47','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=10486 -; - -UPDATE AD_Column SET DefaultValue='@#AD_Client_ID@',Updated=TO_TIMESTAMP('2008-02-15 00:36:05','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=1207 -; -SELECT '104_FR1894573.sql' AS Filename; --- FR [ 1894573 ] Alert Processor Improvements -insert into AD_SysConfig (AD_SYSCONFIG_ID,AD_CLIENT_ID,AD_ORG_ID,CREATED,UPDATED,CREATEDBY,UPDATEDBY,ISACTIVE,NAME,VALUE,DESCRIPTION,ENTITYTYPE,CONFIGURATIONLEVEL) -values (50014,0,0,TO_TIMESTAMP('2008-02-15 00:00:00','YYYY-MM-DD HH24:MI:SS'),TO_TIMESTAMP('2008-02-15 00:00:00','YYYY-MM-DD HH24:MI:SS'),0,0,'Y','ALERT_SEND_ATTACHMENT_AS_XLS','Y','Send alert results as Excel attachments','D','C'); - -SELECT '105_FR1894640.sql' AS Filename; --- 18.02.2008 12:02:24 EET --- FR [ 1894640 ] Report Engine: Excel Export support -INSERT INTO AD_Message (AD_Client_ID,AD_Message_ID,AD_Org_ID,Created,CreatedBy,EntityType,IsActive,MsgText,MsgType,Updated,UpdatedBy,Value) VALUES (0,53026,0,TO_TIMESTAMP('2008-02-18 12:02:11','YYYY-MM-DD HH24:MI:SS'),0,'D','Y','xls - Excel file','E',TO_TIMESTAMP('2008-02-18 12:02:11','YYYY-MM-DD HH24:MI:SS'),0,'FileXLS') -; - --- 18.02.2008 12:02:24 EET --- FR [ 1894640 ] Report Engine: Excel Export support -INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgText,MsgTip, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Message_ID, t.MsgText,t.MsgTip, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=53026 AND EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Message_ID!=t.AD_Message_ID) -; - - -SELECT '106_BF1759431.sql' AS Filename; - --- Feb 21, 2008 12:53:15 PM CET --- Updated by Karsten Thiemann -INSERT INTO AD_Message (AD_Org_ID,Value,UpdatedBy,Updated,MsgType,MsgTip,MsgText,IsActive,EntityType,CreatedBy,Created,AD_Message_ID,AD_Client_ID) VALUES (0,'FromSameWarehouseOnly',100,TO_TIMESTAMP('2008-02-21 12:53:13','YYYY-MM-DD HH24:MI:SS'),'I','Show only orders with the same warehouse as selected in the material receipt','Only from same warehouse','Y','D',100,TO_TIMESTAMP('2008-02-21 12:53:13','YYYY-MM-DD HH24:MI:SS'),53027,0) -; - --- Feb 21, 2008 12:53:15 PM CET --- Updated by Karsten Thiemann -INSERT INTO AD_Message_Trl (AD_Language,AD_Message_ID, MsgTip,MsgText, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Message_ID, t.MsgTip,t.MsgText, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Message t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Message_ID=53027 AND EXISTS (SELECT * FROM AD_Message_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Message_ID!=t.AD_Message_ID) -; - - -SELECT '107_BR1902656.sql' AS Filename; --- Feb 26, 2008 9:21:28 PM COT --- 1902656 - Hard to find process in Role window -UPDATE AD_Column SET IsIdentifier='Y',SeqNo=2,Updated=TO_TIMESTAMP('2008-02-26 21:21:28','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=2809 -; -SELECT '108_placeholder_branch350.sql' AS Filename; - -SELECT '109_placeholder_branch350.sql' AS Filename; - -SELECT '110_FR_1866483JasperFinancialReports.sql' AS Filename; --- Jan 7, 2008 9:37:36 PM COT --- 1866483 - Jasper on Financial Reports - --- Is convenient to allow executing the configured financial report with adempiere reporter, and jasper --- Exporting to CSV have different results from Jasper than from Adempiere reporter - -UPDATE AD_FIELD SET DisplayLogic=NULL,Updated=TO_TIMESTAMP('2008-02-27 12:57:48','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=4737 -; - -UPDATE AD_FIELD SET SeqNo=150,IsDisplayed='Y' WHERE AD_Field_ID=54235 -; - -UPDATE AD_FIELD SET SeqNo=140,IsDisplayed='Y' WHERE AD_Field_ID=6265 -; - - -SELECT '111_placeholder_branch350.sql' AS Filename; - -SELECT '112_BF1907259.sql' AS Filename; --- [ 1907259 ] Function charat wrong in 331b - -CREATE OR REPLACE FUNCTION charat(character varying, integer) RETURNS character varying - AS $_$ - BEGIN - RETURN SUBSTR($1, $2, 1); - END; -$_$ - LANGUAGE plpgsql; -SELECT '113_placeholder_branch350.sql' AS Filename; - -SELECT '114_placeholder_branch350.sql' AS Filename; - -SELECT '115_placeholder_branch350.sql' AS Filename; - -SELECT '116_placeholder_branch350.sql' AS Filename; - -SELECT '117-FR1834749.sql' AS Filename; -CREATE TABLE ad_migrationscript ( - ad_client_id numeric(10,0) NOT NULL, - ad_migrationscript_id numeric(10,0) NOT NULL, - ad_org_id numeric(10,0) NOT NULL, - created timestamp NOT NULL, - createdby numeric(10,0) NOT NULL, - description varchar(2000) NULL, - developername varchar(60) NULL, - isactive char(1) NOT NULL, - name varchar(60) NOT NULL, - projectname varchar(60) NOT NULL, - reference varchar(2000) NULL, - releaseno varchar(4) NOT NULL, - scriptroll char(1) NULL, - status char(2) NOT NULL, - url varchar(2000) NULL, - updated timestamp NOT NULL, - updatedby numeric(10,0) NOT NULL, - isapply char(1) NOT NULL, - PRIMARY KEY(ad_migrationscript_id) -); -ALTER TABLE ad_migrationscript - ADD CONSTRAINT ad_migrationscript_isapply_check - CHECK (isapply = ANY (ARRAY['Y'::bpchar, 'N'::bpchar])); -ALTER TABLE ad_migrationscript - ADD CONSTRAINT ad_migrationscript_isactive_check - CHECK (isactive = ANY (ARRAY['Y'::bpchar, 'N'::bpchar])); - --- 15/02/2008 14h57min19s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Element (AD_Org_ID,AD_Element_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,Name,PrintName,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53350,'AD_MigrationScript_ID',TO_TIMESTAMP('2008-02-15 14:57:10','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Migration Script','Table to check wether the migration script has been applied',TO_TIMESTAMP('2008-02-15 14:57:10','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 14h57min19s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53350 AND EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Element_ID!=t.AD_Element_ID) -; - --- 15/02/2008 14h58min2s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Element (AD_Org_ID,AD_Element_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,Name,PrintName,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53351,'DeveloperName',TO_TIMESTAMP('2008-02-15 14:57:57','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Developer Name','Developer Name',TO_TIMESTAMP('2008-02-15 14:57:57','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 14h58min2s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53351 AND EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Element_ID!=t.AD_Element_ID) -; - --- 15/02/2008 14h59min12s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Element (AD_Org_ID,AD_Element_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,Name,PrintName,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53352,'isApply',TO_TIMESTAMP('2008-02-15 14:59:10','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Apply Script','Apply Script',TO_TIMESTAMP('2008-02-15 14:59:10','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 14h59min12s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53352 AND EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Element_ID!=t.AD_Element_ID) -; - --- 15/02/2008 15h0min37s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Element (AD_Org_ID,AD_Element_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,Name,PrintName,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53353,'ScriptRoll',TO_TIMESTAMP('2008-02-15 15:00:34','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','Roll the Script','Roll the Script',TO_TIMESTAMP('2008-02-15 15:00:34','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h0min37s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=53353 AND EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Element_ID!=t.AD_Element_ID) -; - --- 15/02/2008 15h1min44s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Table (AD_Org_ID,AD_Client_ID,AD_Table_ID,CopyColumnsFromTable,Created,CreatedBy,Description,EntityType,ImportTable,IsActive,IsChangeLog,IsDeleteable,IsHighVolume,IsSecurityEnabled,IsView,LoadSeq,Name,ReplicationType,TableName,Updated,AccessLevel,UpdatedBy) VALUES (0,0,53064,'N',TO_TIMESTAMP('2008-02-15 15:01:41','YYYY-MM-DD HH24:MI:SS'),100,'Migration Scripts for the System','D','N','Y','N','Y','N','N','N',0,'Migration Script','L','AD_MigrationScript',TO_TIMESTAMP('2008-02-15 15:01:41','YYYY-MM-DD HH24:MI:SS'),'4',100) -; - --- 15/02/2008 15h1min44s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Table_Trl (AD_Language,AD_Table_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Table_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Table t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Table_ID=53064 AND EXISTS (SELECT * FROM AD_Table_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Table_ID!=t.AD_Table_ID) -; - --- 15/02/2008 15h1min47s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Sequence (AD_Org_ID,AD_Sequence_ID,Created,CreatedBy,CurrentNext,CurrentNextSys,Description,IncrementNo,IsActive,IsAudited,IsAutoSequence,IsTableID,Name,StartNewYear,StartNo,Updated,UpdatedBy,AD_Client_ID) VALUES (0,53081,TO_TIMESTAMP('2008-02-15 15:01:44','YYYY-MM-DD HH24:MI:SS'),100,1000000,50000,'Table AD_MigrationScript',1,'Y','N','Y','Y','AD_MigrationScript','N',1000000,TO_TIMESTAMP('2008-02-15 15:01:44','YYYY-MM-DD HH24:MI:SS'),100,0) -; - --- 15/02/2008 15h2min44s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version,AD_Client_ID,AD_Column_ID) VALUES (0,53350,13,53064,'AD_MigrationScript_ID',TO_TIMESTAMP('2008-02-15 15:02:38','YYYY-MM-DD HH24:MI:SS'),100,'D',10,'Y','N','N','N','Y','Y','N','N','N','N','Migration Script',TO_TIMESTAMP('2008-02-15 15:02:38','YYYY-MM-DD HH24:MI:SS'),100,0,0,54360) -; - --- 15/02/2008 15h2min44s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54360 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h2min46s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version,AD_Client_ID,AD_Column_ID) VALUES (0,102,19,53064,'AD_Client_ID',TO_TIMESTAMP('2008-02-15 15:02:44','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.','D',10,'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','N','N','N','N','Y','N','N','N','N','Client',TO_TIMESTAMP('2008-02-15 15:02:44','YYYY-MM-DD HH24:MI:SS'),100,0,0,54361) -; - --- 15/02/2008 15h2min46s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54361 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h2min48s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version,AD_Client_ID,AD_Column_ID) VALUES (0,113,19,53064,'AD_Org_ID',TO_TIMESTAMP('2008-02-15 15:02:46','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client','D',10,'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','N','N','N','N','Y','N','N','N','N','Organization',TO_TIMESTAMP('2008-02-15 15:02:46','YYYY-MM-DD HH24:MI:SS'),100,0,0,54362) -; - --- 15/02/2008 15h2min48s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54362 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h2min50s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version,AD_Client_ID,AD_Column_ID) VALUES (0,348,20,53064,'IsActive',TO_TIMESTAMP('2008-02-15 15:02:48','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system','D',1,'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons for de-activating and not deleting records: -(1) The system requires the record for audit purposes. -(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries.','Y','N','N','N','N','Y','N','N','N','Y','Active',TO_TIMESTAMP('2008-02-15 15:02:48','YYYY-MM-DD HH24:MI:SS'),100,0,0,54363) -; - --- 15/02/2008 15h2min50s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54363 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h2min53s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version,AD_Client_ID,AD_Column_ID) VALUES (0,245,16,53064,'Created',TO_TIMESTAMP('2008-02-15 15:02:50','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was created','D',29,'The Created field indicates the date that this record was created.','Y','N','N','N','N','Y','N','N','N','N','Created',TO_TIMESTAMP('2008-02-15 15:02:50','YYYY-MM-DD HH24:MI:SS'),100,0,0,54364) -; - --- 15/02/2008 15h2min53s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54364 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h2min54s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column (AD_Org_ID,AD_Reference_Value_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version,AD_Client_ID,AD_Column_ID) VALUES (0,110,246,18,53064,'CreatedBy',TO_TIMESTAMP('2008-02-15 15:02:53','YYYY-MM-DD HH24:MI:SS'),100,'User who created this records','D',10,'The Created By field indicates the user who created this record.','Y','N','N','N','N','Y','N','N','N','N','Created By',TO_TIMESTAMP('2008-02-15 15:02:53','YYYY-MM-DD HH24:MI:SS'),100,0,0,54365) -; - --- 15/02/2008 15h2min54s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54365 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h2min57s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version,AD_Client_ID,AD_Column_ID) VALUES (0,607,16,53064,'Updated',TO_TIMESTAMP('2008-02-15 15:02:54','YYYY-MM-DD HH24:MI:SS'),100,'Date this record was updated','D',29,'The Updated field indicates the date that this record was updated.','Y','N','N','N','N','Y','N','N','N','N','Updated',TO_TIMESTAMP('2008-02-15 15:02:54','YYYY-MM-DD HH24:MI:SS'),100,0,0,54366) -; - --- 15/02/2008 15h2min57s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54366 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h2min58s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column (AD_Org_ID,AD_Reference_Value_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version,AD_Client_ID,AD_Column_ID) VALUES (0,110,608,18,53064,'UpdatedBy',TO_TIMESTAMP('2008-02-15 15:02:57','YYYY-MM-DD HH24:MI:SS'),100,'User who updated this records','D',10,'The Updated By field indicates the user who updated this record.','Y','N','N','N','N','Y','N','N','N','N','Updated By',TO_TIMESTAMP('2008-02-15 15:02:57','YYYY-MM-DD HH24:MI:SS'),100,0,0,54367) -; - --- 15/02/2008 15h2min58s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54367 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h3min0s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version,AD_Client_ID,AD_Column_ID) VALUES (0,469,10,53064,'Name',TO_TIMESTAMP('2008-02-15 15:02:58','YYYY-MM-DD HH24:MI:SS'),100,'Alphanumeric identifier of the entity','D',60,'The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.','Y','N','N','Y','N','Y','N','N','N','Y','Name',1,TO_TIMESTAMP('2008-02-15 15:02:58','YYYY-MM-DD HH24:MI:SS'),100,0,0,54368) -; - --- 15/02/2008 15h3min0s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54368 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h3min2s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version,AD_Client_ID,AD_Column_ID) VALUES (0,275,14,53064,'Description',TO_TIMESTAMP('2008-02-15 15:03:00','YYYY-MM-DD HH24:MI:SS'),100,'Optional short description of the record','D',2000,'A description is limited to 255 characters.','Y','N','N','N','N','N','N','N','N','Y','Description',TO_TIMESTAMP('2008-02-15 15:03:00','YYYY-MM-DD HH24:MI:SS'),100,0,0,54369) -; - --- 15/02/2008 15h3min2s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54369 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h3min3s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version,AD_Client_ID,AD_Column_ID) VALUES (0,2161,10,53064,'ProjectName',TO_TIMESTAMP('2008-02-15 15:03:02','YYYY-MM-DD HH24:MI:SS'),100,'Name of the Project','D',60,'Y','N','N','N','N','Y','N','N','N','Y','Project',TO_TIMESTAMP('2008-02-15 15:03:02','YYYY-MM-DD HH24:MI:SS'),100,0,0,54370) -; - --- 15/02/2008 15h3min3s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54370 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h3min5s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version,AD_Client_ID,AD_Column_ID) VALUES (0,2122,10,53064,'ReleaseNo',TO_TIMESTAMP('2008-02-15 15:03:03','YYYY-MM-DD HH24:MI:SS'),100,'Internal Release Number','D',10,'Y','N','N','N','N','Y','N','N','N','Y','Release No',TO_TIMESTAMP('2008-02-15 15:03:03','YYYY-MM-DD HH24:MI:SS'),100,0,0,54371) -; - --- 15/02/2008 15h3min5s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54371 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h3min8s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version,AD_Client_ID,AD_Column_ID) VALUES (0,53351,10,53064,'DeveloperName',TO_TIMESTAMP('2008-02-15 15:03:05','YYYY-MM-DD HH24:MI:SS'),100,'D',60,'Y','N','N','N','N','Y','N','N','N','Y','Developer Name',TO_TIMESTAMP('2008-02-15 15:03:05','YYYY-MM-DD HH24:MI:SS'),100,0,0,54372) -; - --- 15/02/2008 15h3min8s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54372 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h3min9s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version,AD_Client_ID,AD_Column_ID) VALUES (0,539,14,53064,'Reference',TO_TIMESTAMP('2008-02-15 15:03:08','YYYY-MM-DD HH24:MI:SS'),100,'Reference for this record','D',2000,'The Reference displays the source document number.','Y','N','N','N','N','N','N','N','N','Y','Reference',TO_TIMESTAMP('2008-02-15 15:03:08','YYYY-MM-DD HH24:MI:SS'),100,0,0,54373) -; - --- 15/02/2008 15h3min9s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54373 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h3min11s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version,AD_Client_ID,AD_Column_ID) VALUES (0,983,14,53064,'URL',TO_TIMESTAMP('2008-02-15 15:03:10','YYYY-MM-DD HH24:MI:SS'),100,'Full URL address - e.g. http://www.adempiere.org','D',2000,'The URL defines an fully qualified web address like http://www.adempiere.org','Y','N','N','N','N','N','N','N','N','Y','URL',TO_TIMESTAMP('2008-02-15 15:03:10','YYYY-MM-DD HH24:MI:SS'),100,0,0,54374) -; - --- 15/02/2008 15h3min11s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54374 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h3min13s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version,AD_Client_ID,AD_Column_ID) VALUES (0,53352,20,53064,'isApply',TO_TIMESTAMP('2008-02-15 15:03:11','YYYY-MM-DD HH24:MI:SS'),100,'D',1,'Y','N','N','N','N','Y','N','N','N','Y','Apply Script',TO_TIMESTAMP('2008-02-15 15:03:11','YYYY-MM-DD HH24:MI:SS'),100,0,0,54375) -; - --- 15/02/2008 15h3min13s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54375 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h3min15s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version,AD_Client_ID,AD_Column_ID) VALUES (0,3020,17,53064,'Status',TO_TIMESTAMP('2008-02-15 15:03:13','YYYY-MM-DD HH24:MI:SS'),100,'Status of the currently running check','D',2,'Status of the currently running check','Y','N','N','N','N','Y','N','N','N','Y','Status',TO_TIMESTAMP('2008-02-15 15:03:13','YYYY-MM-DD HH24:MI:SS'),100,0,0,54376) -; - --- 15/02/2008 15h3min15s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54376 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h3min17s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version,AD_Client_ID,AD_Column_ID) VALUES (0,53353,20,53064,'ScriptRoll',TO_TIMESTAMP('2008-02-15 15:03:15','YYYY-MM-DD HH24:MI:SS'),100,'D',1,'Y','N','N','N','N','Y','N','N','N','Y','Roll the Script',TO_TIMESTAMP('2008-02-15 15:03:15','YYYY-MM-DD HH24:MI:SS'),100,0,0,54377) -; - --- 15/02/2008 15h3min17s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54377 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h5min11s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Column SET AD_Reference_Value_ID=50002, AD_Reference_ID=17,Updated=TO_TIMESTAMP('2008-02-15 15:05:11','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54371 -; - --- 15/02/2008 15h5min11s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET Name='Release No', Description='Internal Release Number', Help=NULL WHERE AD_Column_ID=54371 AND IsCentrallyMaintained='Y' -; - --- 15/02/2008 15h5min48s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Ref_List (AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,Description,EntityType,IsActive,Name,Updated,UpdatedBy,AD_Client_ID,Value) VALUES (0,50002,53324,TO_TIMESTAMP('2008-02-15 15:05:46','YYYY-MM-DD HH24:MI:SS'),100,'Release 3.3.0','D','Y','Release 3.3.0',TO_TIMESTAMP('2008-02-15 15:05:46','YYYY-MM-DD HH24:MI:SS'),100,0,'Release 3.3.0') -; - --- 15/02/2008 15h5min49s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53324 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 15/02/2008 15h6min12s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Ref_List (AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,Description,EntityType,IsActive,Name,Updated,UpdatedBy,AD_Client_ID,Value) VALUES (0,50002,53325,TO_TIMESTAMP('2008-02-15 15:06:06','YYYY-MM-DD HH24:MI:SS'),100,'Release 3.3.1','D','Y','Release 3.3.1',TO_TIMESTAMP('2008-02-15 15:06:06','YYYY-MM-DD HH24:MI:SS'),100,0,'Release 3.3.1') -; - --- 15/02/2008 15h6min12s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53325 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 15/02/2008 15h6min38s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Ref_List (AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,Description,EntityType,IsActive,Name,Updated,UpdatedBy,AD_Client_ID,Value) VALUES (0,50002,53326,TO_TIMESTAMP('2008-02-15 15:06:36','YYYY-MM-DD HH24:MI:SS'),100,'Release 3.3.2','D','Y','Release 3.3.2',TO_TIMESTAMP('2008-02-15 15:06:36','YYYY-MM-DD HH24:MI:SS'),100,0,'Release 3.3.2') -; - --- 15/02/2008 15h6min38s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53326 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 15/02/2008 15h7min21s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Ref_List SET Description='Release 3.1.0', Name='Release 3.1.0', Value='Release 3.1.0',Updated=TO_TIMESTAMP('2008-02-15 15:07:21','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Ref_List_ID=53324 -; - --- 15/02/2008 15h7min22s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Ref_List_Trl SET IsTranslated='N' WHERE AD_Ref_List_ID=53324 -; - --- 15/02/2008 15h7min30s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Ref_List SET Description='Release 3.2.0', Name='Release 3.2.0', Value='Release 3.2.0',Updated=TO_TIMESTAMP('2008-02-15 15:07:30','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Ref_List_ID=53325 -; - --- 15/02/2008 15h7min30s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Ref_List_Trl SET IsTranslated='N' WHERE AD_Ref_List_ID=53325 -; - --- 15/02/2008 15h7min39s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Ref_List SET Description='Release 3.3.0', Name='Release 3.3.0', Value='Release 3.3.0',Updated=TO_TIMESTAMP('2008-02-15 15:07:39','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Ref_List_ID=53326 -; - --- 15/02/2008 15h7min40s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Ref_List_Trl SET IsTranslated='N' WHERE AD_Ref_List_ID=53326 -; - --- 15/02/2008 15h8min3s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Column SET FieldLength=40,Updated=TO_TIMESTAMP('2008-02-15 15:08:03','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54371 -; - --- 15/02/2008 15h8min4s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET Name='Release No', Description='Internal Release Number', Help=NULL WHERE AD_Column_ID=54371 AND IsCentrallyMaintained='Y' -; - --- 15/02/2008 15h8min7s PYST --- [FR 1834749 ] Control applied migration scripts -insert into t_alter_column values('ad_migrationscript','ReleaseNo','CHAR(40)',null,'NULL') -; - --- 15/02/2008 15h8min41s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Reference (AD_Org_ID,AD_Reference_ID,Created,CreatedBy,Description,EntityType,IsActive,Name,Updated,UpdatedBy,ValidationType,AD_Client_ID) VALUES (0,53239,TO_TIMESTAMP('2008-02-15 15:08:39','YYYY-MM-DD HH24:MI:SS'),100,'Migration Script Status','D','Y','MigrationScriptStatus',TO_TIMESTAMP('2008-02-15 15:08:39','YYYY-MM-DD HH24:MI:SS'),100,'L',0) -; - --- 15/02/2008 15h8min41s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Reference_Trl (AD_Language,AD_Reference_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Reference_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Reference t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Reference_ID=53239 AND EXISTS (SELECT * FROM AD_Reference_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Reference_ID!=t.AD_Reference_ID) -; - --- 15/02/2008 15h10min9s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Ref_List (AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,Description,EntityType,IsActive,Name,Updated,UpdatedBy,AD_Client_ID,Value) VALUES (0,53239,53327,TO_TIMESTAMP('2008-02-15 15:10:08','YYYY-MM-DD HH24:MI:SS'),100,'In Progress','D','Y','In Progress',TO_TIMESTAMP('2008-02-15 15:10:08','YYYY-MM-DD HH24:MI:SS'),100,0,'IP') -; - --- 15/02/2008 15h10min9s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53327 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 15/02/2008 15h10min22s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Ref_List (AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,Description,EntityType,IsActive,Name,Updated,UpdatedBy,AD_Client_ID,Value) VALUES (0,53239,53328,TO_TIMESTAMP('2008-02-15 15:10:21','YYYY-MM-DD HH24:MI:SS'),100,'Completed','D','Y','Completed',TO_TIMESTAMP('2008-02-15 15:10:21','YYYY-MM-DD HH24:MI:SS'),100,0,'CO') -; - --- 15/02/2008 15h10min22s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53328 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 15/02/2008 15h10min33s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Ref_List (AD_Org_ID,AD_Reference_ID,AD_Ref_List_ID,Created,CreatedBy,Description,EntityType,IsActive,Name,Updated,UpdatedBy,AD_Client_ID,Value) VALUES (0,53239,53329,TO_TIMESTAMP('2008-02-15 15:10:32','YYYY-MM-DD HH24:MI:SS'),100,'Error','D','Y','Error',TO_TIMESTAMP('2008-02-15 15:10:32','YYYY-MM-DD HH24:MI:SS'),100,0,'ER') -; - --- 15/02/2008 15h10min33s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Ref_List_ID=53329 AND EXISTS (SELECT * FROM AD_Ref_List_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Ref_List_ID!=t.AD_Ref_List_ID) -; - --- 15/02/2008 15h10min42s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Column SET AD_Reference_Value_ID=53239,Updated=TO_TIMESTAMP('2008-02-15 15:10:42','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54376 -; - --- 15/02/2008 15h10min43s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET Name='Status', Description='Status of the currently running check', Help='Status of the currently running check' WHERE AD_Column_ID=54376 AND IsCentrallyMaintained='Y' -; - --- 15/02/2008 15h10min53s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Column SET AD_Reference_ID=40,Updated=TO_TIMESTAMP('2008-02-15 15:10:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54374 -; - --- 15/02/2008 15h10min53s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET Name='URL', Description='Full URL address - e.g. http://www.adempiere.org', Help='The URL defines an fully qualified web address like http://www.adempiere.org' WHERE AD_Column_ID=54374 AND IsCentrallyMaintained='Y' -; - --- 15/02/2008 15h11min21s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Column SET AD_Reference_ID=28,Updated=TO_TIMESTAMP('2008-02-15 15:11:21','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54377 -; - --- 15/02/2008 15h11min22s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET Name='Roll the Script', Description=NULL, Help=NULL WHERE AD_Column_ID=54377 AND IsCentrallyMaintained='Y' -; - --- 15/02/2008 15h17min10s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Process (AD_Org_ID,AD_Process_ID,Classname,Created,CreatedBy,EntityType,IsActive,IsBetaFunctionality,IsDirectPrint,IsReport,IsServerProcess,Name,ShowHelp,Statistic_Count,Statistic_Seconds,Updated,UpdatedBy,Value,AccessLevel,AD_Client_ID) VALUES (0,53069,'org.adempiere.process.ApplyMigrationScripts',TO_TIMESTAMP('2008-02-15 15:17:08','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','N','N','N','N','Apply Migration Scripts','Y',0,0,TO_TIMESTAMP('2008-02-15 15:17:08','YYYY-MM-DD HH24:MI:SS'),100,'ApplyMigrationScripts','4',0) -; - --- 15/02/2008 15h17min10s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Process_Trl (AD_Language,AD_Process_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_ID=53069 AND EXISTS (SELECT * FROM AD_Process_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Process_ID!=t.AD_Process_ID) -; - --- 15/02/2008 15h17min10s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Process_Access (AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53069,0,TO_TIMESTAMP('2008-02-15 15:17:10','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-02-15 15:17:10','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h17min10s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Process_Access (AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53069,102,TO_TIMESTAMP('2008-02-15 15:17:10','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-02-15 15:17:10','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h17min11s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Process_Access (AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53069,103,TO_TIMESTAMP('2008-02-15 15:17:11','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-02-15 15:17:11','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h17min11s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Process_Access (AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53069,50001,TO_TIMESTAMP('2008-02-15 15:17:11','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-02-15 15:17:11','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h40min25s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version,AD_Client_ID,AD_Column_ID) VALUES (0,2295,39,53064,'FileName',TO_TIMESTAMP('2008-02-15 15:40:24','YYYY-MM-DD HH24:MI:SS'),100,'Name of the local file or URL','D',500,'Name of a file in the local directory space - or URL (file://.., http://.., ftp://..)','Y','N','N','N','N','Y','N','N','N','N','Y','File Name',0,TO_TIMESTAMP('2008-02-15 15:40:24','YYYY-MM-DD HH24:MI:SS'),100,0,0,54378) -; - --- 15/02/2008 15h40min25s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54378 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 15h40min28s PYST --- [FR 1834749 ] Control applied migration scripts -ALTER TABLE AD_MigrationScript ADD COLUMN FileName VARCHAR(500) NOT NULL -; - --- 15/02/2008 15h41min59s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Window (AD_Org_ID,AD_Window_ID,Created,CreatedBy,EntityType,IsActive,IsBetaFunctionality,IsDefault,IsSOTrx,Name,Processing,Updated,UpdatedBy,WindowType,WinHeight,AD_Client_ID,WinWidth) VALUES (0,53019,TO_TIMESTAMP('2008-02-15 15:41:58','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','N','N','N','Migration Scripts','N',TO_TIMESTAMP('2008-02-15 15:41:58','YYYY-MM-DD HH24:MI:SS'),100,'M',0,0,0) -; - --- 15/02/2008 15h41min59s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Window_Trl (AD_Language,AD_Window_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Window_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Window t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Window_ID=53019 AND EXISTS (SELECT * FROM AD_Window_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Window_ID!=t.AD_Window_ID) -; - --- 15/02/2008 15h41min59s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Window_Access (AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,AD_Client_ID,UpdatedBy) VALUES (0,0,53019,TO_TIMESTAMP('2008-02-15 15:41:59','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-02-15 15:41:59','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h41min59s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Window_Access (AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,AD_Client_ID,UpdatedBy) VALUES (0,102,53019,TO_TIMESTAMP('2008-02-15 15:41:59','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-02-15 15:41:59','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h41min59s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Window_Access (AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,AD_Client_ID,UpdatedBy) VALUES (0,103,53019,TO_TIMESTAMP('2008-02-15 15:41:59','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-02-15 15:41:59','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h42min0s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Window_Access (AD_Org_ID,AD_Role_ID,AD_Window_ID,Created,CreatedBy,IsActive,Updated,AD_Client_ID,UpdatedBy) VALUES (0,50001,53019,TO_TIMESTAMP('2008-02-15 15:41:59','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-02-15 15:41:59','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h42min9s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Window_Access SET IsActive='N',Updated=TO_TIMESTAMP('2008-02-15 15:42:09','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Role_ID=102 AND AD_Window_ID=53019 -; - --- 15/02/2008 15h42min19s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Window_Access SET IsReadWrite='N',Updated=TO_TIMESTAMP('2008-02-15 15:42:19','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Role_ID=102 AND AD_Window_ID=53019 -; - --- 15/02/2008 15h42min22s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Window_Access SET IsActive='N', IsReadWrite='N',Updated=TO_TIMESTAMP('2008-02-15 15:42:22','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Role_ID=103 AND AD_Window_ID=53019 -; - --- 15/02/2008 15h42min25s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Window_Access SET IsActive='N', IsReadWrite='N',Updated=TO_TIMESTAMP('2008-02-15 15:42:25','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Role_ID=50001 AND AD_Window_ID=53019 -; - --- 15/02/2008 15h43min38s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Tab (AD_Org_ID,Created,CreatedBy,EntityType,HasTree,ImportFields,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,Name,Processing,SeqNo,TabLevel,Updated,UpdatedBy,AD_Client_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID) VALUES (0,TO_TIMESTAMP('2008-02-15 15:43:36','YYYY-MM-DD HH24:MI:SS'),100,'D','N','N','Y','N','N','Y','N','N','N','N','Migration Scripts','N',10,0,TO_TIMESTAMP('2008-02-15 15:43:36','YYYY-MM-DD HH24:MI:SS'),100,0,53073,53064,53019) -; - --- 15/02/2008 15h43min38s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Tab_Trl (AD_Language,AD_Tab_ID, Description,Help,Name,CommitWarning, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Tab_ID, t.Description,t.Help,t.Name,t.CommitWarning, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Tab t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53073 AND EXISTS (SELECT * FROM AD_Tab_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Tab_ID!=t.AD_Tab_ID) -; - --- 15/02/2008 15h45min27s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,AD_Client_ID,UpdatedBy) VALUES (54363,0,54404,53073,TO_TIMESTAMP('2008-02-15 15:45:25','YYYY-MM-DD HH24:MI:SS'),100,'The record is active in the system',1,'D','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. -There are two reasons for de-activating and not deleting records: -(1) The system requires the record for audit purposes. -(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries.','Y','Y','Y','N','N','N','N','N','Active',TO_TIMESTAMP('2008-02-15 15:45:25','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min27s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54404 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h45min28s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,AD_Client_ID,UpdatedBy) VALUES (54375,0,54405,53073,TO_TIMESTAMP('2008-02-15 15:45:27','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','N','Apply Script',TO_TIMESTAMP('2008-02-15 15:45:27','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min28s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54405 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h45min30s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,AD_Client_ID,UpdatedBy) VALUES (54361,0,54406,53073,TO_TIMESTAMP('2008-02-15 15:45:29','YYYY-MM-DD HH24:MI:SS'),100,'Client/Tenant for this installation.',10,'D','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','N','Client',TO_TIMESTAMP('2008-02-15 15:45:29','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min30s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54406 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h45min31s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,AD_Client_ID,UpdatedBy) VALUES (54369,0,54407,53073,TO_TIMESTAMP('2008-02-15 15:45:30','YYYY-MM-DD HH24:MI:SS'),100,'Optional short description of the record',2000,'D','A description is limited to 255 characters.','Y','Y','Y','N','N','N','N','N','Description',TO_TIMESTAMP('2008-02-15 15:45:30','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min31s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54407 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h45min32s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,AD_Client_ID,UpdatedBy) VALUES (54372,0,54408,53073,TO_TIMESTAMP('2008-02-15 15:45:31','YYYY-MM-DD HH24:MI:SS'),100,60,'D','Y','Y','Y','N','N','N','N','N','Developer Name',TO_TIMESTAMP('2008-02-15 15:45:31','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min32s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54408 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h45min33s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,AD_Client_ID,UpdatedBy) VALUES (54378,0,54409,53073,TO_TIMESTAMP('2008-02-15 15:45:32','YYYY-MM-DD HH24:MI:SS'),100,'Name of the local file or URL',500,'D','Name of a file in the local directory space - or URL (file://.., http://.., ftp://..)','Y','Y','Y','N','N','N','N','N','File Name',TO_TIMESTAMP('2008-02-15 15:45:32','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min33s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54409 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h45min34s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,AD_Client_ID,UpdatedBy) VALUES (54360,0,54410,53073,TO_TIMESTAMP('2008-02-15 15:45:33','YYYY-MM-DD HH24:MI:SS'),100,10,'D','Y','Y','N','N','N','N','N','N','Migration Script',TO_TIMESTAMP('2008-02-15 15:45:33','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min34s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54410 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h45min35s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,AD_Client_ID,UpdatedBy) VALUES (54368,0,54411,53073,TO_TIMESTAMP('2008-02-15 15:45:34','YYYY-MM-DD HH24:MI:SS'),100,'Alphanumeric identifier of the entity',60,'D','The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.','Y','Y','Y','N','N','N','N','N','Name',TO_TIMESTAMP('2008-02-15 15:45:34','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min35s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54411 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h45min37s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,AD_Client_ID,UpdatedBy) VALUES (54362,0,54412,53073,TO_TIMESTAMP('2008-02-15 15:45:35','YYYY-MM-DD HH24:MI:SS'),100,'Organizational entity within client',10,'D','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','N','N','Organization',TO_TIMESTAMP('2008-02-15 15:45:35','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min37s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54412 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h45min38s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,AD_Client_ID,UpdatedBy) VALUES (54370,0,54413,53073,TO_TIMESTAMP('2008-02-15 15:45:37','YYYY-MM-DD HH24:MI:SS'),100,'Name of the Project',60,'D','Y','Y','Y','N','N','N','N','N','Project',TO_TIMESTAMP('2008-02-15 15:45:37','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min38s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54413 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h45min39s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,AD_Client_ID,UpdatedBy) VALUES (54373,0,54414,53073,TO_TIMESTAMP('2008-02-15 15:45:38','YYYY-MM-DD HH24:MI:SS'),100,'Reference for this record',2000,'D','The Reference displays the source document number.','Y','Y','Y','N','N','N','N','N','Reference',TO_TIMESTAMP('2008-02-15 15:45:38','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min39s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54414 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h45min40s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,AD_Client_ID,UpdatedBy) VALUES (54371,0,54415,53073,TO_TIMESTAMP('2008-02-15 15:45:39','YYYY-MM-DD HH24:MI:SS'),100,'Internal Release Number',40,'D','Y','Y','Y','N','N','N','N','N','Release No',TO_TIMESTAMP('2008-02-15 15:45:39','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min40s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54415 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h45min41s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,AD_Client_ID,UpdatedBy) VALUES (54377,0,54416,53073,TO_TIMESTAMP('2008-02-15 15:45:40','YYYY-MM-DD HH24:MI:SS'),100,1,'D','Y','Y','Y','N','N','N','N','N','Roll the Script',TO_TIMESTAMP('2008-02-15 15:45:40','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min41s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54416 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h45min42s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,AD_Client_ID,UpdatedBy) VALUES (54376,0,54417,53073,TO_TIMESTAMP('2008-02-15 15:45:41','YYYY-MM-DD HH24:MI:SS'),100,'Status of the currently running check',2,'D','Status of the currently running check','Y','Y','Y','N','N','N','N','N','Status',TO_TIMESTAMP('2008-02-15 15:45:41','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min42s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54417 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h45min44s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field (AD_Column_ID,AD_Org_ID,AD_Field_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,AD_Client_ID,UpdatedBy) VALUES (54374,0,54418,53073,TO_TIMESTAMP('2008-02-15 15:45:42','YYYY-MM-DD HH24:MI:SS'),100,'Full URL address - e.g. http://www.adempiere.org',2000,'D','The URL defines an fully qualified web address like http://www.adempiere.org','Y','Y','Y','N','N','N','N','N','URL',TO_TIMESTAMP('2008-02-15 15:45:42','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h45min44s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54418 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 15/02/2008 15h47min20s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET SeqNo=10,IsDisplayed='Y' WHERE AD_Field_ID=54406 -; - --- 15/02/2008 15h47min20s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET SeqNo=20,IsDisplayed='Y' WHERE AD_Field_ID=54412 -; - --- 15/02/2008 15h47min20s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET SeqNo=30,IsDisplayed='Y' WHERE AD_Field_ID=54404 -; - --- 15/02/2008 15h47min20s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET SeqNo=40,IsDisplayed='Y' WHERE AD_Field_ID=54411 -; - --- 15/02/2008 15h47min20s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET SeqNo=50,IsDisplayed='Y' WHERE AD_Field_ID=54409 -; - --- 15/02/2008 15h47min20s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET SeqNo=60,IsDisplayed='Y' WHERE AD_Field_ID=54408 -; - --- 15/02/2008 15h47min20s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET SeqNo=70,IsDisplayed='Y' WHERE AD_Field_ID=54405 -; - --- 15/02/2008 15h47min20s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET SeqNo=80,IsDisplayed='Y' WHERE AD_Field_ID=54413 -; - --- 15/02/2008 15h47min20s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET SeqNo=90,IsDisplayed='Y' WHERE AD_Field_ID=54407 -; - --- 15/02/2008 15h47min20s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET SeqNo=100,IsDisplayed='Y' WHERE AD_Field_ID=54414 -; - --- 15/02/2008 15h47min20s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET SeqNo=110,IsDisplayed='Y' WHERE AD_Field_ID=54418 -; - --- 15/02/2008 15h47min20s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET SeqNo=120,IsDisplayed='Y' WHERE AD_Field_ID=54415 -; - --- 15/02/2008 15h47min20s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET SeqNo=130,IsDisplayed='Y' WHERE AD_Field_ID=54417 -; - --- 15/02/2008 15h47min20s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET SeqNo=140,IsDisplayed='Y' WHERE AD_Field_ID=54416 -; - --- 15/02/2008 15h47min37s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET DisplayLength=50,Updated=TO_TIMESTAMP('2008-02-15 15:47:37','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54409 -; - --- 15/02/2008 15h47min43s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET DisplayLength=14,Updated=TO_TIMESTAMP('2008-02-15 15:47:43','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54411 -; - --- 15/02/2008 15h47min44s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET DisplayLength=14,Updated=TO_TIMESTAMP('2008-02-15 15:47:44','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54409 -; - --- 15/02/2008 15h47min46s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET DisplayLength=14,Updated=TO_TIMESTAMP('2008-02-15 15:47:46','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54406 -; - --- 15/02/2008 15h47min50s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET DisplayLength=14,Updated=TO_TIMESTAMP('2008-02-15 15:47:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54412 -; - --- 15/02/2008 15h47min51s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET DisplayLength=14,Updated=TO_TIMESTAMP('2008-02-15 15:47:51','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54408 -; - --- 15/02/2008 15h47min55s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET DisplayLength=14,Updated=TO_TIMESTAMP('2008-02-15 15:47:55','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54413 -; - --- 15/02/2008 15h48min1s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET DisplayLength=14,Updated=TO_TIMESTAMP('2008-02-15 15:48:01','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54407 -; - --- 15/02/2008 15h48min2s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET DisplayLength=14,Updated=TO_TIMESTAMP('2008-02-15 15:48:02','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54414 -; - --- 15/02/2008 15h48min4s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET DisplayLength=14,Updated=TO_TIMESTAMP('2008-02-15 15:48:04','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54418 -; - --- 15/02/2008 15h48min8s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET DisplayLength=14,Updated=TO_TIMESTAMP('2008-02-15 15:48:08','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54415 -; - --- 15/02/2008 15h48min37s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET IsSameLine='Y',Updated=TO_TIMESTAMP('2008-02-15 15:48:37','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54412 -; - --- 15/02/2008 15h48min47s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET IsSameLine='Y',Updated=TO_TIMESTAMP('2008-02-15 15:48:47','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54408 -; - --- 15/02/2008 15h48min51s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET IsSameLine='Y',Updated=TO_TIMESTAMP('2008-02-15 15:48:51','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54418 -; - --- 15/02/2008 15h48min53s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET IsSameLine='Y',Updated=TO_TIMESTAMP('2008-02-15 15:48:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54417 -; - --- 15/02/2008 15h49min23s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Menu (AD_Org_ID,AD_Client_ID,AD_Menu_ID,AD_Window_ID,Created,CreatedBy,EntityType,IsActive,IsReadOnly,IsSOTrx,IsSummary,Name,Updated,"action",UpdatedBy) VALUES (0,0,53089,53019,TO_TIMESTAMP('2008-02-15 15:49:21','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','N','N','N','Migration Scripts',TO_TIMESTAMP('2008-02-15 15:49:21','YYYY-MM-DD HH24:MI:SS'),'W',100) -; - --- 15/02/2008 15h49min23s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Menu_Trl (AD_Language,AD_Menu_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Menu_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Menu t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Menu_ID=53089 AND EXISTS (SELECT * FROM AD_Menu_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Menu_ID!=t.AD_Menu_ID) -; - --- 15/02/2008 15h49min23s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_TreeNodeMM (AD_Client_ID,AD_Org_ID, IsActive,Created,CreatedBy,Updated,UpdatedBy, AD_Tree_ID, Node_ID, Parent_ID, SeqNo) SELECT t.AD_Client_ID,0, 'Y', CURRENT_TIMESTAMP, 0, CURRENT_TIMESTAMP, 0,t.AD_Tree_ID, 53089, 0, 999 FROM AD_Tree t WHERE t.AD_Client_ID=0 AND t.IsActive='Y' AND t.IsAllNodes='Y' AND t.TreeType='MM' AND NOT EXISTS (SELECT * FROM AD_TreeNodeMM e WHERE e.AD_Tree_ID=t.AD_Tree_ID AND Node_ID=53089) -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=0, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=218 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=1, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=153 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=2, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=263 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=3, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=166 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=4, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=203 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=5, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=236 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=6, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=183 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=7, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=160 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=8, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=278 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=9, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=345 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=10, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=1000000 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=0, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=586 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=1, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=138 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=2, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=139 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=3, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=249 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=4, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=141 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=5, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=589 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=6, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=216 -; - --- 15/02/2008 15h49min33s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=7, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=140 -; - --- 15/02/2008 15h49min34s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=8, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=142 -; - --- 15/02/2008 15h49min34s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=9, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53012 -; - --- 15/02/2008 15h49min34s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=10, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=143 -; - --- 15/02/2008 15h49min34s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=11, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=201 -; - --- 15/02/2008 15h49min34s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=12, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=176 -; - --- 15/02/2008 15h49min34s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=13, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53086 -; - --- 15/02/2008 15h49min34s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=14, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=239 -; - --- 15/02/2008 15h49min34s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=15, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=517 -; - --- 15/02/2008 15h49min34s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=16, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=499 -; - --- 15/02/2008 15h49min34s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=17, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53089 -; - --- 15/02/2008 15h49min34s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=18, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=50001 -; - --- 15/02/2008 15h50min37s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Process (AD_Org_ID,AD_Process_ID,Classname,Created,CreatedBy,EntityType,IsActive,IsBetaFunctionality,IsDirectPrint,IsReport,IsServerProcess,Name,ShowHelp,Statistic_Count,Statistic_Seconds,Updated,UpdatedBy,Value,AccessLevel,AD_Client_ID) VALUES (0,53070,'org.adempiere.process.PrepareMigrationScripts',TO_TIMESTAMP('2008-02-15 15:50:36','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','N','N','N','N','Prepare Migration Scripts','Y',0,0,TO_TIMESTAMP('2008-02-15 15:50:36','YYYY-MM-DD HH24:MI:SS'),100,'PrepareMigrationScripts','4',0) -; - --- 15/02/2008 15h50min37s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Process_Trl (AD_Language,AD_Process_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_ID=53070 AND EXISTS (SELECT * FROM AD_Process_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Process_ID!=t.AD_Process_ID) -; - --- 15/02/2008 15h50min37s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Process_Access (AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53070,0,TO_TIMESTAMP('2008-02-15 15:50:37','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-02-15 15:50:37','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h50min37s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Process_Access (AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53070,102,TO_TIMESTAMP('2008-02-15 15:50:37','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-02-15 15:50:37','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h50min37s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Process_Access (AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53070,103,TO_TIMESTAMP('2008-02-15 15:50:37','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-02-15 15:50:37','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h50min37s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Process_Access (AD_Org_ID,AD_Process_ID,AD_Role_ID,Created,CreatedBy,IsActive,Updated,AD_Client_ID,UpdatedBy) VALUES (0,53070,50001,TO_TIMESTAMP('2008-02-15 15:50:37','YYYY-MM-DD HH24:MI:SS'),100,'Y',TO_TIMESTAMP('2008-02-15 15:50:37','YYYY-MM-DD HH24:MI:SS'),0,100) -; - --- 15/02/2008 15h52min26s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Process_Para (AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsCentrallyMaintained,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy,AD_Client_ID,AD_Element_ID) VALUES (0,53070,53131,38,'ScriptsPath',TO_TIMESTAMP('2008-02-15 15:52:24','YYYY-MM-DD HH24:MI:SS'),100,'D',500,'Y','Y','Y','N','Scripts Path',10,TO_TIMESTAMP('2008-02-15 15:52:24','YYYY-MM-DD HH24:MI:SS'),100,0,50022) -; - --- 15/02/2008 15h52min26s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=53131 AND EXISTS (SELECT * FROM AD_Process_Para_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Process_Para_ID!=t.AD_Process_Para_ID) -; - --- 15/02/2008 15h52min37s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Process_Access SET IsActive='N', IsReadWrite='N',Updated=TO_TIMESTAMP('2008-02-15 15:52:37','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_ID=53070 AND AD_Role_ID=102 -; - --- 15/02/2008 15h52min39s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Process_Access SET IsActive='N', IsReadWrite='N',Updated=TO_TIMESTAMP('2008-02-15 15:52:39','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_ID=53070 AND AD_Role_ID=103 -; - --- 15/02/2008 15h52min42s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Process_Access SET IsActive='N', IsReadWrite='N',Updated=TO_TIMESTAMP('2008-02-15 15:52:42','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_ID=53070 AND AD_Role_ID=50001 -; - --- 15/02/2008 15h53min13s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Menu (AD_Org_ID,AD_Client_ID,AD_Menu_ID,AD_Process_ID,Created,CreatedBy,EntityType,IsActive,IsReadOnly,IsSOTrx,IsSummary,Name,Updated,"action",UpdatedBy) VALUES (0,0,53090,53070,TO_TIMESTAMP('2008-02-15 15:53:12','YYYY-MM-DD HH24:MI:SS'),100,'D','Y','N','N','N','Prepare Migration Scripts',TO_TIMESTAMP('2008-02-15 15:53:12','YYYY-MM-DD HH24:MI:SS'),'P',100) -; - --- 15/02/2008 15h53min13s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Menu_Trl (AD_Language,AD_Menu_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Menu_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Menu t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Menu_ID=53090 AND EXISTS (SELECT * FROM AD_Menu_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Menu_ID!=t.AD_Menu_ID) -; - --- 15/02/2008 15h53min13s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_TreeNodeMM (AD_Client_ID,AD_Org_ID, IsActive,Created,CreatedBy,Updated,UpdatedBy, AD_Tree_ID, Node_ID, Parent_ID, SeqNo) SELECT t.AD_Client_ID,0, 'Y', CURRENT_TIMESTAMP, 0, CURRENT_TIMESTAMP, 0,t.AD_Tree_ID, 53090, 0, 999 FROM AD_Tree t WHERE t.AD_Client_ID=0 AND t.IsActive='Y' AND t.IsAllNodes='Y' AND t.TreeType='MM' AND NOT EXISTS (SELECT * FROM AD_TreeNodeMM e WHERE e.AD_Tree_ID=t.AD_Tree_ID AND Node_ID=53090) -; - --- 15/02/2008 15h53min15s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=0, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=218 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=1, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=153 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=2, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=263 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=3, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=166 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=4, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=203 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=5, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=236 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=6, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=183 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=7, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=160 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=8, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=278 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=9, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=345 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=0, SeqNo=10, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=1000000 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=0, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=586 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=1, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=138 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=2, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=139 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=3, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=249 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=4, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=141 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=5, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=589 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=6, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=216 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=7, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=140 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=8, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=142 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=9, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53012 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=10, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=143 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=11, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=201 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=12, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=176 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=13, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53086 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=14, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=239 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=15, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=517 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=16, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=499 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=17, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53089 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=18, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53090 -; - --- 15/02/2008 15h53min16s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_TreeNodeMM SET Parent_ID=153, SeqNo=19, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=50001 -; - - --- 15/02/2008 17h46min17s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Column SET IsMandatory='N',Updated=TO_TIMESTAMP('2008-02-15 17:46:17','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54372 -; - --- 15/02/2008 17h46min17s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET Name='Developer Name', Description=NULL, Help=NULL WHERE AD_Column_ID=54372 AND IsCentrallyMaintained='Y' -; - --- 15/02/2008 17h46min21s PYST --- [FR 1834749 ] Control applied migration scripts -insert into t_alter_column values('ad_migrationscript','DeveloperName','VARCHAR(60)',null,'NULL') -; - --- 15/02/2008 17h46min21s PYST --- [FR 1834749 ] Control applied migration scripts -insert into t_alter_column values('ad_migrationscript','DeveloperName',null,'NULL',null) -; - --- 15/02/2008 17h46min36s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Column SET IsMandatory='N',Updated=TO_TIMESTAMP('2008-02-15 17:46:36','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54375 -; - --- 15/02/2008 17h46min37s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET Name='Apply Script', Description=NULL, Help=NULL WHERE AD_Column_ID=54375 AND IsCentrallyMaintained='Y' -; - --- 15/02/2008 17h46min38s PYST --- [FR 1834749 ] Control applied migration scripts -insert into t_alter_column values('ad_migrationscript','isApply','CHAR(1)',null,'NULL') -; - --- 15/02/2008 17h46min38s PYST --- [FR 1834749 ] Control applied migration scripts -insert into t_alter_column values('ad_migrationscript','isApply',null,'NULL',null) -; - --- 15/02/2008 17h51min7s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Column SET IsMandatory='N',Updated=TO_TIMESTAMP('2008-02-15 17:51:07','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54371 -; - --- 15/02/2008 17h51min7s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET Name='Release No', Description='Internal Release Number', Help=NULL WHERE AD_Column_ID=54371 AND IsCentrallyMaintained='Y' -; - --- 15/02/2008 17h52min47s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Column SET AD_Reference_ID=36, FieldLength=0, IsUpdateable='N',Updated=TO_TIMESTAMP('2008-02-15 17:52:47','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54360 -; - --- 15/02/2008 17h52min47s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET Name='Migration Script', Description=NULL, Help=NULL WHERE AD_Column_ID=54360 AND IsCentrallyMaintained='Y' -; - --- 15/02/2008 17h52min57s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Column SET AD_Reference_ID=13, FieldLength=10, IsUpdateable='N',Updated=TO_TIMESTAMP('2008-02-15 17:52:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54360 -; - --- 15/02/2008 17h52min57s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET Name='Migration Script', Description=NULL, Help=NULL WHERE AD_Column_ID=54360 AND IsCentrallyMaintained='Y' -; - --- 15/02/2008 17h56min31s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column (AD_Org_ID,AD_Element_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAlwaysUpdateable,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,SeqNo,Updated,UpdatedBy,Version,AD_Client_ID,AD_Column_ID) VALUES (0,1718,23,53064,'Script',TO_TIMESTAMP('2008-02-15 17:56:26','YYYY-MM-DD HH24:MI:SS'),100,'Dynamic Java Language Script to calculate result','D',0,'Use Java language constructs to define the result of the calculation','Y','N','N','N','N','N','N','N','N','N','N','Script',0,TO_TIMESTAMP('2008-02-15 17:56:26','YYYY-MM-DD HH24:MI:SS'),100,0,0,54379) -; - --- 15/02/2008 17h56min31s PYST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54379 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- 15/02/2008 17h56min37s PYST --- [FR 1834749 ] Control applied migration scripts -ALTER TABLE AD_MigrationScript ADD COLUMN Script BYTEA -; - --- 15/02/2008 17h56min45s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Column SET FieldLength=0,Updated=TO_TIMESTAMP('2008-02-15 17:56:45','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54379 -; - --- 15/02/2008 17h56min45s PYST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET Name='Script', Description='Dynamic Java Language Script to calculate result', Help='Use Java language constructs to define the result of the calculation' WHERE AD_Column_ID=54379 AND IsCentrallyMaintained='Y' -; - - --- 18/02/2008 11h12min22s BRST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Column SET IsMandatory='Y', FieldLength=20,Updated=TO_TIMESTAMP('2008-02-18 11:12:22','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54371 -; - --- 18/02/2008 11h12min22s BRST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET Name='Release No', Description='Internal Release Number', Help=NULL WHERE AD_Column_ID=54371 AND IsCentrallyMaintained='Y' -; - --- 18/02/2008 11h12min24s BRST --- [FR 1834749 ] Control applied migration scripts -insert into t_alter_column values('ad_migrationscript','ReleaseNo','CHAR(20)',null,'NULL') -; - --- 18/02/2008 11h12min24s BRST --- [FR 1834749 ] Control applied migration scripts -insert into t_alter_column values('ad_migrationscript','ReleaseNo',null,'NOT NULL',null) -; - --- 18/02/2008 11h12min47s BRST --- [FR 1834749 ] Control applied migration scripts -insert into t_alter_column values('ad_migrationscript','ReleaseNo','CHAR(20)',null,'NULL') -; - --- 18/02/2008 11h12min47s BRST --- [FR 1834749 ] Control applied migration scripts -insert into t_alter_column values('ad_migrationscript','ReleaseNo',null,'NOT NULL',null) -; - --- 18/02/2008 11h13min44s BRST --- [FR 1834749 ] Control applied migration scripts -insert into t_alter_column values('ad_migrationscript','IsActive','CHAR(1)',null,'NULL') -; - --- 18/02/2008 11h14min27s BRST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Column SET IsUpdateable='N',Updated=TO_TIMESTAMP('2008-02-18 11:14:27','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54376 -; - --- 18/02/2008 11h14min27s BRST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET Name='Status', Description='Status of the currently running check', Help='Status of the currently running check' WHERE AD_Column_ID=54376 AND IsCentrallyMaintained='Y' -; - --- 18/02/2008 11h14min29s BRST --- [FR 1834749 ] Control applied migration scripts -insert into t_alter_column values('ad_migrationscript','Status','CHAR(2)',null,'NULL') -; - --- 18/02/2008 11h14min50s BRST --- [FR 1834749 ] Control applied migration scripts -insert into t_alter_column values('ad_migrationscript','isApply','CHAR(1)',null,'NULL') -; - --- 18/02/2008 11h16min1s BRST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field (IsEncrypted,AD_Org_ID,UpdatedBy,IsDisplayed,IsCentrallyMaintained,IsActive,Created,AD_Client_ID,AD_Field_ID,Description,DisplayLength,AD_Column_ID,IsFieldOnly,CreatedBy,Help,Updated,Name,AD_Tab_ID,IsSameLine,IsHeading,IsReadOnly,EntityType) VALUES ('N',0,100,'Y','Y','Y',TO_TIMESTAMP('2008-02-18 11:15:59','YYYY-MM-DD HH24:MI:SS'),0,54419,'Dynamic Java Language Script to calculate result',0,54379,'N',100,'Use Java language constructs to define the result of the calculation',TO_TIMESTAMP('2008-02-18 11:15:59','YYYY-MM-DD HH24:MI:SS'),'Script',53073,'N','N','N','D') -; - --- 18/02/2008 11h16min2s BRST --- [FR 1834749 ] Control applied migration scripts -INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=54419 AND EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Field_ID!=t.AD_Field_ID) -; - --- 18/02/2008 11h16min32s BRST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET DisplayLength=35,Updated=TO_TIMESTAMP('2008-02-18 11:16:32','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54419 -; - --- 18/02/2008 11h17min4s BRST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET DisplayLength=30,Updated=TO_TIMESTAMP('2008-02-18 11:17:04','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54419 -; - --- 18/02/2008 11h18min50s BRST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Column SET AD_Reference_ID=28,Updated=TO_TIMESTAMP('2008-02-18 11:18:50','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54375 -; - --- 18/02/2008 11h18min50s BRST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET Name='Apply Script', Description=NULL, Help=NULL WHERE AD_Column_ID=54375 AND IsCentrallyMaintained='Y' -; - --- 18/02/2008 11h18min52s BRST --- [FR 1834749 ] Control applied migration scripts -insert into t_alter_column values('ad_migrationscript','isApply','CHAR(1)',null,'NULL') -; - --- 18/02/2008 11h19min1s BRST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Column SET AD_Reference_ID=20,Updated=TO_TIMESTAMP('2008-02-18 11:19:01','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54375 -; - --- 18/02/2008 11h19min1s BRST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET Name='Apply Script', Description=NULL, Help=NULL WHERE AD_Column_ID=54375 AND IsCentrallyMaintained='Y' -; - --- 18/02/2008 11h19min3s BRST --- [FR 1834749 ] Control applied migration scripts -insert into t_alter_column values('ad_migrationscript','isApply','CHAR(1)',null,'NULL') -; - --- Feb 18, 2008 11:32:12 AM BRST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Column SET AD_Reference_Value_ID=NULL, FieldLength=4, AD_Reference_ID=14,Updated=TO_TIMESTAMP('2008-02-18 11:32:12','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54371 -; - --- Feb 18, 2008 11:32:12 AM BRST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET Name='Release No', Description='Internal Release Number', Help=NULL WHERE AD_Column_ID=54371 AND IsCentrallyMaintained='Y' -; - --- Feb 18, 2008 11:32:29 AM BRST --- [FR 1834749 ] Control applied migration scripts -insert into t_alter_column values('ad_migrationscript','ReleaseNo','VARCHAR(4)',null,'NULL') -; - --- Feb 18, 2008 11:32:48 AM BRST --- [FR 1834749 ] Control applied migration scripts -insert into t_alter_column values('ad_migrationscript','ReleaseNo','VARCHAR(4)',null,'NULL') -; - --- Feb 18, 2008 11:34:43 AM BRST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Column SET IsMandatory='Y',Updated=TO_TIMESTAMP('2008-02-18 11:34:43','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54375 -; - --- Feb 18, 2008 11:34:43 AM BRST --- [FR 1834749 ] Control applied migration scripts -UPDATE AD_Field SET Name='Apply Script', Description=NULL, Help=NULL WHERE AD_Column_ID=54375 AND IsCentrallyMaintained='Y' -; - --- Feb 18, 2008 11:34:45 AM BRST --- [FR 1834749 ] Control applied migration scripts -insert into t_alter_column values('ad_migrationscript','isApply','CHAR(1)',null,'NULL') -; - --- Feb 18, 2008 11:34:46 AM BRST --- [FR 1834749 ] Control applied migration scripts -insert into t_alter_column values('ad_migrationscript','isApply',null,'NOT NULL',null) -; - --- Feb 18, 2008 11:34:58 AM BRST --- [FR 1834749 ] Control applied migration scripts -insert into t_alter_column values('ad_migrationscript','isApply','CHAR(1)',null,'NULL') -; - --- Feb 18, 2008 11:34:58 AM BRST --- [FR 1834749 ] Control applied migration scripts -insert into t_alter_column values('ad_migrationscript','isApply',null,'NOT NULL',null) -; - - - - - - --- Feb 18, 2008 3:04:58 PM BRST --- Default comment for updating dictionary -UPDATE AD_Column SET IsMandatory='N',Updated=TO_TIMESTAMP('2008-02-18 15:04:58','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54377 -; - --- Feb 18, 2008 3:04:58 PM BRST --- Default comment for updating dictionary -UPDATE AD_Field SET Name='Roll the Script', Description=NULL, Help=NULL WHERE AD_Column_ID=54377 AND IsCentrallyMaintained='Y' -; - --- Feb 18, 2008 3:05:00 PM BRST --- Default comment for updating dictionary -insert into t_alter_column values('ad_migrationscript','ScriptRoll','CHAR(1)',null,'NULL') -; - - - - - - --- Feb 18, 2008 3:07:50 PM BRST --- Default comment for updating dictionary -UPDATE AD_Column SET AD_Process_ID=53069,Updated=TO_TIMESTAMP('2008-02-18 15:07:50','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54377 -; - --- Feb 18, 2008 3:07:50 PM BRST --- Default comment for updating dictionary -UPDATE AD_Field SET Name='Roll the Script', Description=NULL, Help=NULL WHERE AD_Column_ID=54377 AND IsCentrallyMaintained='Y' -; - --- Feb 18, 2008 3:07:52 PM BRST --- Default comment for updating dictionary -insert into t_alter_column values('ad_migrationscript','ScriptRoll','CHAR(1)',null,'NULL') -; -SELECT '118_FR1909210.sql' AS Filename; --- Mar 6, 2008 6:40:40 PM CST --- Change P_String -UPDATE AD_Column SET FieldLength=255,Updated=TO_TIMESTAMP('2008-03-06 18:40:40','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Column_ID=2791 -; - --- Mar 6, 2008 6:40:40 PM CST --- Change P_String -UPDATE AD_Field SET Name='Process String', Description='Process Parameter', Help=NULL WHERE AD_Column_ID=2791 AND IsCentrallyMaintained='Y' -; - --- Mar 6, 2008 6:40:45 PM CST --- Change P_String -insert into t_alter_column values('ad_pinstance_para','P_String','VARCHAR(255)',null,'NULL') -; - --- Mar 6, 2008 6:41:54 PM CST --- Change P_String -UPDATE AD_Column SET FieldLength=255,Updated=TO_TIMESTAMP('2008-03-06 18:41:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Column_ID=2792 -; - --- Mar 6, 2008 6:41:54 PM CST --- Change P_String -UPDATE AD_Field SET Name='Process String To', Description='Process Parameter', Help=NULL WHERE AD_Column_ID=2792 AND IsCentrallyMaintained='Y' -; - --- Mar 6, 2008 6:41:58 PM CST --- Change P_String -insert into t_alter_column values('ad_pinstance_para','P_String_To','VARCHAR(255)',null,'NULL') -; - - -SELECT '119_placeholder_branch350.sql' AS Filename; - -SELECT '120_BF1909248.sql' AS Filename; --- Mar 6, 2008 9:59:53 PM COT --- [ 1909248 ] Translation columns different from original -UPDATE AD_Column SET IsMandatory='N',Updated=TO_TIMESTAMP('2008-03-06 21:59:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=14614 -; - -insert into t_alter_column values('r_mailtext_trl','MailHeader','VARCHAR(2000)',null,'NULL') -; - -insert into t_alter_column values('r_mailtext_trl','MailHeader',null,'NULL',null) -; - -UPDATE AD_Column SET FieldLength=0, IsMandatory='N',Updated=TO_TIMESTAMP('2008-03-06 22:16:21','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=15268 -; - -insert into t_alter_column values('cm_container_element_trl','ContentHTML','TEXT',null,'NULL') -; - -insert into t_alter_column values('cm_container_element_trl','ContentHTML',null,'NULL',null) -; - -UPDATE AD_Column SET FieldLength=0, IsMandatory='N',Updated=TO_TIMESTAMP('2008-03-06 22:17:43','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=15380 -; - -insert into t_alter_column values('cm_cstage_element_trl','ContentHTML','TEXT',null,'NULL') -; - -insert into t_alter_column values('cm_cstage_element_trl','ContentHTML',null,'NULL',null) -; - -UPDATE AD_Column SET FieldLength=510,Updated=TO_TIMESTAMP('2008-03-06 22:19:16','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=1410 -; - -UPDATE AD_Column SET FieldLength=510,Updated=TO_TIMESTAMP('2008-03-06 22:21:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=3330 -; - -insert into t_alter_column values('m_product_trl','Name','VARCHAR(510)',null,'NULL') -; - -UPDATE AD_Column SET FieldLength=60,Updated=TO_TIMESTAMP('2008-03-06 22:26:03','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=1410 -; - -UPDATE AD_Column SET FieldLength=60,Updated=TO_TIMESTAMP('2008-03-06 22:26:19','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=3330 -; - -UPDATE AD_Column SET IsMandatory='Y',Updated=TO_TIMESTAMP('2008-03-06 22:26:45','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=2596 -; - -insert into t_alter_column values('ad_element','AD_Org_ID','NUMERIC(10)',null,'NULL') -; - -insert into t_alter_column values('ad_element','AD_Org_ID',null,'NOT NULL',null) -; - -insert into t_alter_column values('ad_element','Created','TIMESTAMP',null,'NULL') -; - -insert into t_alter_column values('ad_element','Created','TIMESTAMP',null,'NULL') -; - -UPDATE AD_Column SET IsMandatory='Y',Updated=TO_TIMESTAMP('2008-03-06 22:28:07','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=2599 -; - -insert into t_alter_column values('ad_element','CreatedBy','NUMERIC(10)',null,'NULL') -; - -insert into t_alter_column values('ad_element','CreatedBy',null,'NOT NULL',null) -; - -insert into t_alter_column values('ad_element','Name','VARCHAR(60)',null,'NULL') -; - -insert into t_alter_column values('ad_element','Name',null,'NOT NULL',null) -; - -UPDATE AD_Column SET IsMandatory='Y',Updated=TO_TIMESTAMP('2008-03-06 22:28:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=2601 -; - -insert into t_alter_column values('ad_element','UpdatedBy','NUMERIC(10)',null,'NULL') -; - -insert into t_alter_column values('ad_element','UpdatedBy',null,'NOT NULL',null) -; - -UPDATE AD_Column SET FieldLength=60,Updated=TO_TIMESTAMP('2008-03-06 22:30:23','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=14613 -; - -UPDATE AD_Column SET FieldLength=0,Updated=TO_TIMESTAMP('2008-03-06 22:30:52','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=15380 -; - -UPDATE AD_Column SET FieldLength=0,Updated=TO_TIMESTAMP('2008-03-06 22:31:23','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=15268 -; - -UPDATE AD_Column SET FieldLength=0,Updated=TO_TIMESTAMP('2008-03-06 22:31:40','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=15268 -; - -UPDATE AD_Column SET FieldLength=0,Updated=TO_TIMESTAMP('2008-03-06 22:32:37','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=15366 -; - -UPDATE AD_Column SET FieldLength=0,Updated=TO_TIMESTAMP('2008-03-06 22:32:51','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=15257 -; - -UPDATE AD_Column SET IsMandatory='N',Updated=TO_TIMESTAMP('2008-03-06 22:34:13','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=15394 -; - -UPDATE AD_Column SET IsMandatory='Y',Updated=TO_TIMESTAMP('2008-03-06 22:34:32','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=15588 -; - -UPDATE AD_Column SET IsMandatory='Y',Updated=TO_TIMESTAMP('2008-03-06 22:34:41','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=15589 -; - -UPDATE AD_Column SET IsMandatory='Y',Updated=TO_TIMESTAMP('2008-03-06 22:35:03','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=15307 -; - -UPDATE AD_Column SET IsMandatory='Y',Updated=TO_TIMESTAMP('2008-03-06 22:35:05','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=15308 -; -SELECT '121_placeholder_branch350.sql' AS Filename; - -SELECT '122_placeholder_branch350.sql' AS Filename; - -SELECT '123_placeholder_branch350.sql' AS Filename; - -SELECT '124_placeholder_branch350.sql' AS Filename; - -SELECT '125_FR1920314.sql' AS Filename; --- Mar 19, 2008 7:17:07 PM COT --- 1920314 - Make configurable the changelog for insert -INSERT INTO AD_SysConfig (AD_Client_ID,AD_Org_ID,AD_SysConfig_ID,ConfigurationLevel,Created,CreatedBy,Description,EntityType,IsActive,Name,Updated,UpdatedBy,Value) VALUES (0,0,50015,'C',TO_TIMESTAMP('2008-03-19 19:17:05','YYYY-MM-DD HH24:MI:SS'),100,'Keep change log for inserts: Y - Yes, N - No, K - just the key _ID','D','Y','SYSTEM_INSERT_CHANGELOG',TO_TIMESTAMP('2008-03-19 19:17:05','YYYY-MM-DD HH24:MI:SS'),100,'Y') -; - - -SELECT '126_BF1912484.sql' AS Filename; --- Mar 12, 2008 11:40:54 AM CET --- [ 1912484 ] Custom replenish doesn't work -INSERT INTO AD_Column (Name,IsMandatory,IsTranslated,Description,IsIdentifier,SeqNo,Help,Version,IsActive,AD_Table_ID,AD_Column_ID,ColumnName,AD_Client_ID,AD_Org_ID,FieldLength,IsParent,Created,IsSyncDatabase,AD_Reference_ID,CreatedBy,Updated,AD_Element_ID,IsUpdateable,IsKey,IsSelectionColumn,UpdatedBy,IsAlwaysUpdateable,IsEncrypted,EntityType) VALUES ('Updated','Y','N','Date this record was updated','N',0,'The Updated field indicates the date that this record was updated.',1.000000000000,'Y',364,54677,'Updated',0,0,7,'N',TO_TIMESTAMP('2008-03-12 11:40:52','YYYY-MM-DD HH24:MI:SS'),'N',16,100,TO_TIMESTAMP('2008-03-12 11:40:52','YYYY-MM-DD HH24:MI:SS'),607,'N','N','N',100,'N','N','D') -; - --- Mar 12, 2008 11:40:54 AM CET --- [ 1912484 ] Custom replenish doesn't work -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54677 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Mar 12, 2008 11:41:39 AM CET --- [ 1912484 ] Custom replenish doesn't work -UPDATE AD_Field SET Name='Updated', Description='Date this record was updated', Help='The Updated field indicates the date that this record was updated.' WHERE AD_Column_ID=54677 AND IsCentrallyMaintained='Y' -; - --- Mar 12, 2008 11:41:44 AM CET --- [ 1912484 ] Custom replenish doesn't work -ALTER TABLE T_Replenish ADD COLUMN Updated TIMESTAMP -; - --- Mar 12, 2008 11:42:57 AM CET --- [ 1912484 ] Custom replenish doesn't work -INSERT INTO AD_Column (Name,IsMandatory,IsTranslated,Description,IsIdentifier,SeqNo,Help,AD_Reference_Value_ID,Version,IsActive,AD_Table_ID,AD_Column_ID,ColumnName,AD_Client_ID,AD_Org_ID,FieldLength,IsParent,Created,IsSyncDatabase,AD_Reference_ID,CreatedBy,Updated,AD_Element_ID,IsUpdateable,IsKey,IsSelectionColumn,UpdatedBy,IsAlwaysUpdateable,IsEncrypted,EntityType) VALUES ('Updated By','Y','N','User who updated this records','N',0,'The Updated By field indicates the user who updated this record.',110,1.000000000000,'Y',364,54678,'UpdatedBy',0,0,22,'N',TO_TIMESTAMP('2008-03-12 11:42:57','YYYY-MM-DD HH24:MI:SS'),'N',18,100,TO_TIMESTAMP('2008-03-12 11:42:57','YYYY-MM-DD HH24:MI:SS'),608,'N','N','N',100,'N','N','D') -; - --- Mar 12, 2008 11:42:57 AM CET --- [ 1912484 ] Custom replenish doesn't work -INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=54678 AND EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language!=l.AD_Language OR tt.AD_Column_ID!=t.AD_Column_ID) -; - --- Mar 12, 2008 11:43:10 AM CET --- [ 1912484 ] Custom replenish doesn't work -UPDATE AD_Field SET Name='Updated By', Description='User who updated this records', Help='The Updated By field indicates the user who updated this record.' WHERE AD_Column_ID=54678 AND IsCentrallyMaintained='Y' -; - --- Mar 12, 2008 11:43:13 AM CET --- [ 1912484 ] Custom replenish doesn't work -ALTER TABLE T_Replenish ADD COLUMN UpdatedBy NUMERIC(10) -; - - -SELECT '127_BF1913443.sql' AS Filename; --- Mar 13, 2008 11:51:15 AM CET -UPDATE AD_Val_Rule SET Code='( -EXISTS ( - /* UOM is a default UOM and no product selected */ - SELECT * - FROM C_UOM uu - WHERE C_UOM.C_UOM_ID=uu.C_UOM_ID AND IsDefault=''Y'' AND @M_Product_ID@=0 -) -OR EXISTS ( - /* UOM is the products UOM */ - SELECT * - FROM M_Product p - WHERE C_UOM.C_UOM_ID=p.C_UOM_ID AND @M_Product_ID@=p.M_Product_ID -) -OR EXISTS ( - /* For the products UOM there is a conversion that is explicitly bound to the product */ - SELECT * - FROM M_Product p INNER JOIN C_UOM_Conversion c ON (p.C_UOM_ID=c.C_UOM_ID AND p.M_PRODUCT_ID=c.M_Product_ID) - WHERE C_UOM.C_UOM_ID=c.C_UOM_TO_ID AND @M_Product_ID@=p.M_Product_ID -) -OR EXISTS ( - /* For the products UOM there is a conversion that is not bound to any product explicitly */ - SELECT * - FROM M_Product p INNER JOIN C_UOM_Conversion c ON (p.C_UOM_ID=c.C_UOM_ID AND c.M_Product_ID IS NULL) - WHERE C_UOM.C_UOM_ID=c.C_UOM_TO_ID AND @M_Product_ID@=p.M_Product_ID -))',Updated=TO_TIMESTAMP('2008-03-13 11:51:15','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Val_Rule_ID=210 -; - - -SELECT '128_placeholder_branch350.sql' AS Filename; - -SELECT '129_placeholder_branch350.sql' AS Filename; - -SELECT '130_FR1924635.sql' AS Filename; --- [ 1924635 ] Performance enhancement - Indexes on M_CostDetail - -DROP INDEX M_COSTDETAIL_PRODUCT; - -CREATE INDEX M_COSTDETAIL_PRODUCT ON M_COSTDETAIL (M_PRODUCT_ID, processed); - -CREATE INDEX M_COSTDETAIL_ASI ON M_COSTDETAIL (M_AttributeSetInstance_ID); -SELECT '131_FR1924645.sql' AS Filename; --- [ 1924645 ] Index ad_wf_activity_status too slow - -DROP INDEX ad_wf_activity_status; - -CREATE INDEX AD_WF_ACTIVITY_STATUS ON AD_WF_ACTIVITY(WFSTATE, PROCESSED); - -SELECT '132_placeholder_branch350.sql' AS Filename; - -SELECT '133_placeholder_branch350.sql' AS Filename; - -SELECT '134_placeholder_branch350.sql' AS Filename; - -SELECT '135_version340s.sql' AS Filename; -UPDATE AD_SYSTEM - SET releaseno = '340s', - VERSION = '2008-03-26' - WHERE ad_system_id = 0 AND ad_client_id = 0; - - - -SELECT '01_add_missing_translations.sql' AS Filename; -CREATE OR REPLACE FUNCTION add_missing_translations() RETURNS void as $func$ -DECLARE - ins VARCHAR (2000); - sel VARCHAR (2000); - inssel VARCHAR (4001); - table_id NUMERIC; - t RECORD; - c RECORD; -BEGIN - - FOR t IN (SELECT ad_table_id, - SUBSTR (tablename, 1, LENGTH (tablename) - 4) as tablename - FROM AD_TABLE - WHERE tablename LIKE '%_Trl' AND isactive = 'Y' - AND isview = 'N') - LOOP - ins := - 'INSERT INTO ' - || t.tablename - || '_TRL (' - || 'ad_language,ad_client_id,ad_org_id,created,createdby,updated,updatedby,isactive,istranslated,' - || t.tablename - || '_id'; - sel := - 'SELECT l.ad_language,t.ad_client_id,t.ad_org_id,t.created,t.createdby,t.updated,t.updatedby,t.isactive,''N'' as istranslated,' - || t.tablename - || '_id'; - - SELECT ad_table_id - INTO table_id - FROM AD_TABLE - WHERE tablename = t.tablename; - - FOR c IN (SELECT col.columnname - FROM AD_COLUMN col INNER JOIN AD_TABLE tab - ON (col.ad_table_id = tab.ad_table_id) - WHERE col.ad_table_id = table_id - AND col.istranslated = 'Y' - AND col.isactive = 'Y' - ORDER BY 1) - LOOP - ins := TRIM (ins) || ',' || TRIM (c.columnname); - sel := TRIM (sel) || ',t.' || TRIM (c.columnname); - END LOOP; - - ins := TRIM (ins) || ')'; - sel := - TRIM (sel) - || ' from ' - || t.tablename - || ' t, ad_language l WHERE l.issystemlanguage=''Y'' AND NOT EXISTS (SELECT 1 FROM ' - || t.tablename - || '_TRL b WHERE b.' - || t.tablename - || '_id=t.' - || t.tablename - || '_id AND b.AD_LANGUAGE=l.AD_LANGUAGE)'; - inssel := TRIM (ins) || ' ' || TRIM (sel); - - EXECUTE inssel; - END LOOP; - -END; -$func$ LANGUAGE plpgsql; - -select add_missing_translations(); - - -\quit From e78e038164b15acf68d01b81a8ed36045840cd63 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Wed, 31 Oct 2012 19:14:47 -0500 Subject: [PATCH 19/22] Prepare folder for migration scripts starting with version 1.0 i1.0a-release --- migration/{360lts-release => i1.0a-release}/README.txt | 0 migration/{360lts-release => i1.0a-release}/oracle/build.xml | 0 migration/{360lts-release => i1.0a-release}/postgresql/build.xml | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename migration/{360lts-release => i1.0a-release}/README.txt (100%) rename migration/{360lts-release => i1.0a-release}/oracle/build.xml (100%) rename migration/{360lts-release => i1.0a-release}/postgresql/build.xml (100%) diff --git a/migration/360lts-release/README.txt b/migration/i1.0a-release/README.txt similarity index 100% rename from migration/360lts-release/README.txt rename to migration/i1.0a-release/README.txt diff --git a/migration/360lts-release/oracle/build.xml b/migration/i1.0a-release/oracle/build.xml similarity index 100% rename from migration/360lts-release/oracle/build.xml rename to migration/i1.0a-release/oracle/build.xml diff --git a/migration/360lts-release/postgresql/build.xml b/migration/i1.0a-release/postgresql/build.xml similarity index 100% rename from migration/360lts-release/postgresql/build.xml rename to migration/i1.0a-release/postgresql/build.xml From d8a879304c5b073840939b23ba98212600bf7eae Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Wed, 31 Oct 2012 19:16:12 -0500 Subject: [PATCH 20/22] Rename 360lts-release to 360lts-i1.0a --- .../oracle/738_AddZoomToUsedIn.sql | 0 .../oracle/739_FixReleaseNoLength.sql | 0 .../oracle/740_FixCaptureSequenceBrazil.sql | 0 .../oracle/741_PayrollDictionaryFixes.sql | 0 .../oracle/742_FR2878276_ImportPayroll.sql | 0 .../oracle/743_FixOrderLineTaxVT.sql | 0 .../oracle/744_FixFR2897194_Adv_Zoom.sql | 0 .../oracle/745_FixWrongEntityTypes.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/746_FR3090719.sql | 0 .../oracle/747_FixAccountNames.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/748_BF3110938.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/749_BF3116131.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/750_BF2904321.sql | 0 .../oracle/751_DisallowNegativeInventory.sql | 0 .../oracle/752_FR3123769_Role_AmtApprovalAccum.sql | 0 .../oracle/753_FixTypoInDemoData.sql | 0 .../oracle/754_TranslateDashboardTitles.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/755_BF3063575.sql | 0 .../oracle/756_EnableVendorBreakForSales.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/757_FR3132033.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/758_FR3132075.sql | 0 .../oracle/759_FS01_FR3132687.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/760_FR3132797.sql | 0 .../oracle/761_FixClearMessage.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/762_Fix1913092.sql | 0 .../oracle/763_ScheduleWithRecordID.sql | 0 .../oracle/764_TranslateZkReportViewer.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/765_FixZkMessage.sql | 0 .../oracle/766_738_FR3016592_SpecifySelectionColumns.sql | 0 .../oracle/767_745_FR3016592_SpecifySelectionColumns.sql | 0 .../oracle/768_741_BF3018013_FixSystemColorWindow.sql | 0 .../oracle/769_749_BF3075201_PP_RV_MRP.sql | 0 .../oracle/770_750_BF3016214_PrintMO.sql | 0 .../oracle/771_772_BF3137399_DateTimeforParameter.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/772_BF3139066.sql | 0 .../oracle/773_756_FR3039241_RussianRegions.sql | 0 .../oracle/774_FR3039241_RussianRegionsFix.sql | 0 .../oracle/775_DisallowNegativeInventory.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/776_103_BF1713137.sql | 0 .../oracle/777_FR1782412_WrongColumnType.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/778_FR2052471.sql | 0 .../oracle/779_FR3159054_2011PeriodsGW.sql | 0 .../oracle/780_BF2866216_drop_c_allocationline_posted.sql | 0 .../oracle/781_FR2851987LogoInPaySelectionCheck.sql | 0 .../oracle/782_AddColumnsPaySelectionCheck.sql | 0 .../oracle/783_761_FixClearMessage.sql | 0 .../oracle/784_739_FR3015882_CopyProduct.sql | 0 .../oracle/785_744_FR3018857_ImporterInventoryMove.sql | 0 .../oracle/786_FR3018857_FixImporterInventoryMove.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/787_418_BF2583992.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/788_UUIDGenerator.sql | 0 .../oracle/789_GenerateUUIDColumns.sql | 0 .../oracle/790_FixWrongOfficialIDs.sql | 0 .../oracle/791_FillUUIDPrimaryTables.sql | 0 .../oracle/792_FixDictionaryError.sql | 0 .../oracle/793_FillUUIDChildrenTables.sql | 0 .../oracle/794_791_BF3214377_FixFirstOf.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/795_NewMessages.sql | 0 .../oracle/796_FixProductBOMCore.sql | 0 .../oracle/797_MessageIdempiere42.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/798_IDEMPIERE-45.sql | 0 .../oracle/799_AddColumnsPaySelectionCheck.sql | 0 .../oracle/800_FR2979756_AdaxaPOS.sql | 0 .../oracle/801_FR2979756_AdaxaPOS.sql | 0 .../oracle/802_FR2979756_AdaxaPOS.sql | 0 .../oracle/803_FK_POS_BF2975308_FR2979756.sql | 0 .../oracle/804_IDEMPIERE67_IsAllowCopy.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/805_IDEMPIERE23.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/806_IDEMPIERE65.sql | 0 .../oracle/807_EnableWorkflowProcessClient.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/808_IDEMPIERE-98.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/809_IDEMPIERE23.sql | 0 .../oracle/810_NewCentralizedID.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/811_IDEMPIERE-126.sql | 0 .../oracle/812_IDEMPIERE-127_RecentItems.sql | 0 .../oracle/813_IDEMPIERE-134_NewGWPeriods.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/814_IDEMPIERE-133.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/815_IDEMPIERE-135.sql | 0 .../oracle/816_IDEMPIERE-139_LastMigrationScriptApplied.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/817_IDEMPIERE-147.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/818_IDEMPIERE-148.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/819_IDEMPIERE-140.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/820_IDEMPIERE-153.sql | 0 .../oracle/821_IDEMPIERE-137_GLReconciliation.sql | 0 .../oracle/822_IDEMPIERE-137_Ambidexter_GL_Rec.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/823_IDEMPIERE-178.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/824_IDEMPIERE-117.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/824z_UpdateUU.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/825_IDEMPIERE-189.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/826_IDEMPIERE-118.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/827_IDEMPIERE-151.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/828_IDEMPIERE-204.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/829_IDEMPIERE-117.sql | 0 .../oracle/830_IDEMPIERE-177_Window_Customization.sql | 0 .../oracle/831_IDEMPIERE-177_Window_Customization.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/832_IDEMPIERE-215.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/833_IDEMPIERE-129.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/834_IDEMPIERE-113.sql | 0 .../oracle/835_IDEMPIERE-195_MenuAutoExpand.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/836_IDEMPIERE-156.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/837_IDEMPIERE-195.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/838_IDEMPIERE-249.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/839_IDEMPIERE-162.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/840_IDEMPIERE-274.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/841_IDEMPIERE-254.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/842_IDEMPIERE-277.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/843-IDEMPIERE-13.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/844-IDEMPIERE-281.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/845_IDEMPIERE-255.sql | 0 .../oracle/846_GenerateNewUUIDColumns.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/847_FillNewUUIDs.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/848_IDEMPIERE-146.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/849_IDEMPIERE-85.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/850_IDEMPIERE-328.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/851_IDEMPIERE-320.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/852_IDEMPIERE-338.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/853_IDEMPIERE-326.sql | 0 .../oracle/854_PasswordHash_IDEMPIERE-347.sql | 0 .../oracle/855_IDEMPIERE-344_GLJournalImprovement.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/856_IDEMPIERE_332.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/857_IDEMPIERE-221.sql | 0 .../oracle/858_IDEMPIERE-344_GLJournalImprovement.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/859_IDEMPIERE-354.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/860_IDEMPIERE-356.sql | 0 .../oracle/861_IDEMPIERE-344_GLJournalImprovement.sql | 0 .../oracle/862_1001002_MenuPortlet.sql | 0 .../oracle/862a_ManufacturingLight.sql | 0 .../oracle/863_IDEMPIERE-246_Manufacturing_Light_phantom.sql | 0 .../oracle/864_IDEMPIERE-246_Manufacturing_Light_Kanban.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/865_IDEMPIERE-221.sql | 0 .../oracle/866_IDEMPIERE-246_Manufacturing_Light_fixes.sql | 0 .../oracle/867_IDEMPIERE-357_MenuPortlet.sql | 0 .../oracle/868_FixWrongEntityTypes.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/869_UUIDGenerator.sql | 0 .../oracle/870_IDEMPIERE-357_MenuPortlet.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/871_IDEMPIERE_358.sql | 0 .../oracle/872_IDEMPIERE-364_Customizable_Grid.sql | 0 .../oracle/873_IDEMPIERE-364_AD_Field.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/874_IDEMPIERE-384.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/875_IDEMPIERE-364.sql | 0 .../oracle/876_IDEMPIERE-364_FixWrongField.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/877_IDEMPIERE_363.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/878_IDEMPIERE-393.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/879_IDEMPIERE-376.sql | 0 .../oracle/880_IDEMPIERE-377_SeqNoSelection.sql | 0 ...EMPIERE-246_Manufacturing_Light_OrderLine_Create_Prod_Ship.sql | 0 .../882_IDEMPIERE-246_Manufacturing_Light_Menu_deact_Libero.sql | 0 .../oracle/883_IDEMPIERE-246_Manufacturing_Light_fixes.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/884_IDEMPIERE-246.sql | 0 .../oracle/885_IDEMPIERE-377_AD_Field_V.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/886_IDEMPIERE-217.sql | 0 .../oracle/887_LinkEndOfProcess.sql | 0 .../oracle/888_IDEMPIERE-357_MenuPortlet.sql | 0 .../oracle/889_IDEMPIERE-370_LinkEndOfProcess.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/890_IDEMPIERE-377.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/891_IDEMPIERE-357.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/892_IDEMPIERE_368.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/893_IDEMPIERE-387.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/894_IDEMPIERE-246.sql | 0 .../oracle/895_IDEMPIERE-377_History_Trl.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/896_IDEMPIERE-29.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/897_IDEMPIERE-63.sql | 0 .../oracle/898_IDEMPIERE-373_User_Locking.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/899-IDEMPIERE-366.sql | 0 .../oracle/900_IDEMPIERE-373_User_Locking.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/901_IDEMPIERE-420.sql | 0 .../oracle/902_IDEMPIERE-373_User_Locking.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/903_IDEMPIERE-377.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/904_IDEMPIERE-221.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/905_IDEMPIERE-270.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/906_IDEMPIERE-403.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/907_IDEMPIERE-375.sql | 0 .../oracle/908_Process_Message.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/909_IDEMPIERE-375.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/910_IDEMPIERE-375.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/911_IDEMPIERE-366.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/912_IDEMPIERE_391.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/913_IDEMPIERE-374.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/914_IDEMPIERE-362.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/915_IDEMPIERE-362.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/916_IDEMPIERE-362.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/917_IDEMPIERE-366.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/918_IDEMPIERE-207.sql | 0 .../oracle/919_IDEMPIERE-373_User_Locking.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/920_IDEMPIERE_366.sql | 0 .../oracle/921_IDEMPIERE-422_NativeSequence.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/922_IDEMPIERE-362.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/923_PlaceHolder.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/924_IDEMPIERE-447.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/925_PlaceHolder.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/926_PlaceHolder.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/927_IDEMPIERE-388.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/928_IDEMPIERE-454.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/929_IDEMPIERE-458.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/930_IDEMPIERE-369.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/931_IDEMPIERE-375.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/932_IDEMPIERE-446.sql | 0 .../oracle/933_CreditCardsOnline.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/934_IDEMPIERE-389.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/935_IDEMPIERE-293.sql | 0 .../oracle/936_IDEMPIERE-389_ServerName_Field.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/937_PlaceHolder.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/938_IDEMPIERE-234.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/939_IDEMPIERE-447.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/940_IDEMPIERE-392.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/941_IDEMPIERE-158.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/942_IDEMPIERE-366.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/943_IDEMPIERE-466.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/944_IDEMPIERE-293.sql | 0 .../oracle/945_IDEMPIERE-197_FixedAssets.sql | 0 .../oracle/946_IDEMPIERE-197_FixedAssets.sql | 0 .../oracle/947_IDEMPIERE-293_UserSearchable.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/948_IDEMPIERE-234.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/949_IDEMPIERE-265.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/950_IDEMPIERE-234.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/951_PlaceHolder.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/952_IDEMPIERE_379.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/953_PlaceHolder.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/954_UUID_Sync.sql | 0 .../oracle/955_FixWrongEntityTypes.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/956_ForeignKeys.sql | 0 .../{360lts-release => 360lts-i1.0a}/oracle/957_SetSysConfig.sql | 0 migration/{360lts-release => 360lts-i1.0a}/oracle/958_Version.sql | 0 .../postgresql/738_AddZoomToUsedIn.sql | 0 .../postgresql/739_FixReleaseNoLength.sql | 0 .../postgresql/740_FixCaptureSequenceBrazil.sql | 0 .../postgresql/741_PayrollDictionaryFixes.sql | 0 .../postgresql/742_FR2878276_ImportPayroll.sql | 0 .../postgresql/743_FixOrderLineTaxVT.sql | 0 .../postgresql/744_FixFR2897194_Adv_Zoom.sql | 0 .../postgresql/745_FixWrongEntityTypes.sql | 0 .../{360lts-release => 360lts-i1.0a}/postgresql/746_FR3090719.sql | 0 .../postgresql/747_FixAccountNames.sql | 0 .../{360lts-release => 360lts-i1.0a}/postgresql/748_BF3110938.sql | 0 .../{360lts-release => 360lts-i1.0a}/postgresql/749_BF3116131.sql | 0 .../{360lts-release => 360lts-i1.0a}/postgresql/750_BF2904321.sql | 0 .../postgresql/751_DisallowNegativeInventory.sql | 0 .../postgresql/752_FR3123769_Role_AmtApprovalAccum.sql | 0 .../postgresql/753_FixTypoInDemoData.sql | 0 .../postgresql/754_TranslateDashboardTitles.sql | 0 .../{360lts-release => 360lts-i1.0a}/postgresql/755_BF3063575.sql | 0 .../postgresql/756_EnableVendorBreakForSales.sql | 0 .../{360lts-release => 360lts-i1.0a}/postgresql/757_FR3132033.sql | 0 .../{360lts-release => 360lts-i1.0a}/postgresql/758_FR3132075.sql | 0 .../postgresql/759_FS01_FR3132687.sql | 0 .../{360lts-release => 360lts-i1.0a}/postgresql/760_FR3132797.sql | 0 .../postgresql/761_FixClearMessage.sql | 0 .../postgresql/762_Fix1913092.sql | 0 .../postgresql/763_ScheduleWithRecordID.sql | 0 .../postgresql/764_TranslateZkReportViewer.sql | 0 .../postgresql/765_FixZkMessage.sql | 0 .../postgresql/766_738_FR3016592_SpecifySelectionColumns.sql | 0 .../postgresql/767_745_FR3016592_SpecifySelectionColumns.sql | 0 .../postgresql/768_741_BF3018013_FixSystemColorWindow.sql | 0 .../postgresql/769_749_BF3075201_PP_RV_MRP.sql | 0 .../postgresql/770_750_BF3016214_PrintMO.sql | 0 .../postgresql/771_772_BF3137399_DateTimeforParameter.sql | 0 .../{360lts-release => 360lts-i1.0a}/postgresql/772_BF3139066.sql | 0 .../postgresql/773_756_FR3039241_RussianRegions.sql | 0 .../postgresql/774_FR3039241_RussianRegionsFix.sql | 0 .../postgresql/775_DisallowNegativeInventory.sql | 0 .../postgresql/776_103_BF1713137.sql | 0 .../postgresql/777_FR1782412_WrongColumnType.sql | 0 .../{360lts-release => 360lts-i1.0a}/postgresql/778_FR2052471.sql | 0 .../postgresql/779_FR3159054_2011PeriodsGW.sql | 0 .../postgresql/780_BF2866216_drop_c_allocationline_posted.sql | 0 .../postgresql/781_FR2851987LogoInPaySelectionCheck.sql | 0 .../postgresql/782_AddColumnsPaySelectionCheck.sql | 0 .../postgresql/783_761_FixClearMessage.sql | 0 .../postgresql/784_739_FR3015882_CopyProduct.sql | 0 .../postgresql/785_744_FR3018857_ImporterInventoryMove.sql | 0 .../postgresql/786_FR3018857_FixImporterInventoryMove.sql | 0 .../postgresql/787_418_BF2583992.sql | 0 .../postgresql/788_UUIDGenerator.sql | 0 .../postgresql/789_GenerateUUIDColumns.sql | 0 .../postgresql/790_FixWrongOfficialIDs.sql | 0 .../postgresql/791_FillUUIDPrimaryTables.sql | 0 .../postgresql/792_FixDictionaryError.sql | 0 .../postgresql/793_FillUUIDChildrenTables.sql | 0 .../postgresql/794_791_BF3214377_FixFirstOf.sql | 0 .../postgresql/795_NewMessages.sql | 0 .../postgresql/796_FixProductBOMCore.sql | 0 .../postgresql/797_MessageIdempiere42.sql | 0 .../postgresql/798_IDEMPIERE-45.sql | 0 .../postgresql/799_AddColumnsPaySelectionCheck.sql | 0 .../postgresql/800_FR2979756_AdaxaPOS.sql | 0 .../postgresql/801_FR2979756_AdaxaPOS.sql | 0 .../postgresql/802_FR2979756_AdaxaPOS.sql | 0 .../postgresql/803_FK_POS_BF2975308_FR2979756.sql | 0 .../postgresql/804_IDEMPIERE67_IsAllowCopy.sql | 0 .../postgresql/805_IDEMPIERE23.sql | 0 .../postgresql/806_IDEMPIERE65.sql | 0 .../postgresql/807_EnableWorkflowProcessClient.sql | 0 .../postgresql/808_IDEMPIERE-98.sql | 0 .../postgresql/809_IDEMPIERE23.sql | 0 .../postgresql/810_NewCentralizedID.sql | 0 .../postgresql/811_IDEMPIERE-126.sql | 0 .../postgresql/812_IDEMPIERE-127_RecentItems.sql | 0 .../postgresql/813_IDEMPIERE-134_NewGWPeriods.sql | 0 .../postgresql/814_IDEMPIERE-133.sql | 0 .../postgresql/815_IDEMPIERE-135.sql | 0 .../postgresql/816_IDEMPIERE-139_LastMigrationScriptApplied.sql | 0 .../postgresql/817_IDEMPIERE-147.sql | 0 .../postgresql/818_IDEMPIERE-148.sql | 0 .../postgresql/819_IDEMPIERE-140.sql | 0 .../postgresql/820_IDEMPIERE-153.sql | 0 .../postgresql/821_IDEMPIERE-137_GLReconciliation.sql | 0 .../postgresql/822_IDEMPIERE-137_Ambidexter_GL_Rec.sql | 0 .../postgresql/823_IDEMPIERE-178.sql | 0 .../postgresql/824_IDEMPIERE-117.sql | 0 .../{360lts-release => 360lts-i1.0a}/postgresql/824z_UpdateUU.sql | 0 .../postgresql/825_IDEMPIERE-189.sql | 0 .../postgresql/826_IDEMPIERE-118.sql | 0 .../postgresql/827_IDEMPIERE-151.sql | 0 .../postgresql/828_IDEMPIERE-204.sql | 0 .../postgresql/829_IDEMPIERE-117.sql | 0 .../postgresql/830_IDEMPIERE-177_Window_Customization.sql | 0 .../postgresql/831_IDEMPIERE-177_Window_Customization.sql | 0 .../postgresql/832_IDEMPIERE-215.sql | 0 .../postgresql/833_IDEMPIERE-129.sql | 0 .../postgresql/834_IDEMPIERE-113.sql | 0 .../postgresql/835_IDEMPIERE-195_MenuAutoExpand.sql | 0 .../postgresql/836_IDEMPIERE-156.sql | 0 .../postgresql/837_IDEMPIERE-195.sql | 0 .../postgresql/838_IDEMPIERE-249.sql | 0 .../postgresql/839_IDEMPIERE-162.sql | 0 .../postgresql/840_IDEMPIERE-274.sql | 0 .../postgresql/841_IDEMPIERE-254.sql | 0 .../postgresql/842_IDEMPIERE-277.sql | 0 .../postgresql/843-IDEMPIERE-13.sql | 0 .../postgresql/844-IDEMPIERE-281.sql | 0 .../postgresql/845_IDEMPIERE-255.sql | 0 .../postgresql/846_GenerateNewUUIDColumns.sql | 0 .../postgresql/847_FillNewUUIDs.sql | 0 .../postgresql/848_IDEMPIERE-146.sql | 0 .../postgresql/849_IDEMPIERE-85.sql | 0 .../postgresql/850_IDEMPIERE-328.sql | 0 .../postgresql/851_IDEMPIERE-320.sql | 0 .../postgresql/852_IDEMPIERE-338.sql | 0 .../postgresql/853_IDEMPIERE-326.sql | 0 .../postgresql/854_PasswordHash_IDEMPIERE-347.sql | 0 .../postgresql/855_IDEMPIERE-344_GLJournalImprovement.sql | 0 .../postgresql/856_IDEMPIERE_332.sql | 0 .../postgresql/857_IDEMPIERE-221.sql | 0 .../postgresql/858_IDEMPIERE-344_GLJournalImprovement.sql | 0 .../postgresql/859_IDEMPIERE-354.sql | 0 .../postgresql/860_IDEMPIERE-356.sql | 0 .../postgresql/861_IDEMPIERE-344_GLJournalImprovement.sql | 0 .../postgresql/862_1001002_MenuPortlet.sql | 0 .../postgresql/862a_ManufacturingLight.sql | 0 .../postgresql/863_IDEMPIERE-246_Manufacturing_Light_phantom.sql | 0 .../postgresql/864_IDEMPIERE-246_Manufacturing_Light_Kanban.sql | 0 .../postgresql/865_IDEMPIERE-221.sql | 0 .../postgresql/866_IDEMPIERE-246_Manufacturing_Light_fixes.sql | 0 .../postgresql/867_IDEMPIERE-357_MenuPortlet.sql | 0 .../postgresql/868_FixWrongEntityTypes.sql | 0 .../postgresql/869_UUIDGenerator.sql | 0 .../postgresql/870_IDEMPIERE-357_MenuPortlet.sql | 0 .../postgresql/871_IDEMPIERE_358.sql | 0 .../postgresql/872_IDEMPIERE-364_Customizable_Grid.sql | 0 .../postgresql/873_IDEMPIERE-364_AD_Field.sql | 0 .../postgresql/874_IDEMPIERE-384.sql | 0 .../postgresql/875_IDEMPIERE-364.sql | 0 .../postgresql/876_IDEMPIERE-364_FixWrongField.sql | 0 .../postgresql/877_IDEMPIERE_363.sql | 0 .../postgresql/878_IDEMPIERE-393.sql | 0 .../postgresql/879_IDEMPIERE-376.sql | 0 .../postgresql/880_IDEMPIERE-377_SeqNoSelection.sql | 0 ...EMPIERE-246_Manufacturing_Light_OrderLine_Create_Prod_Ship.sql | 0 .../882_IDEMPIERE-246_Manufacturing_Light_Menu_deact_Libero.sql | 0 .../postgresql/883_IDEMPIERE-246_Manufacturing_Light_fixes.sql | 0 .../postgresql/884_IDEMPIERE-246.sql | 0 .../postgresql/885_IDEMPIERE-377_AD_Field_V.sql | 0 .../postgresql/886_IDEMPIERE-217.sql | 0 .../postgresql/887_LinkEndOfProcess.sql | 0 .../postgresql/888_IDEMPIERE-357_MenuPortlet.sql | 0 .../postgresql/889_IDEMPIERE-370_LinkEndOfProcess.sql | 0 .../postgresql/890_IDEMPIERE-377.sql | 0 .../postgresql/891_IDEMPIERE-357.sql | 0 .../postgresql/892_IDEMPIERE_368.sql | 0 .../postgresql/893_IDEMPIERE-387.sql | 0 .../postgresql/894_IDEMPIERE-246.sql | 0 .../postgresql/895_IDEMPIERE-377_History_Trl.sql | 0 .../postgresql/896_IDEMPIERE-29.sql | 0 .../postgresql/897_IDEMPIERE-63.sql | 0 .../postgresql/898_IDEMPIERE-373_User_Locking.sql | 0 .../postgresql/899-IDEMPIERE-366.sql | 0 .../postgresql/900_IDEMPIERE-373_User_Locking.sql | 0 .../postgresql/901_IDEMPIERE-420.sql | 0 .../postgresql/902_IDEMPIERE-373_User_Locking.sql | 0 .../postgresql/903_IDEMPIERE-377.sql | 0 .../postgresql/904_IDEMPIERE-221.sql | 0 .../postgresql/905_IDEMPIERE-270.sql | 0 .../postgresql/906_IDEMPIERE-403.sql | 0 .../postgresql/907_IDEMPIERE-375.sql | 0 .../postgresql/908_Process_Message.sql | 0 .../postgresql/909_IDEMPIERE-375.sql | 0 .../postgresql/910_IDEMPIERE-375.sql | 0 .../postgresql/911_IDEMPIERE-366.sql | 0 .../postgresql/912_IDEMPIERE_391.sql | 0 .../postgresql/913_IDEMPIERE-374.sql | 0 .../postgresql/914_IDEMPIERE-362.sql | 0 .../postgresql/915_IDEMPIERE-362.sql | 0 .../postgresql/916_IDEMPIERE-362.sql | 0 .../postgresql/917_IDEMPIERE-366.sql | 0 .../postgresql/918_IDEMPIERE-207.sql | 0 .../postgresql/919_IDEMPIERE-373_User_Locking.sql | 0 .../postgresql/920_IDEMPIERE_366.sql | 0 .../postgresql/921_IDEMPIERE-422_NativeSequence.sql | 0 .../postgresql/922_IDEMPIERE-362.sql | 0 .../postgresql/923_PlaceHolder.sql | 0 .../postgresql/924_IDEMPIERE-447.sql | 0 .../postgresql/925_PlaceHolder.sql | 0 .../postgresql/926_PlaceHolder.sql | 0 .../postgresql/927_IDEMPIERE-388.sql | 0 .../postgresql/928_IDEMPIERE-454.sql | 0 .../postgresql/929_IDEMPIERE-458.sql | 0 .../postgresql/930_IDEMPIERE-369.sql | 0 .../postgresql/931_IDEMPIERE-375.sql | 0 .../postgresql/932_IDEMPIERE-446.sql | 0 .../postgresql/933_CreditCardsOnline.sql | 0 .../postgresql/934_IDEMPIERE-389.sql | 0 .../postgresql/935_IDEMPIERE-293.sql | 0 .../postgresql/936_IDEMPIERE-389_ServerName_Field.sql | 0 .../postgresql/937_PlaceHolder.sql | 0 .../postgresql/938_IDEMPIERE-234.sql | 0 .../postgresql/939_IDEMPIERE-447.sql | 0 .../postgresql/940_IDEMPIERE-392.sql | 0 .../postgresql/941_IDEMPIERE-158.sql | 0 .../postgresql/942_IDEMPIERE_366.sql | 0 .../postgresql/943_IDEMPIERE-466.sql | 0 .../postgresql/944_IDEMPIERE-293.sql | 0 .../postgresql/945_IDEMPIERE-197_FixedAssets.sql | 0 .../postgresql/946_IDEMPIERE-197_FixedAssets.sql | 0 .../postgresql/947_IDEMPIERE-293_UserSearchable.sql | 0 .../postgresql/948_IDEMPIERE-234.sql | 0 .../postgresql/949_IDEMPIERE-265.sql | 0 .../postgresql/950_IDEMPIERE-234.sql | 0 .../postgresql/951_PlaceHolder.sql | 0 .../postgresql/952_IDEMPIERE_379.sql | 0 .../postgresql/953_PlaceHolder.sql | 0 .../{360lts-release => 360lts-i1.0a}/postgresql/954_UUID_Sync.sql | 0 .../postgresql/955_FixWrongEntityTypes.sql | 0 .../postgresql/956_ForeignKeys.sql | 0 .../postgresql/957_SetSysConfig.sql | 0 .../{360lts-release => 360lts-i1.0a}/postgresql/958_Version.sql | 0 446 files changed, 0 insertions(+), 0 deletions(-) rename migration/{360lts-release => 360lts-i1.0a}/oracle/738_AddZoomToUsedIn.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/739_FixReleaseNoLength.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/740_FixCaptureSequenceBrazil.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/741_PayrollDictionaryFixes.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/742_FR2878276_ImportPayroll.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/743_FixOrderLineTaxVT.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/744_FixFR2897194_Adv_Zoom.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/745_FixWrongEntityTypes.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/746_FR3090719.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/747_FixAccountNames.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/748_BF3110938.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/749_BF3116131.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/750_BF2904321.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/751_DisallowNegativeInventory.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/752_FR3123769_Role_AmtApprovalAccum.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/753_FixTypoInDemoData.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/754_TranslateDashboardTitles.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/755_BF3063575.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/756_EnableVendorBreakForSales.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/757_FR3132033.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/758_FR3132075.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/759_FS01_FR3132687.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/760_FR3132797.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/761_FixClearMessage.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/762_Fix1913092.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/763_ScheduleWithRecordID.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/764_TranslateZkReportViewer.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/765_FixZkMessage.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/766_738_FR3016592_SpecifySelectionColumns.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/767_745_FR3016592_SpecifySelectionColumns.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/768_741_BF3018013_FixSystemColorWindow.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/769_749_BF3075201_PP_RV_MRP.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/770_750_BF3016214_PrintMO.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/771_772_BF3137399_DateTimeforParameter.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/772_BF3139066.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/773_756_FR3039241_RussianRegions.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/774_FR3039241_RussianRegionsFix.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/775_DisallowNegativeInventory.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/776_103_BF1713137.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/777_FR1782412_WrongColumnType.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/778_FR2052471.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/779_FR3159054_2011PeriodsGW.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/780_BF2866216_drop_c_allocationline_posted.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/781_FR2851987LogoInPaySelectionCheck.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/782_AddColumnsPaySelectionCheck.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/783_761_FixClearMessage.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/784_739_FR3015882_CopyProduct.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/785_744_FR3018857_ImporterInventoryMove.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/786_FR3018857_FixImporterInventoryMove.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/787_418_BF2583992.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/788_UUIDGenerator.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/789_GenerateUUIDColumns.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/790_FixWrongOfficialIDs.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/791_FillUUIDPrimaryTables.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/792_FixDictionaryError.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/793_FillUUIDChildrenTables.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/794_791_BF3214377_FixFirstOf.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/795_NewMessages.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/796_FixProductBOMCore.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/797_MessageIdempiere42.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/798_IDEMPIERE-45.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/799_AddColumnsPaySelectionCheck.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/800_FR2979756_AdaxaPOS.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/801_FR2979756_AdaxaPOS.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/802_FR2979756_AdaxaPOS.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/803_FK_POS_BF2975308_FR2979756.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/804_IDEMPIERE67_IsAllowCopy.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/805_IDEMPIERE23.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/806_IDEMPIERE65.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/807_EnableWorkflowProcessClient.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/808_IDEMPIERE-98.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/809_IDEMPIERE23.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/810_NewCentralizedID.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/811_IDEMPIERE-126.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/812_IDEMPIERE-127_RecentItems.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/813_IDEMPIERE-134_NewGWPeriods.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/814_IDEMPIERE-133.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/815_IDEMPIERE-135.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/816_IDEMPIERE-139_LastMigrationScriptApplied.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/817_IDEMPIERE-147.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/818_IDEMPIERE-148.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/819_IDEMPIERE-140.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/820_IDEMPIERE-153.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/821_IDEMPIERE-137_GLReconciliation.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/822_IDEMPIERE-137_Ambidexter_GL_Rec.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/823_IDEMPIERE-178.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/824_IDEMPIERE-117.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/824z_UpdateUU.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/825_IDEMPIERE-189.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/826_IDEMPIERE-118.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/827_IDEMPIERE-151.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/828_IDEMPIERE-204.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/829_IDEMPIERE-117.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/830_IDEMPIERE-177_Window_Customization.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/831_IDEMPIERE-177_Window_Customization.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/832_IDEMPIERE-215.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/833_IDEMPIERE-129.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/834_IDEMPIERE-113.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/835_IDEMPIERE-195_MenuAutoExpand.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/836_IDEMPIERE-156.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/837_IDEMPIERE-195.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/838_IDEMPIERE-249.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/839_IDEMPIERE-162.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/840_IDEMPIERE-274.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/841_IDEMPIERE-254.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/842_IDEMPIERE-277.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/843-IDEMPIERE-13.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/844-IDEMPIERE-281.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/845_IDEMPIERE-255.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/846_GenerateNewUUIDColumns.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/847_FillNewUUIDs.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/848_IDEMPIERE-146.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/849_IDEMPIERE-85.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/850_IDEMPIERE-328.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/851_IDEMPIERE-320.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/852_IDEMPIERE-338.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/853_IDEMPIERE-326.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/854_PasswordHash_IDEMPIERE-347.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/855_IDEMPIERE-344_GLJournalImprovement.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/856_IDEMPIERE_332.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/857_IDEMPIERE-221.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/858_IDEMPIERE-344_GLJournalImprovement.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/859_IDEMPIERE-354.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/860_IDEMPIERE-356.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/861_IDEMPIERE-344_GLJournalImprovement.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/862_1001002_MenuPortlet.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/862a_ManufacturingLight.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/863_IDEMPIERE-246_Manufacturing_Light_phantom.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/864_IDEMPIERE-246_Manufacturing_Light_Kanban.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/865_IDEMPIERE-221.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/866_IDEMPIERE-246_Manufacturing_Light_fixes.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/867_IDEMPIERE-357_MenuPortlet.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/868_FixWrongEntityTypes.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/869_UUIDGenerator.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/870_IDEMPIERE-357_MenuPortlet.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/871_IDEMPIERE_358.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/872_IDEMPIERE-364_Customizable_Grid.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/873_IDEMPIERE-364_AD_Field.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/874_IDEMPIERE-384.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/875_IDEMPIERE-364.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/876_IDEMPIERE-364_FixWrongField.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/877_IDEMPIERE_363.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/878_IDEMPIERE-393.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/879_IDEMPIERE-376.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/880_IDEMPIERE-377_SeqNoSelection.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/881_IDEMPIERE-246_Manufacturing_Light_OrderLine_Create_Prod_Ship.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/882_IDEMPIERE-246_Manufacturing_Light_Menu_deact_Libero.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/883_IDEMPIERE-246_Manufacturing_Light_fixes.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/884_IDEMPIERE-246.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/885_IDEMPIERE-377_AD_Field_V.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/886_IDEMPIERE-217.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/887_LinkEndOfProcess.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/888_IDEMPIERE-357_MenuPortlet.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/889_IDEMPIERE-370_LinkEndOfProcess.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/890_IDEMPIERE-377.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/891_IDEMPIERE-357.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/892_IDEMPIERE_368.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/893_IDEMPIERE-387.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/894_IDEMPIERE-246.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/895_IDEMPIERE-377_History_Trl.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/896_IDEMPIERE-29.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/897_IDEMPIERE-63.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/898_IDEMPIERE-373_User_Locking.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/899-IDEMPIERE-366.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/900_IDEMPIERE-373_User_Locking.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/901_IDEMPIERE-420.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/902_IDEMPIERE-373_User_Locking.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/903_IDEMPIERE-377.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/904_IDEMPIERE-221.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/905_IDEMPIERE-270.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/906_IDEMPIERE-403.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/907_IDEMPIERE-375.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/908_Process_Message.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/909_IDEMPIERE-375.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/910_IDEMPIERE-375.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/911_IDEMPIERE-366.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/912_IDEMPIERE_391.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/913_IDEMPIERE-374.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/914_IDEMPIERE-362.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/915_IDEMPIERE-362.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/916_IDEMPIERE-362.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/917_IDEMPIERE-366.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/918_IDEMPIERE-207.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/919_IDEMPIERE-373_User_Locking.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/920_IDEMPIERE_366.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/921_IDEMPIERE-422_NativeSequence.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/922_IDEMPIERE-362.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/923_PlaceHolder.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/924_IDEMPIERE-447.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/925_PlaceHolder.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/926_PlaceHolder.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/927_IDEMPIERE-388.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/928_IDEMPIERE-454.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/929_IDEMPIERE-458.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/930_IDEMPIERE-369.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/931_IDEMPIERE-375.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/932_IDEMPIERE-446.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/933_CreditCardsOnline.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/934_IDEMPIERE-389.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/935_IDEMPIERE-293.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/936_IDEMPIERE-389_ServerName_Field.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/937_PlaceHolder.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/938_IDEMPIERE-234.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/939_IDEMPIERE-447.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/940_IDEMPIERE-392.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/941_IDEMPIERE-158.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/942_IDEMPIERE-366.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/943_IDEMPIERE-466.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/944_IDEMPIERE-293.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/945_IDEMPIERE-197_FixedAssets.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/946_IDEMPIERE-197_FixedAssets.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/947_IDEMPIERE-293_UserSearchable.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/948_IDEMPIERE-234.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/949_IDEMPIERE-265.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/950_IDEMPIERE-234.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/951_PlaceHolder.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/952_IDEMPIERE_379.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/953_PlaceHolder.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/954_UUID_Sync.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/955_FixWrongEntityTypes.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/956_ForeignKeys.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/957_SetSysConfig.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/oracle/958_Version.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/738_AddZoomToUsedIn.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/739_FixReleaseNoLength.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/740_FixCaptureSequenceBrazil.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/741_PayrollDictionaryFixes.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/742_FR2878276_ImportPayroll.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/743_FixOrderLineTaxVT.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/744_FixFR2897194_Adv_Zoom.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/745_FixWrongEntityTypes.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/746_FR3090719.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/747_FixAccountNames.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/748_BF3110938.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/749_BF3116131.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/750_BF2904321.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/751_DisallowNegativeInventory.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/752_FR3123769_Role_AmtApprovalAccum.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/753_FixTypoInDemoData.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/754_TranslateDashboardTitles.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/755_BF3063575.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/756_EnableVendorBreakForSales.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/757_FR3132033.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/758_FR3132075.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/759_FS01_FR3132687.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/760_FR3132797.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/761_FixClearMessage.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/762_Fix1913092.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/763_ScheduleWithRecordID.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/764_TranslateZkReportViewer.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/765_FixZkMessage.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/766_738_FR3016592_SpecifySelectionColumns.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/767_745_FR3016592_SpecifySelectionColumns.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/768_741_BF3018013_FixSystemColorWindow.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/769_749_BF3075201_PP_RV_MRP.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/770_750_BF3016214_PrintMO.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/771_772_BF3137399_DateTimeforParameter.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/772_BF3139066.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/773_756_FR3039241_RussianRegions.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/774_FR3039241_RussianRegionsFix.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/775_DisallowNegativeInventory.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/776_103_BF1713137.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/777_FR1782412_WrongColumnType.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/778_FR2052471.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/779_FR3159054_2011PeriodsGW.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/780_BF2866216_drop_c_allocationline_posted.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/781_FR2851987LogoInPaySelectionCheck.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/782_AddColumnsPaySelectionCheck.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/783_761_FixClearMessage.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/784_739_FR3015882_CopyProduct.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/785_744_FR3018857_ImporterInventoryMove.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/786_FR3018857_FixImporterInventoryMove.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/787_418_BF2583992.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/788_UUIDGenerator.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/789_GenerateUUIDColumns.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/790_FixWrongOfficialIDs.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/791_FillUUIDPrimaryTables.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/792_FixDictionaryError.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/793_FillUUIDChildrenTables.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/794_791_BF3214377_FixFirstOf.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/795_NewMessages.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/796_FixProductBOMCore.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/797_MessageIdempiere42.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/798_IDEMPIERE-45.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/799_AddColumnsPaySelectionCheck.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/800_FR2979756_AdaxaPOS.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/801_FR2979756_AdaxaPOS.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/802_FR2979756_AdaxaPOS.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/803_FK_POS_BF2975308_FR2979756.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/804_IDEMPIERE67_IsAllowCopy.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/805_IDEMPIERE23.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/806_IDEMPIERE65.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/807_EnableWorkflowProcessClient.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/808_IDEMPIERE-98.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/809_IDEMPIERE23.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/810_NewCentralizedID.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/811_IDEMPIERE-126.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/812_IDEMPIERE-127_RecentItems.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/813_IDEMPIERE-134_NewGWPeriods.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/814_IDEMPIERE-133.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/815_IDEMPIERE-135.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/816_IDEMPIERE-139_LastMigrationScriptApplied.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/817_IDEMPIERE-147.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/818_IDEMPIERE-148.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/819_IDEMPIERE-140.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/820_IDEMPIERE-153.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/821_IDEMPIERE-137_GLReconciliation.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/822_IDEMPIERE-137_Ambidexter_GL_Rec.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/823_IDEMPIERE-178.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/824_IDEMPIERE-117.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/824z_UpdateUU.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/825_IDEMPIERE-189.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/826_IDEMPIERE-118.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/827_IDEMPIERE-151.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/828_IDEMPIERE-204.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/829_IDEMPIERE-117.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/830_IDEMPIERE-177_Window_Customization.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/831_IDEMPIERE-177_Window_Customization.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/832_IDEMPIERE-215.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/833_IDEMPIERE-129.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/834_IDEMPIERE-113.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/835_IDEMPIERE-195_MenuAutoExpand.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/836_IDEMPIERE-156.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/837_IDEMPIERE-195.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/838_IDEMPIERE-249.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/839_IDEMPIERE-162.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/840_IDEMPIERE-274.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/841_IDEMPIERE-254.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/842_IDEMPIERE-277.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/843-IDEMPIERE-13.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/844-IDEMPIERE-281.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/845_IDEMPIERE-255.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/846_GenerateNewUUIDColumns.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/847_FillNewUUIDs.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/848_IDEMPIERE-146.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/849_IDEMPIERE-85.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/850_IDEMPIERE-328.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/851_IDEMPIERE-320.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/852_IDEMPIERE-338.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/853_IDEMPIERE-326.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/854_PasswordHash_IDEMPIERE-347.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/855_IDEMPIERE-344_GLJournalImprovement.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/856_IDEMPIERE_332.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/857_IDEMPIERE-221.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/858_IDEMPIERE-344_GLJournalImprovement.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/859_IDEMPIERE-354.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/860_IDEMPIERE-356.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/861_IDEMPIERE-344_GLJournalImprovement.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/862_1001002_MenuPortlet.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/862a_ManufacturingLight.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/863_IDEMPIERE-246_Manufacturing_Light_phantom.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/864_IDEMPIERE-246_Manufacturing_Light_Kanban.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/865_IDEMPIERE-221.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/866_IDEMPIERE-246_Manufacturing_Light_fixes.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/867_IDEMPIERE-357_MenuPortlet.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/868_FixWrongEntityTypes.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/869_UUIDGenerator.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/870_IDEMPIERE-357_MenuPortlet.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/871_IDEMPIERE_358.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/872_IDEMPIERE-364_Customizable_Grid.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/873_IDEMPIERE-364_AD_Field.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/874_IDEMPIERE-384.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/875_IDEMPIERE-364.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/876_IDEMPIERE-364_FixWrongField.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/877_IDEMPIERE_363.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/878_IDEMPIERE-393.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/879_IDEMPIERE-376.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/880_IDEMPIERE-377_SeqNoSelection.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/881_IDEMPIERE-246_Manufacturing_Light_OrderLine_Create_Prod_Ship.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/882_IDEMPIERE-246_Manufacturing_Light_Menu_deact_Libero.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/883_IDEMPIERE-246_Manufacturing_Light_fixes.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/884_IDEMPIERE-246.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/885_IDEMPIERE-377_AD_Field_V.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/886_IDEMPIERE-217.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/887_LinkEndOfProcess.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/888_IDEMPIERE-357_MenuPortlet.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/889_IDEMPIERE-370_LinkEndOfProcess.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/890_IDEMPIERE-377.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/891_IDEMPIERE-357.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/892_IDEMPIERE_368.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/893_IDEMPIERE-387.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/894_IDEMPIERE-246.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/895_IDEMPIERE-377_History_Trl.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/896_IDEMPIERE-29.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/897_IDEMPIERE-63.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/898_IDEMPIERE-373_User_Locking.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/899-IDEMPIERE-366.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/900_IDEMPIERE-373_User_Locking.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/901_IDEMPIERE-420.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/902_IDEMPIERE-373_User_Locking.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/903_IDEMPIERE-377.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/904_IDEMPIERE-221.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/905_IDEMPIERE-270.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/906_IDEMPIERE-403.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/907_IDEMPIERE-375.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/908_Process_Message.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/909_IDEMPIERE-375.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/910_IDEMPIERE-375.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/911_IDEMPIERE-366.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/912_IDEMPIERE_391.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/913_IDEMPIERE-374.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/914_IDEMPIERE-362.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/915_IDEMPIERE-362.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/916_IDEMPIERE-362.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/917_IDEMPIERE-366.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/918_IDEMPIERE-207.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/919_IDEMPIERE-373_User_Locking.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/920_IDEMPIERE_366.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/921_IDEMPIERE-422_NativeSequence.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/922_IDEMPIERE-362.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/923_PlaceHolder.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/924_IDEMPIERE-447.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/925_PlaceHolder.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/926_PlaceHolder.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/927_IDEMPIERE-388.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/928_IDEMPIERE-454.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/929_IDEMPIERE-458.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/930_IDEMPIERE-369.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/931_IDEMPIERE-375.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/932_IDEMPIERE-446.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/933_CreditCardsOnline.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/934_IDEMPIERE-389.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/935_IDEMPIERE-293.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/936_IDEMPIERE-389_ServerName_Field.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/937_PlaceHolder.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/938_IDEMPIERE-234.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/939_IDEMPIERE-447.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/940_IDEMPIERE-392.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/941_IDEMPIERE-158.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/942_IDEMPIERE_366.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/943_IDEMPIERE-466.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/944_IDEMPIERE-293.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/945_IDEMPIERE-197_FixedAssets.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/946_IDEMPIERE-197_FixedAssets.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/947_IDEMPIERE-293_UserSearchable.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/948_IDEMPIERE-234.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/949_IDEMPIERE-265.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/950_IDEMPIERE-234.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/951_PlaceHolder.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/952_IDEMPIERE_379.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/953_PlaceHolder.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/954_UUID_Sync.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/955_FixWrongEntityTypes.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/956_ForeignKeys.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/957_SetSysConfig.sql (100%) rename migration/{360lts-release => 360lts-i1.0a}/postgresql/958_Version.sql (100%) diff --git a/migration/360lts-release/oracle/738_AddZoomToUsedIn.sql b/migration/360lts-i1.0a/oracle/738_AddZoomToUsedIn.sql similarity index 100% rename from migration/360lts-release/oracle/738_AddZoomToUsedIn.sql rename to migration/360lts-i1.0a/oracle/738_AddZoomToUsedIn.sql diff --git a/migration/360lts-release/oracle/739_FixReleaseNoLength.sql b/migration/360lts-i1.0a/oracle/739_FixReleaseNoLength.sql similarity index 100% rename from migration/360lts-release/oracle/739_FixReleaseNoLength.sql rename to migration/360lts-i1.0a/oracle/739_FixReleaseNoLength.sql diff --git a/migration/360lts-release/oracle/740_FixCaptureSequenceBrazil.sql b/migration/360lts-i1.0a/oracle/740_FixCaptureSequenceBrazil.sql similarity index 100% rename from migration/360lts-release/oracle/740_FixCaptureSequenceBrazil.sql rename to migration/360lts-i1.0a/oracle/740_FixCaptureSequenceBrazil.sql diff --git a/migration/360lts-release/oracle/741_PayrollDictionaryFixes.sql b/migration/360lts-i1.0a/oracle/741_PayrollDictionaryFixes.sql similarity index 100% rename from migration/360lts-release/oracle/741_PayrollDictionaryFixes.sql rename to migration/360lts-i1.0a/oracle/741_PayrollDictionaryFixes.sql diff --git a/migration/360lts-release/oracle/742_FR2878276_ImportPayroll.sql b/migration/360lts-i1.0a/oracle/742_FR2878276_ImportPayroll.sql similarity index 100% rename from migration/360lts-release/oracle/742_FR2878276_ImportPayroll.sql rename to migration/360lts-i1.0a/oracle/742_FR2878276_ImportPayroll.sql diff --git a/migration/360lts-release/oracle/743_FixOrderLineTaxVT.sql b/migration/360lts-i1.0a/oracle/743_FixOrderLineTaxVT.sql similarity index 100% rename from migration/360lts-release/oracle/743_FixOrderLineTaxVT.sql rename to migration/360lts-i1.0a/oracle/743_FixOrderLineTaxVT.sql diff --git a/migration/360lts-release/oracle/744_FixFR2897194_Adv_Zoom.sql b/migration/360lts-i1.0a/oracle/744_FixFR2897194_Adv_Zoom.sql similarity index 100% rename from migration/360lts-release/oracle/744_FixFR2897194_Adv_Zoom.sql rename to migration/360lts-i1.0a/oracle/744_FixFR2897194_Adv_Zoom.sql diff --git a/migration/360lts-release/oracle/745_FixWrongEntityTypes.sql b/migration/360lts-i1.0a/oracle/745_FixWrongEntityTypes.sql similarity index 100% rename from migration/360lts-release/oracle/745_FixWrongEntityTypes.sql rename to migration/360lts-i1.0a/oracle/745_FixWrongEntityTypes.sql diff --git a/migration/360lts-release/oracle/746_FR3090719.sql b/migration/360lts-i1.0a/oracle/746_FR3090719.sql similarity index 100% rename from migration/360lts-release/oracle/746_FR3090719.sql rename to migration/360lts-i1.0a/oracle/746_FR3090719.sql diff --git a/migration/360lts-release/oracle/747_FixAccountNames.sql b/migration/360lts-i1.0a/oracle/747_FixAccountNames.sql similarity index 100% rename from migration/360lts-release/oracle/747_FixAccountNames.sql rename to migration/360lts-i1.0a/oracle/747_FixAccountNames.sql diff --git a/migration/360lts-release/oracle/748_BF3110938.sql b/migration/360lts-i1.0a/oracle/748_BF3110938.sql similarity index 100% rename from migration/360lts-release/oracle/748_BF3110938.sql rename to migration/360lts-i1.0a/oracle/748_BF3110938.sql diff --git a/migration/360lts-release/oracle/749_BF3116131.sql b/migration/360lts-i1.0a/oracle/749_BF3116131.sql similarity index 100% rename from migration/360lts-release/oracle/749_BF3116131.sql rename to migration/360lts-i1.0a/oracle/749_BF3116131.sql diff --git a/migration/360lts-release/oracle/750_BF2904321.sql b/migration/360lts-i1.0a/oracle/750_BF2904321.sql similarity index 100% rename from migration/360lts-release/oracle/750_BF2904321.sql rename to migration/360lts-i1.0a/oracle/750_BF2904321.sql diff --git a/migration/360lts-release/oracle/751_DisallowNegativeInventory.sql b/migration/360lts-i1.0a/oracle/751_DisallowNegativeInventory.sql similarity index 100% rename from migration/360lts-release/oracle/751_DisallowNegativeInventory.sql rename to migration/360lts-i1.0a/oracle/751_DisallowNegativeInventory.sql diff --git a/migration/360lts-release/oracle/752_FR3123769_Role_AmtApprovalAccum.sql b/migration/360lts-i1.0a/oracle/752_FR3123769_Role_AmtApprovalAccum.sql similarity index 100% rename from migration/360lts-release/oracle/752_FR3123769_Role_AmtApprovalAccum.sql rename to migration/360lts-i1.0a/oracle/752_FR3123769_Role_AmtApprovalAccum.sql diff --git a/migration/360lts-release/oracle/753_FixTypoInDemoData.sql b/migration/360lts-i1.0a/oracle/753_FixTypoInDemoData.sql similarity index 100% rename from migration/360lts-release/oracle/753_FixTypoInDemoData.sql rename to migration/360lts-i1.0a/oracle/753_FixTypoInDemoData.sql diff --git a/migration/360lts-release/oracle/754_TranslateDashboardTitles.sql b/migration/360lts-i1.0a/oracle/754_TranslateDashboardTitles.sql similarity index 100% rename from migration/360lts-release/oracle/754_TranslateDashboardTitles.sql rename to migration/360lts-i1.0a/oracle/754_TranslateDashboardTitles.sql diff --git a/migration/360lts-release/oracle/755_BF3063575.sql b/migration/360lts-i1.0a/oracle/755_BF3063575.sql similarity index 100% rename from migration/360lts-release/oracle/755_BF3063575.sql rename to migration/360lts-i1.0a/oracle/755_BF3063575.sql diff --git a/migration/360lts-release/oracle/756_EnableVendorBreakForSales.sql b/migration/360lts-i1.0a/oracle/756_EnableVendorBreakForSales.sql similarity index 100% rename from migration/360lts-release/oracle/756_EnableVendorBreakForSales.sql rename to migration/360lts-i1.0a/oracle/756_EnableVendorBreakForSales.sql diff --git a/migration/360lts-release/oracle/757_FR3132033.sql b/migration/360lts-i1.0a/oracle/757_FR3132033.sql similarity index 100% rename from migration/360lts-release/oracle/757_FR3132033.sql rename to migration/360lts-i1.0a/oracle/757_FR3132033.sql diff --git a/migration/360lts-release/oracle/758_FR3132075.sql b/migration/360lts-i1.0a/oracle/758_FR3132075.sql similarity index 100% rename from migration/360lts-release/oracle/758_FR3132075.sql rename to migration/360lts-i1.0a/oracle/758_FR3132075.sql diff --git a/migration/360lts-release/oracle/759_FS01_FR3132687.sql b/migration/360lts-i1.0a/oracle/759_FS01_FR3132687.sql similarity index 100% rename from migration/360lts-release/oracle/759_FS01_FR3132687.sql rename to migration/360lts-i1.0a/oracle/759_FS01_FR3132687.sql diff --git a/migration/360lts-release/oracle/760_FR3132797.sql b/migration/360lts-i1.0a/oracle/760_FR3132797.sql similarity index 100% rename from migration/360lts-release/oracle/760_FR3132797.sql rename to migration/360lts-i1.0a/oracle/760_FR3132797.sql diff --git a/migration/360lts-release/oracle/761_FixClearMessage.sql b/migration/360lts-i1.0a/oracle/761_FixClearMessage.sql similarity index 100% rename from migration/360lts-release/oracle/761_FixClearMessage.sql rename to migration/360lts-i1.0a/oracle/761_FixClearMessage.sql diff --git a/migration/360lts-release/oracle/762_Fix1913092.sql b/migration/360lts-i1.0a/oracle/762_Fix1913092.sql similarity index 100% rename from migration/360lts-release/oracle/762_Fix1913092.sql rename to migration/360lts-i1.0a/oracle/762_Fix1913092.sql diff --git a/migration/360lts-release/oracle/763_ScheduleWithRecordID.sql b/migration/360lts-i1.0a/oracle/763_ScheduleWithRecordID.sql similarity index 100% rename from migration/360lts-release/oracle/763_ScheduleWithRecordID.sql rename to migration/360lts-i1.0a/oracle/763_ScheduleWithRecordID.sql diff --git a/migration/360lts-release/oracle/764_TranslateZkReportViewer.sql b/migration/360lts-i1.0a/oracle/764_TranslateZkReportViewer.sql similarity index 100% rename from migration/360lts-release/oracle/764_TranslateZkReportViewer.sql rename to migration/360lts-i1.0a/oracle/764_TranslateZkReportViewer.sql diff --git a/migration/360lts-release/oracle/765_FixZkMessage.sql b/migration/360lts-i1.0a/oracle/765_FixZkMessage.sql similarity index 100% rename from migration/360lts-release/oracle/765_FixZkMessage.sql rename to migration/360lts-i1.0a/oracle/765_FixZkMessage.sql diff --git a/migration/360lts-release/oracle/766_738_FR3016592_SpecifySelectionColumns.sql b/migration/360lts-i1.0a/oracle/766_738_FR3016592_SpecifySelectionColumns.sql similarity index 100% rename from migration/360lts-release/oracle/766_738_FR3016592_SpecifySelectionColumns.sql rename to migration/360lts-i1.0a/oracle/766_738_FR3016592_SpecifySelectionColumns.sql diff --git a/migration/360lts-release/oracle/767_745_FR3016592_SpecifySelectionColumns.sql b/migration/360lts-i1.0a/oracle/767_745_FR3016592_SpecifySelectionColumns.sql similarity index 100% rename from migration/360lts-release/oracle/767_745_FR3016592_SpecifySelectionColumns.sql rename to migration/360lts-i1.0a/oracle/767_745_FR3016592_SpecifySelectionColumns.sql diff --git a/migration/360lts-release/oracle/768_741_BF3018013_FixSystemColorWindow.sql b/migration/360lts-i1.0a/oracle/768_741_BF3018013_FixSystemColorWindow.sql similarity index 100% rename from migration/360lts-release/oracle/768_741_BF3018013_FixSystemColorWindow.sql rename to migration/360lts-i1.0a/oracle/768_741_BF3018013_FixSystemColorWindow.sql diff --git a/migration/360lts-release/oracle/769_749_BF3075201_PP_RV_MRP.sql b/migration/360lts-i1.0a/oracle/769_749_BF3075201_PP_RV_MRP.sql similarity index 100% rename from migration/360lts-release/oracle/769_749_BF3075201_PP_RV_MRP.sql rename to migration/360lts-i1.0a/oracle/769_749_BF3075201_PP_RV_MRP.sql diff --git a/migration/360lts-release/oracle/770_750_BF3016214_PrintMO.sql b/migration/360lts-i1.0a/oracle/770_750_BF3016214_PrintMO.sql similarity index 100% rename from migration/360lts-release/oracle/770_750_BF3016214_PrintMO.sql rename to migration/360lts-i1.0a/oracle/770_750_BF3016214_PrintMO.sql diff --git a/migration/360lts-release/oracle/771_772_BF3137399_DateTimeforParameter.sql b/migration/360lts-i1.0a/oracle/771_772_BF3137399_DateTimeforParameter.sql similarity index 100% rename from migration/360lts-release/oracle/771_772_BF3137399_DateTimeforParameter.sql rename to migration/360lts-i1.0a/oracle/771_772_BF3137399_DateTimeforParameter.sql diff --git a/migration/360lts-release/oracle/772_BF3139066.sql b/migration/360lts-i1.0a/oracle/772_BF3139066.sql similarity index 100% rename from migration/360lts-release/oracle/772_BF3139066.sql rename to migration/360lts-i1.0a/oracle/772_BF3139066.sql diff --git a/migration/360lts-release/oracle/773_756_FR3039241_RussianRegions.sql b/migration/360lts-i1.0a/oracle/773_756_FR3039241_RussianRegions.sql similarity index 100% rename from migration/360lts-release/oracle/773_756_FR3039241_RussianRegions.sql rename to migration/360lts-i1.0a/oracle/773_756_FR3039241_RussianRegions.sql diff --git a/migration/360lts-release/oracle/774_FR3039241_RussianRegionsFix.sql b/migration/360lts-i1.0a/oracle/774_FR3039241_RussianRegionsFix.sql similarity index 100% rename from migration/360lts-release/oracle/774_FR3039241_RussianRegionsFix.sql rename to migration/360lts-i1.0a/oracle/774_FR3039241_RussianRegionsFix.sql diff --git a/migration/360lts-release/oracle/775_DisallowNegativeInventory.sql b/migration/360lts-i1.0a/oracle/775_DisallowNegativeInventory.sql similarity index 100% rename from migration/360lts-release/oracle/775_DisallowNegativeInventory.sql rename to migration/360lts-i1.0a/oracle/775_DisallowNegativeInventory.sql diff --git a/migration/360lts-release/oracle/776_103_BF1713137.sql b/migration/360lts-i1.0a/oracle/776_103_BF1713137.sql similarity index 100% rename from migration/360lts-release/oracle/776_103_BF1713137.sql rename to migration/360lts-i1.0a/oracle/776_103_BF1713137.sql diff --git a/migration/360lts-release/oracle/777_FR1782412_WrongColumnType.sql b/migration/360lts-i1.0a/oracle/777_FR1782412_WrongColumnType.sql similarity index 100% rename from migration/360lts-release/oracle/777_FR1782412_WrongColumnType.sql rename to migration/360lts-i1.0a/oracle/777_FR1782412_WrongColumnType.sql diff --git a/migration/360lts-release/oracle/778_FR2052471.sql b/migration/360lts-i1.0a/oracle/778_FR2052471.sql similarity index 100% rename from migration/360lts-release/oracle/778_FR2052471.sql rename to migration/360lts-i1.0a/oracle/778_FR2052471.sql diff --git a/migration/360lts-release/oracle/779_FR3159054_2011PeriodsGW.sql b/migration/360lts-i1.0a/oracle/779_FR3159054_2011PeriodsGW.sql similarity index 100% rename from migration/360lts-release/oracle/779_FR3159054_2011PeriodsGW.sql rename to migration/360lts-i1.0a/oracle/779_FR3159054_2011PeriodsGW.sql diff --git a/migration/360lts-release/oracle/780_BF2866216_drop_c_allocationline_posted.sql b/migration/360lts-i1.0a/oracle/780_BF2866216_drop_c_allocationline_posted.sql similarity index 100% rename from migration/360lts-release/oracle/780_BF2866216_drop_c_allocationline_posted.sql rename to migration/360lts-i1.0a/oracle/780_BF2866216_drop_c_allocationline_posted.sql diff --git a/migration/360lts-release/oracle/781_FR2851987LogoInPaySelectionCheck.sql b/migration/360lts-i1.0a/oracle/781_FR2851987LogoInPaySelectionCheck.sql similarity index 100% rename from migration/360lts-release/oracle/781_FR2851987LogoInPaySelectionCheck.sql rename to migration/360lts-i1.0a/oracle/781_FR2851987LogoInPaySelectionCheck.sql diff --git a/migration/360lts-release/oracle/782_AddColumnsPaySelectionCheck.sql b/migration/360lts-i1.0a/oracle/782_AddColumnsPaySelectionCheck.sql similarity index 100% rename from migration/360lts-release/oracle/782_AddColumnsPaySelectionCheck.sql rename to migration/360lts-i1.0a/oracle/782_AddColumnsPaySelectionCheck.sql diff --git a/migration/360lts-release/oracle/783_761_FixClearMessage.sql b/migration/360lts-i1.0a/oracle/783_761_FixClearMessage.sql similarity index 100% rename from migration/360lts-release/oracle/783_761_FixClearMessage.sql rename to migration/360lts-i1.0a/oracle/783_761_FixClearMessage.sql diff --git a/migration/360lts-release/oracle/784_739_FR3015882_CopyProduct.sql b/migration/360lts-i1.0a/oracle/784_739_FR3015882_CopyProduct.sql similarity index 100% rename from migration/360lts-release/oracle/784_739_FR3015882_CopyProduct.sql rename to migration/360lts-i1.0a/oracle/784_739_FR3015882_CopyProduct.sql diff --git a/migration/360lts-release/oracle/785_744_FR3018857_ImporterInventoryMove.sql b/migration/360lts-i1.0a/oracle/785_744_FR3018857_ImporterInventoryMove.sql similarity index 100% rename from migration/360lts-release/oracle/785_744_FR3018857_ImporterInventoryMove.sql rename to migration/360lts-i1.0a/oracle/785_744_FR3018857_ImporterInventoryMove.sql diff --git a/migration/360lts-release/oracle/786_FR3018857_FixImporterInventoryMove.sql b/migration/360lts-i1.0a/oracle/786_FR3018857_FixImporterInventoryMove.sql similarity index 100% rename from migration/360lts-release/oracle/786_FR3018857_FixImporterInventoryMove.sql rename to migration/360lts-i1.0a/oracle/786_FR3018857_FixImporterInventoryMove.sql diff --git a/migration/360lts-release/oracle/787_418_BF2583992.sql b/migration/360lts-i1.0a/oracle/787_418_BF2583992.sql similarity index 100% rename from migration/360lts-release/oracle/787_418_BF2583992.sql rename to migration/360lts-i1.0a/oracle/787_418_BF2583992.sql diff --git a/migration/360lts-release/oracle/788_UUIDGenerator.sql b/migration/360lts-i1.0a/oracle/788_UUIDGenerator.sql similarity index 100% rename from migration/360lts-release/oracle/788_UUIDGenerator.sql rename to migration/360lts-i1.0a/oracle/788_UUIDGenerator.sql diff --git a/migration/360lts-release/oracle/789_GenerateUUIDColumns.sql b/migration/360lts-i1.0a/oracle/789_GenerateUUIDColumns.sql similarity index 100% rename from migration/360lts-release/oracle/789_GenerateUUIDColumns.sql rename to migration/360lts-i1.0a/oracle/789_GenerateUUIDColumns.sql diff --git a/migration/360lts-release/oracle/790_FixWrongOfficialIDs.sql b/migration/360lts-i1.0a/oracle/790_FixWrongOfficialIDs.sql similarity index 100% rename from migration/360lts-release/oracle/790_FixWrongOfficialIDs.sql rename to migration/360lts-i1.0a/oracle/790_FixWrongOfficialIDs.sql diff --git a/migration/360lts-release/oracle/791_FillUUIDPrimaryTables.sql b/migration/360lts-i1.0a/oracle/791_FillUUIDPrimaryTables.sql similarity index 100% rename from migration/360lts-release/oracle/791_FillUUIDPrimaryTables.sql rename to migration/360lts-i1.0a/oracle/791_FillUUIDPrimaryTables.sql diff --git a/migration/360lts-release/oracle/792_FixDictionaryError.sql b/migration/360lts-i1.0a/oracle/792_FixDictionaryError.sql similarity index 100% rename from migration/360lts-release/oracle/792_FixDictionaryError.sql rename to migration/360lts-i1.0a/oracle/792_FixDictionaryError.sql diff --git a/migration/360lts-release/oracle/793_FillUUIDChildrenTables.sql b/migration/360lts-i1.0a/oracle/793_FillUUIDChildrenTables.sql similarity index 100% rename from migration/360lts-release/oracle/793_FillUUIDChildrenTables.sql rename to migration/360lts-i1.0a/oracle/793_FillUUIDChildrenTables.sql diff --git a/migration/360lts-release/oracle/794_791_BF3214377_FixFirstOf.sql b/migration/360lts-i1.0a/oracle/794_791_BF3214377_FixFirstOf.sql similarity index 100% rename from migration/360lts-release/oracle/794_791_BF3214377_FixFirstOf.sql rename to migration/360lts-i1.0a/oracle/794_791_BF3214377_FixFirstOf.sql diff --git a/migration/360lts-release/oracle/795_NewMessages.sql b/migration/360lts-i1.0a/oracle/795_NewMessages.sql similarity index 100% rename from migration/360lts-release/oracle/795_NewMessages.sql rename to migration/360lts-i1.0a/oracle/795_NewMessages.sql diff --git a/migration/360lts-release/oracle/796_FixProductBOMCore.sql b/migration/360lts-i1.0a/oracle/796_FixProductBOMCore.sql similarity index 100% rename from migration/360lts-release/oracle/796_FixProductBOMCore.sql rename to migration/360lts-i1.0a/oracle/796_FixProductBOMCore.sql diff --git a/migration/360lts-release/oracle/797_MessageIdempiere42.sql b/migration/360lts-i1.0a/oracle/797_MessageIdempiere42.sql similarity index 100% rename from migration/360lts-release/oracle/797_MessageIdempiere42.sql rename to migration/360lts-i1.0a/oracle/797_MessageIdempiere42.sql diff --git a/migration/360lts-release/oracle/798_IDEMPIERE-45.sql b/migration/360lts-i1.0a/oracle/798_IDEMPIERE-45.sql similarity index 100% rename from migration/360lts-release/oracle/798_IDEMPIERE-45.sql rename to migration/360lts-i1.0a/oracle/798_IDEMPIERE-45.sql diff --git a/migration/360lts-release/oracle/799_AddColumnsPaySelectionCheck.sql b/migration/360lts-i1.0a/oracle/799_AddColumnsPaySelectionCheck.sql similarity index 100% rename from migration/360lts-release/oracle/799_AddColumnsPaySelectionCheck.sql rename to migration/360lts-i1.0a/oracle/799_AddColumnsPaySelectionCheck.sql diff --git a/migration/360lts-release/oracle/800_FR2979756_AdaxaPOS.sql b/migration/360lts-i1.0a/oracle/800_FR2979756_AdaxaPOS.sql similarity index 100% rename from migration/360lts-release/oracle/800_FR2979756_AdaxaPOS.sql rename to migration/360lts-i1.0a/oracle/800_FR2979756_AdaxaPOS.sql diff --git a/migration/360lts-release/oracle/801_FR2979756_AdaxaPOS.sql b/migration/360lts-i1.0a/oracle/801_FR2979756_AdaxaPOS.sql similarity index 100% rename from migration/360lts-release/oracle/801_FR2979756_AdaxaPOS.sql rename to migration/360lts-i1.0a/oracle/801_FR2979756_AdaxaPOS.sql diff --git a/migration/360lts-release/oracle/802_FR2979756_AdaxaPOS.sql b/migration/360lts-i1.0a/oracle/802_FR2979756_AdaxaPOS.sql similarity index 100% rename from migration/360lts-release/oracle/802_FR2979756_AdaxaPOS.sql rename to migration/360lts-i1.0a/oracle/802_FR2979756_AdaxaPOS.sql diff --git a/migration/360lts-release/oracle/803_FK_POS_BF2975308_FR2979756.sql b/migration/360lts-i1.0a/oracle/803_FK_POS_BF2975308_FR2979756.sql similarity index 100% rename from migration/360lts-release/oracle/803_FK_POS_BF2975308_FR2979756.sql rename to migration/360lts-i1.0a/oracle/803_FK_POS_BF2975308_FR2979756.sql diff --git a/migration/360lts-release/oracle/804_IDEMPIERE67_IsAllowCopy.sql b/migration/360lts-i1.0a/oracle/804_IDEMPIERE67_IsAllowCopy.sql similarity index 100% rename from migration/360lts-release/oracle/804_IDEMPIERE67_IsAllowCopy.sql rename to migration/360lts-i1.0a/oracle/804_IDEMPIERE67_IsAllowCopy.sql diff --git a/migration/360lts-release/oracle/805_IDEMPIERE23.sql b/migration/360lts-i1.0a/oracle/805_IDEMPIERE23.sql similarity index 100% rename from migration/360lts-release/oracle/805_IDEMPIERE23.sql rename to migration/360lts-i1.0a/oracle/805_IDEMPIERE23.sql diff --git a/migration/360lts-release/oracle/806_IDEMPIERE65.sql b/migration/360lts-i1.0a/oracle/806_IDEMPIERE65.sql similarity index 100% rename from migration/360lts-release/oracle/806_IDEMPIERE65.sql rename to migration/360lts-i1.0a/oracle/806_IDEMPIERE65.sql diff --git a/migration/360lts-release/oracle/807_EnableWorkflowProcessClient.sql b/migration/360lts-i1.0a/oracle/807_EnableWorkflowProcessClient.sql similarity index 100% rename from migration/360lts-release/oracle/807_EnableWorkflowProcessClient.sql rename to migration/360lts-i1.0a/oracle/807_EnableWorkflowProcessClient.sql diff --git a/migration/360lts-release/oracle/808_IDEMPIERE-98.sql b/migration/360lts-i1.0a/oracle/808_IDEMPIERE-98.sql similarity index 100% rename from migration/360lts-release/oracle/808_IDEMPIERE-98.sql rename to migration/360lts-i1.0a/oracle/808_IDEMPIERE-98.sql diff --git a/migration/360lts-release/oracle/809_IDEMPIERE23.sql b/migration/360lts-i1.0a/oracle/809_IDEMPIERE23.sql similarity index 100% rename from migration/360lts-release/oracle/809_IDEMPIERE23.sql rename to migration/360lts-i1.0a/oracle/809_IDEMPIERE23.sql diff --git a/migration/360lts-release/oracle/810_NewCentralizedID.sql b/migration/360lts-i1.0a/oracle/810_NewCentralizedID.sql similarity index 100% rename from migration/360lts-release/oracle/810_NewCentralizedID.sql rename to migration/360lts-i1.0a/oracle/810_NewCentralizedID.sql diff --git a/migration/360lts-release/oracle/811_IDEMPIERE-126.sql b/migration/360lts-i1.0a/oracle/811_IDEMPIERE-126.sql similarity index 100% rename from migration/360lts-release/oracle/811_IDEMPIERE-126.sql rename to migration/360lts-i1.0a/oracle/811_IDEMPIERE-126.sql diff --git a/migration/360lts-release/oracle/812_IDEMPIERE-127_RecentItems.sql b/migration/360lts-i1.0a/oracle/812_IDEMPIERE-127_RecentItems.sql similarity index 100% rename from migration/360lts-release/oracle/812_IDEMPIERE-127_RecentItems.sql rename to migration/360lts-i1.0a/oracle/812_IDEMPIERE-127_RecentItems.sql diff --git a/migration/360lts-release/oracle/813_IDEMPIERE-134_NewGWPeriods.sql b/migration/360lts-i1.0a/oracle/813_IDEMPIERE-134_NewGWPeriods.sql similarity index 100% rename from migration/360lts-release/oracle/813_IDEMPIERE-134_NewGWPeriods.sql rename to migration/360lts-i1.0a/oracle/813_IDEMPIERE-134_NewGWPeriods.sql diff --git a/migration/360lts-release/oracle/814_IDEMPIERE-133.sql b/migration/360lts-i1.0a/oracle/814_IDEMPIERE-133.sql similarity index 100% rename from migration/360lts-release/oracle/814_IDEMPIERE-133.sql rename to migration/360lts-i1.0a/oracle/814_IDEMPIERE-133.sql diff --git a/migration/360lts-release/oracle/815_IDEMPIERE-135.sql b/migration/360lts-i1.0a/oracle/815_IDEMPIERE-135.sql similarity index 100% rename from migration/360lts-release/oracle/815_IDEMPIERE-135.sql rename to migration/360lts-i1.0a/oracle/815_IDEMPIERE-135.sql diff --git a/migration/360lts-release/oracle/816_IDEMPIERE-139_LastMigrationScriptApplied.sql b/migration/360lts-i1.0a/oracle/816_IDEMPIERE-139_LastMigrationScriptApplied.sql similarity index 100% rename from migration/360lts-release/oracle/816_IDEMPIERE-139_LastMigrationScriptApplied.sql rename to migration/360lts-i1.0a/oracle/816_IDEMPIERE-139_LastMigrationScriptApplied.sql diff --git a/migration/360lts-release/oracle/817_IDEMPIERE-147.sql b/migration/360lts-i1.0a/oracle/817_IDEMPIERE-147.sql similarity index 100% rename from migration/360lts-release/oracle/817_IDEMPIERE-147.sql rename to migration/360lts-i1.0a/oracle/817_IDEMPIERE-147.sql diff --git a/migration/360lts-release/oracle/818_IDEMPIERE-148.sql b/migration/360lts-i1.0a/oracle/818_IDEMPIERE-148.sql similarity index 100% rename from migration/360lts-release/oracle/818_IDEMPIERE-148.sql rename to migration/360lts-i1.0a/oracle/818_IDEMPIERE-148.sql diff --git a/migration/360lts-release/oracle/819_IDEMPIERE-140.sql b/migration/360lts-i1.0a/oracle/819_IDEMPIERE-140.sql similarity index 100% rename from migration/360lts-release/oracle/819_IDEMPIERE-140.sql rename to migration/360lts-i1.0a/oracle/819_IDEMPIERE-140.sql diff --git a/migration/360lts-release/oracle/820_IDEMPIERE-153.sql b/migration/360lts-i1.0a/oracle/820_IDEMPIERE-153.sql similarity index 100% rename from migration/360lts-release/oracle/820_IDEMPIERE-153.sql rename to migration/360lts-i1.0a/oracle/820_IDEMPIERE-153.sql diff --git a/migration/360lts-release/oracle/821_IDEMPIERE-137_GLReconciliation.sql b/migration/360lts-i1.0a/oracle/821_IDEMPIERE-137_GLReconciliation.sql similarity index 100% rename from migration/360lts-release/oracle/821_IDEMPIERE-137_GLReconciliation.sql rename to migration/360lts-i1.0a/oracle/821_IDEMPIERE-137_GLReconciliation.sql diff --git a/migration/360lts-release/oracle/822_IDEMPIERE-137_Ambidexter_GL_Rec.sql b/migration/360lts-i1.0a/oracle/822_IDEMPIERE-137_Ambidexter_GL_Rec.sql similarity index 100% rename from migration/360lts-release/oracle/822_IDEMPIERE-137_Ambidexter_GL_Rec.sql rename to migration/360lts-i1.0a/oracle/822_IDEMPIERE-137_Ambidexter_GL_Rec.sql diff --git a/migration/360lts-release/oracle/823_IDEMPIERE-178.sql b/migration/360lts-i1.0a/oracle/823_IDEMPIERE-178.sql similarity index 100% rename from migration/360lts-release/oracle/823_IDEMPIERE-178.sql rename to migration/360lts-i1.0a/oracle/823_IDEMPIERE-178.sql diff --git a/migration/360lts-release/oracle/824_IDEMPIERE-117.sql b/migration/360lts-i1.0a/oracle/824_IDEMPIERE-117.sql similarity index 100% rename from migration/360lts-release/oracle/824_IDEMPIERE-117.sql rename to migration/360lts-i1.0a/oracle/824_IDEMPIERE-117.sql diff --git a/migration/360lts-release/oracle/824z_UpdateUU.sql b/migration/360lts-i1.0a/oracle/824z_UpdateUU.sql similarity index 100% rename from migration/360lts-release/oracle/824z_UpdateUU.sql rename to migration/360lts-i1.0a/oracle/824z_UpdateUU.sql diff --git a/migration/360lts-release/oracle/825_IDEMPIERE-189.sql b/migration/360lts-i1.0a/oracle/825_IDEMPIERE-189.sql similarity index 100% rename from migration/360lts-release/oracle/825_IDEMPIERE-189.sql rename to migration/360lts-i1.0a/oracle/825_IDEMPIERE-189.sql diff --git a/migration/360lts-release/oracle/826_IDEMPIERE-118.sql b/migration/360lts-i1.0a/oracle/826_IDEMPIERE-118.sql similarity index 100% rename from migration/360lts-release/oracle/826_IDEMPIERE-118.sql rename to migration/360lts-i1.0a/oracle/826_IDEMPIERE-118.sql diff --git a/migration/360lts-release/oracle/827_IDEMPIERE-151.sql b/migration/360lts-i1.0a/oracle/827_IDEMPIERE-151.sql similarity index 100% rename from migration/360lts-release/oracle/827_IDEMPIERE-151.sql rename to migration/360lts-i1.0a/oracle/827_IDEMPIERE-151.sql diff --git a/migration/360lts-release/oracle/828_IDEMPIERE-204.sql b/migration/360lts-i1.0a/oracle/828_IDEMPIERE-204.sql similarity index 100% rename from migration/360lts-release/oracle/828_IDEMPIERE-204.sql rename to migration/360lts-i1.0a/oracle/828_IDEMPIERE-204.sql diff --git a/migration/360lts-release/oracle/829_IDEMPIERE-117.sql b/migration/360lts-i1.0a/oracle/829_IDEMPIERE-117.sql similarity index 100% rename from migration/360lts-release/oracle/829_IDEMPIERE-117.sql rename to migration/360lts-i1.0a/oracle/829_IDEMPIERE-117.sql diff --git a/migration/360lts-release/oracle/830_IDEMPIERE-177_Window_Customization.sql b/migration/360lts-i1.0a/oracle/830_IDEMPIERE-177_Window_Customization.sql similarity index 100% rename from migration/360lts-release/oracle/830_IDEMPIERE-177_Window_Customization.sql rename to migration/360lts-i1.0a/oracle/830_IDEMPIERE-177_Window_Customization.sql diff --git a/migration/360lts-release/oracle/831_IDEMPIERE-177_Window_Customization.sql b/migration/360lts-i1.0a/oracle/831_IDEMPIERE-177_Window_Customization.sql similarity index 100% rename from migration/360lts-release/oracle/831_IDEMPIERE-177_Window_Customization.sql rename to migration/360lts-i1.0a/oracle/831_IDEMPIERE-177_Window_Customization.sql diff --git a/migration/360lts-release/oracle/832_IDEMPIERE-215.sql b/migration/360lts-i1.0a/oracle/832_IDEMPIERE-215.sql similarity index 100% rename from migration/360lts-release/oracle/832_IDEMPIERE-215.sql rename to migration/360lts-i1.0a/oracle/832_IDEMPIERE-215.sql diff --git a/migration/360lts-release/oracle/833_IDEMPIERE-129.sql b/migration/360lts-i1.0a/oracle/833_IDEMPIERE-129.sql similarity index 100% rename from migration/360lts-release/oracle/833_IDEMPIERE-129.sql rename to migration/360lts-i1.0a/oracle/833_IDEMPIERE-129.sql diff --git a/migration/360lts-release/oracle/834_IDEMPIERE-113.sql b/migration/360lts-i1.0a/oracle/834_IDEMPIERE-113.sql similarity index 100% rename from migration/360lts-release/oracle/834_IDEMPIERE-113.sql rename to migration/360lts-i1.0a/oracle/834_IDEMPIERE-113.sql diff --git a/migration/360lts-release/oracle/835_IDEMPIERE-195_MenuAutoExpand.sql b/migration/360lts-i1.0a/oracle/835_IDEMPIERE-195_MenuAutoExpand.sql similarity index 100% rename from migration/360lts-release/oracle/835_IDEMPIERE-195_MenuAutoExpand.sql rename to migration/360lts-i1.0a/oracle/835_IDEMPIERE-195_MenuAutoExpand.sql diff --git a/migration/360lts-release/oracle/836_IDEMPIERE-156.sql b/migration/360lts-i1.0a/oracle/836_IDEMPIERE-156.sql similarity index 100% rename from migration/360lts-release/oracle/836_IDEMPIERE-156.sql rename to migration/360lts-i1.0a/oracle/836_IDEMPIERE-156.sql diff --git a/migration/360lts-release/oracle/837_IDEMPIERE-195.sql b/migration/360lts-i1.0a/oracle/837_IDEMPIERE-195.sql similarity index 100% rename from migration/360lts-release/oracle/837_IDEMPIERE-195.sql rename to migration/360lts-i1.0a/oracle/837_IDEMPIERE-195.sql diff --git a/migration/360lts-release/oracle/838_IDEMPIERE-249.sql b/migration/360lts-i1.0a/oracle/838_IDEMPIERE-249.sql similarity index 100% rename from migration/360lts-release/oracle/838_IDEMPIERE-249.sql rename to migration/360lts-i1.0a/oracle/838_IDEMPIERE-249.sql diff --git a/migration/360lts-release/oracle/839_IDEMPIERE-162.sql b/migration/360lts-i1.0a/oracle/839_IDEMPIERE-162.sql similarity index 100% rename from migration/360lts-release/oracle/839_IDEMPIERE-162.sql rename to migration/360lts-i1.0a/oracle/839_IDEMPIERE-162.sql diff --git a/migration/360lts-release/oracle/840_IDEMPIERE-274.sql b/migration/360lts-i1.0a/oracle/840_IDEMPIERE-274.sql similarity index 100% rename from migration/360lts-release/oracle/840_IDEMPIERE-274.sql rename to migration/360lts-i1.0a/oracle/840_IDEMPIERE-274.sql diff --git a/migration/360lts-release/oracle/841_IDEMPIERE-254.sql b/migration/360lts-i1.0a/oracle/841_IDEMPIERE-254.sql similarity index 100% rename from migration/360lts-release/oracle/841_IDEMPIERE-254.sql rename to migration/360lts-i1.0a/oracle/841_IDEMPIERE-254.sql diff --git a/migration/360lts-release/oracle/842_IDEMPIERE-277.sql b/migration/360lts-i1.0a/oracle/842_IDEMPIERE-277.sql similarity index 100% rename from migration/360lts-release/oracle/842_IDEMPIERE-277.sql rename to migration/360lts-i1.0a/oracle/842_IDEMPIERE-277.sql diff --git a/migration/360lts-release/oracle/843-IDEMPIERE-13.sql b/migration/360lts-i1.0a/oracle/843-IDEMPIERE-13.sql similarity index 100% rename from migration/360lts-release/oracle/843-IDEMPIERE-13.sql rename to migration/360lts-i1.0a/oracle/843-IDEMPIERE-13.sql diff --git a/migration/360lts-release/oracle/844-IDEMPIERE-281.sql b/migration/360lts-i1.0a/oracle/844-IDEMPIERE-281.sql similarity index 100% rename from migration/360lts-release/oracle/844-IDEMPIERE-281.sql rename to migration/360lts-i1.0a/oracle/844-IDEMPIERE-281.sql diff --git a/migration/360lts-release/oracle/845_IDEMPIERE-255.sql b/migration/360lts-i1.0a/oracle/845_IDEMPIERE-255.sql similarity index 100% rename from migration/360lts-release/oracle/845_IDEMPIERE-255.sql rename to migration/360lts-i1.0a/oracle/845_IDEMPIERE-255.sql diff --git a/migration/360lts-release/oracle/846_GenerateNewUUIDColumns.sql b/migration/360lts-i1.0a/oracle/846_GenerateNewUUIDColumns.sql similarity index 100% rename from migration/360lts-release/oracle/846_GenerateNewUUIDColumns.sql rename to migration/360lts-i1.0a/oracle/846_GenerateNewUUIDColumns.sql diff --git a/migration/360lts-release/oracle/847_FillNewUUIDs.sql b/migration/360lts-i1.0a/oracle/847_FillNewUUIDs.sql similarity index 100% rename from migration/360lts-release/oracle/847_FillNewUUIDs.sql rename to migration/360lts-i1.0a/oracle/847_FillNewUUIDs.sql diff --git a/migration/360lts-release/oracle/848_IDEMPIERE-146.sql b/migration/360lts-i1.0a/oracle/848_IDEMPIERE-146.sql similarity index 100% rename from migration/360lts-release/oracle/848_IDEMPIERE-146.sql rename to migration/360lts-i1.0a/oracle/848_IDEMPIERE-146.sql diff --git a/migration/360lts-release/oracle/849_IDEMPIERE-85.sql b/migration/360lts-i1.0a/oracle/849_IDEMPIERE-85.sql similarity index 100% rename from migration/360lts-release/oracle/849_IDEMPIERE-85.sql rename to migration/360lts-i1.0a/oracle/849_IDEMPIERE-85.sql diff --git a/migration/360lts-release/oracle/850_IDEMPIERE-328.sql b/migration/360lts-i1.0a/oracle/850_IDEMPIERE-328.sql similarity index 100% rename from migration/360lts-release/oracle/850_IDEMPIERE-328.sql rename to migration/360lts-i1.0a/oracle/850_IDEMPIERE-328.sql diff --git a/migration/360lts-release/oracle/851_IDEMPIERE-320.sql b/migration/360lts-i1.0a/oracle/851_IDEMPIERE-320.sql similarity index 100% rename from migration/360lts-release/oracle/851_IDEMPIERE-320.sql rename to migration/360lts-i1.0a/oracle/851_IDEMPIERE-320.sql diff --git a/migration/360lts-release/oracle/852_IDEMPIERE-338.sql b/migration/360lts-i1.0a/oracle/852_IDEMPIERE-338.sql similarity index 100% rename from migration/360lts-release/oracle/852_IDEMPIERE-338.sql rename to migration/360lts-i1.0a/oracle/852_IDEMPIERE-338.sql diff --git a/migration/360lts-release/oracle/853_IDEMPIERE-326.sql b/migration/360lts-i1.0a/oracle/853_IDEMPIERE-326.sql similarity index 100% rename from migration/360lts-release/oracle/853_IDEMPIERE-326.sql rename to migration/360lts-i1.0a/oracle/853_IDEMPIERE-326.sql diff --git a/migration/360lts-release/oracle/854_PasswordHash_IDEMPIERE-347.sql b/migration/360lts-i1.0a/oracle/854_PasswordHash_IDEMPIERE-347.sql similarity index 100% rename from migration/360lts-release/oracle/854_PasswordHash_IDEMPIERE-347.sql rename to migration/360lts-i1.0a/oracle/854_PasswordHash_IDEMPIERE-347.sql diff --git a/migration/360lts-release/oracle/855_IDEMPIERE-344_GLJournalImprovement.sql b/migration/360lts-i1.0a/oracle/855_IDEMPIERE-344_GLJournalImprovement.sql similarity index 100% rename from migration/360lts-release/oracle/855_IDEMPIERE-344_GLJournalImprovement.sql rename to migration/360lts-i1.0a/oracle/855_IDEMPIERE-344_GLJournalImprovement.sql diff --git a/migration/360lts-release/oracle/856_IDEMPIERE_332.sql b/migration/360lts-i1.0a/oracle/856_IDEMPIERE_332.sql similarity index 100% rename from migration/360lts-release/oracle/856_IDEMPIERE_332.sql rename to migration/360lts-i1.0a/oracle/856_IDEMPIERE_332.sql diff --git a/migration/360lts-release/oracle/857_IDEMPIERE-221.sql b/migration/360lts-i1.0a/oracle/857_IDEMPIERE-221.sql similarity index 100% rename from migration/360lts-release/oracle/857_IDEMPIERE-221.sql rename to migration/360lts-i1.0a/oracle/857_IDEMPIERE-221.sql diff --git a/migration/360lts-release/oracle/858_IDEMPIERE-344_GLJournalImprovement.sql b/migration/360lts-i1.0a/oracle/858_IDEMPIERE-344_GLJournalImprovement.sql similarity index 100% rename from migration/360lts-release/oracle/858_IDEMPIERE-344_GLJournalImprovement.sql rename to migration/360lts-i1.0a/oracle/858_IDEMPIERE-344_GLJournalImprovement.sql diff --git a/migration/360lts-release/oracle/859_IDEMPIERE-354.sql b/migration/360lts-i1.0a/oracle/859_IDEMPIERE-354.sql similarity index 100% rename from migration/360lts-release/oracle/859_IDEMPIERE-354.sql rename to migration/360lts-i1.0a/oracle/859_IDEMPIERE-354.sql diff --git a/migration/360lts-release/oracle/860_IDEMPIERE-356.sql b/migration/360lts-i1.0a/oracle/860_IDEMPIERE-356.sql similarity index 100% rename from migration/360lts-release/oracle/860_IDEMPIERE-356.sql rename to migration/360lts-i1.0a/oracle/860_IDEMPIERE-356.sql diff --git a/migration/360lts-release/oracle/861_IDEMPIERE-344_GLJournalImprovement.sql b/migration/360lts-i1.0a/oracle/861_IDEMPIERE-344_GLJournalImprovement.sql similarity index 100% rename from migration/360lts-release/oracle/861_IDEMPIERE-344_GLJournalImprovement.sql rename to migration/360lts-i1.0a/oracle/861_IDEMPIERE-344_GLJournalImprovement.sql diff --git a/migration/360lts-release/oracle/862_1001002_MenuPortlet.sql b/migration/360lts-i1.0a/oracle/862_1001002_MenuPortlet.sql similarity index 100% rename from migration/360lts-release/oracle/862_1001002_MenuPortlet.sql rename to migration/360lts-i1.0a/oracle/862_1001002_MenuPortlet.sql diff --git a/migration/360lts-release/oracle/862a_ManufacturingLight.sql b/migration/360lts-i1.0a/oracle/862a_ManufacturingLight.sql similarity index 100% rename from migration/360lts-release/oracle/862a_ManufacturingLight.sql rename to migration/360lts-i1.0a/oracle/862a_ManufacturingLight.sql diff --git a/migration/360lts-release/oracle/863_IDEMPIERE-246_Manufacturing_Light_phantom.sql b/migration/360lts-i1.0a/oracle/863_IDEMPIERE-246_Manufacturing_Light_phantom.sql similarity index 100% rename from migration/360lts-release/oracle/863_IDEMPIERE-246_Manufacturing_Light_phantom.sql rename to migration/360lts-i1.0a/oracle/863_IDEMPIERE-246_Manufacturing_Light_phantom.sql diff --git a/migration/360lts-release/oracle/864_IDEMPIERE-246_Manufacturing_Light_Kanban.sql b/migration/360lts-i1.0a/oracle/864_IDEMPIERE-246_Manufacturing_Light_Kanban.sql similarity index 100% rename from migration/360lts-release/oracle/864_IDEMPIERE-246_Manufacturing_Light_Kanban.sql rename to migration/360lts-i1.0a/oracle/864_IDEMPIERE-246_Manufacturing_Light_Kanban.sql diff --git a/migration/360lts-release/oracle/865_IDEMPIERE-221.sql b/migration/360lts-i1.0a/oracle/865_IDEMPIERE-221.sql similarity index 100% rename from migration/360lts-release/oracle/865_IDEMPIERE-221.sql rename to migration/360lts-i1.0a/oracle/865_IDEMPIERE-221.sql diff --git a/migration/360lts-release/oracle/866_IDEMPIERE-246_Manufacturing_Light_fixes.sql b/migration/360lts-i1.0a/oracle/866_IDEMPIERE-246_Manufacturing_Light_fixes.sql similarity index 100% rename from migration/360lts-release/oracle/866_IDEMPIERE-246_Manufacturing_Light_fixes.sql rename to migration/360lts-i1.0a/oracle/866_IDEMPIERE-246_Manufacturing_Light_fixes.sql diff --git a/migration/360lts-release/oracle/867_IDEMPIERE-357_MenuPortlet.sql b/migration/360lts-i1.0a/oracle/867_IDEMPIERE-357_MenuPortlet.sql similarity index 100% rename from migration/360lts-release/oracle/867_IDEMPIERE-357_MenuPortlet.sql rename to migration/360lts-i1.0a/oracle/867_IDEMPIERE-357_MenuPortlet.sql diff --git a/migration/360lts-release/oracle/868_FixWrongEntityTypes.sql b/migration/360lts-i1.0a/oracle/868_FixWrongEntityTypes.sql similarity index 100% rename from migration/360lts-release/oracle/868_FixWrongEntityTypes.sql rename to migration/360lts-i1.0a/oracle/868_FixWrongEntityTypes.sql diff --git a/migration/360lts-release/oracle/869_UUIDGenerator.sql b/migration/360lts-i1.0a/oracle/869_UUIDGenerator.sql similarity index 100% rename from migration/360lts-release/oracle/869_UUIDGenerator.sql rename to migration/360lts-i1.0a/oracle/869_UUIDGenerator.sql diff --git a/migration/360lts-release/oracle/870_IDEMPIERE-357_MenuPortlet.sql b/migration/360lts-i1.0a/oracle/870_IDEMPIERE-357_MenuPortlet.sql similarity index 100% rename from migration/360lts-release/oracle/870_IDEMPIERE-357_MenuPortlet.sql rename to migration/360lts-i1.0a/oracle/870_IDEMPIERE-357_MenuPortlet.sql diff --git a/migration/360lts-release/oracle/871_IDEMPIERE_358.sql b/migration/360lts-i1.0a/oracle/871_IDEMPIERE_358.sql similarity index 100% rename from migration/360lts-release/oracle/871_IDEMPIERE_358.sql rename to migration/360lts-i1.0a/oracle/871_IDEMPIERE_358.sql diff --git a/migration/360lts-release/oracle/872_IDEMPIERE-364_Customizable_Grid.sql b/migration/360lts-i1.0a/oracle/872_IDEMPIERE-364_Customizable_Grid.sql similarity index 100% rename from migration/360lts-release/oracle/872_IDEMPIERE-364_Customizable_Grid.sql rename to migration/360lts-i1.0a/oracle/872_IDEMPIERE-364_Customizable_Grid.sql diff --git a/migration/360lts-release/oracle/873_IDEMPIERE-364_AD_Field.sql b/migration/360lts-i1.0a/oracle/873_IDEMPIERE-364_AD_Field.sql similarity index 100% rename from migration/360lts-release/oracle/873_IDEMPIERE-364_AD_Field.sql rename to migration/360lts-i1.0a/oracle/873_IDEMPIERE-364_AD_Field.sql diff --git a/migration/360lts-release/oracle/874_IDEMPIERE-384.sql b/migration/360lts-i1.0a/oracle/874_IDEMPIERE-384.sql similarity index 100% rename from migration/360lts-release/oracle/874_IDEMPIERE-384.sql rename to migration/360lts-i1.0a/oracle/874_IDEMPIERE-384.sql diff --git a/migration/360lts-release/oracle/875_IDEMPIERE-364.sql b/migration/360lts-i1.0a/oracle/875_IDEMPIERE-364.sql similarity index 100% rename from migration/360lts-release/oracle/875_IDEMPIERE-364.sql rename to migration/360lts-i1.0a/oracle/875_IDEMPIERE-364.sql diff --git a/migration/360lts-release/oracle/876_IDEMPIERE-364_FixWrongField.sql b/migration/360lts-i1.0a/oracle/876_IDEMPIERE-364_FixWrongField.sql similarity index 100% rename from migration/360lts-release/oracle/876_IDEMPIERE-364_FixWrongField.sql rename to migration/360lts-i1.0a/oracle/876_IDEMPIERE-364_FixWrongField.sql diff --git a/migration/360lts-release/oracle/877_IDEMPIERE_363.sql b/migration/360lts-i1.0a/oracle/877_IDEMPIERE_363.sql similarity index 100% rename from migration/360lts-release/oracle/877_IDEMPIERE_363.sql rename to migration/360lts-i1.0a/oracle/877_IDEMPIERE_363.sql diff --git a/migration/360lts-release/oracle/878_IDEMPIERE-393.sql b/migration/360lts-i1.0a/oracle/878_IDEMPIERE-393.sql similarity index 100% rename from migration/360lts-release/oracle/878_IDEMPIERE-393.sql rename to migration/360lts-i1.0a/oracle/878_IDEMPIERE-393.sql diff --git a/migration/360lts-release/oracle/879_IDEMPIERE-376.sql b/migration/360lts-i1.0a/oracle/879_IDEMPIERE-376.sql similarity index 100% rename from migration/360lts-release/oracle/879_IDEMPIERE-376.sql rename to migration/360lts-i1.0a/oracle/879_IDEMPIERE-376.sql diff --git a/migration/360lts-release/oracle/880_IDEMPIERE-377_SeqNoSelection.sql b/migration/360lts-i1.0a/oracle/880_IDEMPIERE-377_SeqNoSelection.sql similarity index 100% rename from migration/360lts-release/oracle/880_IDEMPIERE-377_SeqNoSelection.sql rename to migration/360lts-i1.0a/oracle/880_IDEMPIERE-377_SeqNoSelection.sql diff --git a/migration/360lts-release/oracle/881_IDEMPIERE-246_Manufacturing_Light_OrderLine_Create_Prod_Ship.sql b/migration/360lts-i1.0a/oracle/881_IDEMPIERE-246_Manufacturing_Light_OrderLine_Create_Prod_Ship.sql similarity index 100% rename from migration/360lts-release/oracle/881_IDEMPIERE-246_Manufacturing_Light_OrderLine_Create_Prod_Ship.sql rename to migration/360lts-i1.0a/oracle/881_IDEMPIERE-246_Manufacturing_Light_OrderLine_Create_Prod_Ship.sql diff --git a/migration/360lts-release/oracle/882_IDEMPIERE-246_Manufacturing_Light_Menu_deact_Libero.sql b/migration/360lts-i1.0a/oracle/882_IDEMPIERE-246_Manufacturing_Light_Menu_deact_Libero.sql similarity index 100% rename from migration/360lts-release/oracle/882_IDEMPIERE-246_Manufacturing_Light_Menu_deact_Libero.sql rename to migration/360lts-i1.0a/oracle/882_IDEMPIERE-246_Manufacturing_Light_Menu_deact_Libero.sql diff --git a/migration/360lts-release/oracle/883_IDEMPIERE-246_Manufacturing_Light_fixes.sql b/migration/360lts-i1.0a/oracle/883_IDEMPIERE-246_Manufacturing_Light_fixes.sql similarity index 100% rename from migration/360lts-release/oracle/883_IDEMPIERE-246_Manufacturing_Light_fixes.sql rename to migration/360lts-i1.0a/oracle/883_IDEMPIERE-246_Manufacturing_Light_fixes.sql diff --git a/migration/360lts-release/oracle/884_IDEMPIERE-246.sql b/migration/360lts-i1.0a/oracle/884_IDEMPIERE-246.sql similarity index 100% rename from migration/360lts-release/oracle/884_IDEMPIERE-246.sql rename to migration/360lts-i1.0a/oracle/884_IDEMPIERE-246.sql diff --git a/migration/360lts-release/oracle/885_IDEMPIERE-377_AD_Field_V.sql b/migration/360lts-i1.0a/oracle/885_IDEMPIERE-377_AD_Field_V.sql similarity index 100% rename from migration/360lts-release/oracle/885_IDEMPIERE-377_AD_Field_V.sql rename to migration/360lts-i1.0a/oracle/885_IDEMPIERE-377_AD_Field_V.sql diff --git a/migration/360lts-release/oracle/886_IDEMPIERE-217.sql b/migration/360lts-i1.0a/oracle/886_IDEMPIERE-217.sql similarity index 100% rename from migration/360lts-release/oracle/886_IDEMPIERE-217.sql rename to migration/360lts-i1.0a/oracle/886_IDEMPIERE-217.sql diff --git a/migration/360lts-release/oracle/887_LinkEndOfProcess.sql b/migration/360lts-i1.0a/oracle/887_LinkEndOfProcess.sql similarity index 100% rename from migration/360lts-release/oracle/887_LinkEndOfProcess.sql rename to migration/360lts-i1.0a/oracle/887_LinkEndOfProcess.sql diff --git a/migration/360lts-release/oracle/888_IDEMPIERE-357_MenuPortlet.sql b/migration/360lts-i1.0a/oracle/888_IDEMPIERE-357_MenuPortlet.sql similarity index 100% rename from migration/360lts-release/oracle/888_IDEMPIERE-357_MenuPortlet.sql rename to migration/360lts-i1.0a/oracle/888_IDEMPIERE-357_MenuPortlet.sql diff --git a/migration/360lts-release/oracle/889_IDEMPIERE-370_LinkEndOfProcess.sql b/migration/360lts-i1.0a/oracle/889_IDEMPIERE-370_LinkEndOfProcess.sql similarity index 100% rename from migration/360lts-release/oracle/889_IDEMPIERE-370_LinkEndOfProcess.sql rename to migration/360lts-i1.0a/oracle/889_IDEMPIERE-370_LinkEndOfProcess.sql diff --git a/migration/360lts-release/oracle/890_IDEMPIERE-377.sql b/migration/360lts-i1.0a/oracle/890_IDEMPIERE-377.sql similarity index 100% rename from migration/360lts-release/oracle/890_IDEMPIERE-377.sql rename to migration/360lts-i1.0a/oracle/890_IDEMPIERE-377.sql diff --git a/migration/360lts-release/oracle/891_IDEMPIERE-357.sql b/migration/360lts-i1.0a/oracle/891_IDEMPIERE-357.sql similarity index 100% rename from migration/360lts-release/oracle/891_IDEMPIERE-357.sql rename to migration/360lts-i1.0a/oracle/891_IDEMPIERE-357.sql diff --git a/migration/360lts-release/oracle/892_IDEMPIERE_368.sql b/migration/360lts-i1.0a/oracle/892_IDEMPIERE_368.sql similarity index 100% rename from migration/360lts-release/oracle/892_IDEMPIERE_368.sql rename to migration/360lts-i1.0a/oracle/892_IDEMPIERE_368.sql diff --git a/migration/360lts-release/oracle/893_IDEMPIERE-387.sql b/migration/360lts-i1.0a/oracle/893_IDEMPIERE-387.sql similarity index 100% rename from migration/360lts-release/oracle/893_IDEMPIERE-387.sql rename to migration/360lts-i1.0a/oracle/893_IDEMPIERE-387.sql diff --git a/migration/360lts-release/oracle/894_IDEMPIERE-246.sql b/migration/360lts-i1.0a/oracle/894_IDEMPIERE-246.sql similarity index 100% rename from migration/360lts-release/oracle/894_IDEMPIERE-246.sql rename to migration/360lts-i1.0a/oracle/894_IDEMPIERE-246.sql diff --git a/migration/360lts-release/oracle/895_IDEMPIERE-377_History_Trl.sql b/migration/360lts-i1.0a/oracle/895_IDEMPIERE-377_History_Trl.sql similarity index 100% rename from migration/360lts-release/oracle/895_IDEMPIERE-377_History_Trl.sql rename to migration/360lts-i1.0a/oracle/895_IDEMPIERE-377_History_Trl.sql diff --git a/migration/360lts-release/oracle/896_IDEMPIERE-29.sql b/migration/360lts-i1.0a/oracle/896_IDEMPIERE-29.sql similarity index 100% rename from migration/360lts-release/oracle/896_IDEMPIERE-29.sql rename to migration/360lts-i1.0a/oracle/896_IDEMPIERE-29.sql diff --git a/migration/360lts-release/oracle/897_IDEMPIERE-63.sql b/migration/360lts-i1.0a/oracle/897_IDEMPIERE-63.sql similarity index 100% rename from migration/360lts-release/oracle/897_IDEMPIERE-63.sql rename to migration/360lts-i1.0a/oracle/897_IDEMPIERE-63.sql diff --git a/migration/360lts-release/oracle/898_IDEMPIERE-373_User_Locking.sql b/migration/360lts-i1.0a/oracle/898_IDEMPIERE-373_User_Locking.sql similarity index 100% rename from migration/360lts-release/oracle/898_IDEMPIERE-373_User_Locking.sql rename to migration/360lts-i1.0a/oracle/898_IDEMPIERE-373_User_Locking.sql diff --git a/migration/360lts-release/oracle/899-IDEMPIERE-366.sql b/migration/360lts-i1.0a/oracle/899-IDEMPIERE-366.sql similarity index 100% rename from migration/360lts-release/oracle/899-IDEMPIERE-366.sql rename to migration/360lts-i1.0a/oracle/899-IDEMPIERE-366.sql diff --git a/migration/360lts-release/oracle/900_IDEMPIERE-373_User_Locking.sql b/migration/360lts-i1.0a/oracle/900_IDEMPIERE-373_User_Locking.sql similarity index 100% rename from migration/360lts-release/oracle/900_IDEMPIERE-373_User_Locking.sql rename to migration/360lts-i1.0a/oracle/900_IDEMPIERE-373_User_Locking.sql diff --git a/migration/360lts-release/oracle/901_IDEMPIERE-420.sql b/migration/360lts-i1.0a/oracle/901_IDEMPIERE-420.sql similarity index 100% rename from migration/360lts-release/oracle/901_IDEMPIERE-420.sql rename to migration/360lts-i1.0a/oracle/901_IDEMPIERE-420.sql diff --git a/migration/360lts-release/oracle/902_IDEMPIERE-373_User_Locking.sql b/migration/360lts-i1.0a/oracle/902_IDEMPIERE-373_User_Locking.sql similarity index 100% rename from migration/360lts-release/oracle/902_IDEMPIERE-373_User_Locking.sql rename to migration/360lts-i1.0a/oracle/902_IDEMPIERE-373_User_Locking.sql diff --git a/migration/360lts-release/oracle/903_IDEMPIERE-377.sql b/migration/360lts-i1.0a/oracle/903_IDEMPIERE-377.sql similarity index 100% rename from migration/360lts-release/oracle/903_IDEMPIERE-377.sql rename to migration/360lts-i1.0a/oracle/903_IDEMPIERE-377.sql diff --git a/migration/360lts-release/oracle/904_IDEMPIERE-221.sql b/migration/360lts-i1.0a/oracle/904_IDEMPIERE-221.sql similarity index 100% rename from migration/360lts-release/oracle/904_IDEMPIERE-221.sql rename to migration/360lts-i1.0a/oracle/904_IDEMPIERE-221.sql diff --git a/migration/360lts-release/oracle/905_IDEMPIERE-270.sql b/migration/360lts-i1.0a/oracle/905_IDEMPIERE-270.sql similarity index 100% rename from migration/360lts-release/oracle/905_IDEMPIERE-270.sql rename to migration/360lts-i1.0a/oracle/905_IDEMPIERE-270.sql diff --git a/migration/360lts-release/oracle/906_IDEMPIERE-403.sql b/migration/360lts-i1.0a/oracle/906_IDEMPIERE-403.sql similarity index 100% rename from migration/360lts-release/oracle/906_IDEMPIERE-403.sql rename to migration/360lts-i1.0a/oracle/906_IDEMPIERE-403.sql diff --git a/migration/360lts-release/oracle/907_IDEMPIERE-375.sql b/migration/360lts-i1.0a/oracle/907_IDEMPIERE-375.sql similarity index 100% rename from migration/360lts-release/oracle/907_IDEMPIERE-375.sql rename to migration/360lts-i1.0a/oracle/907_IDEMPIERE-375.sql diff --git a/migration/360lts-release/oracle/908_Process_Message.sql b/migration/360lts-i1.0a/oracle/908_Process_Message.sql similarity index 100% rename from migration/360lts-release/oracle/908_Process_Message.sql rename to migration/360lts-i1.0a/oracle/908_Process_Message.sql diff --git a/migration/360lts-release/oracle/909_IDEMPIERE-375.sql b/migration/360lts-i1.0a/oracle/909_IDEMPIERE-375.sql similarity index 100% rename from migration/360lts-release/oracle/909_IDEMPIERE-375.sql rename to migration/360lts-i1.0a/oracle/909_IDEMPIERE-375.sql diff --git a/migration/360lts-release/oracle/910_IDEMPIERE-375.sql b/migration/360lts-i1.0a/oracle/910_IDEMPIERE-375.sql similarity index 100% rename from migration/360lts-release/oracle/910_IDEMPIERE-375.sql rename to migration/360lts-i1.0a/oracle/910_IDEMPIERE-375.sql diff --git a/migration/360lts-release/oracle/911_IDEMPIERE-366.sql b/migration/360lts-i1.0a/oracle/911_IDEMPIERE-366.sql similarity index 100% rename from migration/360lts-release/oracle/911_IDEMPIERE-366.sql rename to migration/360lts-i1.0a/oracle/911_IDEMPIERE-366.sql diff --git a/migration/360lts-release/oracle/912_IDEMPIERE_391.sql b/migration/360lts-i1.0a/oracle/912_IDEMPIERE_391.sql similarity index 100% rename from migration/360lts-release/oracle/912_IDEMPIERE_391.sql rename to migration/360lts-i1.0a/oracle/912_IDEMPIERE_391.sql diff --git a/migration/360lts-release/oracle/913_IDEMPIERE-374.sql b/migration/360lts-i1.0a/oracle/913_IDEMPIERE-374.sql similarity index 100% rename from migration/360lts-release/oracle/913_IDEMPIERE-374.sql rename to migration/360lts-i1.0a/oracle/913_IDEMPIERE-374.sql diff --git a/migration/360lts-release/oracle/914_IDEMPIERE-362.sql b/migration/360lts-i1.0a/oracle/914_IDEMPIERE-362.sql similarity index 100% rename from migration/360lts-release/oracle/914_IDEMPIERE-362.sql rename to migration/360lts-i1.0a/oracle/914_IDEMPIERE-362.sql diff --git a/migration/360lts-release/oracle/915_IDEMPIERE-362.sql b/migration/360lts-i1.0a/oracle/915_IDEMPIERE-362.sql similarity index 100% rename from migration/360lts-release/oracle/915_IDEMPIERE-362.sql rename to migration/360lts-i1.0a/oracle/915_IDEMPIERE-362.sql diff --git a/migration/360lts-release/oracle/916_IDEMPIERE-362.sql b/migration/360lts-i1.0a/oracle/916_IDEMPIERE-362.sql similarity index 100% rename from migration/360lts-release/oracle/916_IDEMPIERE-362.sql rename to migration/360lts-i1.0a/oracle/916_IDEMPIERE-362.sql diff --git a/migration/360lts-release/oracle/917_IDEMPIERE-366.sql b/migration/360lts-i1.0a/oracle/917_IDEMPIERE-366.sql similarity index 100% rename from migration/360lts-release/oracle/917_IDEMPIERE-366.sql rename to migration/360lts-i1.0a/oracle/917_IDEMPIERE-366.sql diff --git a/migration/360lts-release/oracle/918_IDEMPIERE-207.sql b/migration/360lts-i1.0a/oracle/918_IDEMPIERE-207.sql similarity index 100% rename from migration/360lts-release/oracle/918_IDEMPIERE-207.sql rename to migration/360lts-i1.0a/oracle/918_IDEMPIERE-207.sql diff --git a/migration/360lts-release/oracle/919_IDEMPIERE-373_User_Locking.sql b/migration/360lts-i1.0a/oracle/919_IDEMPIERE-373_User_Locking.sql similarity index 100% rename from migration/360lts-release/oracle/919_IDEMPIERE-373_User_Locking.sql rename to migration/360lts-i1.0a/oracle/919_IDEMPIERE-373_User_Locking.sql diff --git a/migration/360lts-release/oracle/920_IDEMPIERE_366.sql b/migration/360lts-i1.0a/oracle/920_IDEMPIERE_366.sql similarity index 100% rename from migration/360lts-release/oracle/920_IDEMPIERE_366.sql rename to migration/360lts-i1.0a/oracle/920_IDEMPIERE_366.sql diff --git a/migration/360lts-release/oracle/921_IDEMPIERE-422_NativeSequence.sql b/migration/360lts-i1.0a/oracle/921_IDEMPIERE-422_NativeSequence.sql similarity index 100% rename from migration/360lts-release/oracle/921_IDEMPIERE-422_NativeSequence.sql rename to migration/360lts-i1.0a/oracle/921_IDEMPIERE-422_NativeSequence.sql diff --git a/migration/360lts-release/oracle/922_IDEMPIERE-362.sql b/migration/360lts-i1.0a/oracle/922_IDEMPIERE-362.sql similarity index 100% rename from migration/360lts-release/oracle/922_IDEMPIERE-362.sql rename to migration/360lts-i1.0a/oracle/922_IDEMPIERE-362.sql diff --git a/migration/360lts-release/oracle/923_PlaceHolder.sql b/migration/360lts-i1.0a/oracle/923_PlaceHolder.sql similarity index 100% rename from migration/360lts-release/oracle/923_PlaceHolder.sql rename to migration/360lts-i1.0a/oracle/923_PlaceHolder.sql diff --git a/migration/360lts-release/oracle/924_IDEMPIERE-447.sql b/migration/360lts-i1.0a/oracle/924_IDEMPIERE-447.sql similarity index 100% rename from migration/360lts-release/oracle/924_IDEMPIERE-447.sql rename to migration/360lts-i1.0a/oracle/924_IDEMPIERE-447.sql diff --git a/migration/360lts-release/oracle/925_PlaceHolder.sql b/migration/360lts-i1.0a/oracle/925_PlaceHolder.sql similarity index 100% rename from migration/360lts-release/oracle/925_PlaceHolder.sql rename to migration/360lts-i1.0a/oracle/925_PlaceHolder.sql diff --git a/migration/360lts-release/oracle/926_PlaceHolder.sql b/migration/360lts-i1.0a/oracle/926_PlaceHolder.sql similarity index 100% rename from migration/360lts-release/oracle/926_PlaceHolder.sql rename to migration/360lts-i1.0a/oracle/926_PlaceHolder.sql diff --git a/migration/360lts-release/oracle/927_IDEMPIERE-388.sql b/migration/360lts-i1.0a/oracle/927_IDEMPIERE-388.sql similarity index 100% rename from migration/360lts-release/oracle/927_IDEMPIERE-388.sql rename to migration/360lts-i1.0a/oracle/927_IDEMPIERE-388.sql diff --git a/migration/360lts-release/oracle/928_IDEMPIERE-454.sql b/migration/360lts-i1.0a/oracle/928_IDEMPIERE-454.sql similarity index 100% rename from migration/360lts-release/oracle/928_IDEMPIERE-454.sql rename to migration/360lts-i1.0a/oracle/928_IDEMPIERE-454.sql diff --git a/migration/360lts-release/oracle/929_IDEMPIERE-458.sql b/migration/360lts-i1.0a/oracle/929_IDEMPIERE-458.sql similarity index 100% rename from migration/360lts-release/oracle/929_IDEMPIERE-458.sql rename to migration/360lts-i1.0a/oracle/929_IDEMPIERE-458.sql diff --git a/migration/360lts-release/oracle/930_IDEMPIERE-369.sql b/migration/360lts-i1.0a/oracle/930_IDEMPIERE-369.sql similarity index 100% rename from migration/360lts-release/oracle/930_IDEMPIERE-369.sql rename to migration/360lts-i1.0a/oracle/930_IDEMPIERE-369.sql diff --git a/migration/360lts-release/oracle/931_IDEMPIERE-375.sql b/migration/360lts-i1.0a/oracle/931_IDEMPIERE-375.sql similarity index 100% rename from migration/360lts-release/oracle/931_IDEMPIERE-375.sql rename to migration/360lts-i1.0a/oracle/931_IDEMPIERE-375.sql diff --git a/migration/360lts-release/oracle/932_IDEMPIERE-446.sql b/migration/360lts-i1.0a/oracle/932_IDEMPIERE-446.sql similarity index 100% rename from migration/360lts-release/oracle/932_IDEMPIERE-446.sql rename to migration/360lts-i1.0a/oracle/932_IDEMPIERE-446.sql diff --git a/migration/360lts-release/oracle/933_CreditCardsOnline.sql b/migration/360lts-i1.0a/oracle/933_CreditCardsOnline.sql similarity index 100% rename from migration/360lts-release/oracle/933_CreditCardsOnline.sql rename to migration/360lts-i1.0a/oracle/933_CreditCardsOnline.sql diff --git a/migration/360lts-release/oracle/934_IDEMPIERE-389.sql b/migration/360lts-i1.0a/oracle/934_IDEMPIERE-389.sql similarity index 100% rename from migration/360lts-release/oracle/934_IDEMPIERE-389.sql rename to migration/360lts-i1.0a/oracle/934_IDEMPIERE-389.sql diff --git a/migration/360lts-release/oracle/935_IDEMPIERE-293.sql b/migration/360lts-i1.0a/oracle/935_IDEMPIERE-293.sql similarity index 100% rename from migration/360lts-release/oracle/935_IDEMPIERE-293.sql rename to migration/360lts-i1.0a/oracle/935_IDEMPIERE-293.sql diff --git a/migration/360lts-release/oracle/936_IDEMPIERE-389_ServerName_Field.sql b/migration/360lts-i1.0a/oracle/936_IDEMPIERE-389_ServerName_Field.sql similarity index 100% rename from migration/360lts-release/oracle/936_IDEMPIERE-389_ServerName_Field.sql rename to migration/360lts-i1.0a/oracle/936_IDEMPIERE-389_ServerName_Field.sql diff --git a/migration/360lts-release/oracle/937_PlaceHolder.sql b/migration/360lts-i1.0a/oracle/937_PlaceHolder.sql similarity index 100% rename from migration/360lts-release/oracle/937_PlaceHolder.sql rename to migration/360lts-i1.0a/oracle/937_PlaceHolder.sql diff --git a/migration/360lts-release/oracle/938_IDEMPIERE-234.sql b/migration/360lts-i1.0a/oracle/938_IDEMPIERE-234.sql similarity index 100% rename from migration/360lts-release/oracle/938_IDEMPIERE-234.sql rename to migration/360lts-i1.0a/oracle/938_IDEMPIERE-234.sql diff --git a/migration/360lts-release/oracle/939_IDEMPIERE-447.sql b/migration/360lts-i1.0a/oracle/939_IDEMPIERE-447.sql similarity index 100% rename from migration/360lts-release/oracle/939_IDEMPIERE-447.sql rename to migration/360lts-i1.0a/oracle/939_IDEMPIERE-447.sql diff --git a/migration/360lts-release/oracle/940_IDEMPIERE-392.sql b/migration/360lts-i1.0a/oracle/940_IDEMPIERE-392.sql similarity index 100% rename from migration/360lts-release/oracle/940_IDEMPIERE-392.sql rename to migration/360lts-i1.0a/oracle/940_IDEMPIERE-392.sql diff --git a/migration/360lts-release/oracle/941_IDEMPIERE-158.sql b/migration/360lts-i1.0a/oracle/941_IDEMPIERE-158.sql similarity index 100% rename from migration/360lts-release/oracle/941_IDEMPIERE-158.sql rename to migration/360lts-i1.0a/oracle/941_IDEMPIERE-158.sql diff --git a/migration/360lts-release/oracle/942_IDEMPIERE-366.sql b/migration/360lts-i1.0a/oracle/942_IDEMPIERE-366.sql similarity index 100% rename from migration/360lts-release/oracle/942_IDEMPIERE-366.sql rename to migration/360lts-i1.0a/oracle/942_IDEMPIERE-366.sql diff --git a/migration/360lts-release/oracle/943_IDEMPIERE-466.sql b/migration/360lts-i1.0a/oracle/943_IDEMPIERE-466.sql similarity index 100% rename from migration/360lts-release/oracle/943_IDEMPIERE-466.sql rename to migration/360lts-i1.0a/oracle/943_IDEMPIERE-466.sql diff --git a/migration/360lts-release/oracle/944_IDEMPIERE-293.sql b/migration/360lts-i1.0a/oracle/944_IDEMPIERE-293.sql similarity index 100% rename from migration/360lts-release/oracle/944_IDEMPIERE-293.sql rename to migration/360lts-i1.0a/oracle/944_IDEMPIERE-293.sql diff --git a/migration/360lts-release/oracle/945_IDEMPIERE-197_FixedAssets.sql b/migration/360lts-i1.0a/oracle/945_IDEMPIERE-197_FixedAssets.sql similarity index 100% rename from migration/360lts-release/oracle/945_IDEMPIERE-197_FixedAssets.sql rename to migration/360lts-i1.0a/oracle/945_IDEMPIERE-197_FixedAssets.sql diff --git a/migration/360lts-release/oracle/946_IDEMPIERE-197_FixedAssets.sql b/migration/360lts-i1.0a/oracle/946_IDEMPIERE-197_FixedAssets.sql similarity index 100% rename from migration/360lts-release/oracle/946_IDEMPIERE-197_FixedAssets.sql rename to migration/360lts-i1.0a/oracle/946_IDEMPIERE-197_FixedAssets.sql diff --git a/migration/360lts-release/oracle/947_IDEMPIERE-293_UserSearchable.sql b/migration/360lts-i1.0a/oracle/947_IDEMPIERE-293_UserSearchable.sql similarity index 100% rename from migration/360lts-release/oracle/947_IDEMPIERE-293_UserSearchable.sql rename to migration/360lts-i1.0a/oracle/947_IDEMPIERE-293_UserSearchable.sql diff --git a/migration/360lts-release/oracle/948_IDEMPIERE-234.sql b/migration/360lts-i1.0a/oracle/948_IDEMPIERE-234.sql similarity index 100% rename from migration/360lts-release/oracle/948_IDEMPIERE-234.sql rename to migration/360lts-i1.0a/oracle/948_IDEMPIERE-234.sql diff --git a/migration/360lts-release/oracle/949_IDEMPIERE-265.sql b/migration/360lts-i1.0a/oracle/949_IDEMPIERE-265.sql similarity index 100% rename from migration/360lts-release/oracle/949_IDEMPIERE-265.sql rename to migration/360lts-i1.0a/oracle/949_IDEMPIERE-265.sql diff --git a/migration/360lts-release/oracle/950_IDEMPIERE-234.sql b/migration/360lts-i1.0a/oracle/950_IDEMPIERE-234.sql similarity index 100% rename from migration/360lts-release/oracle/950_IDEMPIERE-234.sql rename to migration/360lts-i1.0a/oracle/950_IDEMPIERE-234.sql diff --git a/migration/360lts-release/oracle/951_PlaceHolder.sql b/migration/360lts-i1.0a/oracle/951_PlaceHolder.sql similarity index 100% rename from migration/360lts-release/oracle/951_PlaceHolder.sql rename to migration/360lts-i1.0a/oracle/951_PlaceHolder.sql diff --git a/migration/360lts-release/oracle/952_IDEMPIERE_379.sql b/migration/360lts-i1.0a/oracle/952_IDEMPIERE_379.sql similarity index 100% rename from migration/360lts-release/oracle/952_IDEMPIERE_379.sql rename to migration/360lts-i1.0a/oracle/952_IDEMPIERE_379.sql diff --git a/migration/360lts-release/oracle/953_PlaceHolder.sql b/migration/360lts-i1.0a/oracle/953_PlaceHolder.sql similarity index 100% rename from migration/360lts-release/oracle/953_PlaceHolder.sql rename to migration/360lts-i1.0a/oracle/953_PlaceHolder.sql diff --git a/migration/360lts-release/oracle/954_UUID_Sync.sql b/migration/360lts-i1.0a/oracle/954_UUID_Sync.sql similarity index 100% rename from migration/360lts-release/oracle/954_UUID_Sync.sql rename to migration/360lts-i1.0a/oracle/954_UUID_Sync.sql diff --git a/migration/360lts-release/oracle/955_FixWrongEntityTypes.sql b/migration/360lts-i1.0a/oracle/955_FixWrongEntityTypes.sql similarity index 100% rename from migration/360lts-release/oracle/955_FixWrongEntityTypes.sql rename to migration/360lts-i1.0a/oracle/955_FixWrongEntityTypes.sql diff --git a/migration/360lts-release/oracle/956_ForeignKeys.sql b/migration/360lts-i1.0a/oracle/956_ForeignKeys.sql similarity index 100% rename from migration/360lts-release/oracle/956_ForeignKeys.sql rename to migration/360lts-i1.0a/oracle/956_ForeignKeys.sql diff --git a/migration/360lts-release/oracle/957_SetSysConfig.sql b/migration/360lts-i1.0a/oracle/957_SetSysConfig.sql similarity index 100% rename from migration/360lts-release/oracle/957_SetSysConfig.sql rename to migration/360lts-i1.0a/oracle/957_SetSysConfig.sql diff --git a/migration/360lts-release/oracle/958_Version.sql b/migration/360lts-i1.0a/oracle/958_Version.sql similarity index 100% rename from migration/360lts-release/oracle/958_Version.sql rename to migration/360lts-i1.0a/oracle/958_Version.sql diff --git a/migration/360lts-release/postgresql/738_AddZoomToUsedIn.sql b/migration/360lts-i1.0a/postgresql/738_AddZoomToUsedIn.sql similarity index 100% rename from migration/360lts-release/postgresql/738_AddZoomToUsedIn.sql rename to migration/360lts-i1.0a/postgresql/738_AddZoomToUsedIn.sql diff --git a/migration/360lts-release/postgresql/739_FixReleaseNoLength.sql b/migration/360lts-i1.0a/postgresql/739_FixReleaseNoLength.sql similarity index 100% rename from migration/360lts-release/postgresql/739_FixReleaseNoLength.sql rename to migration/360lts-i1.0a/postgresql/739_FixReleaseNoLength.sql diff --git a/migration/360lts-release/postgresql/740_FixCaptureSequenceBrazil.sql b/migration/360lts-i1.0a/postgresql/740_FixCaptureSequenceBrazil.sql similarity index 100% rename from migration/360lts-release/postgresql/740_FixCaptureSequenceBrazil.sql rename to migration/360lts-i1.0a/postgresql/740_FixCaptureSequenceBrazil.sql diff --git a/migration/360lts-release/postgresql/741_PayrollDictionaryFixes.sql b/migration/360lts-i1.0a/postgresql/741_PayrollDictionaryFixes.sql similarity index 100% rename from migration/360lts-release/postgresql/741_PayrollDictionaryFixes.sql rename to migration/360lts-i1.0a/postgresql/741_PayrollDictionaryFixes.sql diff --git a/migration/360lts-release/postgresql/742_FR2878276_ImportPayroll.sql b/migration/360lts-i1.0a/postgresql/742_FR2878276_ImportPayroll.sql similarity index 100% rename from migration/360lts-release/postgresql/742_FR2878276_ImportPayroll.sql rename to migration/360lts-i1.0a/postgresql/742_FR2878276_ImportPayroll.sql diff --git a/migration/360lts-release/postgresql/743_FixOrderLineTaxVT.sql b/migration/360lts-i1.0a/postgresql/743_FixOrderLineTaxVT.sql similarity index 100% rename from migration/360lts-release/postgresql/743_FixOrderLineTaxVT.sql rename to migration/360lts-i1.0a/postgresql/743_FixOrderLineTaxVT.sql diff --git a/migration/360lts-release/postgresql/744_FixFR2897194_Adv_Zoom.sql b/migration/360lts-i1.0a/postgresql/744_FixFR2897194_Adv_Zoom.sql similarity index 100% rename from migration/360lts-release/postgresql/744_FixFR2897194_Adv_Zoom.sql rename to migration/360lts-i1.0a/postgresql/744_FixFR2897194_Adv_Zoom.sql diff --git a/migration/360lts-release/postgresql/745_FixWrongEntityTypes.sql b/migration/360lts-i1.0a/postgresql/745_FixWrongEntityTypes.sql similarity index 100% rename from migration/360lts-release/postgresql/745_FixWrongEntityTypes.sql rename to migration/360lts-i1.0a/postgresql/745_FixWrongEntityTypes.sql diff --git a/migration/360lts-release/postgresql/746_FR3090719.sql b/migration/360lts-i1.0a/postgresql/746_FR3090719.sql similarity index 100% rename from migration/360lts-release/postgresql/746_FR3090719.sql rename to migration/360lts-i1.0a/postgresql/746_FR3090719.sql diff --git a/migration/360lts-release/postgresql/747_FixAccountNames.sql b/migration/360lts-i1.0a/postgresql/747_FixAccountNames.sql similarity index 100% rename from migration/360lts-release/postgresql/747_FixAccountNames.sql rename to migration/360lts-i1.0a/postgresql/747_FixAccountNames.sql diff --git a/migration/360lts-release/postgresql/748_BF3110938.sql b/migration/360lts-i1.0a/postgresql/748_BF3110938.sql similarity index 100% rename from migration/360lts-release/postgresql/748_BF3110938.sql rename to migration/360lts-i1.0a/postgresql/748_BF3110938.sql diff --git a/migration/360lts-release/postgresql/749_BF3116131.sql b/migration/360lts-i1.0a/postgresql/749_BF3116131.sql similarity index 100% rename from migration/360lts-release/postgresql/749_BF3116131.sql rename to migration/360lts-i1.0a/postgresql/749_BF3116131.sql diff --git a/migration/360lts-release/postgresql/750_BF2904321.sql b/migration/360lts-i1.0a/postgresql/750_BF2904321.sql similarity index 100% rename from migration/360lts-release/postgresql/750_BF2904321.sql rename to migration/360lts-i1.0a/postgresql/750_BF2904321.sql diff --git a/migration/360lts-release/postgresql/751_DisallowNegativeInventory.sql b/migration/360lts-i1.0a/postgresql/751_DisallowNegativeInventory.sql similarity index 100% rename from migration/360lts-release/postgresql/751_DisallowNegativeInventory.sql rename to migration/360lts-i1.0a/postgresql/751_DisallowNegativeInventory.sql diff --git a/migration/360lts-release/postgresql/752_FR3123769_Role_AmtApprovalAccum.sql b/migration/360lts-i1.0a/postgresql/752_FR3123769_Role_AmtApprovalAccum.sql similarity index 100% rename from migration/360lts-release/postgresql/752_FR3123769_Role_AmtApprovalAccum.sql rename to migration/360lts-i1.0a/postgresql/752_FR3123769_Role_AmtApprovalAccum.sql diff --git a/migration/360lts-release/postgresql/753_FixTypoInDemoData.sql b/migration/360lts-i1.0a/postgresql/753_FixTypoInDemoData.sql similarity index 100% rename from migration/360lts-release/postgresql/753_FixTypoInDemoData.sql rename to migration/360lts-i1.0a/postgresql/753_FixTypoInDemoData.sql diff --git a/migration/360lts-release/postgresql/754_TranslateDashboardTitles.sql b/migration/360lts-i1.0a/postgresql/754_TranslateDashboardTitles.sql similarity index 100% rename from migration/360lts-release/postgresql/754_TranslateDashboardTitles.sql rename to migration/360lts-i1.0a/postgresql/754_TranslateDashboardTitles.sql diff --git a/migration/360lts-release/postgresql/755_BF3063575.sql b/migration/360lts-i1.0a/postgresql/755_BF3063575.sql similarity index 100% rename from migration/360lts-release/postgresql/755_BF3063575.sql rename to migration/360lts-i1.0a/postgresql/755_BF3063575.sql diff --git a/migration/360lts-release/postgresql/756_EnableVendorBreakForSales.sql b/migration/360lts-i1.0a/postgresql/756_EnableVendorBreakForSales.sql similarity index 100% rename from migration/360lts-release/postgresql/756_EnableVendorBreakForSales.sql rename to migration/360lts-i1.0a/postgresql/756_EnableVendorBreakForSales.sql diff --git a/migration/360lts-release/postgresql/757_FR3132033.sql b/migration/360lts-i1.0a/postgresql/757_FR3132033.sql similarity index 100% rename from migration/360lts-release/postgresql/757_FR3132033.sql rename to migration/360lts-i1.0a/postgresql/757_FR3132033.sql diff --git a/migration/360lts-release/postgresql/758_FR3132075.sql b/migration/360lts-i1.0a/postgresql/758_FR3132075.sql similarity index 100% rename from migration/360lts-release/postgresql/758_FR3132075.sql rename to migration/360lts-i1.0a/postgresql/758_FR3132075.sql diff --git a/migration/360lts-release/postgresql/759_FS01_FR3132687.sql b/migration/360lts-i1.0a/postgresql/759_FS01_FR3132687.sql similarity index 100% rename from migration/360lts-release/postgresql/759_FS01_FR3132687.sql rename to migration/360lts-i1.0a/postgresql/759_FS01_FR3132687.sql diff --git a/migration/360lts-release/postgresql/760_FR3132797.sql b/migration/360lts-i1.0a/postgresql/760_FR3132797.sql similarity index 100% rename from migration/360lts-release/postgresql/760_FR3132797.sql rename to migration/360lts-i1.0a/postgresql/760_FR3132797.sql diff --git a/migration/360lts-release/postgresql/761_FixClearMessage.sql b/migration/360lts-i1.0a/postgresql/761_FixClearMessage.sql similarity index 100% rename from migration/360lts-release/postgresql/761_FixClearMessage.sql rename to migration/360lts-i1.0a/postgresql/761_FixClearMessage.sql diff --git a/migration/360lts-release/postgresql/762_Fix1913092.sql b/migration/360lts-i1.0a/postgresql/762_Fix1913092.sql similarity index 100% rename from migration/360lts-release/postgresql/762_Fix1913092.sql rename to migration/360lts-i1.0a/postgresql/762_Fix1913092.sql diff --git a/migration/360lts-release/postgresql/763_ScheduleWithRecordID.sql b/migration/360lts-i1.0a/postgresql/763_ScheduleWithRecordID.sql similarity index 100% rename from migration/360lts-release/postgresql/763_ScheduleWithRecordID.sql rename to migration/360lts-i1.0a/postgresql/763_ScheduleWithRecordID.sql diff --git a/migration/360lts-release/postgresql/764_TranslateZkReportViewer.sql b/migration/360lts-i1.0a/postgresql/764_TranslateZkReportViewer.sql similarity index 100% rename from migration/360lts-release/postgresql/764_TranslateZkReportViewer.sql rename to migration/360lts-i1.0a/postgresql/764_TranslateZkReportViewer.sql diff --git a/migration/360lts-release/postgresql/765_FixZkMessage.sql b/migration/360lts-i1.0a/postgresql/765_FixZkMessage.sql similarity index 100% rename from migration/360lts-release/postgresql/765_FixZkMessage.sql rename to migration/360lts-i1.0a/postgresql/765_FixZkMessage.sql diff --git a/migration/360lts-release/postgresql/766_738_FR3016592_SpecifySelectionColumns.sql b/migration/360lts-i1.0a/postgresql/766_738_FR3016592_SpecifySelectionColumns.sql similarity index 100% rename from migration/360lts-release/postgresql/766_738_FR3016592_SpecifySelectionColumns.sql rename to migration/360lts-i1.0a/postgresql/766_738_FR3016592_SpecifySelectionColumns.sql diff --git a/migration/360lts-release/postgresql/767_745_FR3016592_SpecifySelectionColumns.sql b/migration/360lts-i1.0a/postgresql/767_745_FR3016592_SpecifySelectionColumns.sql similarity index 100% rename from migration/360lts-release/postgresql/767_745_FR3016592_SpecifySelectionColumns.sql rename to migration/360lts-i1.0a/postgresql/767_745_FR3016592_SpecifySelectionColumns.sql diff --git a/migration/360lts-release/postgresql/768_741_BF3018013_FixSystemColorWindow.sql b/migration/360lts-i1.0a/postgresql/768_741_BF3018013_FixSystemColorWindow.sql similarity index 100% rename from migration/360lts-release/postgresql/768_741_BF3018013_FixSystemColorWindow.sql rename to migration/360lts-i1.0a/postgresql/768_741_BF3018013_FixSystemColorWindow.sql diff --git a/migration/360lts-release/postgresql/769_749_BF3075201_PP_RV_MRP.sql b/migration/360lts-i1.0a/postgresql/769_749_BF3075201_PP_RV_MRP.sql similarity index 100% rename from migration/360lts-release/postgresql/769_749_BF3075201_PP_RV_MRP.sql rename to migration/360lts-i1.0a/postgresql/769_749_BF3075201_PP_RV_MRP.sql diff --git a/migration/360lts-release/postgresql/770_750_BF3016214_PrintMO.sql b/migration/360lts-i1.0a/postgresql/770_750_BF3016214_PrintMO.sql similarity index 100% rename from migration/360lts-release/postgresql/770_750_BF3016214_PrintMO.sql rename to migration/360lts-i1.0a/postgresql/770_750_BF3016214_PrintMO.sql diff --git a/migration/360lts-release/postgresql/771_772_BF3137399_DateTimeforParameter.sql b/migration/360lts-i1.0a/postgresql/771_772_BF3137399_DateTimeforParameter.sql similarity index 100% rename from migration/360lts-release/postgresql/771_772_BF3137399_DateTimeforParameter.sql rename to migration/360lts-i1.0a/postgresql/771_772_BF3137399_DateTimeforParameter.sql diff --git a/migration/360lts-release/postgresql/772_BF3139066.sql b/migration/360lts-i1.0a/postgresql/772_BF3139066.sql similarity index 100% rename from migration/360lts-release/postgresql/772_BF3139066.sql rename to migration/360lts-i1.0a/postgresql/772_BF3139066.sql diff --git a/migration/360lts-release/postgresql/773_756_FR3039241_RussianRegions.sql b/migration/360lts-i1.0a/postgresql/773_756_FR3039241_RussianRegions.sql similarity index 100% rename from migration/360lts-release/postgresql/773_756_FR3039241_RussianRegions.sql rename to migration/360lts-i1.0a/postgresql/773_756_FR3039241_RussianRegions.sql diff --git a/migration/360lts-release/postgresql/774_FR3039241_RussianRegionsFix.sql b/migration/360lts-i1.0a/postgresql/774_FR3039241_RussianRegionsFix.sql similarity index 100% rename from migration/360lts-release/postgresql/774_FR3039241_RussianRegionsFix.sql rename to migration/360lts-i1.0a/postgresql/774_FR3039241_RussianRegionsFix.sql diff --git a/migration/360lts-release/postgresql/775_DisallowNegativeInventory.sql b/migration/360lts-i1.0a/postgresql/775_DisallowNegativeInventory.sql similarity index 100% rename from migration/360lts-release/postgresql/775_DisallowNegativeInventory.sql rename to migration/360lts-i1.0a/postgresql/775_DisallowNegativeInventory.sql diff --git a/migration/360lts-release/postgresql/776_103_BF1713137.sql b/migration/360lts-i1.0a/postgresql/776_103_BF1713137.sql similarity index 100% rename from migration/360lts-release/postgresql/776_103_BF1713137.sql rename to migration/360lts-i1.0a/postgresql/776_103_BF1713137.sql diff --git a/migration/360lts-release/postgresql/777_FR1782412_WrongColumnType.sql b/migration/360lts-i1.0a/postgresql/777_FR1782412_WrongColumnType.sql similarity index 100% rename from migration/360lts-release/postgresql/777_FR1782412_WrongColumnType.sql rename to migration/360lts-i1.0a/postgresql/777_FR1782412_WrongColumnType.sql diff --git a/migration/360lts-release/postgresql/778_FR2052471.sql b/migration/360lts-i1.0a/postgresql/778_FR2052471.sql similarity index 100% rename from migration/360lts-release/postgresql/778_FR2052471.sql rename to migration/360lts-i1.0a/postgresql/778_FR2052471.sql diff --git a/migration/360lts-release/postgresql/779_FR3159054_2011PeriodsGW.sql b/migration/360lts-i1.0a/postgresql/779_FR3159054_2011PeriodsGW.sql similarity index 100% rename from migration/360lts-release/postgresql/779_FR3159054_2011PeriodsGW.sql rename to migration/360lts-i1.0a/postgresql/779_FR3159054_2011PeriodsGW.sql diff --git a/migration/360lts-release/postgresql/780_BF2866216_drop_c_allocationline_posted.sql b/migration/360lts-i1.0a/postgresql/780_BF2866216_drop_c_allocationline_posted.sql similarity index 100% rename from migration/360lts-release/postgresql/780_BF2866216_drop_c_allocationline_posted.sql rename to migration/360lts-i1.0a/postgresql/780_BF2866216_drop_c_allocationline_posted.sql diff --git a/migration/360lts-release/postgresql/781_FR2851987LogoInPaySelectionCheck.sql b/migration/360lts-i1.0a/postgresql/781_FR2851987LogoInPaySelectionCheck.sql similarity index 100% rename from migration/360lts-release/postgresql/781_FR2851987LogoInPaySelectionCheck.sql rename to migration/360lts-i1.0a/postgresql/781_FR2851987LogoInPaySelectionCheck.sql diff --git a/migration/360lts-release/postgresql/782_AddColumnsPaySelectionCheck.sql b/migration/360lts-i1.0a/postgresql/782_AddColumnsPaySelectionCheck.sql similarity index 100% rename from migration/360lts-release/postgresql/782_AddColumnsPaySelectionCheck.sql rename to migration/360lts-i1.0a/postgresql/782_AddColumnsPaySelectionCheck.sql diff --git a/migration/360lts-release/postgresql/783_761_FixClearMessage.sql b/migration/360lts-i1.0a/postgresql/783_761_FixClearMessage.sql similarity index 100% rename from migration/360lts-release/postgresql/783_761_FixClearMessage.sql rename to migration/360lts-i1.0a/postgresql/783_761_FixClearMessage.sql diff --git a/migration/360lts-release/postgresql/784_739_FR3015882_CopyProduct.sql b/migration/360lts-i1.0a/postgresql/784_739_FR3015882_CopyProduct.sql similarity index 100% rename from migration/360lts-release/postgresql/784_739_FR3015882_CopyProduct.sql rename to migration/360lts-i1.0a/postgresql/784_739_FR3015882_CopyProduct.sql diff --git a/migration/360lts-release/postgresql/785_744_FR3018857_ImporterInventoryMove.sql b/migration/360lts-i1.0a/postgresql/785_744_FR3018857_ImporterInventoryMove.sql similarity index 100% rename from migration/360lts-release/postgresql/785_744_FR3018857_ImporterInventoryMove.sql rename to migration/360lts-i1.0a/postgresql/785_744_FR3018857_ImporterInventoryMove.sql diff --git a/migration/360lts-release/postgresql/786_FR3018857_FixImporterInventoryMove.sql b/migration/360lts-i1.0a/postgresql/786_FR3018857_FixImporterInventoryMove.sql similarity index 100% rename from migration/360lts-release/postgresql/786_FR3018857_FixImporterInventoryMove.sql rename to migration/360lts-i1.0a/postgresql/786_FR3018857_FixImporterInventoryMove.sql diff --git a/migration/360lts-release/postgresql/787_418_BF2583992.sql b/migration/360lts-i1.0a/postgresql/787_418_BF2583992.sql similarity index 100% rename from migration/360lts-release/postgresql/787_418_BF2583992.sql rename to migration/360lts-i1.0a/postgresql/787_418_BF2583992.sql diff --git a/migration/360lts-release/postgresql/788_UUIDGenerator.sql b/migration/360lts-i1.0a/postgresql/788_UUIDGenerator.sql similarity index 100% rename from migration/360lts-release/postgresql/788_UUIDGenerator.sql rename to migration/360lts-i1.0a/postgresql/788_UUIDGenerator.sql diff --git a/migration/360lts-release/postgresql/789_GenerateUUIDColumns.sql b/migration/360lts-i1.0a/postgresql/789_GenerateUUIDColumns.sql similarity index 100% rename from migration/360lts-release/postgresql/789_GenerateUUIDColumns.sql rename to migration/360lts-i1.0a/postgresql/789_GenerateUUIDColumns.sql diff --git a/migration/360lts-release/postgresql/790_FixWrongOfficialIDs.sql b/migration/360lts-i1.0a/postgresql/790_FixWrongOfficialIDs.sql similarity index 100% rename from migration/360lts-release/postgresql/790_FixWrongOfficialIDs.sql rename to migration/360lts-i1.0a/postgresql/790_FixWrongOfficialIDs.sql diff --git a/migration/360lts-release/postgresql/791_FillUUIDPrimaryTables.sql b/migration/360lts-i1.0a/postgresql/791_FillUUIDPrimaryTables.sql similarity index 100% rename from migration/360lts-release/postgresql/791_FillUUIDPrimaryTables.sql rename to migration/360lts-i1.0a/postgresql/791_FillUUIDPrimaryTables.sql diff --git a/migration/360lts-release/postgresql/792_FixDictionaryError.sql b/migration/360lts-i1.0a/postgresql/792_FixDictionaryError.sql similarity index 100% rename from migration/360lts-release/postgresql/792_FixDictionaryError.sql rename to migration/360lts-i1.0a/postgresql/792_FixDictionaryError.sql diff --git a/migration/360lts-release/postgresql/793_FillUUIDChildrenTables.sql b/migration/360lts-i1.0a/postgresql/793_FillUUIDChildrenTables.sql similarity index 100% rename from migration/360lts-release/postgresql/793_FillUUIDChildrenTables.sql rename to migration/360lts-i1.0a/postgresql/793_FillUUIDChildrenTables.sql diff --git a/migration/360lts-release/postgresql/794_791_BF3214377_FixFirstOf.sql b/migration/360lts-i1.0a/postgresql/794_791_BF3214377_FixFirstOf.sql similarity index 100% rename from migration/360lts-release/postgresql/794_791_BF3214377_FixFirstOf.sql rename to migration/360lts-i1.0a/postgresql/794_791_BF3214377_FixFirstOf.sql diff --git a/migration/360lts-release/postgresql/795_NewMessages.sql b/migration/360lts-i1.0a/postgresql/795_NewMessages.sql similarity index 100% rename from migration/360lts-release/postgresql/795_NewMessages.sql rename to migration/360lts-i1.0a/postgresql/795_NewMessages.sql diff --git a/migration/360lts-release/postgresql/796_FixProductBOMCore.sql b/migration/360lts-i1.0a/postgresql/796_FixProductBOMCore.sql similarity index 100% rename from migration/360lts-release/postgresql/796_FixProductBOMCore.sql rename to migration/360lts-i1.0a/postgresql/796_FixProductBOMCore.sql diff --git a/migration/360lts-release/postgresql/797_MessageIdempiere42.sql b/migration/360lts-i1.0a/postgresql/797_MessageIdempiere42.sql similarity index 100% rename from migration/360lts-release/postgresql/797_MessageIdempiere42.sql rename to migration/360lts-i1.0a/postgresql/797_MessageIdempiere42.sql diff --git a/migration/360lts-release/postgresql/798_IDEMPIERE-45.sql b/migration/360lts-i1.0a/postgresql/798_IDEMPIERE-45.sql similarity index 100% rename from migration/360lts-release/postgresql/798_IDEMPIERE-45.sql rename to migration/360lts-i1.0a/postgresql/798_IDEMPIERE-45.sql diff --git a/migration/360lts-release/postgresql/799_AddColumnsPaySelectionCheck.sql b/migration/360lts-i1.0a/postgresql/799_AddColumnsPaySelectionCheck.sql similarity index 100% rename from migration/360lts-release/postgresql/799_AddColumnsPaySelectionCheck.sql rename to migration/360lts-i1.0a/postgresql/799_AddColumnsPaySelectionCheck.sql diff --git a/migration/360lts-release/postgresql/800_FR2979756_AdaxaPOS.sql b/migration/360lts-i1.0a/postgresql/800_FR2979756_AdaxaPOS.sql similarity index 100% rename from migration/360lts-release/postgresql/800_FR2979756_AdaxaPOS.sql rename to migration/360lts-i1.0a/postgresql/800_FR2979756_AdaxaPOS.sql diff --git a/migration/360lts-release/postgresql/801_FR2979756_AdaxaPOS.sql b/migration/360lts-i1.0a/postgresql/801_FR2979756_AdaxaPOS.sql similarity index 100% rename from migration/360lts-release/postgresql/801_FR2979756_AdaxaPOS.sql rename to migration/360lts-i1.0a/postgresql/801_FR2979756_AdaxaPOS.sql diff --git a/migration/360lts-release/postgresql/802_FR2979756_AdaxaPOS.sql b/migration/360lts-i1.0a/postgresql/802_FR2979756_AdaxaPOS.sql similarity index 100% rename from migration/360lts-release/postgresql/802_FR2979756_AdaxaPOS.sql rename to migration/360lts-i1.0a/postgresql/802_FR2979756_AdaxaPOS.sql diff --git a/migration/360lts-release/postgresql/803_FK_POS_BF2975308_FR2979756.sql b/migration/360lts-i1.0a/postgresql/803_FK_POS_BF2975308_FR2979756.sql similarity index 100% rename from migration/360lts-release/postgresql/803_FK_POS_BF2975308_FR2979756.sql rename to migration/360lts-i1.0a/postgresql/803_FK_POS_BF2975308_FR2979756.sql diff --git a/migration/360lts-release/postgresql/804_IDEMPIERE67_IsAllowCopy.sql b/migration/360lts-i1.0a/postgresql/804_IDEMPIERE67_IsAllowCopy.sql similarity index 100% rename from migration/360lts-release/postgresql/804_IDEMPIERE67_IsAllowCopy.sql rename to migration/360lts-i1.0a/postgresql/804_IDEMPIERE67_IsAllowCopy.sql diff --git a/migration/360lts-release/postgresql/805_IDEMPIERE23.sql b/migration/360lts-i1.0a/postgresql/805_IDEMPIERE23.sql similarity index 100% rename from migration/360lts-release/postgresql/805_IDEMPIERE23.sql rename to migration/360lts-i1.0a/postgresql/805_IDEMPIERE23.sql diff --git a/migration/360lts-release/postgresql/806_IDEMPIERE65.sql b/migration/360lts-i1.0a/postgresql/806_IDEMPIERE65.sql similarity index 100% rename from migration/360lts-release/postgresql/806_IDEMPIERE65.sql rename to migration/360lts-i1.0a/postgresql/806_IDEMPIERE65.sql diff --git a/migration/360lts-release/postgresql/807_EnableWorkflowProcessClient.sql b/migration/360lts-i1.0a/postgresql/807_EnableWorkflowProcessClient.sql similarity index 100% rename from migration/360lts-release/postgresql/807_EnableWorkflowProcessClient.sql rename to migration/360lts-i1.0a/postgresql/807_EnableWorkflowProcessClient.sql diff --git a/migration/360lts-release/postgresql/808_IDEMPIERE-98.sql b/migration/360lts-i1.0a/postgresql/808_IDEMPIERE-98.sql similarity index 100% rename from migration/360lts-release/postgresql/808_IDEMPIERE-98.sql rename to migration/360lts-i1.0a/postgresql/808_IDEMPIERE-98.sql diff --git a/migration/360lts-release/postgresql/809_IDEMPIERE23.sql b/migration/360lts-i1.0a/postgresql/809_IDEMPIERE23.sql similarity index 100% rename from migration/360lts-release/postgresql/809_IDEMPIERE23.sql rename to migration/360lts-i1.0a/postgresql/809_IDEMPIERE23.sql diff --git a/migration/360lts-release/postgresql/810_NewCentralizedID.sql b/migration/360lts-i1.0a/postgresql/810_NewCentralizedID.sql similarity index 100% rename from migration/360lts-release/postgresql/810_NewCentralizedID.sql rename to migration/360lts-i1.0a/postgresql/810_NewCentralizedID.sql diff --git a/migration/360lts-release/postgresql/811_IDEMPIERE-126.sql b/migration/360lts-i1.0a/postgresql/811_IDEMPIERE-126.sql similarity index 100% rename from migration/360lts-release/postgresql/811_IDEMPIERE-126.sql rename to migration/360lts-i1.0a/postgresql/811_IDEMPIERE-126.sql diff --git a/migration/360lts-release/postgresql/812_IDEMPIERE-127_RecentItems.sql b/migration/360lts-i1.0a/postgresql/812_IDEMPIERE-127_RecentItems.sql similarity index 100% rename from migration/360lts-release/postgresql/812_IDEMPIERE-127_RecentItems.sql rename to migration/360lts-i1.0a/postgresql/812_IDEMPIERE-127_RecentItems.sql diff --git a/migration/360lts-release/postgresql/813_IDEMPIERE-134_NewGWPeriods.sql b/migration/360lts-i1.0a/postgresql/813_IDEMPIERE-134_NewGWPeriods.sql similarity index 100% rename from migration/360lts-release/postgresql/813_IDEMPIERE-134_NewGWPeriods.sql rename to migration/360lts-i1.0a/postgresql/813_IDEMPIERE-134_NewGWPeriods.sql diff --git a/migration/360lts-release/postgresql/814_IDEMPIERE-133.sql b/migration/360lts-i1.0a/postgresql/814_IDEMPIERE-133.sql similarity index 100% rename from migration/360lts-release/postgresql/814_IDEMPIERE-133.sql rename to migration/360lts-i1.0a/postgresql/814_IDEMPIERE-133.sql diff --git a/migration/360lts-release/postgresql/815_IDEMPIERE-135.sql b/migration/360lts-i1.0a/postgresql/815_IDEMPIERE-135.sql similarity index 100% rename from migration/360lts-release/postgresql/815_IDEMPIERE-135.sql rename to migration/360lts-i1.0a/postgresql/815_IDEMPIERE-135.sql diff --git a/migration/360lts-release/postgresql/816_IDEMPIERE-139_LastMigrationScriptApplied.sql b/migration/360lts-i1.0a/postgresql/816_IDEMPIERE-139_LastMigrationScriptApplied.sql similarity index 100% rename from migration/360lts-release/postgresql/816_IDEMPIERE-139_LastMigrationScriptApplied.sql rename to migration/360lts-i1.0a/postgresql/816_IDEMPIERE-139_LastMigrationScriptApplied.sql diff --git a/migration/360lts-release/postgresql/817_IDEMPIERE-147.sql b/migration/360lts-i1.0a/postgresql/817_IDEMPIERE-147.sql similarity index 100% rename from migration/360lts-release/postgresql/817_IDEMPIERE-147.sql rename to migration/360lts-i1.0a/postgresql/817_IDEMPIERE-147.sql diff --git a/migration/360lts-release/postgresql/818_IDEMPIERE-148.sql b/migration/360lts-i1.0a/postgresql/818_IDEMPIERE-148.sql similarity index 100% rename from migration/360lts-release/postgresql/818_IDEMPIERE-148.sql rename to migration/360lts-i1.0a/postgresql/818_IDEMPIERE-148.sql diff --git a/migration/360lts-release/postgresql/819_IDEMPIERE-140.sql b/migration/360lts-i1.0a/postgresql/819_IDEMPIERE-140.sql similarity index 100% rename from migration/360lts-release/postgresql/819_IDEMPIERE-140.sql rename to migration/360lts-i1.0a/postgresql/819_IDEMPIERE-140.sql diff --git a/migration/360lts-release/postgresql/820_IDEMPIERE-153.sql b/migration/360lts-i1.0a/postgresql/820_IDEMPIERE-153.sql similarity index 100% rename from migration/360lts-release/postgresql/820_IDEMPIERE-153.sql rename to migration/360lts-i1.0a/postgresql/820_IDEMPIERE-153.sql diff --git a/migration/360lts-release/postgresql/821_IDEMPIERE-137_GLReconciliation.sql b/migration/360lts-i1.0a/postgresql/821_IDEMPIERE-137_GLReconciliation.sql similarity index 100% rename from migration/360lts-release/postgresql/821_IDEMPIERE-137_GLReconciliation.sql rename to migration/360lts-i1.0a/postgresql/821_IDEMPIERE-137_GLReconciliation.sql diff --git a/migration/360lts-release/postgresql/822_IDEMPIERE-137_Ambidexter_GL_Rec.sql b/migration/360lts-i1.0a/postgresql/822_IDEMPIERE-137_Ambidexter_GL_Rec.sql similarity index 100% rename from migration/360lts-release/postgresql/822_IDEMPIERE-137_Ambidexter_GL_Rec.sql rename to migration/360lts-i1.0a/postgresql/822_IDEMPIERE-137_Ambidexter_GL_Rec.sql diff --git a/migration/360lts-release/postgresql/823_IDEMPIERE-178.sql b/migration/360lts-i1.0a/postgresql/823_IDEMPIERE-178.sql similarity index 100% rename from migration/360lts-release/postgresql/823_IDEMPIERE-178.sql rename to migration/360lts-i1.0a/postgresql/823_IDEMPIERE-178.sql diff --git a/migration/360lts-release/postgresql/824_IDEMPIERE-117.sql b/migration/360lts-i1.0a/postgresql/824_IDEMPIERE-117.sql similarity index 100% rename from migration/360lts-release/postgresql/824_IDEMPIERE-117.sql rename to migration/360lts-i1.0a/postgresql/824_IDEMPIERE-117.sql diff --git a/migration/360lts-release/postgresql/824z_UpdateUU.sql b/migration/360lts-i1.0a/postgresql/824z_UpdateUU.sql similarity index 100% rename from migration/360lts-release/postgresql/824z_UpdateUU.sql rename to migration/360lts-i1.0a/postgresql/824z_UpdateUU.sql diff --git a/migration/360lts-release/postgresql/825_IDEMPIERE-189.sql b/migration/360lts-i1.0a/postgresql/825_IDEMPIERE-189.sql similarity index 100% rename from migration/360lts-release/postgresql/825_IDEMPIERE-189.sql rename to migration/360lts-i1.0a/postgresql/825_IDEMPIERE-189.sql diff --git a/migration/360lts-release/postgresql/826_IDEMPIERE-118.sql b/migration/360lts-i1.0a/postgresql/826_IDEMPIERE-118.sql similarity index 100% rename from migration/360lts-release/postgresql/826_IDEMPIERE-118.sql rename to migration/360lts-i1.0a/postgresql/826_IDEMPIERE-118.sql diff --git a/migration/360lts-release/postgresql/827_IDEMPIERE-151.sql b/migration/360lts-i1.0a/postgresql/827_IDEMPIERE-151.sql similarity index 100% rename from migration/360lts-release/postgresql/827_IDEMPIERE-151.sql rename to migration/360lts-i1.0a/postgresql/827_IDEMPIERE-151.sql diff --git a/migration/360lts-release/postgresql/828_IDEMPIERE-204.sql b/migration/360lts-i1.0a/postgresql/828_IDEMPIERE-204.sql similarity index 100% rename from migration/360lts-release/postgresql/828_IDEMPIERE-204.sql rename to migration/360lts-i1.0a/postgresql/828_IDEMPIERE-204.sql diff --git a/migration/360lts-release/postgresql/829_IDEMPIERE-117.sql b/migration/360lts-i1.0a/postgresql/829_IDEMPIERE-117.sql similarity index 100% rename from migration/360lts-release/postgresql/829_IDEMPIERE-117.sql rename to migration/360lts-i1.0a/postgresql/829_IDEMPIERE-117.sql diff --git a/migration/360lts-release/postgresql/830_IDEMPIERE-177_Window_Customization.sql b/migration/360lts-i1.0a/postgresql/830_IDEMPIERE-177_Window_Customization.sql similarity index 100% rename from migration/360lts-release/postgresql/830_IDEMPIERE-177_Window_Customization.sql rename to migration/360lts-i1.0a/postgresql/830_IDEMPIERE-177_Window_Customization.sql diff --git a/migration/360lts-release/postgresql/831_IDEMPIERE-177_Window_Customization.sql b/migration/360lts-i1.0a/postgresql/831_IDEMPIERE-177_Window_Customization.sql similarity index 100% rename from migration/360lts-release/postgresql/831_IDEMPIERE-177_Window_Customization.sql rename to migration/360lts-i1.0a/postgresql/831_IDEMPIERE-177_Window_Customization.sql diff --git a/migration/360lts-release/postgresql/832_IDEMPIERE-215.sql b/migration/360lts-i1.0a/postgresql/832_IDEMPIERE-215.sql similarity index 100% rename from migration/360lts-release/postgresql/832_IDEMPIERE-215.sql rename to migration/360lts-i1.0a/postgresql/832_IDEMPIERE-215.sql diff --git a/migration/360lts-release/postgresql/833_IDEMPIERE-129.sql b/migration/360lts-i1.0a/postgresql/833_IDEMPIERE-129.sql similarity index 100% rename from migration/360lts-release/postgresql/833_IDEMPIERE-129.sql rename to migration/360lts-i1.0a/postgresql/833_IDEMPIERE-129.sql diff --git a/migration/360lts-release/postgresql/834_IDEMPIERE-113.sql b/migration/360lts-i1.0a/postgresql/834_IDEMPIERE-113.sql similarity index 100% rename from migration/360lts-release/postgresql/834_IDEMPIERE-113.sql rename to migration/360lts-i1.0a/postgresql/834_IDEMPIERE-113.sql diff --git a/migration/360lts-release/postgresql/835_IDEMPIERE-195_MenuAutoExpand.sql b/migration/360lts-i1.0a/postgresql/835_IDEMPIERE-195_MenuAutoExpand.sql similarity index 100% rename from migration/360lts-release/postgresql/835_IDEMPIERE-195_MenuAutoExpand.sql rename to migration/360lts-i1.0a/postgresql/835_IDEMPIERE-195_MenuAutoExpand.sql diff --git a/migration/360lts-release/postgresql/836_IDEMPIERE-156.sql b/migration/360lts-i1.0a/postgresql/836_IDEMPIERE-156.sql similarity index 100% rename from migration/360lts-release/postgresql/836_IDEMPIERE-156.sql rename to migration/360lts-i1.0a/postgresql/836_IDEMPIERE-156.sql diff --git a/migration/360lts-release/postgresql/837_IDEMPIERE-195.sql b/migration/360lts-i1.0a/postgresql/837_IDEMPIERE-195.sql similarity index 100% rename from migration/360lts-release/postgresql/837_IDEMPIERE-195.sql rename to migration/360lts-i1.0a/postgresql/837_IDEMPIERE-195.sql diff --git a/migration/360lts-release/postgresql/838_IDEMPIERE-249.sql b/migration/360lts-i1.0a/postgresql/838_IDEMPIERE-249.sql similarity index 100% rename from migration/360lts-release/postgresql/838_IDEMPIERE-249.sql rename to migration/360lts-i1.0a/postgresql/838_IDEMPIERE-249.sql diff --git a/migration/360lts-release/postgresql/839_IDEMPIERE-162.sql b/migration/360lts-i1.0a/postgresql/839_IDEMPIERE-162.sql similarity index 100% rename from migration/360lts-release/postgresql/839_IDEMPIERE-162.sql rename to migration/360lts-i1.0a/postgresql/839_IDEMPIERE-162.sql diff --git a/migration/360lts-release/postgresql/840_IDEMPIERE-274.sql b/migration/360lts-i1.0a/postgresql/840_IDEMPIERE-274.sql similarity index 100% rename from migration/360lts-release/postgresql/840_IDEMPIERE-274.sql rename to migration/360lts-i1.0a/postgresql/840_IDEMPIERE-274.sql diff --git a/migration/360lts-release/postgresql/841_IDEMPIERE-254.sql b/migration/360lts-i1.0a/postgresql/841_IDEMPIERE-254.sql similarity index 100% rename from migration/360lts-release/postgresql/841_IDEMPIERE-254.sql rename to migration/360lts-i1.0a/postgresql/841_IDEMPIERE-254.sql diff --git a/migration/360lts-release/postgresql/842_IDEMPIERE-277.sql b/migration/360lts-i1.0a/postgresql/842_IDEMPIERE-277.sql similarity index 100% rename from migration/360lts-release/postgresql/842_IDEMPIERE-277.sql rename to migration/360lts-i1.0a/postgresql/842_IDEMPIERE-277.sql diff --git a/migration/360lts-release/postgresql/843-IDEMPIERE-13.sql b/migration/360lts-i1.0a/postgresql/843-IDEMPIERE-13.sql similarity index 100% rename from migration/360lts-release/postgresql/843-IDEMPIERE-13.sql rename to migration/360lts-i1.0a/postgresql/843-IDEMPIERE-13.sql diff --git a/migration/360lts-release/postgresql/844-IDEMPIERE-281.sql b/migration/360lts-i1.0a/postgresql/844-IDEMPIERE-281.sql similarity index 100% rename from migration/360lts-release/postgresql/844-IDEMPIERE-281.sql rename to migration/360lts-i1.0a/postgresql/844-IDEMPIERE-281.sql diff --git a/migration/360lts-release/postgresql/845_IDEMPIERE-255.sql b/migration/360lts-i1.0a/postgresql/845_IDEMPIERE-255.sql similarity index 100% rename from migration/360lts-release/postgresql/845_IDEMPIERE-255.sql rename to migration/360lts-i1.0a/postgresql/845_IDEMPIERE-255.sql diff --git a/migration/360lts-release/postgresql/846_GenerateNewUUIDColumns.sql b/migration/360lts-i1.0a/postgresql/846_GenerateNewUUIDColumns.sql similarity index 100% rename from migration/360lts-release/postgresql/846_GenerateNewUUIDColumns.sql rename to migration/360lts-i1.0a/postgresql/846_GenerateNewUUIDColumns.sql diff --git a/migration/360lts-release/postgresql/847_FillNewUUIDs.sql b/migration/360lts-i1.0a/postgresql/847_FillNewUUIDs.sql similarity index 100% rename from migration/360lts-release/postgresql/847_FillNewUUIDs.sql rename to migration/360lts-i1.0a/postgresql/847_FillNewUUIDs.sql diff --git a/migration/360lts-release/postgresql/848_IDEMPIERE-146.sql b/migration/360lts-i1.0a/postgresql/848_IDEMPIERE-146.sql similarity index 100% rename from migration/360lts-release/postgresql/848_IDEMPIERE-146.sql rename to migration/360lts-i1.0a/postgresql/848_IDEMPIERE-146.sql diff --git a/migration/360lts-release/postgresql/849_IDEMPIERE-85.sql b/migration/360lts-i1.0a/postgresql/849_IDEMPIERE-85.sql similarity index 100% rename from migration/360lts-release/postgresql/849_IDEMPIERE-85.sql rename to migration/360lts-i1.0a/postgresql/849_IDEMPIERE-85.sql diff --git a/migration/360lts-release/postgresql/850_IDEMPIERE-328.sql b/migration/360lts-i1.0a/postgresql/850_IDEMPIERE-328.sql similarity index 100% rename from migration/360lts-release/postgresql/850_IDEMPIERE-328.sql rename to migration/360lts-i1.0a/postgresql/850_IDEMPIERE-328.sql diff --git a/migration/360lts-release/postgresql/851_IDEMPIERE-320.sql b/migration/360lts-i1.0a/postgresql/851_IDEMPIERE-320.sql similarity index 100% rename from migration/360lts-release/postgresql/851_IDEMPIERE-320.sql rename to migration/360lts-i1.0a/postgresql/851_IDEMPIERE-320.sql diff --git a/migration/360lts-release/postgresql/852_IDEMPIERE-338.sql b/migration/360lts-i1.0a/postgresql/852_IDEMPIERE-338.sql similarity index 100% rename from migration/360lts-release/postgresql/852_IDEMPIERE-338.sql rename to migration/360lts-i1.0a/postgresql/852_IDEMPIERE-338.sql diff --git a/migration/360lts-release/postgresql/853_IDEMPIERE-326.sql b/migration/360lts-i1.0a/postgresql/853_IDEMPIERE-326.sql similarity index 100% rename from migration/360lts-release/postgresql/853_IDEMPIERE-326.sql rename to migration/360lts-i1.0a/postgresql/853_IDEMPIERE-326.sql diff --git a/migration/360lts-release/postgresql/854_PasswordHash_IDEMPIERE-347.sql b/migration/360lts-i1.0a/postgresql/854_PasswordHash_IDEMPIERE-347.sql similarity index 100% rename from migration/360lts-release/postgresql/854_PasswordHash_IDEMPIERE-347.sql rename to migration/360lts-i1.0a/postgresql/854_PasswordHash_IDEMPIERE-347.sql diff --git a/migration/360lts-release/postgresql/855_IDEMPIERE-344_GLJournalImprovement.sql b/migration/360lts-i1.0a/postgresql/855_IDEMPIERE-344_GLJournalImprovement.sql similarity index 100% rename from migration/360lts-release/postgresql/855_IDEMPIERE-344_GLJournalImprovement.sql rename to migration/360lts-i1.0a/postgresql/855_IDEMPIERE-344_GLJournalImprovement.sql diff --git a/migration/360lts-release/postgresql/856_IDEMPIERE_332.sql b/migration/360lts-i1.0a/postgresql/856_IDEMPIERE_332.sql similarity index 100% rename from migration/360lts-release/postgresql/856_IDEMPIERE_332.sql rename to migration/360lts-i1.0a/postgresql/856_IDEMPIERE_332.sql diff --git a/migration/360lts-release/postgresql/857_IDEMPIERE-221.sql b/migration/360lts-i1.0a/postgresql/857_IDEMPIERE-221.sql similarity index 100% rename from migration/360lts-release/postgresql/857_IDEMPIERE-221.sql rename to migration/360lts-i1.0a/postgresql/857_IDEMPIERE-221.sql diff --git a/migration/360lts-release/postgresql/858_IDEMPIERE-344_GLJournalImprovement.sql b/migration/360lts-i1.0a/postgresql/858_IDEMPIERE-344_GLJournalImprovement.sql similarity index 100% rename from migration/360lts-release/postgresql/858_IDEMPIERE-344_GLJournalImprovement.sql rename to migration/360lts-i1.0a/postgresql/858_IDEMPIERE-344_GLJournalImprovement.sql diff --git a/migration/360lts-release/postgresql/859_IDEMPIERE-354.sql b/migration/360lts-i1.0a/postgresql/859_IDEMPIERE-354.sql similarity index 100% rename from migration/360lts-release/postgresql/859_IDEMPIERE-354.sql rename to migration/360lts-i1.0a/postgresql/859_IDEMPIERE-354.sql diff --git a/migration/360lts-release/postgresql/860_IDEMPIERE-356.sql b/migration/360lts-i1.0a/postgresql/860_IDEMPIERE-356.sql similarity index 100% rename from migration/360lts-release/postgresql/860_IDEMPIERE-356.sql rename to migration/360lts-i1.0a/postgresql/860_IDEMPIERE-356.sql diff --git a/migration/360lts-release/postgresql/861_IDEMPIERE-344_GLJournalImprovement.sql b/migration/360lts-i1.0a/postgresql/861_IDEMPIERE-344_GLJournalImprovement.sql similarity index 100% rename from migration/360lts-release/postgresql/861_IDEMPIERE-344_GLJournalImprovement.sql rename to migration/360lts-i1.0a/postgresql/861_IDEMPIERE-344_GLJournalImprovement.sql diff --git a/migration/360lts-release/postgresql/862_1001002_MenuPortlet.sql b/migration/360lts-i1.0a/postgresql/862_1001002_MenuPortlet.sql similarity index 100% rename from migration/360lts-release/postgresql/862_1001002_MenuPortlet.sql rename to migration/360lts-i1.0a/postgresql/862_1001002_MenuPortlet.sql diff --git a/migration/360lts-release/postgresql/862a_ManufacturingLight.sql b/migration/360lts-i1.0a/postgresql/862a_ManufacturingLight.sql similarity index 100% rename from migration/360lts-release/postgresql/862a_ManufacturingLight.sql rename to migration/360lts-i1.0a/postgresql/862a_ManufacturingLight.sql diff --git a/migration/360lts-release/postgresql/863_IDEMPIERE-246_Manufacturing_Light_phantom.sql b/migration/360lts-i1.0a/postgresql/863_IDEMPIERE-246_Manufacturing_Light_phantom.sql similarity index 100% rename from migration/360lts-release/postgresql/863_IDEMPIERE-246_Manufacturing_Light_phantom.sql rename to migration/360lts-i1.0a/postgresql/863_IDEMPIERE-246_Manufacturing_Light_phantom.sql diff --git a/migration/360lts-release/postgresql/864_IDEMPIERE-246_Manufacturing_Light_Kanban.sql b/migration/360lts-i1.0a/postgresql/864_IDEMPIERE-246_Manufacturing_Light_Kanban.sql similarity index 100% rename from migration/360lts-release/postgresql/864_IDEMPIERE-246_Manufacturing_Light_Kanban.sql rename to migration/360lts-i1.0a/postgresql/864_IDEMPIERE-246_Manufacturing_Light_Kanban.sql diff --git a/migration/360lts-release/postgresql/865_IDEMPIERE-221.sql b/migration/360lts-i1.0a/postgresql/865_IDEMPIERE-221.sql similarity index 100% rename from migration/360lts-release/postgresql/865_IDEMPIERE-221.sql rename to migration/360lts-i1.0a/postgresql/865_IDEMPIERE-221.sql diff --git a/migration/360lts-release/postgresql/866_IDEMPIERE-246_Manufacturing_Light_fixes.sql b/migration/360lts-i1.0a/postgresql/866_IDEMPIERE-246_Manufacturing_Light_fixes.sql similarity index 100% rename from migration/360lts-release/postgresql/866_IDEMPIERE-246_Manufacturing_Light_fixes.sql rename to migration/360lts-i1.0a/postgresql/866_IDEMPIERE-246_Manufacturing_Light_fixes.sql diff --git a/migration/360lts-release/postgresql/867_IDEMPIERE-357_MenuPortlet.sql b/migration/360lts-i1.0a/postgresql/867_IDEMPIERE-357_MenuPortlet.sql similarity index 100% rename from migration/360lts-release/postgresql/867_IDEMPIERE-357_MenuPortlet.sql rename to migration/360lts-i1.0a/postgresql/867_IDEMPIERE-357_MenuPortlet.sql diff --git a/migration/360lts-release/postgresql/868_FixWrongEntityTypes.sql b/migration/360lts-i1.0a/postgresql/868_FixWrongEntityTypes.sql similarity index 100% rename from migration/360lts-release/postgresql/868_FixWrongEntityTypes.sql rename to migration/360lts-i1.0a/postgresql/868_FixWrongEntityTypes.sql diff --git a/migration/360lts-release/postgresql/869_UUIDGenerator.sql b/migration/360lts-i1.0a/postgresql/869_UUIDGenerator.sql similarity index 100% rename from migration/360lts-release/postgresql/869_UUIDGenerator.sql rename to migration/360lts-i1.0a/postgresql/869_UUIDGenerator.sql diff --git a/migration/360lts-release/postgresql/870_IDEMPIERE-357_MenuPortlet.sql b/migration/360lts-i1.0a/postgresql/870_IDEMPIERE-357_MenuPortlet.sql similarity index 100% rename from migration/360lts-release/postgresql/870_IDEMPIERE-357_MenuPortlet.sql rename to migration/360lts-i1.0a/postgresql/870_IDEMPIERE-357_MenuPortlet.sql diff --git a/migration/360lts-release/postgresql/871_IDEMPIERE_358.sql b/migration/360lts-i1.0a/postgresql/871_IDEMPIERE_358.sql similarity index 100% rename from migration/360lts-release/postgresql/871_IDEMPIERE_358.sql rename to migration/360lts-i1.0a/postgresql/871_IDEMPIERE_358.sql diff --git a/migration/360lts-release/postgresql/872_IDEMPIERE-364_Customizable_Grid.sql b/migration/360lts-i1.0a/postgresql/872_IDEMPIERE-364_Customizable_Grid.sql similarity index 100% rename from migration/360lts-release/postgresql/872_IDEMPIERE-364_Customizable_Grid.sql rename to migration/360lts-i1.0a/postgresql/872_IDEMPIERE-364_Customizable_Grid.sql diff --git a/migration/360lts-release/postgresql/873_IDEMPIERE-364_AD_Field.sql b/migration/360lts-i1.0a/postgresql/873_IDEMPIERE-364_AD_Field.sql similarity index 100% rename from migration/360lts-release/postgresql/873_IDEMPIERE-364_AD_Field.sql rename to migration/360lts-i1.0a/postgresql/873_IDEMPIERE-364_AD_Field.sql diff --git a/migration/360lts-release/postgresql/874_IDEMPIERE-384.sql b/migration/360lts-i1.0a/postgresql/874_IDEMPIERE-384.sql similarity index 100% rename from migration/360lts-release/postgresql/874_IDEMPIERE-384.sql rename to migration/360lts-i1.0a/postgresql/874_IDEMPIERE-384.sql diff --git a/migration/360lts-release/postgresql/875_IDEMPIERE-364.sql b/migration/360lts-i1.0a/postgresql/875_IDEMPIERE-364.sql similarity index 100% rename from migration/360lts-release/postgresql/875_IDEMPIERE-364.sql rename to migration/360lts-i1.0a/postgresql/875_IDEMPIERE-364.sql diff --git a/migration/360lts-release/postgresql/876_IDEMPIERE-364_FixWrongField.sql b/migration/360lts-i1.0a/postgresql/876_IDEMPIERE-364_FixWrongField.sql similarity index 100% rename from migration/360lts-release/postgresql/876_IDEMPIERE-364_FixWrongField.sql rename to migration/360lts-i1.0a/postgresql/876_IDEMPIERE-364_FixWrongField.sql diff --git a/migration/360lts-release/postgresql/877_IDEMPIERE_363.sql b/migration/360lts-i1.0a/postgresql/877_IDEMPIERE_363.sql similarity index 100% rename from migration/360lts-release/postgresql/877_IDEMPIERE_363.sql rename to migration/360lts-i1.0a/postgresql/877_IDEMPIERE_363.sql diff --git a/migration/360lts-release/postgresql/878_IDEMPIERE-393.sql b/migration/360lts-i1.0a/postgresql/878_IDEMPIERE-393.sql similarity index 100% rename from migration/360lts-release/postgresql/878_IDEMPIERE-393.sql rename to migration/360lts-i1.0a/postgresql/878_IDEMPIERE-393.sql diff --git a/migration/360lts-release/postgresql/879_IDEMPIERE-376.sql b/migration/360lts-i1.0a/postgresql/879_IDEMPIERE-376.sql similarity index 100% rename from migration/360lts-release/postgresql/879_IDEMPIERE-376.sql rename to migration/360lts-i1.0a/postgresql/879_IDEMPIERE-376.sql diff --git a/migration/360lts-release/postgresql/880_IDEMPIERE-377_SeqNoSelection.sql b/migration/360lts-i1.0a/postgresql/880_IDEMPIERE-377_SeqNoSelection.sql similarity index 100% rename from migration/360lts-release/postgresql/880_IDEMPIERE-377_SeqNoSelection.sql rename to migration/360lts-i1.0a/postgresql/880_IDEMPIERE-377_SeqNoSelection.sql diff --git a/migration/360lts-release/postgresql/881_IDEMPIERE-246_Manufacturing_Light_OrderLine_Create_Prod_Ship.sql b/migration/360lts-i1.0a/postgresql/881_IDEMPIERE-246_Manufacturing_Light_OrderLine_Create_Prod_Ship.sql similarity index 100% rename from migration/360lts-release/postgresql/881_IDEMPIERE-246_Manufacturing_Light_OrderLine_Create_Prod_Ship.sql rename to migration/360lts-i1.0a/postgresql/881_IDEMPIERE-246_Manufacturing_Light_OrderLine_Create_Prod_Ship.sql diff --git a/migration/360lts-release/postgresql/882_IDEMPIERE-246_Manufacturing_Light_Menu_deact_Libero.sql b/migration/360lts-i1.0a/postgresql/882_IDEMPIERE-246_Manufacturing_Light_Menu_deact_Libero.sql similarity index 100% rename from migration/360lts-release/postgresql/882_IDEMPIERE-246_Manufacturing_Light_Menu_deact_Libero.sql rename to migration/360lts-i1.0a/postgresql/882_IDEMPIERE-246_Manufacturing_Light_Menu_deact_Libero.sql diff --git a/migration/360lts-release/postgresql/883_IDEMPIERE-246_Manufacturing_Light_fixes.sql b/migration/360lts-i1.0a/postgresql/883_IDEMPIERE-246_Manufacturing_Light_fixes.sql similarity index 100% rename from migration/360lts-release/postgresql/883_IDEMPIERE-246_Manufacturing_Light_fixes.sql rename to migration/360lts-i1.0a/postgresql/883_IDEMPIERE-246_Manufacturing_Light_fixes.sql diff --git a/migration/360lts-release/postgresql/884_IDEMPIERE-246.sql b/migration/360lts-i1.0a/postgresql/884_IDEMPIERE-246.sql similarity index 100% rename from migration/360lts-release/postgresql/884_IDEMPIERE-246.sql rename to migration/360lts-i1.0a/postgresql/884_IDEMPIERE-246.sql diff --git a/migration/360lts-release/postgresql/885_IDEMPIERE-377_AD_Field_V.sql b/migration/360lts-i1.0a/postgresql/885_IDEMPIERE-377_AD_Field_V.sql similarity index 100% rename from migration/360lts-release/postgresql/885_IDEMPIERE-377_AD_Field_V.sql rename to migration/360lts-i1.0a/postgresql/885_IDEMPIERE-377_AD_Field_V.sql diff --git a/migration/360lts-release/postgresql/886_IDEMPIERE-217.sql b/migration/360lts-i1.0a/postgresql/886_IDEMPIERE-217.sql similarity index 100% rename from migration/360lts-release/postgresql/886_IDEMPIERE-217.sql rename to migration/360lts-i1.0a/postgresql/886_IDEMPIERE-217.sql diff --git a/migration/360lts-release/postgresql/887_LinkEndOfProcess.sql b/migration/360lts-i1.0a/postgresql/887_LinkEndOfProcess.sql similarity index 100% rename from migration/360lts-release/postgresql/887_LinkEndOfProcess.sql rename to migration/360lts-i1.0a/postgresql/887_LinkEndOfProcess.sql diff --git a/migration/360lts-release/postgresql/888_IDEMPIERE-357_MenuPortlet.sql b/migration/360lts-i1.0a/postgresql/888_IDEMPIERE-357_MenuPortlet.sql similarity index 100% rename from migration/360lts-release/postgresql/888_IDEMPIERE-357_MenuPortlet.sql rename to migration/360lts-i1.0a/postgresql/888_IDEMPIERE-357_MenuPortlet.sql diff --git a/migration/360lts-release/postgresql/889_IDEMPIERE-370_LinkEndOfProcess.sql b/migration/360lts-i1.0a/postgresql/889_IDEMPIERE-370_LinkEndOfProcess.sql similarity index 100% rename from migration/360lts-release/postgresql/889_IDEMPIERE-370_LinkEndOfProcess.sql rename to migration/360lts-i1.0a/postgresql/889_IDEMPIERE-370_LinkEndOfProcess.sql diff --git a/migration/360lts-release/postgresql/890_IDEMPIERE-377.sql b/migration/360lts-i1.0a/postgresql/890_IDEMPIERE-377.sql similarity index 100% rename from migration/360lts-release/postgresql/890_IDEMPIERE-377.sql rename to migration/360lts-i1.0a/postgresql/890_IDEMPIERE-377.sql diff --git a/migration/360lts-release/postgresql/891_IDEMPIERE-357.sql b/migration/360lts-i1.0a/postgresql/891_IDEMPIERE-357.sql similarity index 100% rename from migration/360lts-release/postgresql/891_IDEMPIERE-357.sql rename to migration/360lts-i1.0a/postgresql/891_IDEMPIERE-357.sql diff --git a/migration/360lts-release/postgresql/892_IDEMPIERE_368.sql b/migration/360lts-i1.0a/postgresql/892_IDEMPIERE_368.sql similarity index 100% rename from migration/360lts-release/postgresql/892_IDEMPIERE_368.sql rename to migration/360lts-i1.0a/postgresql/892_IDEMPIERE_368.sql diff --git a/migration/360lts-release/postgresql/893_IDEMPIERE-387.sql b/migration/360lts-i1.0a/postgresql/893_IDEMPIERE-387.sql similarity index 100% rename from migration/360lts-release/postgresql/893_IDEMPIERE-387.sql rename to migration/360lts-i1.0a/postgresql/893_IDEMPIERE-387.sql diff --git a/migration/360lts-release/postgresql/894_IDEMPIERE-246.sql b/migration/360lts-i1.0a/postgresql/894_IDEMPIERE-246.sql similarity index 100% rename from migration/360lts-release/postgresql/894_IDEMPIERE-246.sql rename to migration/360lts-i1.0a/postgresql/894_IDEMPIERE-246.sql diff --git a/migration/360lts-release/postgresql/895_IDEMPIERE-377_History_Trl.sql b/migration/360lts-i1.0a/postgresql/895_IDEMPIERE-377_History_Trl.sql similarity index 100% rename from migration/360lts-release/postgresql/895_IDEMPIERE-377_History_Trl.sql rename to migration/360lts-i1.0a/postgresql/895_IDEMPIERE-377_History_Trl.sql diff --git a/migration/360lts-release/postgresql/896_IDEMPIERE-29.sql b/migration/360lts-i1.0a/postgresql/896_IDEMPIERE-29.sql similarity index 100% rename from migration/360lts-release/postgresql/896_IDEMPIERE-29.sql rename to migration/360lts-i1.0a/postgresql/896_IDEMPIERE-29.sql diff --git a/migration/360lts-release/postgresql/897_IDEMPIERE-63.sql b/migration/360lts-i1.0a/postgresql/897_IDEMPIERE-63.sql similarity index 100% rename from migration/360lts-release/postgresql/897_IDEMPIERE-63.sql rename to migration/360lts-i1.0a/postgresql/897_IDEMPIERE-63.sql diff --git a/migration/360lts-release/postgresql/898_IDEMPIERE-373_User_Locking.sql b/migration/360lts-i1.0a/postgresql/898_IDEMPIERE-373_User_Locking.sql similarity index 100% rename from migration/360lts-release/postgresql/898_IDEMPIERE-373_User_Locking.sql rename to migration/360lts-i1.0a/postgresql/898_IDEMPIERE-373_User_Locking.sql diff --git a/migration/360lts-release/postgresql/899-IDEMPIERE-366.sql b/migration/360lts-i1.0a/postgresql/899-IDEMPIERE-366.sql similarity index 100% rename from migration/360lts-release/postgresql/899-IDEMPIERE-366.sql rename to migration/360lts-i1.0a/postgresql/899-IDEMPIERE-366.sql diff --git a/migration/360lts-release/postgresql/900_IDEMPIERE-373_User_Locking.sql b/migration/360lts-i1.0a/postgresql/900_IDEMPIERE-373_User_Locking.sql similarity index 100% rename from migration/360lts-release/postgresql/900_IDEMPIERE-373_User_Locking.sql rename to migration/360lts-i1.0a/postgresql/900_IDEMPIERE-373_User_Locking.sql diff --git a/migration/360lts-release/postgresql/901_IDEMPIERE-420.sql b/migration/360lts-i1.0a/postgresql/901_IDEMPIERE-420.sql similarity index 100% rename from migration/360lts-release/postgresql/901_IDEMPIERE-420.sql rename to migration/360lts-i1.0a/postgresql/901_IDEMPIERE-420.sql diff --git a/migration/360lts-release/postgresql/902_IDEMPIERE-373_User_Locking.sql b/migration/360lts-i1.0a/postgresql/902_IDEMPIERE-373_User_Locking.sql similarity index 100% rename from migration/360lts-release/postgresql/902_IDEMPIERE-373_User_Locking.sql rename to migration/360lts-i1.0a/postgresql/902_IDEMPIERE-373_User_Locking.sql diff --git a/migration/360lts-release/postgresql/903_IDEMPIERE-377.sql b/migration/360lts-i1.0a/postgresql/903_IDEMPIERE-377.sql similarity index 100% rename from migration/360lts-release/postgresql/903_IDEMPIERE-377.sql rename to migration/360lts-i1.0a/postgresql/903_IDEMPIERE-377.sql diff --git a/migration/360lts-release/postgresql/904_IDEMPIERE-221.sql b/migration/360lts-i1.0a/postgresql/904_IDEMPIERE-221.sql similarity index 100% rename from migration/360lts-release/postgresql/904_IDEMPIERE-221.sql rename to migration/360lts-i1.0a/postgresql/904_IDEMPIERE-221.sql diff --git a/migration/360lts-release/postgresql/905_IDEMPIERE-270.sql b/migration/360lts-i1.0a/postgresql/905_IDEMPIERE-270.sql similarity index 100% rename from migration/360lts-release/postgresql/905_IDEMPIERE-270.sql rename to migration/360lts-i1.0a/postgresql/905_IDEMPIERE-270.sql diff --git a/migration/360lts-release/postgresql/906_IDEMPIERE-403.sql b/migration/360lts-i1.0a/postgresql/906_IDEMPIERE-403.sql similarity index 100% rename from migration/360lts-release/postgresql/906_IDEMPIERE-403.sql rename to migration/360lts-i1.0a/postgresql/906_IDEMPIERE-403.sql diff --git a/migration/360lts-release/postgresql/907_IDEMPIERE-375.sql b/migration/360lts-i1.0a/postgresql/907_IDEMPIERE-375.sql similarity index 100% rename from migration/360lts-release/postgresql/907_IDEMPIERE-375.sql rename to migration/360lts-i1.0a/postgresql/907_IDEMPIERE-375.sql diff --git a/migration/360lts-release/postgresql/908_Process_Message.sql b/migration/360lts-i1.0a/postgresql/908_Process_Message.sql similarity index 100% rename from migration/360lts-release/postgresql/908_Process_Message.sql rename to migration/360lts-i1.0a/postgresql/908_Process_Message.sql diff --git a/migration/360lts-release/postgresql/909_IDEMPIERE-375.sql b/migration/360lts-i1.0a/postgresql/909_IDEMPIERE-375.sql similarity index 100% rename from migration/360lts-release/postgresql/909_IDEMPIERE-375.sql rename to migration/360lts-i1.0a/postgresql/909_IDEMPIERE-375.sql diff --git a/migration/360lts-release/postgresql/910_IDEMPIERE-375.sql b/migration/360lts-i1.0a/postgresql/910_IDEMPIERE-375.sql similarity index 100% rename from migration/360lts-release/postgresql/910_IDEMPIERE-375.sql rename to migration/360lts-i1.0a/postgresql/910_IDEMPIERE-375.sql diff --git a/migration/360lts-release/postgresql/911_IDEMPIERE-366.sql b/migration/360lts-i1.0a/postgresql/911_IDEMPIERE-366.sql similarity index 100% rename from migration/360lts-release/postgresql/911_IDEMPIERE-366.sql rename to migration/360lts-i1.0a/postgresql/911_IDEMPIERE-366.sql diff --git a/migration/360lts-release/postgresql/912_IDEMPIERE_391.sql b/migration/360lts-i1.0a/postgresql/912_IDEMPIERE_391.sql similarity index 100% rename from migration/360lts-release/postgresql/912_IDEMPIERE_391.sql rename to migration/360lts-i1.0a/postgresql/912_IDEMPIERE_391.sql diff --git a/migration/360lts-release/postgresql/913_IDEMPIERE-374.sql b/migration/360lts-i1.0a/postgresql/913_IDEMPIERE-374.sql similarity index 100% rename from migration/360lts-release/postgresql/913_IDEMPIERE-374.sql rename to migration/360lts-i1.0a/postgresql/913_IDEMPIERE-374.sql diff --git a/migration/360lts-release/postgresql/914_IDEMPIERE-362.sql b/migration/360lts-i1.0a/postgresql/914_IDEMPIERE-362.sql similarity index 100% rename from migration/360lts-release/postgresql/914_IDEMPIERE-362.sql rename to migration/360lts-i1.0a/postgresql/914_IDEMPIERE-362.sql diff --git a/migration/360lts-release/postgresql/915_IDEMPIERE-362.sql b/migration/360lts-i1.0a/postgresql/915_IDEMPIERE-362.sql similarity index 100% rename from migration/360lts-release/postgresql/915_IDEMPIERE-362.sql rename to migration/360lts-i1.0a/postgresql/915_IDEMPIERE-362.sql diff --git a/migration/360lts-release/postgresql/916_IDEMPIERE-362.sql b/migration/360lts-i1.0a/postgresql/916_IDEMPIERE-362.sql similarity index 100% rename from migration/360lts-release/postgresql/916_IDEMPIERE-362.sql rename to migration/360lts-i1.0a/postgresql/916_IDEMPIERE-362.sql diff --git a/migration/360lts-release/postgresql/917_IDEMPIERE-366.sql b/migration/360lts-i1.0a/postgresql/917_IDEMPIERE-366.sql similarity index 100% rename from migration/360lts-release/postgresql/917_IDEMPIERE-366.sql rename to migration/360lts-i1.0a/postgresql/917_IDEMPIERE-366.sql diff --git a/migration/360lts-release/postgresql/918_IDEMPIERE-207.sql b/migration/360lts-i1.0a/postgresql/918_IDEMPIERE-207.sql similarity index 100% rename from migration/360lts-release/postgresql/918_IDEMPIERE-207.sql rename to migration/360lts-i1.0a/postgresql/918_IDEMPIERE-207.sql diff --git a/migration/360lts-release/postgresql/919_IDEMPIERE-373_User_Locking.sql b/migration/360lts-i1.0a/postgresql/919_IDEMPIERE-373_User_Locking.sql similarity index 100% rename from migration/360lts-release/postgresql/919_IDEMPIERE-373_User_Locking.sql rename to migration/360lts-i1.0a/postgresql/919_IDEMPIERE-373_User_Locking.sql diff --git a/migration/360lts-release/postgresql/920_IDEMPIERE_366.sql b/migration/360lts-i1.0a/postgresql/920_IDEMPIERE_366.sql similarity index 100% rename from migration/360lts-release/postgresql/920_IDEMPIERE_366.sql rename to migration/360lts-i1.0a/postgresql/920_IDEMPIERE_366.sql diff --git a/migration/360lts-release/postgresql/921_IDEMPIERE-422_NativeSequence.sql b/migration/360lts-i1.0a/postgresql/921_IDEMPIERE-422_NativeSequence.sql similarity index 100% rename from migration/360lts-release/postgresql/921_IDEMPIERE-422_NativeSequence.sql rename to migration/360lts-i1.0a/postgresql/921_IDEMPIERE-422_NativeSequence.sql diff --git a/migration/360lts-release/postgresql/922_IDEMPIERE-362.sql b/migration/360lts-i1.0a/postgresql/922_IDEMPIERE-362.sql similarity index 100% rename from migration/360lts-release/postgresql/922_IDEMPIERE-362.sql rename to migration/360lts-i1.0a/postgresql/922_IDEMPIERE-362.sql diff --git a/migration/360lts-release/postgresql/923_PlaceHolder.sql b/migration/360lts-i1.0a/postgresql/923_PlaceHolder.sql similarity index 100% rename from migration/360lts-release/postgresql/923_PlaceHolder.sql rename to migration/360lts-i1.0a/postgresql/923_PlaceHolder.sql diff --git a/migration/360lts-release/postgresql/924_IDEMPIERE-447.sql b/migration/360lts-i1.0a/postgresql/924_IDEMPIERE-447.sql similarity index 100% rename from migration/360lts-release/postgresql/924_IDEMPIERE-447.sql rename to migration/360lts-i1.0a/postgresql/924_IDEMPIERE-447.sql diff --git a/migration/360lts-release/postgresql/925_PlaceHolder.sql b/migration/360lts-i1.0a/postgresql/925_PlaceHolder.sql similarity index 100% rename from migration/360lts-release/postgresql/925_PlaceHolder.sql rename to migration/360lts-i1.0a/postgresql/925_PlaceHolder.sql diff --git a/migration/360lts-release/postgresql/926_PlaceHolder.sql b/migration/360lts-i1.0a/postgresql/926_PlaceHolder.sql similarity index 100% rename from migration/360lts-release/postgresql/926_PlaceHolder.sql rename to migration/360lts-i1.0a/postgresql/926_PlaceHolder.sql diff --git a/migration/360lts-release/postgresql/927_IDEMPIERE-388.sql b/migration/360lts-i1.0a/postgresql/927_IDEMPIERE-388.sql similarity index 100% rename from migration/360lts-release/postgresql/927_IDEMPIERE-388.sql rename to migration/360lts-i1.0a/postgresql/927_IDEMPIERE-388.sql diff --git a/migration/360lts-release/postgresql/928_IDEMPIERE-454.sql b/migration/360lts-i1.0a/postgresql/928_IDEMPIERE-454.sql similarity index 100% rename from migration/360lts-release/postgresql/928_IDEMPIERE-454.sql rename to migration/360lts-i1.0a/postgresql/928_IDEMPIERE-454.sql diff --git a/migration/360lts-release/postgresql/929_IDEMPIERE-458.sql b/migration/360lts-i1.0a/postgresql/929_IDEMPIERE-458.sql similarity index 100% rename from migration/360lts-release/postgresql/929_IDEMPIERE-458.sql rename to migration/360lts-i1.0a/postgresql/929_IDEMPIERE-458.sql diff --git a/migration/360lts-release/postgresql/930_IDEMPIERE-369.sql b/migration/360lts-i1.0a/postgresql/930_IDEMPIERE-369.sql similarity index 100% rename from migration/360lts-release/postgresql/930_IDEMPIERE-369.sql rename to migration/360lts-i1.0a/postgresql/930_IDEMPIERE-369.sql diff --git a/migration/360lts-release/postgresql/931_IDEMPIERE-375.sql b/migration/360lts-i1.0a/postgresql/931_IDEMPIERE-375.sql similarity index 100% rename from migration/360lts-release/postgresql/931_IDEMPIERE-375.sql rename to migration/360lts-i1.0a/postgresql/931_IDEMPIERE-375.sql diff --git a/migration/360lts-release/postgresql/932_IDEMPIERE-446.sql b/migration/360lts-i1.0a/postgresql/932_IDEMPIERE-446.sql similarity index 100% rename from migration/360lts-release/postgresql/932_IDEMPIERE-446.sql rename to migration/360lts-i1.0a/postgresql/932_IDEMPIERE-446.sql diff --git a/migration/360lts-release/postgresql/933_CreditCardsOnline.sql b/migration/360lts-i1.0a/postgresql/933_CreditCardsOnline.sql similarity index 100% rename from migration/360lts-release/postgresql/933_CreditCardsOnline.sql rename to migration/360lts-i1.0a/postgresql/933_CreditCardsOnline.sql diff --git a/migration/360lts-release/postgresql/934_IDEMPIERE-389.sql b/migration/360lts-i1.0a/postgresql/934_IDEMPIERE-389.sql similarity index 100% rename from migration/360lts-release/postgresql/934_IDEMPIERE-389.sql rename to migration/360lts-i1.0a/postgresql/934_IDEMPIERE-389.sql diff --git a/migration/360lts-release/postgresql/935_IDEMPIERE-293.sql b/migration/360lts-i1.0a/postgresql/935_IDEMPIERE-293.sql similarity index 100% rename from migration/360lts-release/postgresql/935_IDEMPIERE-293.sql rename to migration/360lts-i1.0a/postgresql/935_IDEMPIERE-293.sql diff --git a/migration/360lts-release/postgresql/936_IDEMPIERE-389_ServerName_Field.sql b/migration/360lts-i1.0a/postgresql/936_IDEMPIERE-389_ServerName_Field.sql similarity index 100% rename from migration/360lts-release/postgresql/936_IDEMPIERE-389_ServerName_Field.sql rename to migration/360lts-i1.0a/postgresql/936_IDEMPIERE-389_ServerName_Field.sql diff --git a/migration/360lts-release/postgresql/937_PlaceHolder.sql b/migration/360lts-i1.0a/postgresql/937_PlaceHolder.sql similarity index 100% rename from migration/360lts-release/postgresql/937_PlaceHolder.sql rename to migration/360lts-i1.0a/postgresql/937_PlaceHolder.sql diff --git a/migration/360lts-release/postgresql/938_IDEMPIERE-234.sql b/migration/360lts-i1.0a/postgresql/938_IDEMPIERE-234.sql similarity index 100% rename from migration/360lts-release/postgresql/938_IDEMPIERE-234.sql rename to migration/360lts-i1.0a/postgresql/938_IDEMPIERE-234.sql diff --git a/migration/360lts-release/postgresql/939_IDEMPIERE-447.sql b/migration/360lts-i1.0a/postgresql/939_IDEMPIERE-447.sql similarity index 100% rename from migration/360lts-release/postgresql/939_IDEMPIERE-447.sql rename to migration/360lts-i1.0a/postgresql/939_IDEMPIERE-447.sql diff --git a/migration/360lts-release/postgresql/940_IDEMPIERE-392.sql b/migration/360lts-i1.0a/postgresql/940_IDEMPIERE-392.sql similarity index 100% rename from migration/360lts-release/postgresql/940_IDEMPIERE-392.sql rename to migration/360lts-i1.0a/postgresql/940_IDEMPIERE-392.sql diff --git a/migration/360lts-release/postgresql/941_IDEMPIERE-158.sql b/migration/360lts-i1.0a/postgresql/941_IDEMPIERE-158.sql similarity index 100% rename from migration/360lts-release/postgresql/941_IDEMPIERE-158.sql rename to migration/360lts-i1.0a/postgresql/941_IDEMPIERE-158.sql diff --git a/migration/360lts-release/postgresql/942_IDEMPIERE_366.sql b/migration/360lts-i1.0a/postgresql/942_IDEMPIERE_366.sql similarity index 100% rename from migration/360lts-release/postgresql/942_IDEMPIERE_366.sql rename to migration/360lts-i1.0a/postgresql/942_IDEMPIERE_366.sql diff --git a/migration/360lts-release/postgresql/943_IDEMPIERE-466.sql b/migration/360lts-i1.0a/postgresql/943_IDEMPIERE-466.sql similarity index 100% rename from migration/360lts-release/postgresql/943_IDEMPIERE-466.sql rename to migration/360lts-i1.0a/postgresql/943_IDEMPIERE-466.sql diff --git a/migration/360lts-release/postgresql/944_IDEMPIERE-293.sql b/migration/360lts-i1.0a/postgresql/944_IDEMPIERE-293.sql similarity index 100% rename from migration/360lts-release/postgresql/944_IDEMPIERE-293.sql rename to migration/360lts-i1.0a/postgresql/944_IDEMPIERE-293.sql diff --git a/migration/360lts-release/postgresql/945_IDEMPIERE-197_FixedAssets.sql b/migration/360lts-i1.0a/postgresql/945_IDEMPIERE-197_FixedAssets.sql similarity index 100% rename from migration/360lts-release/postgresql/945_IDEMPIERE-197_FixedAssets.sql rename to migration/360lts-i1.0a/postgresql/945_IDEMPIERE-197_FixedAssets.sql diff --git a/migration/360lts-release/postgresql/946_IDEMPIERE-197_FixedAssets.sql b/migration/360lts-i1.0a/postgresql/946_IDEMPIERE-197_FixedAssets.sql similarity index 100% rename from migration/360lts-release/postgresql/946_IDEMPIERE-197_FixedAssets.sql rename to migration/360lts-i1.0a/postgresql/946_IDEMPIERE-197_FixedAssets.sql diff --git a/migration/360lts-release/postgresql/947_IDEMPIERE-293_UserSearchable.sql b/migration/360lts-i1.0a/postgresql/947_IDEMPIERE-293_UserSearchable.sql similarity index 100% rename from migration/360lts-release/postgresql/947_IDEMPIERE-293_UserSearchable.sql rename to migration/360lts-i1.0a/postgresql/947_IDEMPIERE-293_UserSearchable.sql diff --git a/migration/360lts-release/postgresql/948_IDEMPIERE-234.sql b/migration/360lts-i1.0a/postgresql/948_IDEMPIERE-234.sql similarity index 100% rename from migration/360lts-release/postgresql/948_IDEMPIERE-234.sql rename to migration/360lts-i1.0a/postgresql/948_IDEMPIERE-234.sql diff --git a/migration/360lts-release/postgresql/949_IDEMPIERE-265.sql b/migration/360lts-i1.0a/postgresql/949_IDEMPIERE-265.sql similarity index 100% rename from migration/360lts-release/postgresql/949_IDEMPIERE-265.sql rename to migration/360lts-i1.0a/postgresql/949_IDEMPIERE-265.sql diff --git a/migration/360lts-release/postgresql/950_IDEMPIERE-234.sql b/migration/360lts-i1.0a/postgresql/950_IDEMPIERE-234.sql similarity index 100% rename from migration/360lts-release/postgresql/950_IDEMPIERE-234.sql rename to migration/360lts-i1.0a/postgresql/950_IDEMPIERE-234.sql diff --git a/migration/360lts-release/postgresql/951_PlaceHolder.sql b/migration/360lts-i1.0a/postgresql/951_PlaceHolder.sql similarity index 100% rename from migration/360lts-release/postgresql/951_PlaceHolder.sql rename to migration/360lts-i1.0a/postgresql/951_PlaceHolder.sql diff --git a/migration/360lts-release/postgresql/952_IDEMPIERE_379.sql b/migration/360lts-i1.0a/postgresql/952_IDEMPIERE_379.sql similarity index 100% rename from migration/360lts-release/postgresql/952_IDEMPIERE_379.sql rename to migration/360lts-i1.0a/postgresql/952_IDEMPIERE_379.sql diff --git a/migration/360lts-release/postgresql/953_PlaceHolder.sql b/migration/360lts-i1.0a/postgresql/953_PlaceHolder.sql similarity index 100% rename from migration/360lts-release/postgresql/953_PlaceHolder.sql rename to migration/360lts-i1.0a/postgresql/953_PlaceHolder.sql diff --git a/migration/360lts-release/postgresql/954_UUID_Sync.sql b/migration/360lts-i1.0a/postgresql/954_UUID_Sync.sql similarity index 100% rename from migration/360lts-release/postgresql/954_UUID_Sync.sql rename to migration/360lts-i1.0a/postgresql/954_UUID_Sync.sql diff --git a/migration/360lts-release/postgresql/955_FixWrongEntityTypes.sql b/migration/360lts-i1.0a/postgresql/955_FixWrongEntityTypes.sql similarity index 100% rename from migration/360lts-release/postgresql/955_FixWrongEntityTypes.sql rename to migration/360lts-i1.0a/postgresql/955_FixWrongEntityTypes.sql diff --git a/migration/360lts-release/postgresql/956_ForeignKeys.sql b/migration/360lts-i1.0a/postgresql/956_ForeignKeys.sql similarity index 100% rename from migration/360lts-release/postgresql/956_ForeignKeys.sql rename to migration/360lts-i1.0a/postgresql/956_ForeignKeys.sql diff --git a/migration/360lts-release/postgresql/957_SetSysConfig.sql b/migration/360lts-i1.0a/postgresql/957_SetSysConfig.sql similarity index 100% rename from migration/360lts-release/postgresql/957_SetSysConfig.sql rename to migration/360lts-i1.0a/postgresql/957_SetSysConfig.sql diff --git a/migration/360lts-release/postgresql/958_Version.sql b/migration/360lts-i1.0a/postgresql/958_Version.sql similarity index 100% rename from migration/360lts-release/postgresql/958_Version.sql rename to migration/360lts-i1.0a/postgresql/958_Version.sql From ddf04a92dac16aba5006dc3f8093fa7f93a42440 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Wed, 31 Oct 2012 19:58:20 -0500 Subject: [PATCH 22/22] Removing LAST_SCRIPT_APPLIED_ON_THIS_SEED - the control must be now comparing table AD_MigrationScript with the list of scripts on i1.0a-release --- .../data/seed/LAST_SCRIPT_APPLIED_ON_THIS_SEED | 1 - 1 file changed, 1 deletion(-) delete mode 100644 org.adempiere.server-feature/data/seed/LAST_SCRIPT_APPLIED_ON_THIS_SEED diff --git a/org.adempiere.server-feature/data/seed/LAST_SCRIPT_APPLIED_ON_THIS_SEED b/org.adempiere.server-feature/data/seed/LAST_SCRIPT_APPLIED_ON_THIS_SEED deleted file mode 100644 index 25332515e3..0000000000 --- a/org.adempiere.server-feature/data/seed/LAST_SCRIPT_APPLIED_ON_THIS_SEED +++ /dev/null @@ -1 +0,0 @@ -847_FillNewUUIDs.sql